/* =====================================================================
   Hypnotherapy for OCD — Vibha Jain
   Master Stylesheet
   ---------------------------------------------------------------------
   A bespoke, calming, premium design system.
   Sections:
     1.  Design tokens (CSS custom properties)
     2.  Reset & base
     3.  Typography
     4.  Layout primitives (container, section, grid)
     5.  Decorative organic shapes & backgrounds
     6.  Buttons & links
     7.  Header / Navigation
     8.  Footer
     9.  Reusable components (cards, eyebrow, stats, timeline,
         accordion, testimonials, forms, etc.)
     10. Page-specific blocks (hero variants, split sections)
     11. Authentication gate / modal
     12. Scroll-reveal animation states
     13. Utilities
     14. Responsive breakpoints
   ===================================================================== */

/* =====================================================================
   1. DESIGN TOKENS
   ===================================================================== */
:root {
  /* Core palette — "Twilight Calm" */
  --ink:        #251F40;   /* primary text */
  --ink-soft:   #4A4366;   /* secondary text */
  --night:      #181230;   /* darkest — dark sections / footer */
  --plum:       #352A5C;
  --violet:     #5B4B8A;
  --violet-2:   #7C6CB0;

  /* Warm accents (echo the warm tones in the photography) */
  --peach:      #E9A07A;
  --peach-soft: #F4C8AC;
  --coral:      #DD7654;
  --gold:       #C9A24B;

  /* Calming secondaries */
  --sage:       #8FB7A8;
  --sage-soft:  #D3E5DD;

  /* Neutrals / surfaces */
  --cream:      #FBF6F0;
  --cream-2:    #F4EBE0;
  --sand:       #EADCCB;
  --white:      #FFFFFF;
  --line:       rgba(37, 31, 64, 0.10);

  /* Gradients */
  --grad-warm:  linear-gradient(135deg, #F4C8AC 0%, #E9A07A 45%, #DD7654 100%);
  --grad-calm:  linear-gradient(135deg, #7C6CB0 0%, #5B4B8A 55%, #352A5C 100%);
  --grad-dawn:  linear-gradient(120deg, #352A5C 0%, #5B4B8A 40%, #DD7654 100%);
  --grad-soft:  linear-gradient(160deg, #FBF6F0 0%, #F4EBE0 100%);

  /* Typography */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Type scale (fluid) */
  --fs-hero:   clamp(2.6rem, 6vw, 5rem);
  --fs-h1:     clamp(2.2rem, 4.6vw, 3.6rem);
  --fs-h2:     clamp(1.8rem, 3.4vw, 2.7rem);
  --fs-h3:     clamp(1.3rem, 2.2vw, 1.7rem);
  --fs-lead:   clamp(1.06rem, 1.5vw, 1.28rem);
  --fs-body:   1.02rem;
  --fs-small:  0.9rem;

  /* Spacing */
  --space-section: clamp(4.5rem, 9vw, 8.5rem);
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(37, 31, 64, 0.07);
  --shadow:    0 18px 44px rgba(37, 31, 64, 0.12);
  --shadow-lg: 0 30px 80px rgba(37, 31, 64, 0.18);
  --shadow-warm: 0 20px 50px rgba(221, 118, 84, 0.28);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.25s var(--ease);
  --t:      0.45s var(--ease);

  --maxw: 1240px;
  --header-h: 80px;
}

/* =====================================================================
   2. RESET & BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

::selection { background: var(--peach); color: var(--night); }

/* Accessible focus */
:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 2000;
  background: var(--night);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* =====================================================================
   3. TYPOGRAPHY
   ===================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-optical-sizing: auto;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
p  { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--peach); }
.eyebrow.on-dark::before { background: var(--peach); }
.eyebrow.centered { justify-content: center; }

/* Gradient text accent */
.text-grad {
  background: var(--grad-dawn);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-serif-italic { font-style: italic; }

/* =====================================================================
   4. LAYOUT PRIMITIVES
   ===================================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1400px; }

.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.section--dark {
  background: var(--night);
  color: var(--cream);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(251, 246, 240, 0.78); }
.section--cream2 { background: var(--cream-2); }
.section--calm {
  background: var(--grad-calm);
  color: #fff;
}
.section--calm h2, .section--calm h3 { color: #fff; }
.section--calm p { color: rgba(255,255,255,0.85); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* =====================================================================
   5. DECORATIVE ORGANIC SHAPES & BACKGROUNDS
   ===================================================================== */
.blob {
  position: absolute;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  filter: blur(8px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  animation: blobFloat 18s ease-in-out infinite;
}
.blob--peach { background: radial-gradient(circle at 30% 30%, #F4C8AC, #E9A07A); }
.blob--violet { background: radial-gradient(circle at 30% 30%, #7C6CB0, #5B4B8A); }
.blob--sage  { background: radial-gradient(circle at 30% 30%, #CFE3DB, #8FB7A8); }

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) rotate(0deg) scale(1); }
  33%  { transform: translate(20px,-26px) rotate(12deg) scale(1.05); }
  66%  { transform: translate(-18px,16px) rotate(-8deg) scale(0.97); }
}

/* subtle dotted/grain texture overlay helper */
.mesh-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 12% 18%, rgba(124,108,176,0.18), transparent 60%),
    radial-gradient(45% 45% at 88% 12%, rgba(233,160,122,0.20), transparent 60%),
    radial-gradient(50% 60% at 75% 90%, rgba(143,183,168,0.18), transparent 60%);
}

/* Section wave divider */
.wave-top, .wave-bottom { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 1; }
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }
.wave-top svg, .wave-bottom svg { width: 100%; height: auto; display: block; }

/* =====================================================================
   6. BUTTONS & LINKS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.8rem;
  border-radius: 100px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
  background: var(--grad-warm);
  color: var(--night);
  box-shadow: var(--shadow-warm);
}
.btn--primary:hover { box-shadow: 0 26px 60px rgba(221,118,84,0.42); }

.btn--dark { background: var(--night); color: #fff; box-shadow: var(--shadow); }
.btn--dark:hover { background: var(--plum); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(37,31,64,0.22);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(37,31,64,0.04); }

.btn--light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255,255,255,0.24); }

.btn--sm { padding: 0.65rem 1.25rem; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* text link with animated underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--coral);
  transition: gap var(--t-fast), color var(--t-fast);
}
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform var(--t-fast); }
.link-arrow:hover { gap: 0.85rem; color: var(--violet); }

/* =====================================================================
   7. HEADER / NAVIGATION
   ===================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--t-fast), box-shadow var(--t-fast), backdrop-filter var(--t-fast);
}
.site-header.scrolled {
  background: rgba(251, 246, 240, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 6px 24px rgba(37,31,64,0.07);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: 100%;
  max-width: 100%;             /* full bleed — edge to edge */
  margin-inline: 0;
  padding-inline: clamp(1.1rem, 3.5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}

/* Brand / logo */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand__mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--grad-calm);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__text { line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand__sub {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
}

/* Desktop menu — centered, fills the space between brand and CTA */
.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.05rem, 0.4vw, 0.4rem);
  margin-inline: auto;          /* keeps the menu centered in the bar */
}
.nav__link {
  position: relative;
  white-space: nowrap;
  padding: 0.5rem clamp(0.45rem, 0.8vw, 0.9rem);
  font-weight: 600;
  font-size: clamp(0.84rem, 0.9vw, 0.93rem);
  color: var(--ink-soft);
  border-radius: 10px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.7rem; right: 0.7rem; bottom: 0.28rem;
  height: 2px;
  background: var(--grad-warm);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--ink); }
.nav__link .lock { width: 0.78em; height: 0.78em; opacity: 0.55; margin-left: 0.2rem; vertical-align: -1px; }

.nav__cta { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(37,31,64,0.06);
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast), top var(--t-fast);
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
body.menu-open .nav__toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* =====================================================================
   8. FOOTER
   ===================================================================== */
.site-footer {
  position: relative;
  background: var(--night);
  color: rgba(251,246,240,0.8);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
.site-footer .blob { opacity: 0.22; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative; z-index: 2;
}
.footer__brand .brand__name { color: #fff; }
.footer__about { margin-top: 1.1rem; max-width: 32ch; color: rgba(251,246,240,0.62); font-size: 0.95rem; }
.footer__col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__col ul { display: grid; gap: 0.7rem; }
.footer__col a { color: rgba(251,246,240,0.7); font-size: 0.95rem; transition: color var(--t-fast), padding var(--t-fast); }
.footer__col a:hover { color: var(--peach); padding-left: 4px; }

.footer__contact li { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.9rem; font-size: 0.95rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--peach); flex-shrink: 0; margin-top: 3px; }
.footer__contact a { color: rgba(251,246,240,0.82); }
.footer__contact a:hover { color: var(--peach); }

.footer__social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer__social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background var(--t-fast), transform var(--t-fast);
}
.footer__social a:hover { background: var(--grad-warm); color: var(--night); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }

.footer__bottom {
  position: relative; z-index: 2;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-block: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(251,246,240,0.6);
}
.footer__bottom a { color: var(--peach); font-weight: 600; }
.footer__bottom a:hover { text-decoration: underline; }

/* =====================================================================
   9. REUSABLE COMPONENTS
   ===================================================================== */

/* Glass / surface cards */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card--glass {
  background: rgba(255,255,255,0.66);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
}
.card.on-dark { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.card.on-dark:hover { background: rgba(255,255,255,0.08); }
.card.on-dark p { color: rgba(251,246,240,0.74); }

/* Icon chips */
.icon-chip {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: var(--grad-warm);
  color: var(--night);
  margin-bottom: 1.3rem;
  box-shadow: var(--shadow-sm);
}
.icon-chip svg { width: 28px; height: 28px; }
.icon-chip--calm { background: var(--grad-calm); color: #fff; }
.icon-chip--sage { background: linear-gradient(135deg, #CFE3DB, #8FB7A8); color: var(--plum); }
.icon-chip--soft { background: var(--cream-2); color: var(--coral); }

.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.97rem; }

/* Feature row: number + content */
.feature-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--peach);
  line-height: 1;
}

/* Stats */
.stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  background: var(--grad-dawn);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.4rem; max-width: 18ch; }
.section--dark .stat__label { color: rgba(251,246,240,0.7); }

/* Pills / tags */
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  background: var(--cream-2);
  color: var(--plum);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pill--warm { background: rgba(233,160,122,0.18); color: var(--coral); }
.pill--sage { background: rgba(143,183,168,0.22); color: #4f7a6a; }

/* Split (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__body .eyebrow { margin-bottom: 1rem; }
.split__body h2 { margin-bottom: 1.1rem; }
.split__body p + p { margin-top: 1rem; }

/* Framed image with organic accents */
.media-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 1.2s var(--ease); }
.media-frame:hover img { transform: scale(1.05); }
.media-frame--wide { aspect-ratio: 3 / 2; }
.media-frame--tall { aspect-ratio: 3 / 4; }

/* floating accent badge over media */
.media-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.85rem;
}
.media-badge svg { width: 30px; height: 30px; color: var(--coral); flex-shrink: 0; }
.media-badge strong { display: block; font-size: 1.4rem; font-family: var(--font-display); color: var(--ink); line-height: 1; }
.media-badge span { font-size: 0.78rem; color: var(--ink-soft); }
.media-badge--br { right: -18px; bottom: 28px; }
.media-badge--tl { left: -18px; top: 28px; }

/* Checklist */
.checklist { display: grid; gap: 0.9rem; margin-top: 1.4rem; }
.checklist li { display: flex; gap: 0.8rem; align-items: flex-start; }
.checklist li svg {
  width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px;
  color: var(--sage);
}
.checklist li strong { display: block; }
.checklist li span { color: var(--ink-soft); font-size: 0.96rem; }
.section--dark .checklist li span { color: rgba(251,246,240,0.74); }

/* Timeline (transformation journey) */
.timeline { position: relative; display: grid; gap: 1.4rem; }
.timeline__line { position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(var(--peach), var(--violet)); opacity: 0.4; }
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.timeline__dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--coral);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.timeline__content { padding-top: 0.3rem; }
.timeline__content h3 { margin-bottom: 0.35rem; }
.timeline__content p { font-size: 0.97rem; }
.section--dark .timeline__dot { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); color: var(--peach); }

