/* =========================================================
   ZAYDEN LUX — Premium Hypnotherapy Consultation Website
   Stylesheet (style.css)
   Author: Zayden Lux Design System
   ========================================================= */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand colors — soft lavender / dreamy cloud palette */
  --lavender-50:  #FBF8FF;
  --lavender-100: #F4EEFB;
  --lavender-200: #E8DEF5;
  --lavender-300: #D6C5EE;
  --lavender-400: #BFA3E4;
  --lavender-500: #A684D6;
  --lavender-600: #8868C2;
  --lavender-700: #6E50A8;
  --lavender-800: #4A3580;
  --lavender-900: #2D1F55;

  --pink-50:   #FFF5F8;
  --pink-100:  #FFE6EF;
  --pink-200:  #FBD0DE;
  --pink-300:  #F4B0C8;
  --pink-glow: #F6C9D9;

  --warm-white: #FBF9F6;
  --cream:      #F8F4EE;
  --cloud:      #EEE9F7;

  --navy-purple: #1E1840;
  --navy-deep:   #14102E;

  /* Semantic tokens */
  --color-bg:           var(--warm-white);
  --color-bg-alt:       var(--lavender-50);
  --color-surface:      #FFFFFF;
  --color-surface-glass:rgba(255, 255, 255, 0.55);
  --color-text:         var(--navy-purple);
  --color-text-soft:    #4A4368;
  --color-text-mute:    #7A7395;
  --color-primary:      var(--lavender-700);
  --color-primary-hover:var(--lavender-800);
  --color-accent:       var(--pink-glow);
  --color-border:       rgba(74, 53, 128, 0.10);
  --color-border-strong:rgba(74, 53, 128, 0.18);
  --color-card-border:  rgba(74, 53, 128, 0.22);
  --color-ring:         var(--lavender-500);

  /* Gradients */
  --grad-hero: radial-gradient(ellipse 80% 60% at 20% 10%, #EFE3FB 0%, transparent 60%),
               radial-gradient(ellipse 70% 60% at 85% 20%, #FCE3EE 0%, transparent 55%),
               radial-gradient(ellipse 60% 50% at 50% 100%, #E5DBF7 0%, transparent 60%),
               linear-gradient(180deg, #FBF9F6 0%, #F6EFFB 100%);
  --grad-soft: linear-gradient(135deg, #FBF8FF 0%, #F8F0FA 100%);
  --grad-card: linear-gradient(160deg, rgba(255,255,255,0.85) 0%, rgba(244,238,251,0.65) 100%);
  --grad-cta:  linear-gradient(135deg, #6E50A8 0%, #8868C2 50%, #C4A4E6 100%);
  --grad-text: linear-gradient(135deg, #4A3580 0%, #8868C2 60%, #C4A4E6 100%);

  /* Type scale */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-xs:   0.8125rem; /* 13 */
  --fs-sm:   0.9375rem; /* 15 */
  --fs-base: 1rem;      /* 16 */
  --fs-md:   1.0625rem; /* 17 */
  --fs-lg:   1.25rem;   /* 20 */
  --fs-xl:   1.5rem;    /* 24 */
  --fs-2xl:  1.875rem;  /* 30 */
  --fs-3xl:  2.5rem;    /* 40 */
  --fs-4xl:  3.25rem;   /* 52 */
  --fs-5xl:  4.25rem;   /* 68 */
  --fs-6xl:  5.25rem;   /* 84 */

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10:8rem;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl:44px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-xs: 0 1px 2px rgba(74, 53, 128, 0.05);
  --shadow-sm: 0 2px 8px rgba(74, 53, 128, 0.06), 0 1px 2px rgba(74, 53, 128, 0.04);
  --shadow-md: 0 8px 24px rgba(74, 53, 128, 0.08), 0 2px 6px rgba(74, 53, 128, 0.04);
  --shadow-lg: 0 18px 48px rgba(74, 53, 128, 0.12), 0 4px 12px rgba(74, 53, 128, 0.06);
  --shadow-xl: 0 30px 80px rgba(74, 53, 128, 0.18), 0 6px 18px rgba(74, 53, 128, 0.08);
  --shadow-glow: 0 0 80px rgba(168, 132, 214, 0.35);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 180ms;
  --dur:      280ms;
  --dur-slow: 520ms;

  /* Layout */
  --maxw: 1240px;
  --maxw-narrow: 880px;
  --nav-h: 76px;

  color-scheme: light;
}

/* ---------- DARK MODE TOKENS ---------- */
[data-theme="dark"] {
  color-scheme: dark;

  --color-bg:           #07051A;
  --color-bg-alt:       #0B0826;
  --color-surface:      #110D2E;
  --color-surface-glass:rgba(17, 13, 46, 0.55);
  --color-text:         #F4EEFB;
  --color-text-soft:    #C8BCE2;
  --color-text-mute:    #8E83AD;
  --color-primary:      #BFA3E4;
  --color-primary-hover:#D6C5EE;
  --color-accent:       var(--pink-glow);
  --color-border:       rgba(214, 197, 238, 0.08);
  --color-border-strong:rgba(214, 197, 238, 0.16);
  --color-card-border:  rgba(214, 197, 238, 0.12);
  --color-ring:         var(--lavender-400);

  --grad-hero: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(76, 50, 130, 0.28) 0%, transparent 60%),
               radial-gradient(ellipse 70% 60% at 85% 20%, rgba(140, 70, 110, 0.14) 0%, transparent 55%),
               radial-gradient(ellipse 60% 50% at 50% 100%, rgba(110, 80, 168, 0.22) 0%, transparent 60%),
               linear-gradient(180deg, #07051A 0%, #0C0828 100%);
  --grad-soft: linear-gradient(135deg, rgba(168, 132, 214, 0.18) 0%, rgba(168, 132, 214, 0.08) 100%);
  --grad-card: linear-gradient(160deg, rgba(28, 22, 60, 0.55) 0%, rgba(17, 13, 46, 0.40) 100%);
  --grad-cta:  linear-gradient(135deg, #8868C2 0%, #A684D6 50%, #D6C5EE 100%);
  --grad-text: linear-gradient(135deg, #D6C5EE 0%, #BFA3E4 60%, #F6C9D9 100%);

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.30);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.40), 0 2px 6px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.50), 0 4px 12px rgba(0, 0, 0, 0.30);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.60), 0 6px 18px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 80px rgba(168, 132, 214, 0.40);
}

/* Tame ultra-bright elements in dark mode */
[data-theme="dark"] .hero .orb { opacity: 0.16; filter: blur(80px); }
[data-theme="dark"] .problem-card .ico,
[data-theme="dark"] .cal-nav button {
  background: var(--grad-soft);
  border-color: var(--color-border-strong);
}

/* Slightly darker page-loader and navbar.scrolled have backdrop blur — ensure low brightness */
[data-theme="dark"] .page-loader { background: var(--color-bg); }

/* Mobile drawer overlay needs more darkness in dark mode */
[data-theme="dark"] .drawer-overlay { background: rgba(0, 0, 0, 0.55); }

/* Theme-aware tokens used inside hardcoded white rules */
:root {
  --surface-translucent-high: rgba(255, 255, 255, 0.92);
  --surface-translucent-med:  rgba(255, 255, 255, 0.78);
  --surface-translucent-low:  rgba(255, 255, 255, 0.55);
  --surface-solid-strong:     #ffffff;
  --field-bg:                 var(--lavender-50);
  --field-bg-focus:           #ffffff;
  --field-placeholder:        #B1A9C8;
  --nav-scrolled-bg:          rgba(251, 249, 246, 0.72);
  --drawer-bg:                rgba(251, 249, 246, 0.98);
  --selection-bg:             var(--lavender-300);
  --selection-fg:             var(--navy-deep);
  --before-strong-color:      #a06b8a;
}
[data-theme="dark"] {
  --surface-translucent-high: rgba(17, 13, 46, 0.92);
  --surface-translucent-med:  rgba(17, 13, 46, 0.70);
  --surface-translucent-low:  rgba(17, 13, 46, 0.45);
  --surface-solid-strong:     #1F1750;
  --field-bg:                 rgba(17, 13, 46, 0.60);
  --field-bg-focus:           rgba(28, 22, 60, 0.80);
  --field-placeholder:        #6E638B;
  --nav-scrolled-bg:          rgba(7, 5, 26, 0.85);
  --drawer-bg:                rgba(7, 5, 26, 0.98);
  --selection-bg:             var(--lavender-700);
  --selection-fg:             #fff;
  --before-strong-color:      #E0A6BD;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--selection-bg); color: var(--selection-fg); }

/* ---------- ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--color-ring);
  outline-offset: 3px;
  border-radius: 6px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy-purple);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--r-md);
  z-index: 9999;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 16px; }

@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;
  }
}

/* ---------- TYPOGRAPHY ---------- */
.display, h1.display { font-family: var(--font-display); font-weight: 400; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-text);
}
h1 { font-size: clamp(2.5rem, 6vw + 0.5rem, 4.5rem); font-variation-settings: 'opsz' 144, 'SOFT' 30; }
h2 { font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem); }
h3 { font-size: clamp(1.35rem, 1.5vw + 0.5rem, 1.875rem); }
h4 { font-size: clamp(1.125rem, 0.8vw + 0.6rem, 1.375rem); letter-spacing: -0.01em; }

p { color: var(--color-text-soft); }
.lead { font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.25rem); color: var(--color-text-soft); line-height: 1.65; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(168, 132, 214, 0.10);
  border: 1px solid rgba(168, 132, 214, 0.22);
}
.eyebrow .dot { width: 6px; height: 6px; background: var(--color-primary); border-radius: 50%; animation: pulse 2.4s ease-in-out infinite; }
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(64px, 8vw, 120px) 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--space-8); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: var(--fs-md); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: all var(--dur) var(--ease);
  background: transparent;
}
.navbar.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.nav-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background-color: var(--surface-solid-strong);
  background-image: url('assets/logo.png');
  background-size: 110%;
  background-position: center 50%;
  background-repeat: no-repeat;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 14px rgba(74, 53, 128, 0.10);
  display: grid; place-items: center;
}
.brand-mark svg { display: none; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-mute);
  font-weight: 500;
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-soft);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--color-text); background: rgba(168, 132, 214, 0.08); }
.nav-links a.active { color: var(--color-primary); background: rgba(168, 132, 214, 0.12); }
.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface-translucent-med);
  border: 1px solid var(--color-border);
  align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease);
}
.menu-toggle:hover { background: var(--surface-solid-strong); }
.menu-toggle svg { width: 22px; height: 22px; color: var(--color-text); }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Theme toggle */
.theme-toggle {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--surface-translucent-med);
  border: 1px solid var(--color-border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-text);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover { background: var(--surface-solid-strong); border-color: var(--lavender-400); transform: translateY(-1px); }
