/* ============================================
   FLOURISH — SUM TOTAL Site AB
   Aesthetic: Grove body + Clarity hero/nav
   Font Pairing: Fraunces (serif) + Commissioner (sans)
   Palette: Terracotta, Moss, Amber, Warm Cream, Bark
   Copy: LLM Consulting Perspective
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  --color-cream: #FAF3E8;
  --color-cream-dark: #F0E6D4;
  --color-terracotta: #C0705A;
  --color-terracotta-deep: #A85840;
  --color-moss: #6B7F5E;
  --color-moss-light: #8FA37E;
  --color-amber: #C5943A;
  --color-amber-light: #D4AA5A;
  --color-bark: #3E2F24;
  --color-bark-light: #5A4636;
  --color-linen: #F5EDE0;
  --color-text: #2C2218;
  --color-text-muted: #7A6E60;
  --color-border: #DDD4C4;
  --color-white: #FFFDF8;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Commissioner', 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-soft: 0 4px 24px rgba(62, 47, 36, 0.08);
  --shadow-card: 0 2px 8px rgba(62, 47, 36, 0.05), 0 8px 24px rgba(62, 47, 36, 0.08);
  --shadow-hover: 0 4px 12px rgba(62, 47, 36, 0.08), 0 12px 40px rgba(62, 47, 36, 0.14);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-entrance: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.78;
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
ul, ol { list-style: none; }

/* --- Linen Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* --- Progress Bar --- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-terracotta) 0%, var(--color-amber) 100%);
  z-index: 3000;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* --- Watermark --- */
.watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55vh;
  height: 55vh;
  max-width: 500px;
  max-height: 500px;
  z-index: 10;
  pointer-events: none;
  opacity: 0.11;
  filter: grayscale(40%) brightness(1.3);
  transition: opacity 0.8s ease, filter 0.8s ease;
  background: url('../shared/logo-icon-lg.png') center/contain no-repeat;
}
.watermark.glow {
  opacity: 0.12;
  filter: grayscale(20%) brightness(1.2) sepia(10%);
}

/* --- Gallery Banner --- */
.gallery-banner {
  background: var(--color-bark);
  color: var(--color-cream);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
}
.gallery-banner a {
  color: var(--color-amber-light);
  transition: color var(--transition);
  position: relative;
}
.gallery-banner a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-amber-light);
  transition: width var(--transition);
}
.gallery-banner a:hover { color: var(--color-amber); }
.gallery-banner a:hover::after { width: 100%; }

/* --- Navigation (Sticky Top Bar with Frosted Glass) --- */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 243, 232, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  padding: 0 24px;
  transition: box-shadow var(--transition);
}
.nav-bar.scrolled {
  box-shadow: 0 2px 20px rgba(62, 47, 36, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-bark);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  letter-spacing: 0.01em;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-terracotta);
  transition: width var(--transition);
  border-radius: 1px;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { width: 100%; }
.nav-links a:hover { color: var(--color-terracotta); }
.nav-links a.active { color: var(--color-terracotta); }

/* Programs dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  cursor: pointer;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  padding: 12px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text) !important;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover {
  background: var(--color-linen);
  color: var(--color-terracotta) !important;
}
.nav-dropdown-menu a::after { display: none !important; }

/* About dropdown */
.about-dropdown-menu {
  min-width: 280px;
}

.nav-cta {
  background: var(--color-terracotta);
  color: var(--color-white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--color-terracotta-deep) !important;
  color: var(--color-white) !important;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 16px rgba(192, 112, 90, 0.25);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 701;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-bark);
  position: absolute;
  left: 11px;
  transition: var(--transition);
}
.nav-hamburger span:nth-child(1) { top: 13px; }
.nav-hamburger span:nth-child(2) { top: 20px; }
.nav-hamburger span:nth-child(3) { top: 27px; }
.nav-hamburger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* Mobile nav — slide-in panel */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(62, 47, 36, 0.4);
  z-index: 599;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--color-bark);
  z-index: 600;
  flex-direction: column;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 24px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.mobile-nav-close:hover { opacity: 1; }