/* Testimonials */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
  height: 100%;
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.quote-card__mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.6; color: var(--peach-soft); height: 2rem; }
.quote-card blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.6; margin: 0.6rem 0 1.4rem; }
.quote-card__person { display: flex; align-items: center; gap: 0.85rem; }
.quote-card__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: #fff;
  background: var(--grad-calm);
  flex-shrink: 0;
}
.quote-card__name { font-weight: 700; color: var(--ink); font-size: 0.96rem; }
.quote-card__role { font-size: 0.82rem; color: var(--ink-soft); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 0.4rem; }

/* Accordion / FAQ */
.accordion { display: grid; gap: 1rem; }
.acc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--t-fast), border-color var(--t-fast);
}
.acc.open { box-shadow: var(--shadow); border-color: rgba(233,160,122,0.5); }
.acc__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
}
.acc__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid; place-items: center;
  position: relative;
  transition: background var(--t-fast), transform var(--t-fast);
}
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute;
  background: var(--coral); border-radius: 2px;
}
.acc__icon::before { width: 13px; height: 2px; }
.acc__icon::after { width: 2px; height: 13px; transition: transform var(--t-fast); }
.acc.open .acc__icon { background: var(--grad-warm); }
.acc.open .acc__icon::before, .acc.open .acc__icon::after { background: var(--night); }
.acc.open .acc__icon::after { transform: rotate(90deg); opacity: 0; }
.acc__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t);
}
.acc__a-inner { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); }
.acc__a-inner p + p { margin-top: 0.8rem; }