.theme-toggle svg {
  width: 20px; height: 20px;
  position: absolute;
  transition: transform var(--dur-slow) var(--ease), opacity var(--dur) var(--ease);
}
.theme-toggle .icon-sun  { opacity: 0; transform: rotate(-90deg) scale(0.6); }
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0)     scale(1); }
[data-theme="dark"] .theme-toggle .icon-sun  { opacity: 1; transform: rotate(0)    scale(1); }
[data-theme="dark"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.6); }


/* Mobile nav drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 92vw);
  height: 100dvh;
  background: var(--drawer-bg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-left: 1px solid var(--color-border);
  padding: calc(var(--nav-h) + 24px) 28px 32px;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  z-index: 99;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: -30px 0 80px rgba(74, 53, 128, 0.15);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  padding: 16px 18px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 14px;
  transition: all var(--dur) var(--ease);
}
.mobile-drawer a:hover, .mobile-drawer a.active {
  background: rgba(168, 132, 214, 0.12);
  color: var(--color-primary);
}
.mobile-drawer .btn { margin-top: 24px; }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 16, 46, 0.35);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease);
  z-index: 98;
}
.drawer-overlay.show { opacity: 1; pointer-events: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.005em;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 12px 30px rgba(110, 80, 168, 0.32), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { box-shadow: 0 18px 40px rgba(110, 80, 168, 0.40), inset 0 1px 0 rgba(255,255,255,0.30); }
.btn-secondary {
  background: var(--surface-translucent-med);
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-secondary:hover { background: var(--surface-solid-strong); border-color: var(--lavender-400); }
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding: 12px 18px;
}
.btn-ghost:hover { background: rgba(168, 132, 214, 0.10); }
.btn-large { padding: 18px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 700ms var(--ease);
  pointer-events: none;
}
@keyframes ripple {
  to { transform: scale(2.5); opacity: 0; }
}
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: var(--grad-hero);
  overflow: hidden;
  isolation: isolate;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero h1 {
  font-size: clamp(2.75rem, 6.5vw + 0.5rem, 5.25rem);
  font-weight: 350;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 18px 0 24px;
  font-variation-settings: 'opsz' 144;
}
.hero h1 em { font-style: italic; font-weight: 350; }
.hero .lead { font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem); max-width: 640px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--color-text-mute);
  font-size: 14px;
}
.hero-meta span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-meta svg { width: 16px; height: 16px; color: var(--color-primary); }

/* Hero floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}
.orb-1 { width: 380px; height: 380px; background: #D9B8F0; top: -80px; left: -100px; animation: float 14s ease-in-out infinite; }
.orb-2 { width: 320px; height: 320px; background: #F6C9D9; top: 30%; right: -120px; animation: float 18s ease-in-out infinite reverse; }
.orb-3 { width: 460px; height: 460px; background: #C4B5FD; bottom: -160px; left: 25%; opacity: 0.5; animation: float 22s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.05); }
  66%      { transform: translate(-30px, 40px) scale(0.95); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  padding: 56px 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 8px;
}
.trust-item .ico {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--grad-soft);
  border: 1px solid var(--color-border);
  display: grid; place-items: center;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.trust-item .ico svg { width: 24px; height: 24px; }
.trust-item h4 { font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--color-text); }
.trust-item p { font-size: 14px; color: var(--color-text-mute); max-width: 220px; }

/* ---------- PROBLEMS GRID ---------- */
.problems { background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .problems-grid { grid-template-columns: 1fr; }
}
.problem-card {
  background: var(--grad-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(168, 132, 214, 0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.problem-card:hover { transform: translateY(-4px); border-color: var(--lavender-300); box-shadow: var(--shadow-md); }
.problem-card:hover::before { opacity: 1; }
.problem-card .ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--surface-solid-strong);
  border: 1px solid var(--color-border);
  display: grid; place-items: center;
  color: var(--color-primary);
  margin-bottom: 18px;
}
.problem-card .ico svg { width: 22px; height: 22px; }
.problem-card h4 { margin-bottom: 8px; font-family: var(--font-display); font-weight: 500; }
.problem-card p { font-size: 14.5px; line-height: 1.6; }

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  transition: all var(--dur) var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 10px; font-weight: 500; }
.step p { font-size: 15px; line-height: 1.65; }
.step-icon {
  position: absolute; top: 28px; right: 28px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-soft);
  display: grid; place-items: center;
  color: var(--color-primary);
}
.step-icon svg { width: 18px; height: 18px; }

