/* ============================================================
   INFINITY WELLBEING AND COACHING — style.css
   Workshops & Programmes 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; }

/* Screen reader only */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── 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: WORKSHOPS — HERO
   (centred, no image — headline is the hero)
   ============================================================ */
.ws-hero {
  background: var(--white);
  padding: 80px var(--page-pad) 72px;
  text-align: center;
}

.ws-hero-inner { max-width: 760px; margin: 0 auto; }

.ws-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;
}

.ws-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700; line-height: 1.08;
  color: var(--navy); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.6s 0.25s ease forwards;
}

.ws-hero-stat {
  font-size: 16px; line-height: 1.7;
  color: var(--text-mid); margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.6s 0.4s ease forwards;
}

.ws-hero-stat strong { color: var(--navy); }

.ws-hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.6s 0.55s ease forwards;
}

.ws-scroll-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500; color: var(--teal);
  text-decoration: none; letter-spacing: 0.03em;
  min-height: 48px;
  transition: gap 0.2s, color 0.2s;
}
.ws-scroll-link:hover { color: var(--teal-dark); gap: 9px; }
.ws-scroll-link svg { width: 16px; height: 16px; stroke: currentColor; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.ws-testimonials {
  background: var(--navy);
  padding: 60px var(--page-pad);
  position: relative; overflow: hidden;
}
.ws-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; }
.ws-t-head { text-align: center; margin-bottom: 36px; }
.ws-t-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ws-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; }
.ws-t-card:hover { background: rgba(255,255,255,0.085); }
.ws-t-card--highlight { background: var(--teal); border-color: var(--teal); }
.ws-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; }
.ws-t-who { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-lt); }

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

/* ── WORKSHOPS SECTION ────────────────────────────────────── */
.ws-workshops {
  background: var(--white);
  padding: var(--section-v) var(--page-pad);
}

.ws-workshops-inner { max-width: 1100px; }

.ws-workshops-header { margin-bottom: 48px; }
.ws-workshops-header h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 18px;
}
.ws-workshops-header p { font-size: 15px; line-height: 1.78; color: var(--text-mid); margin-bottom: 12px; }
.ws-workshops-header p:last-child { margin-bottom: 0; }
.ws-workshops-label { font-size: 14px; font-weight: 600; color: var(--navy); margin-top: 20px !important; }

/* Three audience cards — teal fill */
.ws-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.ws-audience-card {
  background: var(--teal);
  border-radius: 12px; padding: 32px 26px;
  transition: background 0.2s, transform 0.2s;
}
.ws-audience-card:hover { background: var(--teal-dark); transform: translateY(-2px); }

.ws-audience-icon {
  margin-bottom: 14px;
}
.ws-audience-icon svg {
  width: 28px; height: 28px;
  stroke: rgba(255,255,255,0.7); flex-shrink: 0;
}

.ws-audience-card h3 {
  font-family: var(--serif);
  font-size: 18px; font-weight: 600;
  color: var(--white); line-height: 1.25;
  margin-bottom: 10px;
}

.ws-audience-card p { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.78); }

.ws-workshops-close {
  font-size: 15px; line-height: 1.75; color: var(--text-mid);
  padding: 20px 24px;
  background: rgba(42,127,143,0.06);
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
}

/* ── GIVE CHILDREN THE TOOLS ──────────────────────────────── */
.ws-tools {
  background: var(--off-white);
  padding: var(--section-v) var(--page-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.ws-tools-text h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 18px;
}
.ws-tools-text p { font-size: 15px; line-height: 1.78; color: var(--text-mid); margin-bottom: 14px; }
.ws-tools-text p:last-of-type { margin-bottom: 28px; }

.ws-tools-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 440px;
}

.ws-tools-img { border-radius: 12px; overflow: hidden; }
.ws-tools-img img { width: 100%; height: 100%; object-fit: cover; }
.ws-tools-img--top  { border-radius: 14px 4px 4px 14px; }
.ws-tools-img--bottom { border-radius: 4px 14px 14px 4px; }

/* ── NATALIE SECTION ──────────────────────────────────────── */
.ws-natalie {
  background: var(--white);
  padding: var(--section-v) var(--page-pad);
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: center;
}

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

