/* ==========================================
   ROSITA KHAYAM — SPEECH-LANGUAGE PATHOLOGIST
   ========================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: #0F4C5C;
  --purple-light: #1A6B7F;
  --purple-dark: #0A3A47;
  --purple-bg: #E0ECED;
  --pink: #C27C59;
  --pink-light: #D4967A;
  --pink-bg: #F5E8E0;
  --green: #1A6B7F;
  --green-light: #3A8FA0;
  --green-bg: #E0ECED;
  --yellow: #C27C59;
  --yellow-light: #E0A988;
  --blue: #0F4C5C;
  --blue-light: #1A6B7F;

  --text: #222222;
  --text-secondary: #555555;
  --text-light: #8A8A8A;
  --bg: #FAF9F6;
  --bg-warm: #F3F1EC;
  --surface: #FFFFFF;
  --border: rgba(15, 76, 92, 0.12);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: transparent;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Ocean Live Background --- */
.ocean-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ocean-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #dce8ea 0%, #c4dade 15%, #9dc3ca 35%, #6ba4af 55%, #3a8a99 75%, #0F4C5C 100%);
  animation: oceanShift 12s ease-in-out infinite alternate;
}

@keyframes oceanShift {
  0% { background: linear-gradient(180deg, #dce8ea 0%, #c4dade 15%, #9dc3ca 35%, #6ba4af 55%, #3a8a99 75%, #0F4C5C 100%); }
  50% { background: linear-gradient(180deg, #e0ebe8 0%, #c9ddd5 18%, #a2c8c4 38%, #72aeb0 58%, #3f8f95 78%, #0d4550 100%); }
  100% { background: linear-gradient(180deg, #dde9ec 0%, #c0d8e0 12%, #96bfc8 32%, #5fa0b2 52%, #38899e 72%, #0e4a58 100%); }
}

.ocean-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 50%;
}

.ocean-wave { opacity: 0.4; }
.ow1 { fill: rgba(15,76,92,0.25); animation: waveFlow1 8s ease-in-out infinite; }
.ow2 { fill: rgba(15,76,92,0.2); animation: waveFlow2 10s ease-in-out infinite; }
.ow3 { fill: rgba(15,76,92,0.15); animation: waveFlow3 7s ease-in-out infinite; }
.ow4 { fill: rgba(15,76,92,0.3); animation: waveFlow4 12s ease-in-out infinite; }

@keyframes waveFlow1 { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-8%); } }
@keyframes waveFlow2 { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-6%); } }
@keyframes waveFlow3 { 0%,100% { transform: translateX(-3%); } 50% { transform: translateX(3%); } }
@keyframes waveFlow4 { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-4%); } }

.ocean-foam {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, rgba(255,255,255,0.08), transparent);
}

.ocean-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ocean-light--1 {
  width: 500px; height: 500px;
  top: 5%; left: 10%;
  background: rgba(255,255,255,0.08);
  animation: lightDrift1 15s ease-in-out infinite alternate;
}

.ocean-light--2 {
  width: 400px; height: 400px;
  top: 20%; right: 15%;
  background: rgba(194,124,89,0.06);
  animation: lightDrift2 18s ease-in-out infinite alternate;
}

.ocean-light--3 {
  width: 600px; height: 600px;
  top: 40%; left: 30%;
  background: rgba(255,255,255,0.05);
  animation: lightDrift3 20s ease-in-out infinite alternate;
}

@keyframes lightDrift1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(60px,30px) scale(1.1); } }
@keyframes lightDrift2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-40px,20px) scale(1.15); } }
@keyframes lightDrift3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(30px,-20px) scale(1.05); } }

/* Floating therapy icons */
.ocean-icons {
  position: absolute;
  inset: 0;
}

.ocean-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.12);
  opacity: 0;
  animation: iconFloat 1.2s var(--ease) forwards, iconDrift var(--drift-dur, 20s) ease-in-out infinite var(--drift-delay, 0s);
}

@keyframes iconFloat {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes iconDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(var(--dx, 15px), var(--dy, -20px)) rotate(var(--rot, 5deg)); }
  50% { transform: translate(var(--dx2, -10px), var(--dy2, 10px)) rotate(calc(var(--rot, 5deg) * -1)); }
  75% { transform: translate(var(--dy, -20px), var(--dx, 15px)) rotate(var(--rot, 5deg)); }
}

.oi1 {
  width: 70px; top: 8%; left: 6%;
  --drift-dur: 22s; --drift-delay: 0s;
  --dx: 20px; --dy: -15px; --dx2: -12px; --dy2: 18px; --rot: 4deg;
  animation-delay: 0.2s, 0s;
  color: rgba(255,255,255,0.1);
}