.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(250, 243, 232, 0.1);
}
.mobile-nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.mobile-nav-brand span {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--color-cream);
  font-weight: 500;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-cream);
  font-weight: 400;
  padding: 14px 0;
  display: block;
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
  border-bottom: 1px solid rgba(250, 243, 232, 0.06);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  opacity: 1;
  color: var(--color-amber-light);
}
.mobile-nav-cta {
  margin-top: auto;
  padding-top: 24px;
}
.mobile-nav-cta a {
  display: block;
  background: var(--color-terracotta);
  color: var(--color-white) !important;
  opacity: 1 !important;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-bottom: none;
  transition: background var(--transition);
}
.mobile-nav-cta a:hover {
  background: var(--color-terracotta-deep);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-bark);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 500; }

.label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: 12px;
  display: block;
}

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* --- Inline text link hover --- */
.text-link {
  color: var(--color-terracotta);
  position: relative;
  transition: color var(--transition);
}
.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-terracotta);
  transition: width var(--transition);
}
.text-link:hover::after { width: 100%; }
.text-link:hover { color: var(--color-terracotta-deep); }

/* --- Layout Containers --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Spacing --- */
section {
  padding: 110px 0;
  position: relative;
}

/* --- Botanical SVG Decorations --- */
.botanical-1::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  top: -60px;
  right: -80px;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 10 C60 40 20 80 30 140 C40 170 70 190 100 190 C130 190 160 170 170 140 C180 80 140 40 100 10Z' fill='none' stroke='%236B7F5E' stroke-width='1'/%3E%3Cpath d='M100 30 L100 170 M70 60 Q100 90 100 90 M130 60 Q100 90 100 90 M60 100 Q100 120 100 120 M140 100 Q100 120 100 120 M70 140 Q100 150 100 150 M130 140 Q100 150 100 150' fill='none' stroke='%236B7F5E' stroke-width='0.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.botanical-2::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 400px;
  bottom: -40px;
  left: -60px;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M50 200 Q50 150 30 120 Q10 90 20 60 Q30 30 50 10 Q70 30 80 60 Q90 90 70 120 Q50 150 50 200Z' fill='none' stroke='%23C0705A' stroke-width='0.8'/%3E%3Cpath d='M50 180 Q40 160 35 140 M50 160 Q60 140 65 120 M50 130 Q40 110 30 90 M50 110 Q60 90 70 80' fill='none' stroke='%23C0705A' stroke-width='0.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.botanical-3::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: -30px;
  right: -60px;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 180 Q80 140 60 120 Q30 100 10 120 Q30 80 60 80 Q80 80 100 60 Q120 80 140 80 Q170 80 190 120 Q170 100 140 120 Q120 140 100 180Z' fill='none' stroke='%23C5943A' stroke-width='0.7' opacity='0.6'/%3E%3Cpath d='M100 180 L100 60' fill='none' stroke='%23C5943A' stroke-width='0.5' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* =============================================
   STATEMENT WORD HERO (from Clarity pattern)
   ============================================= */