/* ---------- ABOUT PREVIEW ---------- */
.about-preview {
  background: var(--color-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.portrait-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--grad-soft);
  box-shadow: var(--shadow-xl);
}
.portrait-wrap::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(246, 201, 217, 0.5) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
}
.portrait-placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255,255,255,0.6), transparent 60%),
    linear-gradient(160deg, #E8DEF5 0%, #FBD0DE 50%, #D6C5EE 100%);
  display: grid; place-items: center;
  position: relative;
}
.portrait-placeholder svg {
  width: 38%;
  color: rgba(74, 53, 128, 0.28);
  filter: drop-shadow(0 4px 24px rgba(74, 53, 128, 0.15));
}
.portrait-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  z-index: 1;
}
.portrait-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(74, 53, 128, 0.0) 50%, rgba(30, 24, 64, 0.42) 100%),
    radial-gradient(ellipse 80% 50% at 50% 10%, rgba(246, 201, 217, 0.15) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}
.portrait-badge { z-index: 3; }
.signature-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: 0 4px 14px rgba(74, 53, 128, 0.18);
  border: 2px solid #fff;
  flex-shrink: 0;
}
.portrait-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--surface-translucent-high);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.portrait-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #4ECB7A; box-shadow: 0 0 12px rgba(78, 203, 122, 0.5); }
.portrait-badge strong { font-size: 14px; font-weight: 600; color: var(--color-text); }
.portrait-badge small { display: block; font-size: 12px; color: var(--color-text-mute); }
.about-text h2 { margin-bottom: 18px; }
.about-text .lead { margin-bottom: 24px; }
.about-text .signature {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.signature-name { font-family: var(--font-display); font-size: 22px; font-weight: 400; font-style: italic; color: var(--color-text); }
.signature-role { font-size: 13px; color: var(--color-text-mute); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

/* ---------- SERVICES ---------- */
.services-section { background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.services-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) {
  .services-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid.cols-3 { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all var(--dur) var(--ease);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: auto -40% -40% auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(168, 132, 214, 0.22) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--lavender-300); }
.service-card:hover::after { opacity: 1; }
.service-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-soft);
  border: 1px solid var(--color-border);
  display: grid; place-items: center;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.service-ico svg { width: 26px; height: 26px; }
.service-card h3 { font-weight: 500; }
.service-card p { font-size: 15px; line-height: 1.65; }
.service-meta { display: flex; align-items: center; gap: 16px; color: var(--color-text-mute); font-size: 13px; padding-top: 14px; border-top: 1px dashed var(--color-border-strong); margin-top: auto; }
.service-meta span { display: inline-flex; align-items: center; gap: 6px; }
.service-meta svg { width: 14px; height: 14px; }

/* Service benefit list (services.html) */
.benefits { display: flex; flex-direction: column; gap: 10px; margin: 8px 0; }
.benefits li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--color-text-soft); }
.benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grad-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E50A8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-size: 12px;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--color-bg); }
.testimonial-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 4px 8px;
  margin: 0 -4px;
}
.testimonial-track {
  display: flex;
  gap: 22px;
  transition: transform var(--dur-slow) var(--ease);
  will-change: transform;
}
.testimonial {
  flex: 0 0 calc(33.333% - 15px);
  background: var(--grad-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial .stars { color: #E5A93B; display: flex; gap: 2px; }
.testimonial .stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-soft);
  font-family: var(--font-body);
}
.testimonial blockquote::before { content: '“'; font-family: var(--font-display); font-size: 48px; line-height: 0; vertical-align: -16px; color: var(--lavender-400); margin-right: 4px; }
.testimonial .person { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--color-border); }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  background: var(--grad-cta);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.person-info strong { display: block; font-size: 14.5px; font-weight: 600; color: var(--color-text); }
.person-info small { font-size: 12px; color: var(--color-text-mute); }
.carousel-nav { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 36px; }
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: grid; place-items: center;
  color: var(--color-text);
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover { background: var(--lavender-100); border-color: var(--lavender-400); color: var(--color-primary); }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-dots { display: flex; gap: 8px; }
.dot-btn { width: 9px; height: 9px; border-radius: 50%; background: var(--color-border-strong); transition: all var(--dur) var(--ease); padding: 0; }
.dot-btn.active { background: var(--color-primary); transform: scale(1.3); }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex; flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq-item.open { border-color: var(--lavender-300); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  text-align: left;
  letter-spacing: -0.005em;
}
.faq-toggle {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid var(--color-border);
  display: grid; place-items: center;
  color: var(--color-primary);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.faq-toggle svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.faq-item.open .faq-toggle { background: var(--grad-cta); color: #fff; border-color: transparent; }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease), padding var(--dur-slow) var(--ease);
  padding: 0 26px;
}
.faq-item.open .faq-a {
  padding: 0 26px 22px;
  max-height: 600px;
}
.faq-a p { font-size: 15.5px; line-height: 1.7; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(80px, 10vw, 140px) 0;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 100%, rgba(168, 132, 214, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 0%, rgba(246, 201, 217, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(196, 181, 253, 0.20) 0%, transparent 60%);
  z-index: -1;
}
.final-cta-inner { text-align: center; max-width: 760px; margin: 0 auto; padding: 0 24px; }
.final-cta .eyebrow { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; }
.final-cta h2 {
  color: #fff;
  font-weight: 350;
  font-size: clamp(2.25rem, 4vw + 0.5rem, 3.75rem);
  margin: 18px 0 22px;
}
.final-cta h2 em { font-style: italic; font-weight: 350; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 1.0625rem; max-width: 540px; margin: 0 auto 36px; }
.final-cta .btn-secondary { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.20); }
.final-cta .btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* ---------- FOOTER ---------- */
footer.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-mute);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; color: var(--color-text-soft); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--color-primary); }
.footer-brand p { font-size: 14.5px; line-height: 1.65; margin-top: 16px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-translucent-med);
  border: 1px solid var(--color-border);
  display: grid; place-items: center;
  color: var(--color-text-soft);
  transition: all var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--grad-cta); color: #fff; border-color: transparent; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-mute);
}
.footer-bottom .links { display: flex; gap: 22px; }