.oi2 {
  width: 55px; top: 15%; right: 10%;
  --drift-dur: 26s; --drift-delay: 2s;
  --dx: -18px; --dy: 12px; --dx2: 14px; --dy2: -16px; --rot: -3deg;
  animation-delay: 0.4s, 2s;
  color: rgba(194,124,89,0.12);
}

.oi3 {
  width: 60px; top: 35%; left: 15%;
  --drift-dur: 18s; --drift-delay: 1s;
  --dx: 12px; --dy: -22px; --dx2: -8px; --dy2: 14px; --rot: 6deg;
  animation-delay: 0.6s, 1s;
  color: rgba(255,255,255,0.09);
}

.oi4 {
  width: 65px; top: 50%; right: 8%;
  --drift-dur: 24s; --drift-delay: 3s;
  --dx: -14px; --dy: 10px; --dx2: 18px; --dy2: -12px; --rot: -5deg;
  animation-delay: 0.8s, 3s;
  color: rgba(255,255,255,0.11);
}

.oi5 {
  width: 80px; top: 25%; left: 50%;
  --drift-dur: 28s; --drift-delay: 1.5s;
  --dx: 10px; --dy: -18px; --dx2: -15px; --dy2: 8px; --rot: 3deg;
  animation-delay: 1s, 1.5s;
  color: rgba(217,207,193,0.15);
}

.oi6 {
  width: 45px; top: 65%; left: 25%;
  --drift-dur: 20s; --drift-delay: 0.5s;
  --dx: -16px; --dy: 14px; --dx2: 12px; --dy2: -18px; --rot: -4deg;
  animation-delay: 1.2s, 0.5s;
  color: rgba(194,124,89,0.1);
}

.oi7 {
  width: 50px; top: 72%; right: 20%;
  --drift-dur: 25s; --drift-delay: 2.5s;
  --dx: 18px; --dy: -10px; --dx2: -14px; --dy2: 20px; --rot: 5deg;
  animation-delay: 0.3s, 2.5s;
  color: rgba(255,255,255,0.08);
}

.oi8 {
  width: 55px; top: 42%; right: 30%;
  --drift-dur: 21s; --drift-delay: 1.8s;
  --dx: -12px; --dy: -16px; --dx2: 10px; --dy2: 12px; --rot: -3deg;
  animation-delay: 0.7s, 1.8s;
  color: rgba(255,255,255,0.1);
}

.oi9 {
  width: 48px; top: 80%; left: 60%;
  --drift-dur: 23s; --drift-delay: 0.8s;
  --dx: 14px; --dy: 12px; --dx2: -18px; --dy2: -8px; --rot: 4deg;
  animation-delay: 1.1s, 0.8s;
  color: rgba(217,207,193,0.12);
}

.oi10 {
  width: 40px; top: 55%; left: 45%;
  --drift-dur: 19s; --drift-delay: 3.5s;
  --dx: -10px; --dy: -20px; --dx2: 16px; --dy2: 10px; --rot: -6deg;
  animation-delay: 0.9s, 3.5s;
  color: rgba(194,124,89,0.08);
}

section, nav, footer {
  position: relative;
  z-index: 1;
}

/* --- Cursor Glow --- */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(15,76,92,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  z-index: 1001;
}

