/* =========================================================
   ANOHA Well Delivery Services — Site Styles
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --navy-950: #050f1f;
  --navy-900: #07172e;
  --navy-800: #0b1f3a;
  --navy-700: #102a4c;
  --navy-600: #163763;
  --blue-500: #1d5193;
  --blue-400: #2f6fb3;
  --blue-300: #5b96d6;
  --steel-300: #9fb3cc;
  --steel-200: #c3d2e4;
  --amber: #e8a13a;
  --amber-soft: #f3c27d;
  --white: #ffffff;
  --ink: #0c1626;

  --bg: #f6f8fb;
  --surface: #ffffff;
  --line: rgba(16, 42, 76, 0.10);

  --text: #14253c;
  --text-soft: #4a5d76;
  --text-invert: #eaf1fa;

  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --container: 1340px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 18px rgba(8, 23, 46, 0.08);
  --shadow-md: 0 18px 48px rgba(8, 23, 46, 0.16);
  --shadow-lg: 0 30px 80px rgba(8, 23, 46, 0.28);

  --grad-navy: linear-gradient(135deg, #0b1f3a 0%, #102a4c 45%, #163763 100%);
  --grad-blue: linear-gradient(120deg, #1d5193 0%, #2f6fb3 100%);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 92px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; margin: 0; color: var(--ink); letter-spacing: -0.01em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--dark { background: var(--grad-navy); color: var(--text-invert); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

/* photo background utilities */
.bg-cover { background-size: cover; background-position: center; background-repeat: no-repeat; }
.parallax { background-attachment: fixed; }
/* dark section backed by a photo: image sits under a translucent navy overlay */
.section--photo { position: relative; background: var(--navy-900); isolation: isolate; }
.section--photo .photo-layer {
  position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; background-repeat: no-repeat;
}
.section--photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(118deg, rgba(6,17,33,0.92) 0%, rgba(9,24,46,0.86) 50%, rgba(16,42,76,0.78) 100%);
}
@media (min-width: 761px) { .section--photo .photo-layer.parallax { background-attachment: fixed; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-400);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); border-radius: 2px; }
.section--dark .eyebrow { color: var(--amber-soft); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0 14px; }
.section-head p { color: var(--text-soft); font-size: 1.08rem; margin: 0; }
.section--dark .section-head p { color: var(--steel-200); }

.lead { font-size: 1.18rem; color: var(--text-soft); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--grad-blue);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.96rem;
  padding: 14px 28px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--b); color: #fff;
  box-shadow: 0 12px 28px rgba(29, 81, 147, 0.35);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(29, 81, 147, 0.45); }
.btn:hover svg { transform: translateX(4px); }
.btn--ghost {
  background: transparent; color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.7); }
.btn--dark { background: var(--grad-navy); box-shadow: 0 12px 28px rgba(11,31,58,.3); }
.btn--amber { background: linear-gradient(120deg, #e8a13a, #f3c27d); color: #2a1c05; box-shadow: 0 12px 28px rgba(232,161,58,.4); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), height .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.scrolled {
  height: 74px;
  background: rgba(7, 23, 46, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 30px rgba(5, 15, 31, 0.35);
}
.brand { display: flex; align-items: center; gap: 12px; z-index: 2; }
.brand { flex: 0 0 auto; }
.brand img { height: 58px; width: auto; max-width: none; transition: height .4s var(--ease); filter: drop-shadow(0 2px 8px rgba(0,0,0,.25)); }
.scrolled .brand img { height: 52px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  color: rgba(255,255,255,0.85); padding: 10px 16px; border-radius: 999px;
  position: relative; transition: color .25s;
}
.nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px;
  background: var(--amber); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.header-cta { margin-left: 12px; padding: 11px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; z-index: 1100; padding: 0;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px auto; border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (shared base) ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; padding-top: var(--header-h);
  background: var(--navy-900);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(47,111,179,0.40), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(232,161,58,0.16), transparent 55%),
    linear-gradient(118deg, rgba(6,17,33,0.93) 0%, rgba(10,28,52,0.82) 46%, rgba(16,42,76,0.66) 100%);
}
/* moving sheen lines echoing the logo arcs */
.hero__bg::after {
  content: ""; position: absolute; inset: -20%;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 90px);
  opacity: .6; animation: drift 26s linear infinite;
}
@keyframes drift { to { transform: translateX(90px); } }

.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 6.2vw, 4.7rem); font-weight: 700; letter-spacing: -0.02em;
  margin: 22px 0 22px;
}
.hero h1 .accent { color: var(--amber-soft); }
.hero p { font-size: clamp(1.05rem, 2vw, 1.32rem); color: var(--steel-200); max-width: 640px; margin: 0 0 38px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: var(--font-head);
}
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.45); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: wheel 1.8s var(--ease) infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* page hero (inner pages) */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 90px) 0 90px; color: #fff; overflow: hidden;
  background: var(--navy-900);
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.page-hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 85% -20%, rgba(47,111,179,0.42), transparent 60%),
    linear-gradient(118deg, rgba(6,17,33,0.92) 0%, rgba(10,28,52,0.82) 50%, rgba(16,42,76,0.70) 100%);
}
.page-hero__bg::after {
  content: ""; position: absolute; inset: -20%;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 90px);
  opacity: .6; animation: drift 26s linear infinite;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.6rem); margin: 16px 0 14px; }
