/* ════════════════════════════════════════════════
   style.css — all styles for the wellness site
   Organised by: variables → base → layout sections → modal → responsive
════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --forest:    #2D5016;
  --forest-mid:#4A7C26;
  --moss:      #7BA05B;
  --sand:      #D4A96A;
  --cream:     #F5F0E8;
  --lavender:  #C9B8D8;
  --blush:     #F2C4C4;
  --teal:      #3D7A8A;
  --teal-dark: #2A5A68;
  --terracotta:#C4714B;
  --charcoal:  #2C2C2C;
  --white:     #FEFEFE;
  --gold:      #C9A84C;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Smooth in-page navigation for anchor links (nav menu, "Explore Sessions", footer links, etc.)
   Horizontal auto-scrollers (affirmation bar, testimonials clothesline) keep their own
   scroll-behavior: auto locally since they're driven by JS per-frame, not by anchor jumps. */
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Utility ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25;
  color: var(--forest);
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  max-width: 560px;
  margin-top: 12px;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.04em;
}
.btn:hover         { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-primary       { background: var(--forest);     color: var(--white); }
.btn-teal          { background: var(--teal);        color: var(--white); }
.btn-terracotta    { background: var(--terracotta);  color: var(--white); }
.btn-lavender      { background: var(--lavender);    color: var(--charcoal); }
.btn-outline       { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--forest); }

/* Hero discovery CTA — soft link beside the outline button */
.btn-text-hero {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.92);
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 18px;
  text-decoration: none;
  border-bottom: 1.5px dashed rgba(212,169,106,0.55);
  border-radius: 0;
  transition: color 0.2s, border-color 0.2s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.btn-text-hero em {
  font-style: italic;
  color: var(--sand);
}
.btn-text-hero:hover {
  color: #fff;
  border-bottom-color: var(--sand);
}
.btn-text-hero:hover em { color: #FFE4A6; }

/* Generic ghost button used inside session flow modal */
.btn-text {
  background: transparent;
  border: none;
  color: var(--forest);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 18px;
  text-decoration: none;
  border-bottom: 1.5px dashed var(--sand);
  border-radius: 0;
  transition: color 0.2s, border-color 0.2s;
}
.btn-text:hover { color: var(--forest-mid); border-bottom-color: var(--forest-mid); }

/* ── Setup Banner ── */
#setup-banner {
  display: none;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  color: var(--white);
  padding: 12px 24px;
  text-align: center;
  font-size: 0.85rem;
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
}
#setup-banner a    { color: var(--sand); font-weight: 700; text-decoration: underline; }
#setup-banner.show { display: block; }
body.has-banner nav  { top: 44px; }
body.has-banner #hero { padding-top: 124px; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #f9f6f0;
  backdrop-filter: blur(8px);
  padding: 16px 0;
  transition: background 0.3s ease;
  /* Double gradient lines: top + bottom with gap = refined look */
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, 
    var(--forest) 0%, 
    var(--sand) 50%, 
    var(--moss) 100%) 1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.nav-inner  { display: flex; align-items: center; justify-content: space-between; }
.nav-logo   { display: flex; align-items: center; gap: 14px; }
.nav-logo-text { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
/* Tagline 1 — brand name, confident serif */
#nav-tagline1 {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.51rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--forest);
  transition: color 0.25s ease;
}
.nav-logo:hover #nav-tagline1 { color: var(--forest-mid); }
/* Tagline 2 — optional subtitle, uppercase sans */
#nav-tagline2 {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  line-height: 1;
}
#nav-tagline2:empty { display: none; }
/* Brand mark image — optional, populated from Settings key `logo_url` (Drive link).
   Sits left of the wordmark; hidden entirely (no layout shift) when no logo is set. */
.nav-logo-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 3px 14px rgba(0,0,0,0.14);
  border: 2px solid color-mix(in srgb, var(--gold) 55%, transparent);
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.nav-logo-mark:hover { transform: scale(1.05); box-shadow: 0 5px 18px rgba(0,0,0,0.18); }

.nav-logo--footer .nav-logo-mark {
  width: 72px;
  height: 72px;
  border-color: color-mix(in srgb, var(--gold) 65%, transparent);
}
.footer-brand { display: flex; flex-direction: column; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--forest); }
.nav-enquire {
  border: 1.5px solid var(--forest);
  color: var(--forest) !important;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-enquire:hover { background: var(--forest); color: var(--white) !important; }
.nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--forest-mid); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: 0.3s; }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: #0f1a2e;
}
.hero-scene { 
  position: absolute; inset: 0; z-index: 0; 
  /* Solid default background (cream/sand) while image loads */
  background: linear-gradient(135deg, #d4a96a 0%, #c9a84c 100%);
  transition: background-image 0.5s ease, background 0.5s ease; 
}
.hero-scene svg { width: 100%; height: 100%; display: block; }
.hero-scene:empty { background: linear-gradient(135deg, #d4a96a 0%, #c9a84c 100%); }

/* Cinematic overlay — sits between scene and content */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    /* Left shield — protects text over the SVG scene */
    linear-gradient(108deg, rgba(4,10,4,0.86) 0%, rgba(4,10,4,0.58) 36%, rgba(4,10,4,0.12) 60%, transparent 76%),
    /* Top vignette — darkens sky, adds atmosphere */
    linear-gradient(180deg, rgba(0,0,0,0.44) 0%, transparent 28%),
    /* Bottom ground shadow — adds depth */
    linear-gradient(0deg,   rgba(0,0,0,0.36) 0%, transparent 38%);
}
/* Photo mode: photo already has its own left gradient — keep only vignettes */
.hero--photo .hero-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.44) 0%, transparent 28%),
    linear-gradient(0deg,   rgba(0,0,0,0.36) 0%, transparent 38%);
}

.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-title em { font-style: italic; color: var(--sand); }
.hero-sub    { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 500px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}
.hero-btns   { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  cursor: pointer;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Affirmation Banner ── */
.affirmation-bar {
  background: var(--lavender);
  padding: 18px 0;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.affirmation-bar:active { cursor: grabbing; }
.affirmation-track {
  display: flex; gap: 60px;
  overflow-x: auto;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
  will-change: scroll-position;
}
.affirmation-track::-webkit-scrollbar { display: none; }
.affirmation-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  flex-shrink: 0;
  border-radius: 8px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
/* Only hint "tappable" once the bar is paused — .is-paused is toggled by app.js.
   Keeps the marquee looking purely decorative while auto-scrolling, as before. */
.affirmation-bar.is-paused .affirmation-item:hover,
.affirmation-bar.is-paused .affirmation-item:focus-visible {
  color: var(--forest);
  text-shadow: 0 0 18px color-mix(in srgb, var(--gold) 55%, transparent);
  cursor: pointer;
  outline: none;
}
/* Touch devices have no :hover, so once paused, give every phrase a persistent,
   gentle "tap me" affordance instead — a soft underline dash that fades in. */
@media (hover: none) {
  .affirmation-bar.is-paused .affirmation-item {
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--gold) 45%, transparent);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
  }
}
.affirmation-dot { color: var(--terracotta); margin: 0 8px; }

/* ── Affirmation "Magic Card" — catch overlay ──
   Triggered by: pause the marquee (click 1), then click a phrase (click 2).
   Light, non-blocking backdrop — the page stays visible, click anywhere dismisses.
   Auto-dismisses itself after a few seconds (see initAffirmationCatch() in app.js). ── */
.affirmation-catch-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  /* Light backdrop by design — a soft veil, not a blocking scrim like the form modals. */
  background: radial-gradient(ellipse at center, rgba(20,26,14,0.28) 0%, rgba(20,26,14,0.16) 55%, rgba(20,26,14,0.05) 100%);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.affirmation-catch-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}