/* ---------- PAGE HEADER (sub pages) ---------- */
.page-header {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  background: var(--grad-hero);
  overflow: hidden;
  isolation: isolate;
}
.page-header h1 {
  font-weight: 350;
  font-size: clamp(2.5rem, 5vw + 0.5rem, 4rem);
  letter-spacing: -0.02em;
  margin: 18px auto 18px;
  max-width: 800px;
}
.page-header h1 em { font-style: italic; }
.page-header p { max-width: 620px; margin: 0 auto; font-size: 1.0625rem; color: var(--color-text-soft); }

/* ---------- ABOUT PAGE ---------- */
.about-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.about-story .portrait-wrap { aspect-ratio: 3/4; position: sticky; top: calc(var(--nav-h) + 24px); }
.about-story h2 { margin-bottom: 16px; }
.about-story p { margin-bottom: 18px; font-size: 16.5px; line-height: 1.75; }
.about-story p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.85;
  float: left;
  margin: 6px 12px 0 0;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .values-grid { grid-template-columns: 1fr; }
}
.value {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--dur) var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value .ico {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.value .ico svg { width: 20px; height: 20px; }
.value h4 { margin-bottom: 8px; font-weight: 500; }
.value p { font-size: 14.5px; line-height: 1.65; }

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.credential {
  position: relative;
  padding: 22px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: background var(--dur) var(--ease);
}
/* Vertical dividers between columns */
.credential:nth-child(odd) { border-right: 1px solid var(--color-border); }
/* Horizontal dividers between rows */
.credential:nth-child(-n+2) { border-bottom: 1px solid var(--color-border); }
.credential:hover { background: var(--surface-translucent-low); }
.credential .ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--color-border);
  display: grid; place-items: center;
  color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}