.page-hero p { color: var(--steel-200); font-size: 1.15rem; max-width: 620px; margin: 0; }
.crumbs { font-size: 0.85rem; color: var(--steel-300); font-family: var(--font-head); letter-spacing: .04em; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--amber-soft); }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); color: #fff; line-height: 1; }
.stat .num .suffix { color: var(--amber-soft); }
.stat .label { margin-top: 10px; color: var(--steel-200); font-size: 0.95rem; letter-spacing: .02em; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--grad-blue); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(29,81,147,.12), rgba(47,111,179,.12));
  color: var(--blue-500); margin-bottom: 20px;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); margin: 0; font-size: 1rem; }
.card .tag { font-family: var(--font-head); font-size: .8rem; font-weight: 700; color: var(--blue-300); letter-spacing: .1em; }

/* numbered service card variant */
.card--num .index {
  position: absolute; right: 22px; top: 14px; font-family: var(--font-head); font-weight: 700;
  font-size: 3.4rem; color: rgba(16,42,76,0.06); line-height: 1;
}

/* feature list with check */
.feature-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--text-soft); }
.feature-list li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--blue-400); margin-top: 3px; }
.section--dark .feature-list li { color: var(--steel-200); }
.section--dark .feature-list li svg { color: var(--amber-soft); }

/* ---------- Split / media ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.split__media { position: relative; }
.media-frame {
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; background: var(--grad-navy); position: relative;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-badge {
  position: absolute; left: -22px; bottom: -22px;
  background: var(--surface); border-radius: 16px; padding: 20px 24px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 16px; border: 1px solid var(--line);
}
.media-badge .big { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: var(--blue-500); line-height: 1; }
.media-badge small { color: var(--text-soft); font-size: .82rem; }

/* decorative arc (logo motif) */
.arc-deco { position: absolute; pointer-events: none; opacity: .5; }

/* ---------- Values pills ---------- */
.values { display: flex; flex-wrap: wrap; gap: 14px; }
/* default: light-section styling (navy text on white) */
.value-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 14px 22px; border-radius: 999px; font-family: var(--font-head); font-weight: 600;
  color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), background .3s, border-color .3s, color .3s, box-shadow .3s;
}
.value-pill svg { width: 18px; height: 18px; color: var(--blue-500); transition: color .3s; }
.value-pill:hover { transform: translateY(-4px); background: var(--grad-navy); border-color: transparent; color: #fff; box-shadow: var(--shadow-md); }
.value-pill:hover svg { color: var(--amber-soft); }
/* on dark sections: keep the translucent white-on-dark treatment */
.section--dark .value-pill { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); color: #fff; box-shadow: none; }
.section--dark .value-pill svg { color: var(--amber-soft); }
.section--dark .value-pill:hover { background: rgba(232,161,58,0.16); border-color: var(--amber); color: #fff; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; background: var(--grad-blue); }
.cta-band__bg::after { content: ""; position: absolute; inset: -20%; background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 80px); animation: drift 22s linear infinite; }
.cta-band .container { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--steel-200); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.site-footer img.flogo { height: 66px; margin-bottom: 18px; }
.site-footer p { font-size: .95rem; line-height: 1.7; color: var(--steel-300); }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: var(--steel-200); transition: color .25s, padding-left .25s; font-size: .95rem; }
.footer-links a:hover { color: var(--amber-soft); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--blue-300); flex: 0 0 auto; margin-top: 4px; }
.footer-bottom {
  margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .85rem; color: var(--steel-300);
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-cards { display: grid; gap: 18px; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 24px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .ci { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-blue); color: #fff; flex: 0 0 auto; }
.contact-card .ci svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: 1.05rem; margin: 0 0 4px; color: var(--ink); }
.contact-card a, .contact-card p { color: var(--text-soft); margin: 0; font-size: .98rem; word-break: break-word; }
.contact-card a:hover { color: var(--blue-500); }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-md); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .88rem; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1.5px solid var(--line);
  font: inherit; font-size: .98rem; color: var(--text); background: #fbfcfe; transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 4px rgba(47,111,179,0.14); }
.form-note { font-size: .85rem; color: var(--text-soft); margin-top: 4px; }
.form-success { display: none; background: rgba(33,150,83,0.1); border: 1px solid rgba(33,150,83,0.35); color: #1c7a44; padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-size: .95rem; }
.form-success.show { display: block; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); filter: grayscale(.2) contrast(1.05); }
.map-embed iframe { display: block; width: 100%; height: 340px; border: 0; }

/* ---------- Logo carousel / process ---------- */
.process { counter-reset: step; display: grid; gap: 0; }
.process-step { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); position: relative; }
.process-step:last-child { border-bottom: 0; }
.process-step .step-num {
  counter-increment: step; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  background: var(--grad-navy); color: #fff; box-shadow: var(--shadow-sm);
}
.process-step .step-num::before { content: "0" counter(step); }
.process-step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.process-step p { color: var(--text-soft); margin: 0; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
  .hero__bg::after, .cta-band__bg::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 76px 0; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 6px;
    background: rgba(7,23,46,0.97); backdrop-filter: blur(16px);
    padding: calc(var(--header-h) + 16px) 24px 40px; transform: translateX(105%);
    transition: transform .42s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.4);
  }
  .nav.open { transform: none; }
  .nav a { padding: 14px 14px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav a::after { display: none; }
  .header-cta { margin: 14px 0 0; justify-content: center; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form .row { grid-template-columns: 1fr; }
  .media-badge { left: 12px; bottom: -16px; padding: 16px 18px; }
  .site-header.scrolled { background: rgba(7,23,46,0.92); }
  /* keep header readable on inner pages even before scroll on mobile */
}