.affirmation-catch-card {
  position: relative;
  max-width: 560px;
  width: 100%;
  padding: 56px 48px 44px;
  text-align: center;
  border-radius: 28px;
  /* Soft cream-to-white gradient body, lifted well above the light backdrop */
  background: linear-gradient(160deg, var(--white) 0%, var(--cream) 100%);
  box-shadow:
    0 40px 100px rgba(20, 26, 14, 0.22),
    0 4px 24px rgba(20, 26, 14, 0.10),
    0 0 0 1px color-mix(in srgb, var(--gold) 35%, transparent);
  transform: scale(0.85) translateY(10px);
  transition: transform 0.5s cubic-bezier(0.22, 1.4, 0.36, 1);
  overflow: hidden;
}
.affirmation-catch-overlay.is-active .affirmation-catch-card {
  transform: scale(1) translateY(0);
}

/* Luminous animated edge — a slow-traveling gold shimmer around the border, like candlelight.
   Base rule is a plain static gold border (safe everywhere, including older mobile browsers).
   Where conic-gradient is supported (effectively all current phones), it's upgraded to the
   spinning shimmer version via @supports, so nothing ever looks broken or unfinished. */
.affirmation-catch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1.5px solid color-mix(in srgb, var(--gold) 45%, transparent);
  pointer-events: none;
}
@supports (background: conic-gradient(from 0deg, red, blue)) {
  .affirmation-catch-card::before {
    border: none;
    padding: 1.5px;
    background: conic-gradient(from var(--catch-angle, 0deg),
      color-mix(in srgb, var(--gold) 15%, transparent),
      var(--gold) 25%,
      color-mix(in srgb, var(--gold) 15%, transparent) 50%,
      var(--gold) 75%,
      color-mix(in srgb, var(--gold) 15%, transparent) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: catch-edge-spin 4s linear infinite;
  }
}
@property --catch-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
@keyframes catch-edge-spin {
  to { --catch-angle: 360deg; }
}

/* One-time gold shimmer sweep across the card on arrival */
.affirmation-catch-card::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(100deg, transparent, color-mix(in srgb, var(--gold) 32%, transparent), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}
.affirmation-catch-overlay.is-active .affirmation-catch-card::after {
  animation: catch-sweep 1.1s ease-out 0.15s 1;
}
@keyframes catch-sweep {
  0%   { left: -60%; opacity: 0; }
  15%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

.catch-card-quote-mark {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  line-height: 1;
  color: color-mix(in srgb, var(--gold) 28%, transparent);
  pointer-events: none;
  user-select: none;
}

.catch-card-text {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.15rem);
  line-height: 1.5;
  color: var(--forest);
  padding: 0.3em 0.15em 0;
}

.catch-card-underline {
  display: block;
  width: 0;
  height: 2px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
.affirmation-catch-overlay.is-active .catch-card-underline {
  width: 55%;
}

@media (max-width: 640px) {
  .affirmation-catch-card { padding: 44px 26px 34px; border-radius: 22px; }
  .catch-card-quote-mark  { font-size: 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .affirmation-catch-card,
  .affirmation-catch-card::before,
  .affirmation-catch-card::after,
  .catch-card-underline {
    animation: none !important;
    transition: opacity 0.2s ease !important;
    transform: none !important;
  }
}

/* ── Logo Magic Card — circular reveal triggered by clicking the brand logo ──
   Same light, non-blocking backdrop as the affirmation catch card. The "card" is a
   large circle showing the logo big, spinning gently in, holding, then spinning
   back out and dismissing itself — see openLogoReveal() in app.js. ── */
.logo-reveal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(ellipse at center, rgba(20,26,14,0.26) 0%, rgba(20,26,14,0.14) 55%, rgba(20,26,14,0.04) 100%);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.logo-reveal-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.logo-reveal-ring {
  position: relative;
  width: min(380px, 82vw);
  height: min(380px, 82vw);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--white) 0%, var(--cream) 100%);
  box-shadow:
    0 40px 100px rgba(20, 26, 14, 0.24),
    0 4px 24px rgba(20, 26, 14, 0.10);
  /* Starts small, scaled down, and transparent; scales open on entry smoothly,
     then reverses back on close — no rotation needed for square shape. */
  transform: scale(0.25);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
.logo-reveal-overlay.is-active .logo-reveal-ring {
  transform: scale(1);
  opacity: 1;
}
/* Closing state — applied briefly before .is-active is removed, so the ring
   scales back down smoothly (see closeLogoReveal() in app.js). */
.logo-reveal-overlay.is-closing .logo-reveal-ring {
  transform: scale(0.25);
  opacity: 0;
}

/* Rotating gold ring around the rounded square — spins continuously while open. */
.logo-reveal-ring::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 32px;
  border: 2.5px solid transparent;
  pointer-events: none;
}
@supports (background: conic-gradient(from 0deg, red, blue)) {
  .logo-reveal-ring::before {
    border: none;
    padding: 2.5px;
    background: conic-gradient(from var(--catch-angle, 0deg),
      color-mix(in srgb, var(--gold) 12%, transparent),
      var(--gold) 30%,
      color-mix(in srgb, var(--gold) 12%, transparent) 55%,
      var(--gold) 80%,
      color-mix(in srgb, var(--gold) 12%, transparent) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: catch-edge-spin 5s linear infinite;
  }
}

.logo-reveal-img {
  width: 82%;
  height: 82%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

@media (max-width: 480px) {
  .logo-reveal-ring { width: min(300px, 85vw); height: min(300px, 85vw); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-reveal-ring,
  .logo-reveal-ring::before {
    animation: none !important;
    transition: opacity 0.2s ease !important;
    transform: none !important;
  }
}



/* ── About ── */
#about { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  padding: 24px 30px 30px 24px;  /* breathing room so badges can float outside the image edges */
}
.about-image {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--moss) 0%, var(--teal) 100%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
  position: relative;
  overflow: hidden;
}
.about-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}

/* ── About — original years badge (bottom-right, terracotta) ── */
.about-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(196,113,75,0.35);
  z-index: 2;
}
.about-badge strong { display: block; font-size: 2rem; font-family: 'Playfair Display', serif; }
.about-badge span   { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── About — orbiting credibility badges (participants + extra) ── */
.about-orbit-badge {
  position: absolute;
  background: #fff;
  border: 1.5px solid var(--sand);
  border-radius: 14px;
  padding: 14px 20px 13px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 138px;
  z-index: 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-orbit-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.about-orbit-badge .orbit-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.01em;
}
.about-orbit-badge .orbit-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
}
/* badge positions — top-right (extra) and middle-left (participants); bottom-right is reserved for the years badge */
.about-orbit-badge--tr { top: 0;    right: 0;     }
.about-orbit-badge--ml { top: 44%;  left: -16px;  }
.about-text   { padding-left: 16px; }
.about-text p { color: #555; margin-bottom: 16px; }
.values-list  { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; margin-bottom: 32px; }
.value-chip {
  background: var(--cream);
  border: 1px solid rgba(45,80,22,0.2);
  color: var(--forest);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Credentials row — theme-aware trust badges in About */
.credentials-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 8px 0 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(45,80,22,0.12);
}
.credentials-row .credential {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  background: linear-gradient(135deg, rgba(201,168,76,0.14), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 999px;
  padding: 7px 14px 7px 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  /* Short credentials still sit on one line exactly as before. Long ones (e.g. a
     full certification title) wrap onto multiple lines inside the pill instead of
     forcing the row — or the whole page — into horizontal scroll on narrow screens. */
  white-space: normal;
  max-width: 100%;
  min-width: 0; /* lets the pill shrink inside the wrapping flex row instead of forcing overflow */
  line-height: 1.4;
}
.credentials-row .credential::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1;
  flex-shrink: 0; /* keep the star glyph from squashing when the label text wraps */
}
.credentials-row .credential:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  background: linear-gradient(135deg, rgba(201,168,76,0.22), rgba(201,168,76,0.08));
}
/* Legacy separator — no longer used, hidden in case of stale cached markup */
.credentials-row .credential-sep { display: none; }

