/* ============================================================
   INFINITY WELLBEING AND COACHING — style.css
   Infinity Warriors page
   Shared design system + page-specific styles
   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;
  --section-v:  96px;
}

/* ── 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, ol { 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; } }

/* ── 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; }
.eyebrow-light { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 10px; }
.required { color: var(--teal); font-weight: 700; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 13px; height: 13px; fill: var(--amber); stroke: none; }

/* ============================================================
   NAVIGATION — shared
   ============================================================ */
#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-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-active { color: var(--teal) !important; font-weight: 500 !important; }
.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); }
.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: flex; align-items: center; 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; }
.nav-dropdown li a:hover, .nav-dropdown li a[aria-current="page"] { background: rgba(42,127,143,0.07); color: var(--teal); }
.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; }
.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 { 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-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 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; }

/* ── CTA BAND — shared ──────────────────────────────────────── */
.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 — shared ────────────────────────────────────────── */
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; }
.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; }
.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; }
.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; }
.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); }
.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); }

/* ============================================================
   PAGE: INFINITY WARRIORS — HERO
   ============================================================ */
.iw-hero {
  background: var(--white);
  padding: 72px var(--page-pad) 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.iw-hero-eyebrow {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 16px; display: block;
  opacity: 0; animation: fadeUp 0.6s 0.1s ease forwards;
}

.iw-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700; line-height: 1.12;
  color: var(--navy); margin-bottom: 18px;
  opacity: 0; animation: fadeUp 0.6s 0.25s ease forwards;
}

.iw-hero-body {
  font-size: 15px; line-height: 1.75; color: var(--text-mid);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.6s 0.4s ease forwards;
}

.iw-hero-actions {
  opacity: 0; animation: fadeUp 0.6s 0.5s ease forwards;
}

/* Hero mosaic — 1 tall + 3 stacked */
.iw-hero-images {
  opacity: 0; animation: fadeIn 0.9s 0.55s ease forwards;
}

.iw-hero-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 10px;
  height: 480px;
}

.iw-mosaic-main { border-radius: 14px; overflow: hidden; }
.iw-mosaic-main img { width: 100%; height: 100%; object-fit: cover; }

.iw-mosaic-stack { display: grid; grid-template-rows: 1fr 1fr 1fr; gap: 10px; }
.iw-mosaic-sm { border-radius: 8px; overflow: hidden; }
.iw-mosaic-sm img { width: 100%; height: 100%; object-fit: cover; }
.iw-mosaic-sm:first-child { border-radius: 8px 14px 8px 8px; }
.iw-mosaic-sm:last-child  { border-radius: 8px 8px 14px 8px; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.iw-testimonials { background: var(--navy); padding: 60px var(--page-pad); position: relative; overflow: hidden; }
.iw-testimonials::before { content: '\201C'; position: absolute; top: -30px; left: 36px; font-family: var(--serif); font-size: 220px; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; user-select: none; }
.iw-t-head { text-align: center; margin-bottom: 36px; }
.iw-t-head h2 { font-family: var(--serif); font-size: clamp(22px, 2.8vw, 30px); font-weight: 700; color: var(--white); }
.iw-t-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.iw-t-card { background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 24px 20px; transition: background 0.2s; }
.iw-t-card:hover { background: rgba(255,255,255,0.085); }
.iw-t-card--highlight { background: var(--teal); border-color: var(--teal); }
.iw-t-quote { font-family: var(--serif); font-size: 13px; font-style: italic; line-height: 1.65; color: rgba(255,255,255,0.92); margin-bottom: 12px; }
.iw-t-who { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-lt); }

/* ── TARGETED SECTION ─────────────────────────────────────── */
.iw-targeted {
  background: var(--off-white);
  padding: 72px var(--page-pad);
  text-align: center;
}
.iw-targeted-inner { max-width: 720px; margin: 0 auto; }
.iw-targeted-inner h2 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; color: var(--navy); margin-bottom: 18px; }
.iw-targeted-inner p { font-size: 15px; line-height: 1.78; color: var(--text-mid); margin-bottom: 14px; }

/* ── SHARED SPLIT ─────────────────────────────────────────── */
.iw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: var(--section-v) var(--page-pad);
}

.iw-confidence { background: var(--white); }
.iw-mindset    { background: var(--off-white); }
.iw-programme  { background: var(--white); align-items: start; }
.iw-trust      { background: var(--off-white); }

.iw-split-reverse { direction: rtl; }
.iw-split-reverse > * { direction: ltr; }

.iw-split-text h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; line-height: 1.2;
  color: var(--navy); margin-bottom: 18px;
}
.iw-split-text p { font-size: 15px; line-height: 1.78; color: var(--text-mid); margin-bottom: 14px; }
.iw-split-text p:last-of-type { margin-bottom: 0; }

.iw-split-image img {
  width: 100%; border-radius: 12px;
  object-fit: cover; aspect-ratio: 4/3;
  box-shadow: 0 12px 40px rgba(28,54,69,0.12);
}

/* Programme image — circular */
.iw-programme-image img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  max-width: 360px;
  margin: 0 auto;
  object-position: top;
}

/* Programme bullet list */
.iw-programme-list {
  display: flex; flex-direction: column; gap: 10px;
  margin: 18px 0 20px;
}
.iw-programme-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--text);
  font-weight: 500;
}
.iw-programme-list li svg { width: 16px; height: 16px; stroke: var(--teal); flex-shrink: 0; }
.iw-programme-close { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px !important; font-style: italic; }

