/* Havenquest landing page — for parents */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@500;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --bg-sage: #c8dcb0;
  --bg-sage-deep: #a7c48a;
  --bg-cream: #fefaf0;
  --bg-cream-2: #f8f0e0;
  --bg-sand: #f4efe2;
  --bg-sky: #e8d9b8;

  --ink: #2d2a26;
  --ink-soft: #6b5f52;
  --ink-faint: #a89b8c;

  --forest: #1187A9;
  --forest-deep: #09526D;
  --moss: #7ba05b;
  --leaf: #b6d08a;

  --terracotta: #e8803a;
  --terracotta-deep: #c1591a;
  --sunrise: #efa965;
  --berry: #b8513f;
  --cream-pop: #f4c77a;
  --heart: #d85a5a;

  --hairline: rgba(45,42,38,0.08);
  --shadow-card: 0 2px 0 rgba(45,42,38,0.04), 0 10px 24px rgba(45,42,38,0.06);
  --shadow-pop: 0 6px 0 rgba(45,42,38,0.08), 0 24px 48px rgba(45,42,38,0.12);
  --shadow-deep: 0 30px 80px rgba(45,42,38,0.18);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

html, body {
  margin: 0; padding: 0;
  font-family: 'Quicksand', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg-cream);
  overflow-x: hidden;
}

body { min-height: 100vh; }

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }

.display { font-family: 'Fraunces', serif; font-weight: 700; letter-spacing: -0.015em; }
.italic { font-style: italic; }

/* Layout container */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(254,250,240,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px; flex: 1;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: var(--forest); color: var(--bg-cream);
  border-radius: 999px; font-weight: 700; font-size: 14px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(17,135,169,0.3); }
.nav-cta.ghost { background: transparent; color: var(--ink); border: 1px solid var(--hairline); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-inner { gap: 12px; justify-content: space-between; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  /* Inline font-size:22px lives on the wordmark span; !important needed to override. */
  .nav .display { font-size: 18px !important; }
  /* Hide the "Sign in" pill on mobile -- on a 360px Android the logo + both
     pills overflowed the wrap and crowded the wordmark. Returning parents
     can sign in at parents.havenquest.app directly; "Start free" is the
     conversion-driving CTA the landing actually needs above the fold. */
  .nav-cta.ghost { display: none !important; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 72px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(244,199,122,0.35), transparent 60%),
    radial-gradient(900px 600px at 5% 30%, rgba(25,158,188,0.22), transparent 60%),
    var(--bg-cream);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 8px;
  background: rgba(254,250,240,0.7);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--forest);
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(232,128,58,0.18);
}
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 .accent {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 700;
}
.hero p.lede {
  font-size: 19px; line-height: 1.55; color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 540px;
  text-wrap: pretty;
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--forest); color: var(--bg-cream);
  box-shadow: 0 4px 0 rgba(9,82,109,0.5), 0 12px 30px rgba(17,135,169,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(9,82,109,0.5), 0 18px 40px rgba(17,135,169,0.3); }
.btn-secondary {
  background: var(--bg-cream); color: var(--ink);
  border: 1px solid var(--hairline);
}
.btn-secondary:hover { background: var(--bg-sand); }
.btn-tiny-meta {
  margin-left: 12px; font-size: 13px; color: var(--ink-faint); font-weight: 600;
}

.hero-trust {
  margin-top: 28px;
  display: flex; align-items: center; gap: 18px;
  font-size: 13px; color: var(--ink-soft);
}
.avatars { display: inline-flex; }
.avatars > div {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2.5px solid var(--bg-cream);
  margin-left: -8px; display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 800; font-size: 14px; color: var(--bg-cream);
}
.avatars > div:first-child { margin-left: 0; }

.hero-stars { color: var(--cream-pop); letter-spacing: -2px; font-size: 16px; margin-right: 4px; }