/* Blog cards */
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  height: 100%;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.post-card__media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.07); }
.post-card__media.grad-1 { background: var(--grad-warm); }
.post-card__media.grad-2 { background: var(--grad-calm); }
.post-card__media.grad-3 { background: linear-gradient(135deg, #8FB7A8, #5B4B8A); }
.post-card__media.grad-4 { background: linear-gradient(135deg, #E9A07A, #7C6CB0); }
.post-card__media.grad-5 { background: linear-gradient(135deg, #DD7654, #352A5C); }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; gap: 0.8rem; font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 0.7rem; }
.post-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.post-card p { font-size: 0.94rem; flex: 1; }
.post-card .link-arrow { margin-top: 1.1rem; font-size: 0.9rem; }
.post-card__media .post-icon { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.85); }
.post-card__media .post-icon svg { width: 56px; height: 56px; }

/* Myth vs fact */
.mvf { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.mvf__card { border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--line); }
.mvf__card h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; }
.mvf__myth { background: rgba(221,118,84,0.07); }
.mvf__myth h4 { color: var(--coral); }
.mvf__fact { background: rgba(143,183,168,0.12); }
.mvf__fact h4 { color: #4f7a6a; }
.mvf__card p { color: var(--ink); font-size: 0.97rem; }

/* CTA band */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--grad-calm);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { margin-top: 2rem; }
.cta-band .blob { opacity: 0.4; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-row.centered { justify-content: center; }

/* Forms */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 0.45rem; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1.05rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--violet);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(91,75,138,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.8rem; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(143,183,168,0.18);
  color: #3c6c58;
  font-weight: 600;
  border: 1px solid rgba(143,183,168,0.5);
}
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }

/* Info list (contact) */
.info-list { display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--cream-2); color: var(--coral);
}
.info-list .ic svg { width: 22px; height: 22px; }
.info-list h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.2rem; }
.info-list a, .info-list p { color: var(--ink); font-weight: 600; font-size: 1.02rem; }
.info-list a:hover { color: var(--coral); }

/* Map placeholder */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 320px;
  background:
    repeating-linear-gradient(45deg, rgba(143,183,168,0.08) 0 18px, transparent 18px 36px),
    var(--grad-soft);
  display: grid; place-items: center;
  text-align: center;
  position: relative;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-embed__placeholder { color: var(--ink-soft); padding: 2rem; }
.map-embed__placeholder svg { width: 48px; height: 48px; color: var(--coral); margin-bottom: 0.6rem; }

/* Process / numbered steps grid */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  transition: transform var(--t), box-shadow var(--t);
}
.step:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.step__n {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: var(--grad-warm); color: var(--night);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
}

