/* ============================================================
   INFINITY WELLBEING AND COACHING — style.css (v2 — PDF match)
   Design System v1.0
   Breakpoints: Mobile < 768px | Tablet 768–1199px | Desktop 1200px+
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --teal:       #2a7f8f;
  --teal-dark:  #1e5f6e;
  --teal-deep:  #163f4a;
  --navy:       #1c3645;
  --amber:      #e8a020;
  --amber-lt:   #f5b840;
  --off-white:  #f7f5f2;
  --white:      #ffffff;
  --text:       #1e2d35;
  --text-mid:   #4a5f6a;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --page-pad:   60px;
  --nav-h:      66px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--off-white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ── SHARED BUTTONS ─────────────────────────────────────────── */
.btn-amber, .btn-teal, .btn-white, .btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap; min-height: 48px;
}
.btn-amber  { background: var(--amber);  color: var(--navy);      border-color: var(--amber);  }
.btn-amber:hover  { background: var(--amber-lt); border-color: var(--amber-lt); transform: translateY(-1px); }
.btn-teal   { background: var(--teal);   color: var(--white);     border-color: var(--teal);   }
.btn-teal:hover   { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); }
.btn-white  { background: var(--white);  color: var(--teal-dark); border-color: var(--white);  }
.btn-white:hover  { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-amber svg, .btn-teal svg, .btn-white svg, .btn-outline svg { width: 14px; height: 14px; flex-shrink: 0; }

.eyebrow {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 12px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(247,245,242,0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42,127,143,0.13);
  padding: 0 var(--page-pad); height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}

.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.nav-logo-mark {
  width: 40px; height: 40px; background: var(--off-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-mark svg { width: 24px; height: 15px; }
.nav-brand-name { font-family: var(--serif); font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.25; }

.nav-links { display: flex; align-items: center; gap: 6px; }

/* Nav items */
.nav-item { position: relative; }

.nav-item > a,
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  font-size: 13.5px; font-weight: 400; color: var(--text-mid);
  text-decoration: none; transition: color 0.2s;
  padding: 8px 12px; border-radius: 5px;
  min-height: 44px;
}

.nav-item > a:hover,
.nav-links > li > a:hover { color: var(--teal); background: rgba(42,127,143,0.05); }

.nav-link-dropdown { cursor: pointer; }

.nav-chevron {
  width: 14px; height: 14px; transition: transform 0.2s; flex-shrink: 0;
}

.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white);
  border: 1px solid rgba(42,127,143,0.15); border-radius: 8px;
  box-shadow: 0 8px 28px rgba(28,54,69,0.12);
  padding: 6px; min-width: 220px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 50;
}

.nav-item:hover .nav-dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  font-size: 13px; color: var(--text-mid); text-decoration: none;
  padding: 9px 14px; border-radius: 5px;
  transition: background 0.15s, color 0.15s;
  min-height: 40px; display: flex; align-items: center;
}

.nav-dropdown li a:hover { background: rgba(42,127,143,0.07); color: var(--teal); }

/* CTA */
.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--amber) !important; color: var(--navy) !important;
  padding: 9px 18px; border-radius: 5px;
  font-weight: 600 !important; font-size: 13.5px;
  min-height: 40px; margin-left: 8px;
  transition: background 0.2s !important;
  text-decoration: none;
}
.nav-cta:hover { background: var(--amber-lt) !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; width: 44px; height: 44px;
  border-radius: 6px; transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(42,127,143,0.08); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw); background: var(--navy); z-index: 300;
  padding: 20px 24px 32px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  align-self: flex-end; background: rgba(255,255,255,0.08); border: none; border-radius: 8px;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,0.7); transition: background 0.2s; margin-bottom: 24px; flex-shrink: 0;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.14); color: white; }

/* Mobile nav groups */
.mobile-nav-group-label {
  display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber);
  padding: 12px 0 6px; border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 4px;
}

.mobile-menu nav > ul > li:first-child .mobile-nav-group-label { border-top: none; margin-top: 0; }

