/* ============================================================
   Damn Yankee Balloons — staging build
   ============================================================ */

:root {
  --navy: #173a5e;
  --navy-soft: #2a4f73;
  --ink: #34495c;
  --muted: #607387;
  --orange: #f5921f;
  --orange-dark: #e07d12;
  --coral: #ef6c5a;
  --gold: #ffd24a;
  --blue: #2f86d4;
  --blue-dark: #2670ba;
  --sky: #eef6fc;
  --sky-2: #e3f0fa;
  --cream: #fff8ef;
  --line: #e6edf3;
  --white: #ffffff;

  --shadow-sm: 0 4px 14px rgba(23, 58, 94, 0.07);
  --shadow-md: 0 14px 40px rgba(23, 58, 94, 0.10);
  --shadow-lg: 0 24px 60px rgba(23, 58, 94, 0.16);

  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1200px;

  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--orange);
  display: block;
  text-align: center;
}

.section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 10px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.12rem; }

section { padding: 96px 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.02rem; line-height: 1;
  padding: 16px 28px; border-radius: 999px;
  cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-orange { background: linear-gradient(180deg, #f9a13a, var(--orange)); color: #fff; box-shadow: 0 10px 24px rgba(245,146,31,.35); }
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245,146,31,.45); }
.btn-blue { background: linear-gradient(180deg, #3b92e0, var(--blue)); color: #fff; box-shadow: 0 10px 24px rgba(47,134,212,.32); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(47,134,212,.42); }
.btn-glass {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(6px);
}
.btn-glass:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--navy); }
.brand img { width: 34px; height: 34px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 600; color: var(--navy-soft); font-size: 1rem; transition: color .15s; }
.nav-links a:hover { color: var(--orange); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, #f9a13a, var(--orange)); color: #fff;
  font-family: var(--font-display); font-weight: 600;
  padding: 11px 20px; border-radius: 999px; font-size: .98rem;
  box-shadow: 0 8px 20px rgba(245,146,31,.3);
}
.phone-pill svg { width: 17px; height: 17px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--navy); }

/* ---------- hero ---------- */
.hero {
  position: relative; color: #fff; text-align: center;
  padding: 130px 0 120px; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("img/hero.jpg") center/cover no-repeat;
  transform: scale(1.04);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,33,54,.55) 0%, rgba(13,33,54,.35) 40%, rgba(13,33,54,.72) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  color: var(--gold); font-family: var(--font-display); font-weight: 500;
  padding: 9px 18px; border-radius: 999px; font-size: .95rem; margin-bottom: 26px;
}
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6.5vw, 5rem); margin-bottom: 22px; }
.hero h1 .grad {
  background: linear-gradient(95deg, var(--gold) 0%, var(--orange) 48%, var(--coral) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}
.hero p.lede {
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
  max-width: 720px; margin: 0 auto 38px; color: rgba(255,255,255,.92);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats {
  display: flex; gap: 14px 38px; justify-content: center; flex-wrap: wrap;
  color: rgba(255,255,255,.92); font-weight: 700; font-size: .98rem;
}
.hero-stats span { display: inline-flex; align-items: center; gap: 8px; }
.hero-stats svg { width: 18px; height: 18px; color: var(--gold); }
.hero-stats .sep { opacity: .35; font-weight: 400; }

/* ---------- services ---------- */
.services { background: var(--white); }
.cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.tag {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 500; font-size: .82rem;
  color: #fff; padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.tag svg { width: 14px; height: 14px; }
.tag-orange { background: var(--orange); }
.tag-blue { background: var(--blue); }
.tag-navy { background: var(--navy); }
.tag-coral { background: var(--coral); }
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.45rem; margin-bottom: 12px; }
.card-body p { color: var(--muted); margin-bottom: 20px; flex: 1; }
.card-link {
  font-family: var(--font-display); font-weight: 600; color: var(--blue);
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
}
.card-link svg { width: 18px; height: 18px; transition: transform .15s; }
.card-link:hover svg { transform: translateX(4px); }
.services-note {
  text-align: center; margin-top: 40px; color: var(--muted); font-size: 1.05rem;
}
.services-note strong { color: var(--blue); font-weight: 700; }

/* ---------- pilot ---------- */
.pilot { background: linear-gradient(180deg, var(--cream) 0%, var(--sky) 100%); }
.pilot-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.pilot-photo { position: relative; }
.pilot-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.pilot-photo .photo-note {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  background: rgba(23,58,94,.82); color: #fff; font-size: .78rem;
  padding: 8px 12px; border-radius: 10px; text-align: center; backdrop-filter: blur(4px);
}
.pilot-copy .eyebrow, .pilot-copy .section-head { text-align: left; }
.pilot-copy h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 8px 0 8px; }
.pilot-copy .sub { color: var(--muted); font-size: 1.12rem; margin-bottom: 22px; }
.pilot-copy p { color: var(--ink); margin-bottom: 16px; }
.pilot-copy p strong { color: var(--navy); }
.pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 18px; font-family: var(--font-display); font-weight: 500;
  color: var(--navy); font-size: .95rem; box-shadow: var(--shadow-sm);
}
.pill svg { width: 18px; height: 18px; color: var(--orange); }