/* Hero phone preview */
.hero-phone {
  position: relative;
  justify-self: center;
  width: 380px; height: 760px;
  border-radius: 44px;
  background: var(--bg-cream);
  box-shadow: var(--shadow-deep), 0 0 0 8px #2d2a26, 0 0 0 9px rgba(45,42,38,0.15);
  overflow: hidden;
  transform: rotate(-2deg);
}
.hero-phone iframe,
.hero-phone .mock-screen,
.hero-phone img {
  width: 100%; height: 100%; border: 0;
  border-radius: 36px;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.hero-phone::after {
  content: '';
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px; border-radius: 999px;
  background: #2d2a26;
  z-index: 5;
}

.hero-floats {
  position: absolute; pointer-events: none;
}
.float-card {
  position: absolute;
  background: var(--bg-cream);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: var(--shadow-pop);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  border: 1px solid var(--hairline);
  animation: float-gentle 4s ease-in-out infinite;
}
.float-card .ic {
  width: 32px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card.heart-pop {
  top: 80px; right: -18px; transform: rotate(6deg);
  animation-delay: 0.4s;
}
.float-card.streak-pop {
  bottom: 110px; left: -32px; transform: rotate(-5deg);
  animation-delay: 1.1s;
}
.float-card .small { font-size: 11px; font-weight: 600; color: var(--ink-soft); display: block; }

@keyframes float-gentle {
  0%, 100% { transform: rotate(var(--rot, 0deg)) translateY(0); }
  50% { transform: rotate(var(--rot, 0deg)) translateY(-6px); }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-phone { width: 320px; height: 640px; transform: rotate(-2deg) scale(0.95); }
  .float-card.heart-pop { right: 0; }
  .float-card.streak-pop { left: 0; }
}

/* ============ BAND ============ */
.band {
  background: var(--bg-sand);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}
.band-inner {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
  justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 600;
  color: var(--ink-soft);
  font-size: 15px;
}
.band-inner .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); }

/* ============ SECTION ============ */
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }

.section-eyebrow {
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 700; color: var(--terracotta);
  margin-bottom: 12px;
}
.section h2 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.section .lede {
  font-size: 18px; line-height: 1.55; color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 48px;
  text-wrap: pretty;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .lede { margin-left: auto; margin-right: auto; }

/* ============ HOW IT WORKS (3 steps) ============ */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative;
}
.step {
  background: var(--bg-cream);
  border: 1px solid var(--hairline);
  border-radius: 28px;
  padding: 36px 28px 32px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.step .num {
  position: absolute; top: 24px; right: 24px;
  font-family: 'Fraunces', serif; font-weight: 700; font-style: italic;
  font-size: 36px; color: var(--ink-faint); opacity: 0.5;
  line-height: 1;
}
.step .ic {
  width: 56px; height: 56px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  background: var(--bg-sand);
}
.step h3 {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 22px; line-height: 1.2; margin: 0 0 10px;
}
.step p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin: 0; }
.step.s1 .ic { background: rgba(244,199,122,0.45); }
.step.s2 .ic { background: rgba(232,128,58,0.18); }
.step.s3 .ic { background: rgba(123,160,91,0.25); }

@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ============ FEATURE BLOCKS (alternating) ============ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 96px;
}
.feature:last-child { margin-bottom: 0; }
.feature.flip { direction: rtl; }
.feature.flip > * { direction: ltr; }

.feature-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px;
  background: var(--bg-sand);
  border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--forest);
  margin-bottom: 16px;
}
.feature-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }

.feature h3 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1; margin: 0 0 18px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.feature p {
  font-size: 17px; line-height: 1.6; color: var(--ink-soft);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.bullet-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.5; color: var(--ink);
}
.bullet-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--moss); color: var(--bg-cream);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.bullet-list .check svg { width: 12px; height: 12px; }

/* Phone mockup (smaller, for features) */
.phone-mock {
  position: relative; justify-self: center;
  width: 320px; height: 660px;
  border-radius: 40px;
  background: var(--bg-cream);
  box-shadow: var(--shadow-deep), 0 0 0 7px #2d2a26;
  overflow: hidden;
}
.phone-mock iframe,
.phone-mock .mock-screen,
.phone-mock img {
  width: 100%; height: 100%; border: 0; border-radius: 33px;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.phone-mock::after {
  content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 24px; border-radius: 999px; background: #2d2a26; z-index: 5;
}
.phone-mock.tilt-l { transform: rotate(-3deg); }
.phone-mock.tilt-r { transform: rotate(3deg); }

/* Browser mockup for parent portal */
.browser-mock {
  position: relative; justify-self: center;
  width: 100%; max-width: 640px;
  border-radius: 18px;
  background: var(--bg-cream);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.browser-bar {
  height: 38px; background: #efe8d9;
  display: flex; align-items: center; gap: 6px; padding: 0 14px;
  border-bottom: 1px solid var(--hairline);
}
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.browser-bar .url {
  margin-left: 14px; flex: 1; height: 22px;
  background: var(--bg-cream); border-radius: 8px;
  font-size: 11px; color: var(--ink-faint); display: flex; align-items: center;
  padding: 0 12px; max-width: 260px;
}
.browser-mock iframe,
.browser-mock .mock-portal,
.browser-mock img {
  width: 100%; height: 460px; border: 0; display: block;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; gap: 36px; margin-bottom: 64px; }
  .feature.flip { direction: ltr; }
  .phone-mock { width: 280px; height: 580px; }
}

/* ============ DUAL APP SECTION (kid + parent side by side) ============ */
.dual-bg {
  background:
    radial-gradient(800px 400px at 90% 20%, rgba(232,128,58,0.10), transparent 70%),
    radial-gradient(900px 500px at 10% 80%, rgba(25,158,188,0.10), transparent 70%),
    var(--bg-sand);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* ============ FEATURE GRID (small cards) ============ */
.fgrid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.fcard {
  background: var(--bg-cream);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); }
.fcard .ic {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--bg-sand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.fcard h4 {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 18px;
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.fcard p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin: 0; }

@media (max-width: 880px) { .fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .fgrid { grid-template-columns: 1fr; } }

/* ============ TESTIMONIALS ============ */
.quote-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.quote {
  background: var(--bg-cream);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 28px 26px;
  position: relative;
}
.quote .stars { color: var(--cream-pop); letter-spacing: -1px; font-size: 14px; margin-bottom: 12px; }
.quote blockquote {
  margin: 0 0 18px;
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 18px; line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
}
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .who .av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-sand);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700;
  color: var(--forest);
}
.quote .who .meta { font-size: 13px; }
.quote .who .name { font-weight: 700; color: var(--ink); }
.quote .who .sub { color: var(--ink-soft); }