/* ── Scroll reveal — fade + rise as sections enter viewport ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children inside a revealed group (e.g. service cards, FAQ rows) */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.reveal--visible > * {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays applied via nth-child, capped so long lists don't feel sluggish */
.reveal-stagger.reveal--visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.reveal--visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.reveal--visible > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.reveal--visible > *:nth-child(4) { transition-delay: 0.20s; }
.reveal-stagger.reveal--visible > *:nth-child(5) { transition-delay: 0.26s; }
.reveal-stagger.reveal--visible > *:nth-child(6) { transition-delay: 0.32s; }
.reveal-stagger.reveal--visible > *:nth-child(n+7) { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Services ── */
#services { padding: 100px 0; background: var(--cream); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-subtitle { margin: 12px auto 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  /* Icon, heading, flow-link and button read as one centered identity block;
     the description stays left-aligned underneath for comfortable reading. */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
}
.service-card.forest::before   { background: linear-gradient(90deg, var(--forest), var(--moss)); }
.service-card.louise::before   { background: linear-gradient(90deg, var(--lavender), var(--blush)); }
.service-card.coaching::before { background: linear-gradient(90deg, var(--teal), var(--teal-dark)); }
.service-card.custom::before   { background: linear-gradient(90deg, var(--terracotta), var(--sand)); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-icon.forest   { background: rgba(45,80,22,0.1); }
.service-icon.louise   { background: rgba(201,184,216,0.3); }
.service-icon.coaching { background: rgba(61,122,138,0.1); }
.service-icon.custom   { background: rgba(196,113,75,0.1); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--charcoal); margin-bottom: 10px; }
.service-card h3:first-child { margin-top: 4px; } /* no icon rendered — keep title spacing balanced */
/* Description reads left-aligned for comfort, full card width, while everything
   around it (icon, heading, link, button) stays centered as the card's identity. */
.service-card p  { align-self: stretch; text-align: left; font-size: 0.9rem; color: #777; line-height: 1.65; margin-bottom: 20px; }
.service-price { font-size: 1.5rem; font-weight: 700; font-family: 'Playfair Display', serif; margin-bottom: 4px; }
.service-price.forest   { color: var(--forest); }
.service-price.louise   { color: var(--lavender); }
.service-price.coaching { color: var(--teal); }
.service-price.custom   { color: var(--terracotta); }
.service-duration { font-size: 0.78rem; color: #999; margin-bottom: 24px; letter-spacing: 0.05em; }

/* "See how it unfolds" link inside service cards — opens the session-flow modal */
.service-flow-link {
  display: inline-block;
  background: none;
  border: none;
  padding: 6px 0 14px;
  margin-bottom: 4px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--forest-mid);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s, transform 0.2s;
}
.service-flow-link:hover {
  color: var(--forest);
  transform: translateX(3px);
}

.service-book-btn {
  align-self: stretch;
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: 0.2s;
  letter-spacing: 0.04em;
}
.service-book-btn.forest   { background: var(--forest);     color: var(--white); }
.service-book-btn.louise   { background: var(--lavender);   color: var(--charcoal); }
.service-book-btn.coaching { background: var(--teal);       color: var(--white); }
.service-book-btn.custom   { background: var(--terracotta); color: var(--white); }
.service-book-btn:hover    { opacity: 0.88; transform: scale(1.02); }

/* ── Disabled cascade selects ── */
select:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── Empty sessions state ── */
.sessions-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
  font-style: italic;
}
.sessions-empty-state p { margin-bottom: 4px; }

/* ── Testimonials ── */
/* ── Testimonials — vine + leaf-pinned polaroids on sage breath ── */
#testimonials {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(ellipse at center, #FAF6EC 0%, #E8EED8 100%);
  color: var(--charcoal);
}
/* Sage breath background — two huge soft leaves drifting glacially */
#testimonials::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 190 C55 150,10 100,35 50 C60 0,100 5,100 5 C100 5,140 0,165 50 C190 100,145 150,100 190Z' fill='%237BA05B'/%3E%3C/svg%3E");
  background-size: 360px 360px;
  background-position: -80px 30%;
  background-repeat: no-repeat;
  opacity: 0.07;
  animation: t-drift-l 60s ease-in-out infinite alternate;
}
#testimonials::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 190 C55 150,10 100,35 50 C60 0,100 5,100 5 C100 5,140 0,165 50 C190 100,145 150,100 190Z' fill='%232D5016'/%3E%3C/svg%3E");
  background-size: 280px 280px;
  background-position: right -40px bottom -20px;
  background-repeat: no-repeat;
  opacity: 0.05;
  animation: t-drift-r 75s ease-in-out infinite alternate;
}
@keyframes t-drift-l {
  0%   { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(20px,-12px) rotate(4deg); }
}
@keyframes t-drift-r {
  0%   { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(-16px,8px) rotate(-3deg); }
}

.testimonials-header-wrap { text-align: center; margin-bottom: 48px; position: relative; z-index: 4; }
#testimonials .t-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 0;
}
#testimonials .section-title {
  color: var(--charcoal);
}
#testimonials .section-title em {
  font-style: italic;
  color: var(--forest);
}

/* ─── Clothesline (vine + cards) ─── */
#testimonials .clothesline { position: relative; z-index: 2; padding-top: 6px; }
.vine-line {
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 30px;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30' preserveAspectRatio='none'%3E%3Cpath d='M0 15 Q150 8 300 15 T600 15 T900 15 T1200 15' stroke='%235A7A3E' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3Cg fill='%237BA05B'%3E%3Cpath d='M100 13 C92 6 86 12 91 19 C97 21 104 19 100 13Z'/%3E%3Cpath d='M240 19 C250 26 254 18 248 12 C242 11 235 13 240 19Z'/%3E%3Cpath d='M380 13 C372 6 366 12 371 19 C377 21 384 19 380 13Z'/%3E%3Cpath d='M520 19 C530 26 534 18 528 12 C522 11 515 13 520 19Z'/%3E%3Cpath d='M660 13 C652 6 646 12 651 19 C657 21 664 19 660 13Z'/%3E%3Cpath d='M820 19 C830 26 834 18 828 12 C822 11 815 13 820 19Z'/%3E%3Cpath d='M980 13 C972 6 966 12 971 19 C977 21 984 19 980 13Z'/%3E%3Cpath d='M1120 19 C1130 26 1134 18 1128 12 C1122 11 1115 13 1120 19Z'/%3E%3C/g%3E%3Cg fill='none' stroke='%235A7A3E' stroke-width='1' opacity='0.7'%3E%3Cpath d='M100 13 L97 7'/%3E%3Cpath d='M248 19 L252 25'/%3E%3Cpath d='M380 13 L377 7'/%3E%3Cpath d='M528 19 L532 25'/%3E%3Cpath d='M660 13 L657 7'/%3E%3Cpath d='M828 19 L832 25'/%3E%3Cpath d='M980 13 L977 7'/%3E%3Cpath d='M1128 19 L1132 25'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.vine-anchor {
  position: absolute; top: 14px;
  width: 36px; height: 36px; z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'%3E%3Cg fill='%237BA05B' stroke='%234A6E32' stroke-width='0.8'%3E%3Cpath d='M18 5 C10 8 7 16 12 22 C18 26 24 22 25 16 C25 10 22 6 18 5Z'/%3E%3Cpath d='M8 20 C4 24 5 30 10 32 C16 32 18 26 16 22 C13 20 10 19 8 20Z'/%3E%3Cpath d='M26 22 C30 24 32 30 28 33 C22 33 19 28 21 24 C23 22 25 22 26 22Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.vine-anchor--l { left: 12px; }
.vine-anchor--r { right: 12px; transform: scaleX(-1); }

.line-track {
  display: flex; gap: 36px;
  /* Left padding tightened so the first card sits closer to the edge AND
     the right edge intentionally cuts polaroids — visual cue for swipe. */
  padding: 60px 24px 44px;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--moss) transparent;
  position: relative; z-index: 2;
}
.line-track::-webkit-scrollbar { height: 8px; }
.line-track::-webkit-scrollbar-thumb { background: var(--moss); border-radius: 4px; }
.line-track::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); border-radius: 4px; }

/* Narrow edge fades — just enough to soften polaroids exiting the viewport
   without overlapping the first/last cards (line-track has 60px padding). */