.credential .ico svg { width: 20px; height: 20px; }
.credential-text { min-width: 0; }
.credential strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-wrap: balance;
}
.credential small {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--color-text-mute);
  letter-spacing: 0.02em;
}
@media (max-width: 520px) {
  .credentials { grid-template-columns: 1fr; }
  .credential:nth-child(odd) { border-right: 0; }
  .credential { border-bottom: 1px solid var(--color-border); }
  .credential:nth-child(-n+2) { border-bottom: 1px solid var(--color-border); }
  .credential:last-child { border-bottom: 0; }
}

/* ---------- TESTIMONIAL PAGE (wall) ---------- */
.review-wall {
  columns: 3;
  column-gap: 22px;
}
@media (max-width: 980px) { .review-wall { columns: 2; } }
@media (max-width: 600px) { .review-wall { columns: 1; } }
.review-wall .testimonial {
  display: inline-flex;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.improvement {
  display: flex; gap: 12px; align-items: center;
  background: var(--field-bg);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 4px;
  font-size: 13px;
}
.improvement .before, .improvement .after {
  flex: 1;
  display: flex; flex-direction: column;
}
.improvement .label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-mute); }
.improvement .before strong { color: var(--before-strong-color); font-weight: 500; }
.improvement .after strong { color: var(--color-primary); font-weight: 600; }
.improvement .arr {
  color: var(--color-primary);
  display: grid; place-items: center;
}
.improvement .arr svg { width: 18px; height: 18px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 12px auto 48px;
  max-width: 900px;
  background: var(--grad-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3vw + 0.5rem, 3rem);
  font-weight: 400;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat .lbl { font-size: 13px; color: var(--color-text-mute); margin-top: 6px; letter-spacing: 0.06em; }

/* ---------- BOOKING / CONTACT FORM ---------- */
.form-section { background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%); }
.form-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.form-side {
  background: var(--grad-cta);
  color: #fff;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.form-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(246, 201, 217, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 50%);
  z-index: -1;
}
.form-side .eyebrow { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.20); color: #fff; }
.form-side h2 { color: #fff; font-weight: 350; margin: 16px 0 16px; }
.form-side h2 em { font-style: italic; }
.form-side p { color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.7; }
.form-side ul { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.form-side li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.92); font-size: 14.5px; }
.form-side li .ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.form-side li .ico svg { width: 14px; height: 14px; color: #fff; }
.form-side .contact-list { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.18); }
.form-side .contact-list li { font-size: 14px; }