.logo-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.logo-text {
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--cta {
  background: var(--purple);
  color: white !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(15, 76, 92, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Reveal Animation Base --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  box-shadow: 0 4px 24px rgba(15, 76, 92, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(15, 76, 92, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(15, 76, 92, 0.05);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* --- Section Labels --- */
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--purple);
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}

.center {
  text-align: center;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(250, 249, 246, 0.5);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  inset: 0;
}

.shape {
  position: absolute;
  opacity: 0;
  animation: floatIn 1s var(--ease) forwards;
}

.shape--bubble { top: 12%; left: 8%; animation-delay: 0.2s; }
.shape--puzzle { top: 20%; right: 15%; animation-delay: 0.4s; }
.shape--wave { bottom: 30%; left: 5%; animation-delay: 0.6s; }
.shape--star { top: 35%; right: 8%; animation-delay: 0.8s; }
.shape--heart { bottom: 25%; right: 20%; animation-delay: 1s; }
.shape--bubble.s2 { bottom: 40%; left: 18%; animation-delay: 1.2s; }
.shape--puzzle.s2 { top: 55%; left: 25%; animation-delay: 0.3s; }
.shape--wave.s2 { top: 15%; left: 40%; animation-delay: 0.7s; }
.shape--star.s2 { bottom: 15%; right: 35%; animation-delay: 0.9s; }
.shape--abc { top: 60%; right: 10%; animation-delay: 1.1s; }

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.shape--bubble { animation: floatIn 1s var(--ease) forwards, gentleFloat 8s ease-in-out infinite 1.2s; }
.shape--puzzle { animation: floatIn 1s var(--ease) 0.4s forwards, gentleFloat 10s ease-in-out infinite 1.4s; }
.shape--wave { animation: floatIn 1s var(--ease) 0.6s forwards, gentleFloat 7s ease-in-out infinite 1.6s; }
.shape--star { animation: floatIn 1s var(--ease) 0.8s forwards, gentleFloat 9s ease-in-out infinite 1.8s; }
.shape--heart { animation: floatIn 1s var(--ease) 1s forwards, gentleFloat 11s ease-in-out infinite 2s; }
.shape--bubble.s2 { animation: floatIn 1s var(--ease) 1.2s forwards, gentleFloat 9s ease-in-out infinite 2.2s; }
.shape--puzzle.s2 { animation: floatIn 1s var(--ease) 0.3s forwards, gentleFloat 8s ease-in-out infinite 1.3s; }
.shape--wave.s2 { animation: floatIn 1s var(--ease) 0.7s forwards, gentleFloat 10s ease-in-out infinite 1.7s; }
.shape--star.s2 { animation: floatIn 1s var(--ease) 0.9s forwards, gentleFloat 7s ease-in-out infinite 1.9s; }
.shape--abc { animation: floatIn 1s var(--ease) 1.1s forwards, gentleFloat 12s ease-in-out infinite 2.1s; }

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(2deg); }
  75% { transform: translateY(10px) rotate(-2deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(15, 76, 92, 0.06);
  border: 1px solid rgba(15, 76, 92, 0.12);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 86px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-line {
  display: block;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-subtitle-light {
  color: var(--text-light);
  font-size: 16px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ==========================================
   STORY SECTION
   ========================================== */
.story {
  padding: 120px 0 0;
  background: rgba(243, 241, 236, 0.82);
}

.story-intro {
  text-align: center;
  margin-bottom: 80px;
}

.story-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.story-headline em {
  font-style: italic;
  color: var(--purple);
}

/* Horizontal Scroll */
.story-scroll {
  position: relative;
  overflow: hidden;
}

.story-track {
  display: flex;
  gap: 40px;
  padding: 40px 60px 100px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.story-track::-webkit-scrollbar {
  display: none;
}

.story-card {
  flex: 0 0 min(85vw, 500px);
  scroll-snap-align: center;
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 60px rgba(0,0,0,0.1);
}

.story-card-visual {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.story-illustration {
  width: 200px;
  height: 200px;
}

.ill-svg {
  width: 100%;
  height: 100%;
}

/* SVG Animation Classes */
.draw-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawIn 2s var(--ease) forwards;
}

@keyframes drawIn {
  to { stroke-dashoffset: 0; }
}

.wave-anim {
  animation: waveSound 2s ease-in-out infinite;
}

.wave-anim.d1 {
  animation-delay: 0.3s;
}

.wave-anim.d2 {
  animation-delay: 0.6s;
}

@keyframes waveSound {
  0%, 100% { opacity: 0.3; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-5px); }
}

.puzzle-piece {
  transition: transform 0.6s var(--ease);
}

.puzzle-piece.p1 { animation: puzzleFloat 4s ease-in-out infinite; }
.puzzle-piece.p2 { animation: puzzleFloat 4s ease-in-out infinite 1s; }
.puzzle-piece.p3 { animation: puzzleFloat 4s ease-in-out infinite 2s; }
.puzzle-piece.p4 { animation: puzzleFloat 4s ease-in-out infinite 3s; }

@keyframes puzzleFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3px, -3px); }
}

.grow-stem {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: growUp 1.5s var(--ease) forwards;
}

@keyframes growUp {
  to { stroke-dashoffset: 0; }
}

.grow-canopy {
  transform-origin: center;
  animation: canopyGrow 1s var(--ease) forwards;
  opacity: 0;
}

.grow-canopy.c1 { animation-delay: 0.8s; }
.grow-canopy.c2 { animation-delay: 1s; }
.grow-canopy.c3 { animation-delay: 1.2s; }
.grow-canopy.c4 { animation-delay: 1.4s; }

@keyframes canopyGrow {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

.float-heart {
  animation: heartFloat 3s ease-in-out infinite;
}

.float-heart.h1 { animation-delay: 0s; }
.float-heart.h2 { animation-delay: 1.5s; }

@keyframes heartFloat {
  0%, 100% { opacity: 0.6; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-10px); }
}

.connect-arc {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawArc 2s var(--ease) infinite;
}

@keyframes drawArc {
  0% { stroke-dashoffset: 200; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}

.speech-bub {
  animation: bubPop 3s ease-in-out infinite;
}

.speech-bub.b2 {
  animation-delay: 1.5s;
}

@keyframes bubPop {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

.story-card-content {
  padding: 0 40px 40px;
}

.story-card-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.story-card-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.story-card-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ==========================================
   PARALLAX TEXT SECTION
   ========================================== */
.parallax-text {
  padding: 160px 0;
  background: rgba(250, 249, 246, 0.65);
  overflow: hidden;
  position: relative;
}

.parallax-text-inner {
  text-align: center;
}

.ptext-line {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  transition: transform 0.1s linear;
}

.ptext-line--outline {
  -webkit-text-stroke: 2px var(--purple);
  color: transparent;
  font-style: italic;
}

.parallax-sub {
  text-align: center;
  margin-top: 40px;
}

.parallax-sub p {
  font-size: 20px;
  color: var(--text-secondary);
}

/* ==========================================
   APPROACH SECTION
   ========================================== */
.approach {
  padding: 120px 0;
  background: rgba(243, 241, 236, 0.82);
}

.approach-header {
  text-align: center;
  margin-bottom: 64px;
}

.approach-header .section-desc {
  margin: 0 auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.approach-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}

.approach-card:hover::before {
  transform: scaleX(1);
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.approach-card-icon {
  margin-bottom: 20px;
}

.approach-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.approach-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  padding: 120px 0;
  background: rgba(250, 249, 246, 0.78);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-list {
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.service-item:first-child {
  border-top: 1px solid var(--border);
}

.service-item:hover {
  padding-left: 12px;
}

.service-item:hover .service-num {
  color: white;
  background: var(--purple);
}

.service-item:hover .service-arrow {
  transform: translate(4px, -4px);
  color: var(--purple);
}

.service-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--purple-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-arrow {
  color: var(--text-light);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

/* ==========================================
   IMPACT SECTION
   ========================================== */
.impact {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.impact-item {
  color: white;
}

.impact-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  display: inline;
}

.impact-suffix {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.impact-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  padding: 120px 0;
  background: rgba(243, 241, 236, 0.82);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image-frame {
  position: relative;
}

.about-image-photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.about-image-decor {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15,76,92,0.1), rgba(194,124,89,0.1));
  z-index: -1;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.credential-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-bg);
  border-radius: 8px;
  font-size: 14px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
  padding: 120px 0;
  background: rgba(250, 249, 246, 0.78);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-light);
}

/* ==========================================
   BOOK SECTION
   ========================================== */
.book {
  padding: 120px 0;
  background: rgba(243, 241, 236, 0.82);
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.book-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.book-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.book-form-wrapper {
  background: var(--surface);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(15,76,92,0.15);
  background: var(--bg);
  color: var(--text);
  transition: all 0.3s var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(15,76,92,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
  padding: 120px 0;
  background: rgba(250, 249, 246, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.contact-method:hover {
  border-color: var(--purple);
  background: rgba(15,76,92,0.04);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--purple-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}

.contact-method-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-method-value {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-top: 2px;
}

.contact-social p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}

.social-link:hover {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
  transform: translateY(-2px);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  padding: 48px 0;
  background: var(--text);
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.footer-brand .logo-letter {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.footer-tagline {
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .book-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links .nav-link {
    font-size: 24px;
  }

  .nav-links .nav-link--cta {
    font-size: 18px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .story-track {
    padding: 20px 24px 80px;
  }

  .ptext-line {
    font-size: clamp(36px, 10vw, 80px);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .book-form-wrapper {
    padding: 24px;
  }

  .approach-card {
    padding: 28px;
  }
}

/* ==========================================
   SMOOTH LOADING
   ========================================== */
.page-loading body {
  overflow: hidden;
}

/* Stagger delays for hero reveals */
.hero .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero .reveal:nth-child(2) { transition-delay: 0.2s; }
.hero .reveal:nth-child(3) { transition-delay: 0.3s; }
.hero .reveal:nth-child(4) { transition-delay: 0.4s; }
.hero .reveal:nth-child(5) { transition-delay: 0.5s; }

.hero-line:nth-child(1) { transition-delay: 0.15s; }
.hero-line:nth-child(2) { transition-delay: 0.25s; }

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(15, 76, 92, 0.25);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(15, 76, 92, 0.4);
}

/* Selection */
::selection {
  background: rgba(15, 76, 92, 0.15);
  color: var(--text);
}