.fade-edge-l, .fade-edge-r {
  position: absolute; top: 0; bottom: 0;
  width: 40px; pointer-events: none; z-index: 6;
}
.fade-edge-l { background: linear-gradient(to right, #EEF1E0 0%, rgba(238,241,224,0) 100%); }
.fade-edge-r { background: linear-gradient(to left,  #EEF1E0 0%, rgba(238,241,224,0) 100%); }

/* Floating swipe cue — sits over the right edge of the clothesline */
.clothesline-scroll-cue {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: 1.5px solid var(--sand);
  border-radius: 999px;
  padding: 10px 16px 10px 18px;
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  z-index: 8;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: cue-bob 1.6s ease-in-out infinite;
  transition: opacity 0.4s, transform 0.4s;
}
.clothesline-scroll-cue .cue-arrow {
  font-size: 1.4rem;
  color: var(--sand);
  line-height: 1;
}
.clothesline-scroll-cue.is-hidden {
  opacity: 0;
  transform: translate(20px, -50%);
  pointer-events: none;
}
@keyframes cue-bob {
  0%, 100% { transform: translate(0, -50%); }
  50%      { transform: translate(6px, -50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clothesline-scroll-cue { animation: none; }
}

/* ─── Polaroid ─── */
.polaroid {
  flex: 0 0 auto;
  width: 230px;
  background: #fff;
  padding: 12px 12px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18), inset 0 0 0 1px rgba(0,0,0,0.02);
  position: relative;
  transform-origin: 50% -24px;
  animation: t-sway 6s ease-in-out infinite;
  scroll-snap-align: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
  margin-top: 30px;
}
/* Default = leaf pin */
.polaroid::before {
  content: '';
  position: absolute;
  top: -26px; left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  transform-origin: 50% 4px;
  width: 36px; height: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.18));
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 34'%3E%3Cpath d='M18 1 C8 4 2 14 4 22 C10 30 22 30 28 26 C34 22 36 12 32 6 C28 1 22 0 18 1Z' fill='%237BA05B' stroke='%234A6E32' stroke-width='0.8'/%3E%3Cpath d='M18 1 L20 30' stroke='%234A6E32' stroke-width='0.8' fill='none'/%3E%3Cpath d='M19 8 L13 7' stroke='%234A6E32' stroke-width='0.6' fill='none' opacity='0.6'/%3E%3Cpath d='M19 14 L11 14' stroke='%234A6E32' stroke-width='0.6' fill='none' opacity='0.6'/%3E%3Cpath d='M19 20 L13 22' stroke='%234A6E32' stroke-width='0.6' fill='none' opacity='0.6'/%3E%3Cpath d='M19 8 L26 6' stroke='%234A6E32' stroke-width='0.6' fill='none' opacity='0.6'/%3E%3Cpath d='M19 14 L28 13' stroke='%234A6E32' stroke-width='0.6' fill='none' opacity='0.6'/%3E%3Cpath d='M19 20 L26 22' stroke='%234A6E32' stroke-width='0.6' fill='none' opacity='0.6'/%3E%3C/svg%3E");
}
.polaroid[data-pin="flower-1"]::before {
  /* peach 5-petal wildflower */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 34'%3E%3Cg transform='translate(18,15)'%3E%3Cellipse cx='0' cy='-9' rx='5' ry='8' fill='%23F2B898' stroke='%23B86848' stroke-width='0.6'/%3E%3Cellipse cx='0' cy='-9' rx='5' ry='8' fill='%23F2B898' stroke='%23B86848' stroke-width='0.6' transform='rotate(72)'/%3E%3Cellipse cx='0' cy='-9' rx='5' ry='8' fill='%23F2B898' stroke='%23B86848' stroke-width='0.6' transform='rotate(144)'/%3E%3Cellipse cx='0' cy='-9' rx='5' ry='8' fill='%23F2B898' stroke='%23B86848' stroke-width='0.6' transform='rotate(216)'/%3E%3Cellipse cx='0' cy='-9' rx='5' ry='8' fill='%23F2B898' stroke='%23B86848' stroke-width='0.6' transform='rotate(288)'/%3E%3Ccircle r='3.5' fill='%23F5E040'/%3E%3Ccircle r='1.8' fill='%23E09020'/%3E%3C/g%3E%3C/svg%3E");
}
.polaroid[data-pin="flower-2"]::before {
  /* pink blossom */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 34'%3E%3Cg transform='translate(18,16)'%3E%3Cellipse cx='0' cy='-8' rx='5' ry='7' fill='%23F2C6D0' stroke='%23B86880' stroke-width='0.6' transform='rotate(0)'/%3E%3Cellipse cx='0' cy='-8' rx='5' ry='7' fill='%23F2C6D0' stroke='%23B86880' stroke-width='0.6' transform='rotate(60)'/%3E%3Cellipse cx='0' cy='-8' rx='5' ry='7' fill='%23F2C6D0' stroke='%23B86880' stroke-width='0.6' transform='rotate(120)'/%3E%3Cellipse cx='0' cy='-8' rx='5' ry='7' fill='%23F2C6D0' stroke='%23B86880' stroke-width='0.6' transform='rotate(180)'/%3E%3Cellipse cx='0' cy='-8' rx='5' ry='7' fill='%23F2C6D0' stroke='%23B86880' stroke-width='0.6' transform='rotate(240)'/%3E%3Cellipse cx='0' cy='-8' rx='5' ry='7' fill='%23F2C6D0' stroke='%23B86880' stroke-width='0.6' transform='rotate(300)'/%3E%3Ccircle r='3' fill='%23F5C040'/%3E%3Ccircle r='1.5' fill='%23B07020'/%3E%3C/g%3E%3C/svg%3E");
}
/* per-card organic rotation + sway timing */
.polaroid:nth-child(7n+1) { margin-top: 36px; animation-delay: -0.3s; --rest: -2deg; }
.polaroid:nth-child(7n+2) { margin-top: 28px; animation-delay: -1.4s; --rest: 1.5deg; }
.polaroid:nth-child(7n+3) { margin-top: 42px; animation-delay: -0.9s; --rest: -1deg; }
.polaroid:nth-child(7n+4) { margin-top: 24px; animation-delay: -2.1s; --rest: 2deg; }
.polaroid:nth-child(7n+5) { margin-top: 34px; animation-delay: -1.7s; --rest: -2.5deg; }
.polaroid:nth-child(7n+6) { margin-top: 30px; animation-delay: -0.6s; --rest: 1.2deg; }
.polaroid:nth-child(7n)   { margin-top: 38px; animation-delay: -2.5s; --rest: -1.5deg; }
.polaroid:nth-child(even)::before { transform: translateX(-50%) rotate(4deg); }

@keyframes t-sway {
  0%, 100% { transform: rotate(var(--rest, 0deg)) translateY(0); }
  50%      { transform: rotate(calc(var(--rest, 0deg) + 1deg)) translateY(1px); }
}
.polaroid:hover {
  animation-play-state: paused;
  transform: rotate(0deg) translateY(-12px) scale(1.06);
  box-shadow: 0 28px 48px rgba(0,0,0,0.28);
  z-index: 10;
}
.polaroid:hover::before { filter: drop-shadow(0 4px 6px rgba(0,0,0,0.28)); }

/* Photo zone — handwritten quote on tinted paper */
.polaroid .photo-zone {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  padding: 22px 18px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(45,80,22,0.04);
  background-image: repeating-linear-gradient(0deg, rgba(45,80,22,0.04) 0px, rgba(45,80,22,0.04) 1px, transparent 1px, transparent 22px);
}
.polaroid .photo-zone::before {
  content: '“';
  position: absolute; top: 4px; left: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; line-height: 1;
  color: var(--forest); opacity: 0.2;
  pointer-events: none;
}
.polaroid .handwriting {
  font-family: 'Kalam', cursive;
  font-size: 1rem; line-height: 1.55;
  color: var(--charcoal); text-align: center;
  position: relative; z-index: 1;
}
/* "Read full story" link shown only on truncated quotes — opens the shared
   session-desc-modal with the complete testimonial text. */
.testimonial-readmore {
  position: relative; z-index: 1;
  background: none; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.78rem;
  color: var(--forest);
  text-decoration: underline; text-underline-offset: 3px;
  padding: 2px 4px;
  flex-shrink: 0;
}
.testimonial-readmore:hover { color: var(--forest-mid); }
/* Full testimonial rendered inside the reused session-desc-modal */
.testimonial-desc-stars { font-size: 1rem; letter-spacing: 5px; margin-bottom: 14px; }
.testimonial-desc-role  { color: #888; font-size: 0.9rem; margin-top: 10px; font-style: italic; }
/* 6-color pastel rotation */
.polaroid:nth-child(6n+1) .photo-zone { background-color: #E8EFD8; }
.polaroid:nth-child(6n+2) .photo-zone { background-color: #FAE2C8; }
.polaroid:nth-child(6n+3) .photo-zone { background-color: #EBE0EE; }
.polaroid:nth-child(6n+4) .photo-zone { background-color: #FFF1C6; }
.polaroid:nth-child(6n+5) .photo-zone { background-color: #F6D6CB; }
.polaroid:nth-child(6n)   .photo-zone { background-color: #D9E8E2; }

/* Meta zone — stars + name + location */
.polaroid .meta-zone { text-align: center; padding-top: 12px; }
.polaroid .stars { font-size: 0.78rem; letter-spacing: 4px; margin-bottom: 5px; }
.star-on  { color: var(--sand); }
.star-off { color: rgba(45,80,22,0.18); }
.polaroid .name {
  font-family: 'Caveat', cursive;
  font-size: 1.18rem; font-weight: 700;
  color: var(--forest); line-height: 1.1;
}
.polaroid .loc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  color: #999;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Skeleton polaroids (shown before testimonials load) */
.polaroid--skel {
  animation: none !important;
  transform: rotate(-1.5deg);
}
.polaroid--skel::before { opacity: 0.3; }
.polaroid--skel .photo-zone {
  background-color: #ECECE5 !important;
  background-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  background-size: 200% 100%;
  animation: t-shimmer 1.4s linear infinite;
}
.polaroid--skel .meta-zone::before {
  content: '';
  display: block; height: 11px; width: 80%;
  margin: 6px auto 8px;
  background: #ECECE5; border-radius: 4px;
}
.polaroid--skel .meta-zone::after {
  content: '';
  display: block; height: 9px; width: 50%;
  margin: 0 auto;
  background: #ECECE5; border-radius: 4px;
}
@keyframes t-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* "View all N more stories" — handwritten link */
#reviews-show-more-wrap { text-align: center; margin-top: 20px; position: relative; z-index: 3; }
.show-more-handwritten {
  background: none; border: none; cursor: pointer;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem; font-weight: 700;
  color: var(--forest-mid);
  padding: 8px 16px;
  border-bottom: 2px dashed transparent;
  transition: color 0.2s, border-color 0.2s;
}
.show-more-handwritten:hover {
  color: var(--forest);
  border-bottom-color: var(--sand);
}

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  #testimonials::before, #testimonials::after { animation: none; }
  .polaroid                                   { animation: none; }
  .polaroid--skel .photo-zone                 { animation: none; }
  .session-row--shared                        { animation: none; }
}

/* ── Upcoming Sessions ── */
#upcoming { padding: 100px 0; background: var(--white); }
.upcoming-header { text-align: center; margin-bottom: 56px; }
.upcoming-header .section-subtitle { margin: 12px auto 0; }
.sessions-list { display: flex; flex-direction: column; gap: 18px; max-width: 860px; margin: 0 auto; }
.session-row {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border-left: 4px solid transparent;
  cursor: pointer;
}
.session-row:hover        { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateX(4px); }
.session-row.forest       { border-left-color: var(--forest); }
.session-row.louise       { border-left-color: var(--lavender); }
.session-row.coaching     { border-left-color: var(--teal); }
.session-row.retreat      { border-left-color: var(--terracotta); }
.session-date-box { text-align: center; background: var(--white); border-radius: 10px; padding: 10px 6px; min-width: 64px; }
.session-date-day { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; color: var(--charcoal); }
.session-date-mon { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); }
.session-info h4  { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--charcoal); margin-bottom: 4px; text-align: left; }
.session-info { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.session-meta     { font-size: 0.82rem; color: #888; display: flex; flex-wrap: wrap; gap: 14px; margin-top: 0; }
.session-meta span { display: flex; align-items: center; gap: 4px; }
.session-actions  { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.session-price    { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--terracotta); }
.session-spots    { font-size: 0.75rem; color: #999; }
.session-spots.low { color: var(--terracotta); font-weight: 700; }

/* ── Shared-session highlight (landed here via a session link) ── */
@keyframes sessionSharedPulse {
  0%   { box-shadow: 0 0 0 0   color-mix(in srgb, var(--gold) 55%, transparent); }
  70%  { box-shadow: 0 0 0 14px color-mix(in srgb, var(--gold) 0%,  transparent); }
  100% { box-shadow: 0 0 0 0   color-mix(in srgb, var(--gold) 0%,  transparent); }
}
.session-row--shared {
  border-left-color: var(--gold) !important;
  animation: sessionSharedPulse 1.4s ease-out 2;
}
.sessions-empty   { text-align: center; color: #aaa; font-style: italic; padding: 32px 0; }

/* ── Session filter pills ── */
.filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto 1.25rem;
}
.testimonials-filter-pills {
  max-width: none;
  justify-content: center;
  margin-bottom: 32px;
}
.filter-pill {
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--moss);
  background: transparent;
  color: var(--moss);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--moss);
  color: var(--white);
}
/* ── Show-more buttons ── */
.show-more-btn {
  background: transparent;
  border: 2px solid var(--moss);
  color: var(--moss);
  border-radius: 999px;
  padding: 0.5rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.02em;
}
.show-more-btn:hover { background: var(--moss); color: var(--white); }

/* ── Dynamic service card (new services added via Services sheet) ── */
.service-card.dynamic::before  { background: linear-gradient(90deg, var(--card-color, var(--moss)), var(--sand)); }
.service-icon.dynamic          { background: rgba(123,160,91,0.12); }
.service-price.dynamic         { color: var(--card-color, var(--moss)); }
.service-book-btn.dynamic      { background: var(--card-color, var(--moss)); color: var(--white); }

/* ── Skeleton loader (sessions + service cards) ── */
.skeleton     { background: linear-gradient(90deg, #e8e4de 25%, #f0ece6 50%, #e8e4de 75%); background-size: 200%; animation: shimmer 1.4s infinite; border-radius: 8px; }
.skel-row     { height: 90px; border-radius: 16px; margin-bottom: 18px; }
@keyframes shimmer { 0% { background-position: 200% } 100% { background-position: -200% } }
.price-loading { opacity: 0.4; font-size: 1rem; }

/* ── Service card skeleton ── */
.skel-service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
}
.skel-svc-icon  { width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px; }
.skel-svc-title { height: 20px; width: 58%; border-radius: 5px; margin-bottom: 16px; }
.skel-svc-text  { height: 13px; border-radius: 4px; margin-bottom: 9px; }
.skel-svc-btn   { height: 44px; border-radius: 50px; margin-top: 20px; }
.skel-w70       { width: 70%; }

/* ── Services empty state ── */
.services-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
}
.services-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.services-empty-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.services-empty-state p {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Register CTA ── */
#register-cta { padding: 80px 0; background: var(--lavender); text-align: center; }
#register-cta .section-title { color: var(--charcoal); }
#register-cta p { color: #555; margin: 16px auto 36px; max-width: 500px; font-size: 1.05rem; }

/* ── Connect / Enquiry ── */
/* ── Corporate CTA banner — two selectable designs, both theme-aware ── */

/* Option A: thin ribbon — minimal, full-width, one line, always a single row */
.corp-cta-ribbon {
  background: linear-gradient(90deg, var(--forest) 0%, var(--forest-mid) 100%);
  cursor: pointer;
  transition: filter 0.2s;
}
.corp-cta-ribbon:hover { filter: brightness(1.06); }
.corp-cta-ribbon-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
}
.corp-cta-ribbon-text {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;   /* required for text-overflow to work inside a flex child */
  flex: 1 1 auto;
}
.corp-cta-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
}
.corp-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;   /* required for text-overflow to work inside a flex child */
  flex: 1 1 auto;
}
.corp-cta-copy strong,
.corp-cta-copy span#corp-cta-desc-ribbon {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.corp-cta-copy strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}
.corp-cta-copy span#corp-cta-desc-ribbon {
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
}
.corp-cta-btn-ribbon {
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s;
}
.corp-cta-btn-ribbon:hover { background: rgba(255,255,255,0.26); }

@media (max-width: 640px) {
  .corp-cta-ribbon-inner { padding: 22px 18px; gap: 14px; }
  .corp-cta-ribbon-text { gap: 10px; }
  .corp-cta-icon { font-size: 1.28rem; }
  .corp-cta-copy strong { font-size: 0.95rem; }
  .corp-cta-copy span#corp-cta-desc-ribbon { 
    font-size: 0.78rem; 
    white-space: normal;
    text-overflow: clip;
    overflow: visible;
  }
  .corp-cta-btn-ribbon { padding: 9px 15px; font-size: 0.78rem; }
}

/* Option B: card — sits inside the normal container width, more visual weight */
.corp-cta-card-section { padding: 32px 0 8px; background: var(--cream); }
.corp-cta-card {
  background: var(--white);
  border: 1px solid rgba(45,80,22,0.1);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: box-shadow 0.22s, transform 0.22s;
}
.corp-cta-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.corp-cta-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.corp-cta-card-text { flex: 1; min-width: 0; }
.corp-cta-card-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 6px;
}
.corp-cta-card-text p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.corp-cta-btn-card { flex-shrink: 0; white-space: nowrap; }

@media (max-width: 640px) {
  .corp-cta-card          { flex-direction: column; text-align: center; padding: 28px 24px; }
  .corp-cta-btn-card      { width: 100%; }
  .corp-cta-card-section  { padding: 24px 0 4px; }
}

#connect { padding: 100px 0; background: var(--cream); }
.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.connect-channels { display: flex; flex-direction: column; gap: 14px; }
.connect-channel {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  color: var(--charcoal);
  border: 1.5px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.connect-channel:hover          { transform: translateX(4px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.connect-channel.whatsapp:hover { border-color: #25D366; }
.connect-channel.email:hover    { border-color: var(--teal); }
.connect-channel.instagram:hover{ border-color: #E1306C; }
.channel-icon       { font-size: 1.6rem; flex-shrink: 0; }
.channel-text strong { display: block; font-size: 0.92rem; font-weight: 700; }
.channel-text small  { font-size: 0.78rem; color: #999; }
.enquiry-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.enquiry-card h3       { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--charcoal); margin-bottom: 6px; }
.enquiry-card > p      { font-size: 0.88rem; color: #888; margin-bottom: 20px; }

/* ── Enquiry accordion (collapsed-by-default alternative, Settings: enquiry_display_mode=accordion) ── */
#enquiry-form-wrap.is-collapsed { display: none; }

.enquiry-accordion-trigger {
  display: none; /* switched to flex via JS only when accordion mode is active */
  align-items: center;
  gap: 18px;
  width: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, color-mix(in srgb, var(--sand) 22%, var(--cream)) 100%);
  border: 1.5px solid rgba(45,80,22,0.14);
  border-radius: 18px;
  padding: 28px 26px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  box-shadow: 0 6px 20px rgba(45,80,22,0.08); /* visible at rest, not only on hover — reads as tappable */
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.enquiry-accordion-trigger:hover {
  border-color: var(--forest);
  box-shadow: 0 12px 32px rgba(45,80,22,0.14);
  transform: translateY(-2px);
}
.enquiry-accordion-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.enquiry-accordion-icon:empty {
  display: none; /* hide icon container if no icon configured */
}
.enquiry-accordion-trigger:has(.enquiry-accordion-icon:empty) {
  gap: 12px; /* reduce gap when icon is hidden */
}
.enquiry-accordion-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.enquiry-accordion-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}
.enquiry-accordion-text span {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.5;
}
.enquiry-accordion-arrow {
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.2s;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest);
  border-radius: 50%;
}
.enquiry-accordion-trigger:hover .enquiry-accordion-arrow { transform: translateX(4px); }

@media (min-width: 901px) {
  /* Hide first nav link (About) on desktop to create breathing room.
     Specific to nav-links only — won't affect other page elements. */
  #navbar .nav-links a:nth-child(1) { display: none; }
}

@media (min-width: 1025px) {
  /* On desktop (expanded mode), hide the accordion trigger and always show form.
     Accordion trigger only makes sense on mobile/tablet in accordion mode. */
  .enquiry-accordion-trigger { display: none !important; }
  /* Override is-collapsed on desktop — form is always visible */
  #enquiry-form-wrap.is-collapsed { display: block !important; }
}

@media (max-width: 640px) {
  .enquiry-accordion-trigger { padding: 22px 18px; gap: 14px; }
  .enquiry-accordion-icon    { width: 48px; height: 48px; font-size: 1.5rem; }
  .enquiry-accordion-text strong { font-size: 1.05rem; }
  .enquiry-accordion-text span   { font-size: 0.82rem; }
  .enquiry-accordion-arrow   { width: 34px; height: 34px; font-size: 1.05rem; }
}

/* ── Footer ── */
footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a  { font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }

/* ── Modal ── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto; /* lets the overlay itself scroll if the modal is taller than the viewport */
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: modal-in 0.3s ease;
}
/* NOTE: the actual mobile (max-width: 640px) modal layout — bottom-sheet, flex
   column, sticky header, scrollable body — is defined once, further down this
   file, right before .services-grid. Keeping only one @media block for this
   avoids two rules for the same selectors silently overriding each other. */

/* ── Session-flow modal — "How a session unfolds" walkthrough ── */
.session-flow-modal {
  max-width: 580px;
  position: relative;
  padding: 0;
}
.session-flow-modal .modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
}
.session-flow-modal .modal-body {
  padding: 40px 36px 32px;
}
.flow-header { text-align: center; margin-bottom: 28px; }
.flow-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--forest-mid);
  margin-bottom: 2px;
}
.flow-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0;
}
.flow-sub {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #888;
  max-width: 380px;
  margin-left: auto; margin-right: auto;
}
.flow-steps {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.flow-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 16px 14px 14px;
  background: var(--cream);
  border-radius: 12px;
  border-left: 3px solid var(--sand);
}
.flow-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--forest-mid);
  color: var(--sand);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.flow-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 4px 0 4px;
}
.flow-step-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.flow-ctas {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(45,80,22,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.flow-ctas .btn {
  margin: 0;
}
@media (max-width: 480px) {
  .session-flow-modal .modal-body { padding: 32px 22px 24px; }
  .flow-title { font-size: 1.55rem; }
  .flow-ctas { flex-direction: column; gap: 10px; align-items: stretch; }
  .flow-ctas .btn { width: 100%; text-align: center; }
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Corporate enquiry modal — two-step pitch + dynamic form ── */
.corporate-modal {
  max-width: 520px;
  position: relative;
}
.corporate-modal .modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
}
.corporate-modal .modal-body {
  padding: 56px 32px 32px;
}
.corporate-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 12px;
}
.corp-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
  margin: 0 0 24px;
}
.corp-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.corp-value-card {
  background: var(--cream);
  border: 1px solid rgba(45,80,22,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.corp-value-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.corp-value-detail {
  font-size: 0.88rem;
  color: #555;
}
.corp-step1-btn { width: 100%; }

/* Back button — sits in its own row above the step-2 headline, well clear of the
   close (✕) button in the opposite corner. Pill shape with icon + label. */
.corp-back-btn {
  background: var(--cream);
  border: 1px solid rgba(45,80,22,0.1);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.18s, border-color 0.18s;
}
.corp-back-btn:hover { background: #eee6d6; border-color: rgba(45,80,22,0.2); }
.corp-back-btn::before {
  content: '←';
  font-size: 0.9rem;
  line-height: 1;
}

#corp-form-fields { margin-bottom: 4px; }

@media (max-width: 480px) {
  .corporate-modal .modal-body { padding: 52px 22px 24px; }
  .corp-values { grid-template-columns: 1fr; }
}

/* ── Session description modal — "Learn more about this session" ── */
.session-desc-modal {
  max-width: 560px;
  position: relative;
  padding: 0;
}
.session-desc-modal .modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 4; /* must beat .modal-header's sticky z-index:3 (mobile bottom-sheet layout) or clicks get swallowed by the header underneath */
}
.session-desc-modal .modal-header {
  padding: 36px 40px 0;
}
.session-desc-modal .modal-header h2 {
  padding-right: 40px; /* keep long titles clear of the close button */
}
.session-desc-modal .modal-body {
  padding: 16px 40px 32px;
  color: #555;
  line-height: 1.7;
}
.session-desc-footer {
  padding: 20px 40px;
  border-top: 1px solid rgba(45,80,22,0.1);
  text-align: right;
}
.session-desc-footer .btn {
  margin: 0;
}
@media (max-width: 480px) {
  .session-desc-modal .modal-header { padding: 32px 22px 0; }
  .session-desc-modal .modal-body   { padding: 14px 22px 24px; }
  .session-desc-footer { padding: 16px 22px; text-align: center; }
  .session-desc-footer .btn { width: 100%; }
}

.modal-header { padding: 28px 32px 0; display: flex; justify-content: space-between; align-items: flex-start; }
.modal-header h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--charcoal); }
.modal-header p  { color: #777; font-size: 0.9rem; margin-top: 4px; }
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  transition: background 0.2s;
}
.modal-close:hover { background: #eee; }
.modal-body { padding: 24px 32px 32px; }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0ddd8;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(61,122,138,0.12);
}
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: var(--forest);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  letter-spacing: 0.05em;
  transition: 0.2s;
  margin-top: 6px;
}
.form-submit:hover { background: var(--forest-mid); transform: translateY(-1px); }