/* Trust checklist */
.iw-trust-list {
  display: flex; flex-direction: column; gap: 10px;
}
.iw-trust-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--text); line-height: 1.4;
  padding: 10px 14px;
  background: var(--white); border-radius: 8px;
  border: 1px solid rgba(42,127,143,0.1);
  transition: box-shadow 0.2s;
}
.iw-trust-list li:hover { box-shadow: 0 4px 14px rgba(28,54,69,0.08); }
.iw-trust-badge {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.iw-trust-badge svg { width: 12px; height: 12px; stroke: var(--white); }

/* ── MOVEMENT BAND ────────────────────────────────────────── */
.iw-movement {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--navy) 60%);
  padding: 72px var(--page-pad);
  text-align: center;
  position: relative; overflow: hidden;
}
.iw-movement::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(42,127,143,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.iw-movement-inner { max-width: 740px; margin: 0 auto; position: relative; z-index: 1; }
.iw-movement-inner h2 { font-family: var(--serif); font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 22px; }
.iw-movement-inner p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.72); margin-bottom: 14px; }
.iw-movement-inner p:last-child { margin-bottom: 0; }

/* ── COMMUNITY ────────────────────────────────────────────── */
.iw-community {
  background: var(--white);
  padding: var(--section-v) var(--page-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.iw-community-col h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
.iw-community-col p { font-size: 15px; line-height: 1.78; color: var(--text-mid); margin-bottom: 14px; }
.iw-community-col p:last-of-type { margin-bottom: 24px; }
.iw-community-col:last-child p:last-of-type { margin-bottom: 28px; }

/* ── ENQUIRY FORM ─────────────────────────────────────────── */
.iw-enquire {
  background: var(--off-white);
  padding: var(--section-v) var(--page-pad);
}
.iw-enquire-inner { max-width: 760px; margin: 0 auto; }
.iw-enquire-inner h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.iw-enquire-desc { font-size: 14.5px; color: var(--text-mid); line-height: 1.65; margin-bottom: 32px; }
.iw-form { display: flex; flex-direction: column; gap: 16px; }
.iw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.iw-form-group { display: flex; flex-direction: column; gap: 6px; }
.iw-form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.iw-form-group input {
  font-family: var(--sans); font-size: 14px; color: var(--text);
  background: var(--white);
  border: 1.5px solid rgba(42,127,143,0.2); border-radius: 6px;
  padding: 12px 16px; min-height: 48px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.iw-form-group input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,127,143,0.1); }
.iw-form-submit-wrap { display: flex; justify-content: center; margin-top: 8px; }
.iw-form-submit { min-width: 200px; justify-content: center; }

/* ============================================================
   RESPONSIVE — TABLET (768–1199px)
   ============================================================ */
@media (max-width: 1199px) {
  :root { --page-pad: 40px; --nav-h: 62px; --section-v: 72px; }
  .nav-brand-name { font-size: 13px; }
  .nav-links { gap: 2px; }
  .nav-item > a, .nav-links > li > a { padding: 8px 10px; font-size: 13px; }
  .iw-hero { gap: 44px; }
  .iw-hero-mosaic { height: 400px; }
  .iw-t-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .iw-split { gap: 48px; }
  .iw-trust-list li { font-size: 13.5px; }
  .iw-community { gap: 48px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr 1fr; }
  .footer-tagline { max-width: 100%; }
}

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

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

  /* Hero */
  .iw-hero { grid-template-columns: 1fr; gap: 28px; padding: 44px var(--page-pad) 36px; }
  .iw-hero-images { order: -1; }
  .iw-hero-mosaic { height: 220px; grid-template-columns: 1fr 1fr; }
  .iw-mosaic-stack { grid-template-rows: 1fr; grid-template-columns: 1fr 1fr; gap: 8px; }
  .iw-mosaic-sm:nth-child(2) { display: none; }
  .iw-mosaic-sm:first-child, .iw-mosaic-sm:last-child { border-radius: 8px; }
  .iw-hero-actions .btn-amber { width: 100%; justify-content: center; }

  /* Testimonials */
  .iw-testimonials { padding: 44px var(--page-pad); }
  .iw-t-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Targeted */
  .iw-targeted { padding: 52px var(--page-pad); text-align: left; }

  /* Splits */
  .iw-split { grid-template-columns: 1fr; gap: 28px; }
  .iw-split-reverse { direction: ltr; }
  .iw-split-image img { aspect-ratio: 16/9; max-height: 240px; border-radius: 10px; }
  .iw-split-text h2 { font-size: clamp(22px, 7vw, 28px); }
  .iw-programme-image img { border-radius: 50%; max-width: 240px; aspect-ratio: 1/1; }
  .iw-split .btn-amber { width: 100%; justify-content: center; }

  /* Trust list */
  .iw-trust-list li { font-size: 13px; padding: 8px 12px; }

  /* Movement */
  .iw-movement { padding: 52px var(--page-pad); text-align: left; }

  /* Community */
  .iw-community { grid-template-columns: 1fr; gap: 28px; }
  .iw-community-col .btn-teal { width: 100%; justify-content: center; }

  /* Form */
  .iw-enquire { padding: var(--section-v) var(--page-pad); }
  .iw-form-row { grid-template-columns: 1fr; gap: 16px; }
  .iw-form-submit { width: 100%; }

  /* 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; }
}

@media (max-width: 389px) {
  .iw-hero-h1 { font-size: 24px; }
}