.form-card { padding: 44px 40px; }
.form-card h3 { margin-bottom: 6px; font-weight: 500; }
.form-card > p.sub { color: var(--color-text-mute); font-size: 14.5px; margin-bottom: 28px; }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; position: relative; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-soft);
  letter-spacing: 0.02em;
}
.field label .req { color: #C24A4A; margin-left: 4px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--field-bg);
  border: 1px solid var(--color-border);
  font-size: 15px;
  color: var(--color-text);
  transition: all var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; font-family: inherit; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--color-border-strong); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--field-bg-focus);
  box-shadow: 0 0 0 4px rgba(110, 80, 168, 0.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--field-placeholder); }
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #DC6B6B;
  background: rgba(220, 107, 107, 0.10);
}
.field-err {
  display: none;
  font-size: 12.5px;
  color: #C24A4A;
  margin-top: 2px;
}
.field.has-error .field-err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Custom select / dropdown */
.select { position: relative; }
.select-trigger {
  width: 100%;
  padding: 14px 16px;
  padding-right: 46px;
  border-radius: 14px;
  background: var(--field-bg);
  border: 1px solid var(--color-border);
  font-size: 15px;
  color: var(--color-text);
  text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  position: relative;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}
.select-trigger:hover { border-color: var(--color-border-strong); }
.select-trigger:focus-visible,
.select.open .select-trigger {
  outline: none;
  border-color: var(--color-primary);
  background: var(--field-bg-focus);
  box-shadow: 0 0 0 4px rgba(110, 80, 168, 0.18);
}
.select-value {
  flex: 1;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.select-value.is-placeholder { color: var(--field-placeholder); }
.select-caret {
  position: absolute;
  right: 16px; top: 50%;
  width: 18px; height: 18px;
  transform: translateY(-50%);
  color: var(--color-primary);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
  pointer-events: none;
}
.select.open .select-caret { transform: translateY(-50%) rotate(180deg); }
.select-menu {
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 8px);
  background: var(--surface-translucent-high);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 18px 48px rgba(74, 53, 128, 0.18), 0 4px 12px rgba(74, 53, 128, 0.08);
  display: flex; flex-direction: column; gap: 2px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 50;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}