.mobile-nav-sub { padding-bottom: 6px; }
.mobile-nav-sub li a {
  display: flex; align-items: center;
  font-size: 15px; color: rgba(255,255,255,0.7); text-decoration: none;
  padding: 10px 12px; border-radius: 6px; min-height: 44px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-sub li a:hover { background: rgba(255,255,255,0.06); color: white; }

.mobile-nav-single {
  display: flex; align-items: center;
  font-size: 15px; color: rgba(255,255,255,0.7); text-decoration: none;
  padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.07);
  min-height: 48px; transition: color 0.2s; margin-top: 4px;
}
.mobile-nav-single:hover { color: white; }

.mobile-menu-cta {
  display: flex; align-items: center; justify-content: center;
  background: var(--amber); color: var(--navy);
  font-size: 15px; font-weight: 700;
  padding: 16px 24px; border-radius: 8px;
  text-decoration: none; text-align: center; min-height: 54px;
  transition: background 0.2s; margin-top: 24px; margin-bottom: 12px;
}
.mobile-menu-cta:hover { background: var(--amber-lt); }

.mobile-menu-phone {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none;
  min-height: 40px; transition: color 0.2s;
}
.mobile-menu-phone:hover { color: rgba(255,255,255,0.75); }

.mobile-menu-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 290; opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(400px - var(--nav-h)); }

.hero-left {
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px 72px 60px;
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(42,127,143,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 10%, rgba(232,160,32,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-left::after {
  content: ''; position: absolute; top: 0; right: -48px; bottom: 0; width: 96px;
  background: var(--navy); clip-path: polygon(0 0, 0 100%, 100% 100%); z-index: 2;
}

.hero-eyebrow { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; position: relative; z-index: 1; opacity: 0; animation: fadeUp 0.6s 0.15s ease forwards; }
.hero-h1 { font-family: var(--serif); font-size: clamp(36px, 4vw, 54px); font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 22px; position: relative; z-index: 1; opacity: 0; animation: fadeUp 0.6s 0.3s ease forwards; }
.hero-h1 em { font-style: italic; color: var(--amber-lt); }
.hero-body { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.68); max-width: 390px; margin-bottom: 38px; position: relative; z-index: 1; opacity: 0; animation: fadeUp 0.6s 0.45s ease forwards; }
.hero-actions { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; opacity: 0; animation: fadeUp 0.6s 0.6s ease forwards; }
.hero-note { font-size: 11.5px; color: rgba(255,255,255,0.38); letter-spacing: 0.03em; }

.hero-right { display: grid; grid-template-rows: 1fr 1fr; position: relative; overflow: hidden; }

.audience-tile { position: relative; overflow: hidden; cursor: pointer; display: block; text-decoration: none; opacity: 0; animation: fadeIn 0.9s ease forwards; }
.audience-tile:nth-child(1) { animation-delay: 0.7s; }
.audience-tile:nth-child(3) { animation-delay: 0.9s; }
.audience-tile img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(0.9); transition: filter 0.5s ease, transform 0.6s ease; display: block; }
.audience-tile:hover img { filter: brightness(0.42) saturate(1); transform: scale(1.04); }
.tile-tint { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,54,69,0.85) 0%, rgba(28,54,69,0.1) 55%); }
.tile-content { position: absolute; bottom: 28px; left: 36px; right: 36px; }
.tile-badge { display: inline-block; background: var(--amber); color: var(--navy); font-size: 9.5px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; margin-bottom: 10px; }
.tile-h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.tile-p { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.5; margin-bottom: 14px; max-width: 300px; }
.tile-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 500; color: var(--amber-lt); letter-spacing: 0.05em; transition: gap 0.2s; }
.audience-tile:hover .tile-link { gap: 10px; }
.tile-link svg { width: 13px; height: 13px; }
.tile-divider { position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(255,255,255,0.12); z-index: 5; pointer-events: none; }

/* Mobile hero link (shown via JS on mobile) */
.hero-mobile-link {
  display: none; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy); color: var(--amber-lt);
  font-size: 13px; font-weight: 500;
  padding: 14px var(--page-pad); text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.08); min-height: 48px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--teal); padding: 20px var(--page-pad); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.9); font-size: 13px; }