/* Progress steps */
.steps { display: flex; justify-content: center; align-items: center; gap: 0; margin-bottom: 28px; }
.step  { display: flex; align-items: center; gap: 8px; }
.step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  background: #e0ddd8; color: #999;
  flex-shrink: 0;
}
.step-dot.active { background: var(--forest); color: var(--white); }
.step-dot.done   { background: var(--moss);   color: var(--white); }
.step-label        { font-size: 0.78rem; color: #999; font-weight: 600; }
.step-label.active { color: var(--forest); }
.step-line         { width: 40px; height: 2px; background: #e0ddd8; margin: 0 8px; }
.step-line.done    { background: var(--moss); }

/* Confirmation / QR */
.confirmation-panel      { display: none; text-align: center; padding: 8px 0; }
.confirmation-panel.show { display: block; }
.confirm-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--moss), var(--forest));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}
.confirmation-panel h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--forest); margin-bottom: 8px; }
.confirmation-panel p  { color: #666; font-size: 0.92rem; margin-bottom: 28px; }
.qr-container {
  background: var(--cream);
  border: 2px dashed var(--sand);
  border-radius: 16px;
  padding: 28px;
  display: inline-block;
  margin-bottom: 20px;
}
#qr-code      { margin: 0 auto; }
.qr-label     { font-size: 0.8rem; color: #888; margin-top: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.payment-amount  { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--terracotta); margin-bottom: 4px; }
.payment-details {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
  margin: 20px 0;
  font-size: 0.88rem;
  color: #555;
}
.payment-details strong { color: var(--charcoal); }
.payment-row { display: flex; justify-content: space-between; padding: 4px 0; }
.upi-note    { font-size: 0.8rem; color: #999; margin-top: 12px; line-height: 1.5; }

/* Mobile Nav */
.mobile-menu {
  display: none;
  background: var(--cream);
  padding: 20px 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--forest) 12%, transparent);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--forest) 8%, transparent);
  font-weight: 600;
  color: var(--charcoal);
}