.hero-statement {
  background: var(--color-cream);
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
}
.hero-statement .hero-brand-small {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: 24px;
}
.hero-statement .hero-word {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-bark);
  line-height: 1;
  margin-bottom: 24px;
}
.hero-statement .hero-line {
  width: 60px;
  height: 1.5px;
  background: var(--color-terracotta);
  margin: 0 auto 28px;
}
.hero-statement .hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-statement .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-terracotta);
  color: var(--color-white);
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.hero-statement .hero-cta:hover {
  background: var(--color-terracotta-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(192, 112, 90, 0.3);
}
.hero-statement .hero-trust {
  margin-top: 48px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* Hero stagger animation */
.hero-statement > * {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-statement > *:nth-child(1) { animation-delay: 0.1s; }
.hero-statement > *:nth-child(2) { animation-delay: 0.3s; }
.hero-statement > *:nth-child(3) { animation-delay: 0.5s; }
.hero-statement > *:nth-child(4) { animation-delay: 0.65s; }
.hero-statement > *:nth-child(5) { animation-delay: 0.8s; }
.hero-statement > *:nth-child(6) { animation-delay: 0.95s; }
.hero-statement > *:nth-child(7) { animation-delay: 1.05s; }

/* --- Trust Strip --- */
.trust-strip {
  background: var(--color-bark);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23C5943A'/%3E%3C/svg%3E");
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  color: var(--color-cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
}
.trust-item .trust-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
  flex-shrink: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-terracotta-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(192, 112, 90, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--color-bark);
  border: 1.5px solid var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192, 112, 90, 0.1);
}
.btn-outline {
  background: transparent;
  color: var(--color-terracotta);
  border: 1.5px solid var(--color-terracotta);
}
.btn-outline:hover {
  background: var(--color-terracotta);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192, 112, 90, 0.25);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* Focus states */
.btn:focus-visible,
.faq-question:focus-visible,
.nav-hamburger:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Section backgrounds --- */
.bg-cream { background: var(--color-cream); }
.bg-linen { background: var(--color-linen); }
.bg-white { background: var(--color-white); }
.bg-bark {
  background: radial-gradient(ellipse at 50% 0%, rgba(90, 70, 54, 0.5) 0%, var(--color-bark) 70%);
  color: var(--color-cream);
}
.bg-bark h2, .bg-bark h3 { color: var(--color-cream); }
.bg-bark .label { color: var(--color-amber-light); }
.bg-moss-light {
  background: linear-gradient(180deg, var(--color-moss) 0%, #5A7050 100%);
  color: var(--color-cream);
  position: relative;
}
.bg-moss-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(143, 163, 126, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.bg-moss-light h2, .bg-moss-light h3 { color: var(--color-cream); }
.bg-moss-light .label { color: var(--color-amber-light); }

/* --- Pillars --- */
.pillars-strip {
  background: var(--color-linen);
  padding: 28px 0;
  text-align: center;
}
.pillars-strip-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.pillars-strip-inner .pillar-item {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-bark);
}
.pillars-strip-inner .pillar-item em {
  color: var(--color-terracotta);
  font-style: normal;
  font-weight: 600;
}

/* Pillar Cards */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.pillar-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.pillar-icon svg {
  width: 28px;
  height: 28px;
}
.pillar-card:nth-child(1) .pillar-icon { background: rgba(192, 112, 90, 0.1); }
.pillar-card:nth-child(2) .pillar-icon { background: rgba(107, 127, 94, 0.1); }
.pillar-card:nth-child(3) .pillar-icon { background: rgba(197, 148, 58, 0.1); }

.pillar-card h3 { font-size: 1.3rem; }
.pillar-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* --- Family Statement --- */
.family-statement {
  text-align: center;
  padding: 120px 24px;
  position: relative;
}
.family-statement h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 24px;
}
.family-statement h2 em {
  font-style: normal;
  color: var(--color-terracotta);
}
.family-statement p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 18px;
}

/* --- Testimonial Block --- */
.testimonial-block {
  padding: 80px 0;
  text-align: center;
}
.testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-bark);
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-terracotta);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-attr {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.placeholder-badge {
  display: inline-block;
  background: rgba(197, 148, 58, 0.1);
  color: var(--color-amber);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 12px;
}

/* --- Program Roadmap --- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.program-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 2px 0 0 2px;
}
.program-card:nth-child(2)::before { background: var(--color-moss); }
.program-card:nth-child(3)::before { background: var(--color-amber); }
.program-card:nth-child(4)::before { background: var(--color-bark-light); }

.program-card.primary {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--color-linen) 0%, var(--color-white) 100%);
  border-color: var(--color-terracotta);
  border-width: 1.5px;
  padding: 44px 40px;
}
.program-card.primary::before { width: 5px; background: var(--color-terracotta); }

.program-badge {
  display: inline-block;
  background: rgba(192, 112, 90, 0.1);
  color: var(--color-terracotta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.program-grade {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.program-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.program-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.program-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-terracotta);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  transition: gap var(--transition), color var(--transition);
}
.program-card:hover .program-arrow { gap: 12px; }

.program-card.additional {
  grid-column: 1 / -1;
  background: var(--color-white);
}
.program-card.additional::before { background: var(--color-moss-light); }

/* --- 7th grade callout --- */
.grade-callout {
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(107, 127, 94, 0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-moss);
  font-size: 15px;
  color: var(--color-text);
  font-style: italic;
}
.grade-callout a {
  color: var(--color-terracotta);
  font-weight: 600;
  font-style: normal;
}
.grade-callout a:hover { color: var(--color-terracotta-deep); }

/* --- Grade Selector --- */
.grade-selector {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.grade-selector a {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-bark);
  border: 1.5px solid var(--color-border);
  transition: all var(--transition);
}
.grade-selector a:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192, 112, 90, 0.1);
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.step-item {
  text-align: center;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-terracotta);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}
.step-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step-item p {
  color: var(--color-text-muted);
  font-size: 15px;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: var(--color-border);
}

/* --- Why Start Early / What Families Wish --- */
.early-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.08);
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition);
}
.benefit-item:hover {
  background: rgba(255, 253, 248, 0.14);
  transform: translateY(-2px);
}
.benefit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-amber-light);
  flex-shrink: 0;
  margin-top: 7px;
}
.benefit-item p {
  font-size: 15px;
  color: var(--color-cream);
  margin: 0;
}