.trust-item svg { width: 17px; height: 17px; flex-shrink: 0; }
.trust-sep { width: 1px; height: 22px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ============================================================
   NATALIE SECTION — image LEFT in this version
   ============================================================ */
.natalie-section {
  padding: 96px var(--page-pad);
  display: grid; grid-template-columns: 5fr 6fr; gap: 64px;
  align-items: center; background: var(--white);
}

.natalie-visual { position: relative; }
.natalie-img-frame { border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; max-width: 400px; box-shadow: 0 24px 60px rgba(28,54,69,0.14); }
.natalie-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.natalie-stat { position: absolute; bottom: -16px; right: 16px; background: var(--navy); border-radius: 10px; padding: 18px 22px; min-width: 170px; box-shadow: 0 10px 32px rgba(28,54,69,0.28); }
.stat-num { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--amber-lt); line-height: 1; display: block; }
.stat-plus { font-size: 24px; }
.stat-label { font-size: 11.5px; color: rgba(255,255,255,0.65); line-height: 1.4; margin-top: 4px; }

.natalie-text h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 38px); font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 18px; }
.natalie-text p { font-size: 14.5px; line-height: 1.78; color: var(--text-mid); margin-bottom: 14px; }
.creds { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0 30px; }
.cred { background: rgba(42,127,143,0.07); color: var(--teal-dark); font-size: 11.5px; font-weight: 500; padding: 5px 11px; border-radius: 100px; border: 1px solid rgba(42,127,143,0.2); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--navy); padding: 80px var(--page-pad); position: relative; overflow: hidden; }
.testimonials::before { content: '\201C'; position: absolute; top: -30px; left: 36px; font-family: var(--serif); font-size: 260px; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; user-select: none; }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow { color: var(--amber); }
.section-head h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: var(--white); line-height: 1.25; }

.t-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.t-card { background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 30px 26px; transition: background 0.2s; }
.t-card:hover { background: rgba(255,255,255,0.085); }
.t-card.highlight { background: var(--teal); border-color: var(--teal); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 13px; height: 13px; fill: var(--amber); stroke: none; }
.t-quote { font-family: var(--serif); font-size: 14.5px; font-style: italic; line-height: 1.65; color: rgba(255,255,255,0.92); margin-bottom: 18px; }
.t-who { font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-lt); }
.t-service { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 96px var(--page-pad); background: var(--off-white); }
.services-head { text-align: center; margin-bottom: 56px; }
.services-head h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: var(--navy); }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; border-radius: 14px; overflow: hidden; box-shadow: 0 16px 56px rgba(28,54,69,0.11); }
.service-col { background: var(--white); padding: 52px 46px; }
.service-col:first-child { border-right: 1px solid rgba(42,127,143,0.1); }
.service-col .eyebrow { color: var(--amber); }
.service-col h3 { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.service-col > p { font-size: 14px; line-height: 1.72; color: var(--text-mid); margin-bottom: 26px; }
.service-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 34px; }
.service-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text); line-height: 1.45; }
.service-list li::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--teal); padding: 68px var(--page-pad); display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(24px, 2.8vw, 34px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 10px; }
.cta-band p { font-size: 14.5px; color: rgba(255,255,255,0.75); max-width: 500px; }
.cta-side { flex-shrink: 0; }

/* ============================================================
   FOOTER — PDF version (brand+address+creds left, 3 nav cols right)
   ============================================================ */
footer { background: var(--navy); }
.footer-teal-rule { height: 3px; background: var(--teal); }

.footer-main {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; padding: 52px var(--page-pad) 48px;
}

/* Brand column */
.footer-brand-col {}

.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-mark { width: 36px; height: 36px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.1); }
.footer-logo-mark svg { width: 20px; height: 13px; }
.footer-brand-name { font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.3; }

.footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-bottom: 20px; max-width: 360px; }