/* ---------- testimonials ---------- */
.testimonials { background: var(--white); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.t-card {
  background: var(--sky); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column;
}
.t-card:nth-child(2) { background: var(--cream); }
.stars { color: var(--orange); display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 19px; height: 19px; }
.t-card blockquote { color: var(--ink); font-size: 1.04rem; line-height: 1.7; flex: 1; margin-bottom: 22px; }
.t-author { font-family: var(--font-display); font-weight: 600; color: var(--navy); }
.t-role { color: var(--muted); font-size: .92rem; }
.t-more { text-align: center; margin-top: 42px; }
.t-more a { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; color: var(--blue); }
.t-more svg { width: 18px; height: 18px; }

/* ---------- cta band ---------- */
.cta-band { position: relative; color: #fff; text-align: center; padding: 84px 0; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: url("img/cta.jpg") center/cover no-repeat; }
.cta-band::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(23,58,94,.78), rgba(23,58,94,.86)); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 600px; margin: 0 auto 30px; }
.cta-band .hero-actions { margin-bottom: 0; }

/* ---------- contact ---------- */
.contact { background: linear-gradient(180deg, var(--sky) 0%, #fff 100%); }
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 50px; }
.reach h3, .contact-form h3 { font-size: 1.5rem; margin-bottom: 22px; }
.reach-list { display: flex; flex-direction: column; gap: 18px; }
.reach-item { display: flex; gap: 16px; align-items: flex-start; }
.reach-ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; color: var(--orange);
}
.reach-ico svg { width: 21px; height: 21px; }
.reach-item .label { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: .92rem; }
.reach-item .value { color: var(--ink); }
.reach-item a.value:hover { color: var(--blue); }
.areas {
  margin-top: 26px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.areas .label { font-family: var(--font-display); font-weight: 600; color: var(--navy); margin-bottom: 6px; display:flex; align-items:center; gap:8px; }
.areas .label svg { width: 18px; height: 18px; color: var(--orange); }
.areas p { color: var(--muted); font-size: .98rem; }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: .9rem; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fbfdff;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,134,212,.14); background:#fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-hint { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 14px; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 38px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: #fff; margin-bottom: 14px; }
.footer-brand img { width: 32px; height: 32px; }
.site-footer .col p { font-size: .96rem; line-height: 1.7; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.78); font-size: .96rem; transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: .88rem; color: rgba(255,255,255,.6);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  section { padding: 72px 0; }
  .nav-links, .phone-pill span { display: none; }
  .nav-toggle { display: block; }
  .cards, .t-grid, .pilot-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .pilot-grid { gap: 36px; }
  .t-grid { gap: 22px; }
  .footer-grid { gap: 28px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 92px 0 84px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 10px 22px; font-size: .9rem; }
  .contact-form { padding: 24px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* mobile menu open */
body.menu-open .nav-links {
  display: flex; position: absolute; top: 72px; left: 0; right: 0;
  flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
body.menu-open .nav-links a { padding: 15px 24px; border-top: 1px solid var(--line); }