/* Benefit items on light background variant */
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.benefit-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.benefit-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-terracotta);
  flex-shrink: 0;
  margin-top: 6px;
}
.benefit-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* --- Philosophy --- */
.philosophy-section {
  text-align: center;
}
.philosophy-text {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-bark);
}

/* --- FAQ --- */
.faq-grid {
  max-width: 800px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-bark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
  min-height: 48px;
}
.faq-question:hover { color: var(--color-terracotta); }
.faq-item.open .faq-question { color: var(--color-terracotta); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.4s ease;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-terracotta);
  border-radius: 2px;
}
.faq-icon::before {
  width: 14px; height: 2px;
  top: 11px; left: 5px;
}
.faq-icon::after {
  width: 2px; height: 14px;
  top: 5px; left: 11px;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--color-bark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(197, 148, 58, 0.1) 0%, transparent 60%);
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(90, 70, 54, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  color: var(--color-cream);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--color-cream);
  opacity: 0.7;
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 17px;
}
.cta-section .btn-primary {
  background: var(--color-amber);
  color: var(--color-bark);
}
.cta-section .btn-primary:hover {
  background: var(--color-amber-light);
  box-shadow: 0 6px 24px rgba(197, 148, 58, 0.3);
}
.cta-note {
  font-style: italic;
  font-size: 15px;
  margin-top: 16px;
  opacity: 0.6;
}

/* Grade buttons for CTA */
.grade-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.grade-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-cream);
  border: 1px solid rgba(250, 243, 232, 0.2);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.grade-btn:hover {
  border-color: var(--color-amber);
  background: rgba(197, 148, 58, 0.1);
  color: var(--color-amber-light);
  transform: translateY(-1px);
}

/* --- Footer --- */
.site-footer {
  background: var(--color-bark);
  border-top: 1px solid rgba(250, 243, 232, 0.08);
  padding: 60px 0 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--color-cream);
  opacity: 0.6;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.5;
}
.footer-col a {
  display: block;
  color: var(--color-cream);
  opacity: 0.7;
  font-size: 14px;
  padding: 4px 0;
  transition: opacity var(--transition), color var(--transition);
}
.footer-col a:hover {
  opacity: 1;
  color: var(--color-amber-light);
}
.footer-bottom {
  border-top: 1px solid rgba(250, 243, 232, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: var(--color-cream);
  opacity: 0.4;
  font-size: 13px;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-fade {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade.visible { opacity: 1; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }

/* --- Program Page Hero --- */
.program-hero {
  padding: 100px 0 80px;
  position: relative;
}
.program-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.program-hero-content .label { margin-bottom: 16px; }
.program-hero-content h1 {
  font-weight: 300;
  margin-bottom: 20px;
}
.program-hero-content p {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.program-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-hero-visual .decorative-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.decorative-circle::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
}
.decorative-circle::after {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px dashed rgba(197, 148, 58, 0.2);
}
.decorative-circle img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
}

/* Program color accents */
.accent-terracotta { --accent: var(--color-terracotta); }
.accent-moss { --accent: var(--color-moss); }
.accent-amber { --accent: var(--color-amber); }
.accent-bark { --accent: var(--color-bark-light); }

.accent-terracotta .decorative-circle { background: rgba(192, 112, 90, 0.06); }
.accent-moss .decorative-circle { background: rgba(107, 127, 94, 0.06); }
.accent-amber .decorative-circle { background: rgba(197, 148, 58, 0.06); }
.accent-bark .decorative-circle { background: rgba(90, 70, 54, 0.06); }

/* --- Pricing Section --- */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.pricing-card.featured {
  border-color: var(--color-terracotta);
  border-width: 2px;
}
.pricing-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-terracotta);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}
.pricing-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-bark);
  margin-bottom: 8px;
}
.pricing-detail {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.pricing-features {
  text-align: left;
  margin-top: 24px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--color-text-muted);
}
.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-moss);
  flex-shrink: 0;
  margin-top: 7px;
}

/* --- Count-up Animation --- */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* --- Content Sections --- */
.content-section h2 {
  margin-bottom: 24px;
}
.content-section p {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.8;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 36px;
}
.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.content-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.accent-terracotta .content-list li::before { background: var(--color-terracotta); }
.accent-moss .content-list li::before { background: var(--color-moss); }
.accent-amber .content-list li::before { background: var(--color-amber); }
.accent-bark .content-list li::before { background: var(--color-bark-light); }