.select.open .select-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.select-option {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 14px;
  font-size: 14.5px;
  color: var(--color-text-soft);
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.select-option:hover, .select-option.is-focus {
  background: rgba(168, 132, 214, 0.10);
  color: var(--color-text);
}
.select-option.is-selected {
  background: var(--lavender-100);
  color: var(--color-primary);
  font-weight: 600;
}
.select-option .tick {
  width: 16px; height: 16px;
  opacity: 0;
  color: var(--color-primary);
  flex-shrink: 0;
}
.select-option.is-selected .tick { opacity: 1; }
.select-menu::-webkit-scrollbar { width: 6px; }
.select-menu::-webkit-scrollbar-thumb { background: var(--color-border-strong); border-radius: 3px; }
.select-menu::-webkit-scrollbar-track { background: transparent; }

/* Time slots */
.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.slot {
  padding: 12px 8px;
  border-radius: 12px;
  background: var(--field-bg);
  border: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-soft);
  text-align: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.slot:hover { border-color: var(--lavender-400); background: var(--field-bg-focus); }
.slot.selected { background: var(--grad-cta); color: #fff; border-color: transparent; box-shadow: 0 8px 18px rgba(110, 80, 168, 0.28); }

/* Mini calendar */
.calendar {
  background: var(--field-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 14px;
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 8px 12px;
}
.cal-title { font-family: var(--font-display); font-size: 17px; font-weight: 500; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--surface-solid-strong);
  border: 1px solid var(--color-border);
  display: grid; place-items: center;
  color: var(--color-text-soft);
  transition: all var(--dur) var(--ease);
}
.cal-nav button:hover { background: var(--lavender-100); color: var(--color-primary); }
.cal-nav svg { width: 14px; height: 14px; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  text-align: center;
  font-size: 11px;
  color: var(--color-text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 0;
}
.cal-day {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 10px;
  color: var(--color-text);
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}
.cal-day::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--lavender-100);
  opacity: 0;
  transition: opacity 200ms var(--ease);
  z-index: -2;
}
.cal-day::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--grad-cta);
  opacity: 0;
  box-shadow: 0 8px 18px rgba(110, 80, 168, 0.0);
  transition: opacity 320ms var(--ease), box-shadow 320ms var(--ease);
  z-index: -1;
  pointer-events: none;
}
.cal-day:hover:not(.disabled):not(.empty)::before { opacity: 1; }
.cal-day.disabled { color: #C9C2DC; cursor: not-allowed; }
.cal-day.empty { cursor: default; }
.cal-day.today { color: var(--color-primary); font-weight: 700; }
.cal-day.selected {
  color: #fff;
  font-weight: 600;
}
.cal-day.selected::after {
  opacity: 1;
  box-shadow: 0 8px 18px rgba(110, 80, 168, 0.32);
}
.cal-day.selected::before { opacity: 0; }

/* Toast */
.toast-host {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  display: flex; flex-direction: column; gap: 12px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 360px;
  background: var(--surface-translucent-high);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
  display: flex; align-items: flex-start; gap: 12px;
  transform: translateY(-10px) scale(0.98);
  opacity: 0;
  transition: transform 320ms var(--ease), opacity 320ms var(--ease);
}
.toast.show { transform: translateY(0) scale(1); opacity: 1; }
.toast .ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.toast.success .ico { background: rgba(78, 203, 122, 0.15); color: #2E9B57; }
.toast.error .ico { background: rgba(220, 107, 107, 0.15); color: #C24A4A; }
.toast.info .ico { background: rgba(168, 132, 214, 0.15); color: var(--color-primary); }
.toast .ico svg { width: 18px; height: 18px; }
.toast strong { font-size: 14.5px; font-weight: 600; color: var(--color-text); display: block; }
.toast small { font-size: 13px; color: var(--color-text-mute); display: block; margin-top: 2px; }

/* Calm sound toggle (floating) */
.calm-toggle {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  height: 46px;
  padding: 0 18px 0 14px;
  border-radius: var(--r-pill);
  background: var(--surface-translucent-med);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--dur) var(--ease);
}
.calm-toggle:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--surface-solid-strong); }
.calm-toggle .calm-icon-on,
.calm-toggle .calm-icon-off { width: 18px; height: 18px; color: var(--color-primary); display: none; flex-shrink: 0; }
.calm-toggle.on .calm-icon-on { display: block; }
.calm-toggle:not(.on) .calm-icon-off { display: block; color: var(--color-text-mute); }
.calm-toggle .calm-label { white-space: nowrap; }
.calm-toggle .calm-wave {
  display: inline-flex; align-items: center; gap: 2.5px;
  height: 18px;
  width: 18px;
  justify-content: center;
}
.calm-toggle .calm-wave i {
  display: block;
  width: 2.5px;
  background: var(--color-primary);
  border-radius: 2px;
  height: 6px;
  transition: height 240ms var(--ease), background var(--dur) var(--ease);
}
.calm-toggle.on .calm-wave i { animation: wave 1.6s ease-in-out infinite; }
.calm-toggle.on .calm-wave i:nth-child(2) { animation-delay: 0.2s; }
.calm-toggle.on .calm-wave i:nth-child(3) { animation-delay: 0.4s; }
.calm-toggle.on .calm-wave i:nth-child(4) { animation-delay: 0.1s; }
.calm-toggle:not(.on) .calm-wave i { background: var(--color-text-mute); height: 4px; }
@keyframes wave {
  0%, 100% { height: 4px; }
  50%      { height: 14px; }
}
@media (max-width: 520px) {
  .calm-toggle { left: 16px; bottom: 16px; padding: 0 14px 0 12px; height: 42px; }
  .calm-toggle .calm-label { display: none; }
}