/* NAP */
.footer-nap { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer-nap-item { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; color: rgba(255,255,255,0.5); text-decoration: none; line-height: 1.5; transition: color 0.2s; min-height: 36px; }
.footer-nap-item:hover { color: rgba(255,255,255,0.85); }
.footer-nap-item svg { width: 14px; height: 14px; stroke: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* Credential pills */
.footer-creds { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-cred {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 100px;
}

/* Nav columns */
.footer-nav-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; padding-top: 4px; }
.footer-col h4 { font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-col ul { display: flex; flex-direction: column; gap: 2px; }
.footer-col a { font-size: 12.5px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; min-height: 36px; }
.footer-col a:hover { color: rgba(255,255,255,0.88); }

/* Bottom bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px var(--page-pad) 24px; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ============================================================
   RESPONSIVE — TABLET (768–1199px)
   ============================================================ */
@media (max-width: 1199px) {
  :root { --page-pad: 40px; --nav-h: 62px; }

  .nav-brand-name { font-size: 13px; }

  /* Reduce dropdown gap */
  .nav-links { gap: 2px; }
  .nav-item > a, .nav-links > li > a { padding: 8px 10px; font-size: 13px; }

  .hero { grid-template-columns: 1fr 1fr; min-height: auto; }
  .hero-left { padding: 56px 48px 56px 40px; }
  .hero-left::after { right: -36px; width: 72px; }

  .natalie-section { grid-template-columns: 1fr 1fr; gap: 48px; padding: 72px var(--page-pad); }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --page-pad: 20px; --nav-h: 58px; }

  /* ── NAV ────────────────────────────────────── */
  #main-nav { padding: 0 var(--page-pad); }
  .nav-brand-name { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* ── HERO ───────────────────────────────────── */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px var(--page-pad) 40px; order: 1; }
  .hero-left::after { display: none; }
  .hero-body { font-size: 14.5px; max-width: 100%; }
  .hero-actions .btn-amber { width: 100%; justify-content: center; }

  .hero-right { order: 2; grid-template-rows: auto; height: 260px; }
  .audience-tile:nth-child(3) { display: none; }
  .tile-divider { display: none; }
  .tile-h3 { font-size: 20px; }
  .tile-p { display: none; }
  .tile-content { bottom: 20px; left: 20px; right: 20px; }

  .hero-mobile-link { display: flex; }

  /* ── TRUST BAR ──────────────────────────────── */
  .trust-bar { padding: 20px var(--page-pad); justify-content: center; gap: 10px; }
  .trust-sep { display: none; }
  .trust-item { font-size: 12px; width: 100%; justify-content: center; padding: 3px 0; }

  /* ── NATALIE ────────────────────────────────── */
  .natalie-section { grid-template-columns: 1fr; padding: 56px var(--page-pad); gap: 40px; }
  .natalie-img-frame { max-width: 280px; margin: 0 auto; aspect-ratio: 3/4; }
  .natalie-stat { position: relative; bottom: auto; right: auto; margin: 16px auto 0; max-width: 200px; text-align: center; }
  .natalie-text h2 { font-size: clamp(26px, 7vw, 32px); }

  /* ── TESTIMONIALS ───────────────────────────── */
  .testimonials { padding: 56px var(--page-pad); }
  .testimonials::before { font-size: 140px; }
  .t-grid { grid-template-columns: 1fr; gap: 16px; }
  .t-quote { font-size: 14px; }

  /* ── SERVICES ───────────────────────────────── */
  .services { padding: 56px var(--page-pad); }
  .services-grid { grid-template-columns: 1fr; border-radius: 10px; gap: 16px; background: transparent; box-shadow: none; }
  .service-col { border-radius: 10px; padding: 32px 24px; border-right: none !important; box-shadow: 0 4px 20px rgba(28,54,69,0.08); }
  .service-col .btn-teal, .service-col .btn-amber { width: 100%; justify-content: center; }

  /* ── CTA BAND ───────────────────────────────── */
  .cta-band { grid-template-columns: 1fr; padding: 52px var(--page-pad); gap: 24px; text-align: center; }
  .cta-band p { max-width: 100%; }
  .cta-side { display: flex; justify-content: center; }
  .cta-side .btn-white { width: 100%; justify-content: center; max-width: 320px; }

  /* ── FOOTER ─────────────────────────────────── */
  .footer-main { padding: 44px var(--page-pad) 36px; gap: 32px; }
  .footer-tagline { max-width: 100%; }
  .footer-nav-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-creds { gap: 5px; }
  .footer-bottom { padding: 16px var(--page-pad) 24px; }
}

/* ── TINY SCREENS ───────────────────────────────────────────── */
@media (max-width: 389px) {
  .hero-h1 { font-size: 30px; }
  .tile-badge { font-size: 8.5px; }
}