/* ── Active nav link ── */
.nav-links a.nav-active:not(.nav-enquire):not(.nav-cta) {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* ── Floating action cluster — WhatsApp + Discovery call ── */
#wa-float, #discovery-float {
  position: fixed;
  right: 24px;
  z-index: 500;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
#wa-float {
  bottom: 28px;
  background: #25D366;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 2px 8px rgba(37,211,102,0.35);
}
#discovery-float {
  /* Sits ABOVE the WhatsApp button — matches its visual weight, different color */
  bottom: 96px;
  background: var(--forest-mid);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 2px 8px rgba(74,124,38,0.32);
}
#wa-float:hover, #discovery-float:hover {
  transform: scale(1.1);
}
#wa-float:hover        { box-shadow: 0 6px 24px rgba(0,0,0,0.22), 0 4px 14px rgba(37,211,102,0.45); }
#discovery-float:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.22), 0 4px 14px rgba(74,124,38,0.45); }
#wa-float svg, #discovery-float svg { width: 28px; height: 28px; display: block; }
/* Tooltip on hover for the discovery button (desktop only) */
#discovery-float .float-tooltip {
  position: absolute;
  right: 68px; top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--charcoal);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
#discovery-float .float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--charcoal);
}
#discovery-float:hover .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 640px) {
  #discovery-float .float-tooltip { display: none; }
}