/* Page loader */
.page-loader {
  position: fixed; inset: 0;
  background: var(--color-bg);
  z-index: 9999;
  display: grid; place-items: center;
  transition: opacity 600ms var(--ease), visibility 600ms var(--ease);
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 96px; height: 96px;
  border-radius: 24px;
  background-color: var(--surface-solid-strong);
  background-image: url('assets/logo.png');
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-glow);
  animation: breathe 2.4s ease-in-out infinite;
}
.loader-mark svg { display: none; }
@keyframes breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(168, 132, 214, 0.45); }
  50%      { transform: scale(1.08); box-shadow: 0 0 100px rgba(168, 132, 214, 0.65); }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }
.reveal[data-delay="5"] { transition-delay: 400ms; }

/* Contact extras */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--r-lg);
  padding: 26px;
  text-align: left;
  transition: all var(--dur) var(--ease);
  display: flex; flex-direction: column; gap: 10px;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--lavender-300); }
.contact-card .ico {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.contact-card .ico svg { width: 20px; height: 20px; }
.contact-card h4 { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--color-text-mute); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-card a, .contact-card span { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--color-text); }
.contact-card small { color: var(--color-text-mute); font-size: 13px; }

/* ============= RESPONSIVE ============= */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-cta .btn:not(.menu-toggle) { display: none; }
  .about-grid, .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-story .portrait-wrap { position: static; max-width: 480px; margin: 0 auto; }
  .form-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonial { flex: 0 0 calc(50% - 11px); }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding: calc(var(--nav-h) + 36px) 0 60px; }
  .hero-meta { gap: 16px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .testimonial { flex: 0 0 100%; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .form-side { padding: 36px 28px; }
  .toast-host { left: 16px; right: 16px; }
  .toast { max-width: 100%; }
  .hero h1 br { display: none; }
  .stat-row { padding: 24px 18px; }
  .brand small { display: none; }
}