/* Pull / highlight block in articles */
.callout {
  border-left: 4px solid var(--coral);
  background: rgba(233,160,122,0.08);
  padding: 1.3rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.8rem 0;
}
.callout p { color: var(--ink); font-size: 1.05rem; font-style: italic; }

/* Prose (article body) */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.6rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.7rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { display: grid; gap: 0.7rem; margin: 1rem 0 1.4rem; }
.prose ul li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-soft); }
.prose ul li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--peach); margin-top: 0.65rem; flex-shrink: 0; }
.prose a { color: var(--coral); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Badge strip / trust row */
.trust-row { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; }
.trust-item svg { width: 22px; height: 22px; color: var(--sage); }

/* =====================================================================
   10. PAGE HERO VARIANTS
   ===================================================================== */
/* Home hero */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  background: var(--grad-soft);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative; z-index: 2;
}
.hero__title { font-size: var(--fs-hero); line-height: 1.02; margin-bottom: 1.4rem; }
.hero__sub { font-size: var(--fs-lead); max-width: 50ch; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__trust { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; align-items: center; }

.hero__media { position: relative; }
.hero__media .media-frame { aspect-ratio: 4/5; }
.hero__deco {
  position: absolute;
  z-index: -1;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.8rem, 6vw, 4.5rem));
  padding-bottom: clamp(2.8rem, 6vw, 4.5rem);
  overflow: hidden;
  background: var(--grad-calm);
  color: #fff;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: var(--fs-h1); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 60ch; margin-inline: auto; font-size: var(--fs-lead); }