/* ── Corporate Client Logo Strip ── */
/* Sits between Testimonials and Gallery/FAQ. Auto-scrolls gently, draggable,
   subtle 3D tilt per-logo based on distance from center for a soft carousel feel. */
#corporate-logos { padding: 40px 0 28px; background: var(--cream); }
.corp-logos-outer {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.corp-logos-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  font-weight: 700;
  margin-bottom: 18px;
}
.corp-logos-viewport {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 20px 0;
}
.corp-logos-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 32px;
  cursor: grab;
  perspective: 800px;
  will-change: scroll-position;
}
.corp-logos-track::-webkit-scrollbar { display: none; }
.corp-logos-track:active { cursor: grabbing; }
.corp-logo-item {
  flex: 0 0 auto;
  width: 96px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.corp-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
}
/* Text-based company names when no logo image is available */
.corp-logo-item.corp-logo-text {
  background: linear-gradient(135deg, var(--white) 0%, color-mix(in srgb, var(--cream) 60%, var(--white)) 100%);
  border: 2px solid rgba(45,80,22,0.14);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 12px 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  box-shadow: 0 4px 12px rgba(45,80,22,0.12);
  transition: all 0.25s ease;
}
/* Hover: tilt and lift effect for text items too */
@media (hover: hover) {
  .corp-logo-item.corp-logo-text:hover {
    box-shadow: 0 8px 20px rgba(45,80,22,0.16);
    transform: scale(1.1) translateY(-4px);
    border-color: rgba(45,80,22,0.22);
  }
}
/* The logo nearest the viewport center gets a subtle lift — creates the "3D carousel" feel */
.corp-logos-viewport::before,
.corp-logos-viewport::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.corp-logos-viewport::before { left: 0;  background: linear-gradient(to right, var(--cream) 0%, transparent 100%); }
.corp-logos-viewport::after  { right: 0; background: linear-gradient(to left,  var(--cream) 0%, transparent 100%); }
@media (hover: hover) {
  .corp-logo-item:hover {
    opacity: 1;
    transform: scale(1.06) translateY(-2px);
  }
}
@media (max-width: 640px) {
  .corp-logos-track { gap: 28px; padding: 0 20px; }
  .corp-logo-item { width: 78px; height: 42px; }
}