/* --- Session Types --- */
.session-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.session-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.session-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.session-card h4 {
  font-family: var(--font-display);
  color: var(--color-bark);
}
.session-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- About Page --- */
.about-hero {
  text-align: center;
  padding: 100px 0 80px;
}
.about-hero h1 {
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.team-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-white);
}
.team-card:nth-child(1) .team-avatar { background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-deep)); }
.team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, var(--color-moss), var(--color-moss-light)); }
.team-card h3 { margin-bottom: 4px; }
.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-terracotta);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.team-additional {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.team-placeholder {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.team-placeholder:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.team-placeholder .placeholder-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-linen);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 600;
}
.team-placeholder p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-terracotta);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Timeline (Junior/Senior) --- */
.timeline {
  margin-top: 48px;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-terracotta), var(--color-moss), var(--color-amber));
  border-radius: 1px;
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-terracotta);
  border: 3px solid var(--color-cream);
}
.timeline-item:nth-child(2) .timeline-dot { background: var(--color-moss); }
.timeline-item:nth-child(3) .timeline-dot { background: var(--color-amber); }
.timeline-item:nth-child(4) .timeline-dot { background: var(--color-bark-light); }
.timeline-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.timeline-item h3 { margin-bottom: 6px; }
.timeline-item p {
  font-size: 15px;
  color: var(--color-text-muted);
}

/* --- Organic shape decorations --- */
.organic-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.organic-blob-1 {
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  background: radial-gradient(circle at 30% 40%, rgba(192, 112, 90, 0.04), transparent 70%);
  top: -100px;
  right: -150px;
}

/* --- Program hero stagger --- */
.program-hero-content > * {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.program-hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.program-hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.program-hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.program-hero-content > *:nth-child(4) { animation-delay: 0.55s; }

/* About hero stagger */
.about-hero > .container-narrow > * {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.about-hero > .container-narrow > *:nth-child(1) { animation-delay: 0.1s; }
.about-hero > .container-narrow > *:nth-child(2) { animation-delay: 0.25s; }
.about-hero > .container-narrow > *:nth-child(3) { animation-delay: 0.4s; }

/* --- Page Load Animation --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .program-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .program-hero-visual { order: -1; }

  .content-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  section { padding: 80px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-inner { height: 56px; }

  /* Hero statement */
  .hero-statement { padding: 80px 24px 60px; }
  .hero-statement .hero-word { font-size: clamp(3.5rem, 12vw, 6rem); }

  /* Grids */
  .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
  .program-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .step-item::after { display: none; }
  .early-benefits { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .session-types { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-additional { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Program hero */
  .program-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .program-hero-visual { order: -1; }
  .decorative-circle { width: 220px !important; height: 220px !important; }
  .decorative-circle img { width: 110px !important; height: 110px !important; }

  /* Pillars strip */
  .pillars-strip-inner { flex-direction: column; gap: 12px; }

  /* Trust strip */
  .trust-items { gap: 20px; }
  .trust-item { font-size: 13px; }

  /* Family statement */
  .family-statement { padding: 80px 24px; }

  /* Testimonial quote */
  .testimonial-quote { font-size: 1.25rem !important; }

  /* CTA section */
  .cta-section { padding: 80px 0; }
  .cta-section .btn { width: 100%; max-width: 360px; justify-content: center; }

  /* Grade buttons */
  .grade-buttons { gap: 8px; }
  .grade-btn { padding: 10px 18px; font-size: 13px; min-height: 48px; }

  /* Pricing card padding */
  .pricing-card { padding: 32px 20px; }
  .pricing-amount { font-size: 2.5rem; }

  /* Service card */
  .service-card { padding: 28px 24px; }

  /* Step number */
  .step-number { font-size: 2.5rem; }

  /* Watermark mobile */
  .watermark {
    width: 45vh;
    height: 45vh;
  }
}

@media (max-width: 375px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  section { padding: 56px 0; }
  .container, .container-narrow { padding: 0 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .team-additional { grid-template-columns: 1fr; }
  .hero-statement { padding: 56px 16px 40px; }
  .hero-statement .hero-word { font-size: clamp(3rem, 10vw, 5rem); }
  .btn { padding: 12px 24px; font-size: 14px; }
  .nav-inner { padding: 0; }
}