.ws-natalie-stat { position: absolute; bottom: -16px; right: 16px; background: var(--amber); border-radius: 10px; padding: 16px 20px; min-width: 160px; box-shadow: 0 8px 28px rgba(232,160,32,0.4); }
.ws-stat-num { font-family: var(--serif); font-size: 40px; font-weight: 700; color: var(--navy); line-height: 1; display: block; }
.ws-stat-plus { font-size: 22px; }
.ws-stat-label { font-size: 11px; font-weight: 600; color: var(--navy); opacity: 0.75; line-height: 1.4; margin-top: 3px; max-width: 120px; }

.ws-natalie-text h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 16px; }
.ws-natalie-text p { font-size: 14.5px; line-height: 1.78; color: var(--text-mid); margin-bottom: 14px; }

.ws-creds { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0 28px; }
.ws-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); }

/* ── REGISTER FORM ────────────────────────────────────────── */
.ws-register {
  background: var(--off-white);
  padding: var(--section-v) var(--page-pad);
}

.ws-register-inner { max-width: 760px; margin: 0 auto; }

.ws-register-header { text-align: center; margin-bottom: 40px; }
.ws-register-header h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.ws-register-desc { font-size: 14.5px; color: var(--text-mid); line-height: 1.65; }

.ws-form { display: flex; flex-direction: column; gap: 16px; }
.ws-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ws-form-group { display: flex; flex-direction: column; gap: 6px; }
.ws-form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.ws-form-group input, .ws-form-group textarea {
  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; resize: vertical;
}
.ws-form-group input:focus, .ws-form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,127,143,0.1);
  background: var(--white);
}
.ws-form-group textarea { min-height: 140px; }
.ws-form-submit-wrap { display: flex; justify-content: center; margin-top: 8px; }
.ws-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; }
  .ws-t-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ws-audience-grid { grid-template-columns: 1fr 1fr; }
  .ws-audience-card:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }
  .ws-tools { gap: 48px; }
  .ws-tools-images { height: 360px; }
  .ws-natalie { grid-template-columns: 1fr 1fr; 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; }

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

  /* Hero */
  .ws-hero { padding: 56px var(--page-pad) 48px; }
  .ws-hero-h1 { font-size: clamp(28px, 9vw, 40px); }
  .ws-hero-stat { font-size: 14.5px; }
  .ws-hero-actions { flex-direction: column; align-items: center; }
  .ws-hero-actions .btn-amber { width: 100%; justify-content: center; }

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

  /* World band */
  .ws-world { padding: 52px var(--page-pad); }

  /* Workshops */
  .ws-workshops { padding: var(--section-v) var(--page-pad); }
  .ws-audience-grid { grid-template-columns: 1fr; }
  .ws-audience-card:last-child { max-width: 100%; }
  .ws-audience-card { padding: 24px 20px; }
  .ws-workshops-close { padding: 16px 18px; }

  /* Tools */
  .ws-tools { grid-template-columns: 1fr; gap: 32px; }
  .ws-tools-images { height: auto; grid-template-rows: auto; grid-template-columns: 1fr 1fr; gap: 10px; }
  .ws-tools-img { height: 160px; }
  .ws-tools-img img { height: 100%; }
  .ws-tools-img--top, .ws-tools-img--bottom { border-radius: 10px; }
  .ws-tools-text .btn-amber { width: 100%; justify-content: center; }

  /* Natalie */
  .ws-natalie { grid-template-columns: 1fr; gap: 40px; }
  .ws-natalie-img-frame { max-width: 260px; margin: 0 auto; aspect-ratio: 3/4; }
  .ws-natalie-stat { position: relative; bottom: auto; right: auto; margin: 16px auto 0; max-width: 180px; text-align: center; }
  .ws-natalie-text h2 { font-size: clamp(24px, 7vw, 30px); }
  .btn-outline { width: 100%; justify-content: center; }

  /* Register form */
  .ws-register { padding: var(--section-v) var(--page-pad); }
  .ws-form-row { grid-template-columns: 1fr; gap: 16px; }
  .ws-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) {
  .ws-hero-h1 { font-size: 26px; }
}