/* ── Photo Gallery Strip ── */
#gallery { padding: 48px 0 80px; background: var(--cream); }
@media (max-width: 640px) {
  #corporate-logos { padding: 28px 0 20px; }
  #gallery          { padding: 28px 0 56px; }
}
.gallery-label { text-align: center; margin-bottom: 32px; }
.gallery-strip {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  /* B: no right padding — last image bleeds into gradient, signalling more */
  padding: 4px 0 16px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-img {
  flex-shrink: 0;
  width: 280px; height: 320px;
  border-radius: 16px;
  object-fit: cover;
  scroll-snap-align: start;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.gallery-img:hover { transform: scale(1.03); box-shadow: 0 8px 32px rgba(0,0,0,0.16); }

/* ── Gallery outer wrapper — gradient fade + peek ── */
.gallery-outer {
  position: relative;
  overflow: hidden;   /* clips peeking right edge */
}
/* A: right-side gradient fade — signals more content */
.gallery-outer::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 16px;
  width: 120px;
  background: linear-gradient(to left, var(--cream) 10%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.35s ease;
}
/* hide gradient when fully scrolled to last image */
.gallery-outer.at-end::after { opacity: 0; }
/* D: mobile scroll hint */
.gallery-hint {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  margin-top: 14px;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .gallery-hint { display: none !important; }
}

/* ── Gallery caption ── */
.gallery-figure {
  flex-shrink: 0;
  position: relative;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
}
.gallery-figure .gallery-img { scroll-snap-align: unset; border-radius: 0; box-shadow: none; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.62));
  color: var(--white);
  padding: 28px 14px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}

/* ── FAQ Section ── */
#faq { padding: 100px 0; background: var(--white); }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-filter-pills {
  max-width: none;
  justify-content: center;
  margin: 0 auto 36px;
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px;
  background: none; border: none;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--charcoal);
  cursor: pointer; gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--forest); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--moss);
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--forest); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  padding: 0 4px;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
  font-size: 0.92rem; color: #666; line-height: 1.85;
}
.faq-item.open .faq-answer { max-height: 1200px; padding-bottom: 22px; }

/* ── Rich text output (formatText) — p / ul / li inside content fields ── */
/* Applied to every Group 1 container: FAQs, About, Services, Testimonials, Gallery, SessionFlows, Hero subtitle, Corporate CTA */
.faq-answer p,
.about-text p,
.service-card p,
.flow-step-desc p,
.handwriting p,
.gallery-caption p,
.hero-sub p,
.corp-desc p {
  margin: 0 0 0.6em;
  line-height: inherit;
}
.faq-answer p:last-child,
.about-text p:last-child,
.service-card p:last-child,
.flow-step-desc p:last-child,
.handwriting p:last-child,
.gallery-caption p:last-child,
.hero-sub p:last-child,
.corp-desc p:last-child { margin-bottom: 0; }

.faq-answer ul,
.about-text ul,
.service-card ul,
.flow-step-desc ul,
.handwriting ul,
.gallery-caption ul,
.hero-sub ul,
.corp-desc ul {
  margin: 0.4em 0 0.6em 1.2em;
  padding: 0;
  list-style: disc;
}
.faq-answer li,
.about-text li,
.service-card li,
.flow-step-desc li,
.handwriting li,
.gallery-caption li,
.hero-sub li,
.corp-desc li {
  margin-bottom: 0.3em;
  line-height: inherit;
}

/* Privacy page rich text */
.privacy p { margin: 0 0 14px; }
.privacy ul { margin: 8px 0 18px 22px; padding: 0; }
.privacy li { font-size: 0.95rem; line-height: 1.75; color: #555; margin-bottom: 8px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .container   { padding: 0 16px; }
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .nav-logo    { font-size: 1.15rem; gap: 10px; }
  .nav-logo-mark { width: 54px; height: 54px; }

  #hero        { padding-top: 70px; min-height: 100svh; }
  .hero-content { max-width: 100%; }
  .hero-title  { font-size: 2.6rem; }
  .hero-sub    { font-size: 0.95rem; }
  .hero-badges { gap: 8px; }
  .badge       { font-size: 0.72rem; padding: 5px 12px; }
  .hero-btns   { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; text-align: center; }

  #about, #services, #upcoming, #testimonials, #connect, #faq, #register-cta { padding: 56px 0; }

  .about-grid       { grid-template-columns: 1fr; gap: 32px; }
  .about-image-wrap { padding: 18px 22px 22px 18px; }
  .about-image      { aspect-ratio: 4/5; border-radius: 12px; }
  .about-text       { padding-left: 0; }
  /* Long credential pills (e.g. full certification titles) get a touch more
     breathing room and a slightly smaller label on phones, where horizontal
     space is tightest — short pills are unaffected since they never hit this width. */
  .credentials-row .credential { font-size: 0.7rem; padding: 7px 12px 7px 11px; }
  /* Years badge (terracotta) — smaller on mobile */
  .about-badge        { bottom: 4px; right: 4px; padding: 14px 18px; }
  .about-badge strong { font-size: 1.5rem; }
  /* Orbiting badges — smaller and pulled closer on mobile */
  .about-orbit-badge          { min-width: 108px; padding: 10px 14px 9px; }
  .about-orbit-badge .orbit-num { font-size: 1.35rem; }
  .about-orbit-badge .orbit-lbl { font-size: 0.55rem; }
  .about-orbit-badge--tr      { top: 4px;  right: 4px;  }
  .about-orbit-badge--ml      { top: 44%;  left: -4px;  }
  .section-title { font-size: 1.7rem; }

  .session-row   { grid-template-columns: 56px 1fr; gap: 14px; padding: 16px; }
  .session-actions { display: none; }
  .session-info h4 { font-size: 0.95rem; }
  .session-meta    { gap: 8px; font-size: 0.75rem; }

  .affirmation-track { gap: 32px; }
  .affirmation-item  { font-size: 0.92rem; }

  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Bottom-sheet modal on mobile. IMPORTANT: .modal stays a normal flex child of
     .modal-overlay (no position:fixed here) so the overlay's flexbox is what pins
     it to the bottom — that's what leaves a real, tappable backdrop above it.
     A previous version used position:fixed directly on .modal, which pulled it
     out of the overlay's layout entirely; with no `top` constraint that let the
     sheet grow to cover the full screen with zero tappable backdrop, so
     tap-outside-to-close silently stopped working and only a refresh could
     close it. */
  .modal {
    border-radius: 16px 16px 0 0; margin: 0; max-width: 100%;
    max-height: 92vh;
    display: flex; flex-direction: column;
    overflow: hidden; /* only .modal-body scrolls, not the whole modal */
  }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-header {
    flex-shrink: 0;
    position: sticky; top: 0; z-index: 3;
    background: var(--white);
    border-radius: 16px 16px 0 0;
  }
  .modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-header, .modal-body { padding-left: 20px; padding-right: 20px; }
  .steps    { gap: 4px; }
  .step-line { width: 24px; }
  .step-label { display: none; }

  .services-grid      { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  /* clothesline on mobile — slightly wider polaroids so most quotes fit; photo-zone grows with content */
  .line-track         { padding: 56px 28px 32px; gap: 22px; }
  .polaroid           { width: 220px; }
  .polaroid .photo-zone {
    aspect-ratio: unset;         /* remove fixed square — card grows to fit the quote */
    min-height: 160px;           /* still looks like a photo zone when the quote is very short */
  }
  .polaroid .handwriting { font-size: 0.92rem; }  /* slightly smaller text helps longer quotes breathe */
  .vine-anchor        { display: none; }
  .upcoming-header    { margin-bottom: 32px; }
  .connect-grid       { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid        { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .modal-header, .modal-body { padding-left: 22px; padding-right: 22px; }
}


@media (max-width: 640px) {
  .services-grid     { grid-template-columns: 1fr; gap: 16px; }
  .connect-channels  { gap: 10px; }
  .connect-channel   { padding: 14px 16px; }
  .channel-icon      { font-size: 1.3rem; }
  .enquiry-card      { padding: 24px 18px; }
  .form-row          { grid-template-columns: 1fr; }
  .service-card      { padding: 24px 20px; }
}

@media (max-width: 600px) {
  .session-row     { grid-template-columns: 60px 1fr; }
  .session-actions { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-btns  { flex-direction: column; }
  .btn        { width: 100%; text-align: center; }
  /* WhatsApp float slightly smaller on mobile */
  #wa-float    { width: 50px; height: 50px; bottom: 20px; right: 16px; }
  #wa-float svg { width: 24px; height: 24px; }
  /* Gallery images slightly smaller */
  .gallery-img    { width: 220px; height: 260px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.1rem; }
  .nav-logo   { font-size: 1rem; }
  .polaroid   { width: 200px; }  /* slightly tighter on smallest phones but still bigger than before */
}