.page-hero .breadcrumb { margin-bottom: 1.4rem; }

.breadcrumb { display: inline-flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.7); justify-content: center; flex-wrap: wrap; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb .sep { opacity: 0.5; }

/* =====================================================================
   11. AUTH GATE / MODAL
   ===================================================================== */
.auth-overlay {
  position: fixed; inset: 0; z-index: 3000;
  display: none;
  place-items: center;
  padding: 1.5rem;
  background: rgba(24,18,48,0.72);
  backdrop-filter: blur(10px);
}
.auth-overlay.show { display: grid; animation: fadeIn 0.3s var(--ease); }
.auth-modal {
  width: min(440px, 100%);
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: fadeUp 0.4s var(--ease);
  text-align: center;
}
.auth-modal__mark {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 1.2rem;
  display: grid; place-items: center;
  background: var(--grad-calm); color: #fff;
}
.auth-modal__mark svg { width: 32px; height: 32px; }
.auth-modal h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.auth-modal p { font-size: 0.95rem; margin-bottom: 1.4rem; }
.auth-modal .field { text-align: left; }
.auth-modal input { text-align: center; letter-spacing: 0.15em; font-weight: 600; }
.auth-error {
  display: none;
  color: var(--coral); font-size: 0.88rem; font-weight: 600; margin-bottom: 0.8rem;
}
.auth-error.show { display: block; animation: shake 0.4s; }
.auth-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(37,31,64,0.06);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background var(--t-fast);
}
.auth-close:hover { background: rgba(37,31,64,0.12); }
.auth-hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 1rem; }

/* Splash guard shown on protected pages before verification */
.guard-splash {
  position: fixed; inset: 0; z-index: 4000;
  display: grid; place-items: center;
  background: var(--grad-calm);
  color: #fff;
  text-align: center;
  padding: 2rem;
}
.guard-splash .spinner {
  width: 46px; height: 46px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.25);
  border-top-color: #fff;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 1.2rem;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-7px)} 75%{transform:translateX(7px)} }

/* =====================================================================
   12. SCROLL-REVEAL
   ===================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =====================================================================
   13. UTILITIES
   ===================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.relative { position: relative; }
.z-2 { position: relative; z-index: 2; }
.maxw-60 { max-width: 60ch; }
.hide { display: none !important; }
.flex-center { display: flex; align-items: center; gap: 0.6rem; }
.gap-sm { gap: 0.6rem; }

/* =====================================================================
   14. RESPONSIVE
   ===================================================================== */
@media (max-width: 1180px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-inline: auto; }
}

/* ---- Collapse the dense 8-item menu into a hamburger early so it
        never crowds or wraps on tablets / smaller laptops ---- */
@media (max-width: 1180px) {
  :root { --header-h: 72px; }

  .nav__toggle { display: block; }
  .nav .btn { width: auto; }              /* keep CTA compact in the bar */
  .nav__menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.15rem;
    margin-inline: 0;
    background: rgba(251,246,240,0.98);
    backdrop-filter: blur(18px) saturate(140%);
    padding: 0.75rem clamp(1.1rem, 4vw, 2.5rem) 1.5rem;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  body.menu-open .nav__menu { opacity: 1; visibility: visible; transform: none; }
  .nav__link {
    padding: 0.9rem 0.5rem;
    font-size: 1rem;
    white-space: normal;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav__link:last-child { border-bottom: none; }
  .nav__link::after { display: none; }
  .nav__link.is-active { color: var(--coral); }
}

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split__media { order: 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .mvf { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .media-badge--br { right: 12px; }
  .media-badge--tl { left: 12px; }
}

@media (max-width: 560px) {
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats { gap: 1.5rem 2rem; }
  .btn { width: 100%; }
  .hero__cta .btn, .btn-row .btn { width: 100%; }
  .cta-band .btn-row { flex-direction: column; }
  .media-badge { padding: 0.8rem 1rem; }
  .brand__sub { display: none; }
  /* On phones the bar shows brand + hamburger only; Contact lives in the menu */
  .nav__cta .btn { display: none; }
}