@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } }

/* ============ SAFETY ============ */
.safety {
  background: var(--forest);
  color: var(--bg-cream);
  border-radius: 36px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.safety::before, .safety::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.safety::before {
  width: 380px; height: 380px;
  bottom: -180px; right: -120px;
  background: radial-gradient(circle, rgba(244,199,122,0.18), transparent 70%);
}
.safety::after {
  width: 240px; height: 240px;
  top: -100px; left: -80px;
  background: radial-gradient(circle, rgba(25,158,188,0.10), transparent 70%);
}
.safety-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  align-items: center; position: relative;
}
.safety h2 {
  color: var(--bg-cream);
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1;
  letter-spacing: -0.02em; margin: 0 0 18px;
}
.safety p { color: rgba(254,250,240,0.78); font-size: 16px; line-height: 1.6; margin: 0 0 8px; }
.pillars { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.pillars li {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start;
}
.pillars .ic {
  width: 44px; height: 44px; border-radius: 14px;
  background: rgba(254,250,240,0.12);
  display: flex; align-items: center; justify-content: center;
}
.pillars strong {
  display: block; font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 17px; margin-bottom: 2px;
}
.pillars span { color: rgba(254,250,240,0.7); font-size: 14px; line-height: 1.5; }

@media (max-width: 880px) {
  .safety { padding: 44px 28px; border-radius: 28px; }
  .safety-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ============ PRICING ============ */
.pricing {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 880px; margin: 0 auto;
}
.plan {
  background: var(--bg-cream);
  border: 1px solid var(--hairline);
  border-radius: 28px;
  padding: 36px 32px;
  position: relative;
}
.plan.featured {
  background: var(--bg-cream);
  border: 2px solid var(--terracotta);
  box-shadow: var(--shadow-pop);
}
.plan-tag {
  position: absolute; top: -12px; right: 24px;
  background: var(--terracotta); color: var(--bg-cream);
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
}
.plan h3 {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px;
  margin: 0 0 6px;
}
.plan .desc { color: var(--ink-soft); font-size: 14px; margin: 0 0 18px; }
.price {
  font-family: 'Fraunces', serif;
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 22px;
}
.price .num { font-weight: 800; font-size: 44px; letter-spacing: -0.02em; }
.price .per { font-size: 14px; color: var(--ink-soft); font-family: 'Quicksand'; font-weight: 600; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.plan ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink);
}
.plan ul .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--moss); color: var(--bg-cream);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.plan-cta {
  width: 100%; text-align: center; justify-content: center;
}

@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq {
  max-width: 800px; margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}
.faq details summary {
  list-style: none; cursor: pointer;
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 19px; letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after {
  content: '+';
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-sand); color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq details[open] summary::after {
  content: '−';
  background: var(--forest); color: var(--bg-cream);
}
.faq details p {
  color: var(--ink-soft); font-size: 15px; line-height: 1.6;
  margin: 14px 0 0;
  text-wrap: pretty;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--bg-cream);
  border-radius: 36px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(244,199,122,0.4), transparent 70%),
    radial-gradient(500px 300px at 10% 80%, rgba(25,158,188,0.25), transparent 70%),
    var(--bg-cream);
}
.final-cta h2 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(34px, 4vw, 56px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 0 0 18px;
  text-wrap: balance;
}
.final-cta p {
  font-size: 18px; color: var(--ink-soft); max-width: 560px;
  margin: 0 auto 32px; line-height: 1.5;
}

/* ============ FOOTER ============ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--hairline);
  margin-top: 64px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer .brand-blurb { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin-top: 14px; max-width: 320px; }
.footer h5 {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-soft);
  margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--ink); font-size: 14px; font-weight: 500; }
.footer ul a:hover { color: var(--terracotta); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--ink-faint); flex-wrap: wrap; gap: 12px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
