:root {
  --ivory: #F4F1EC;
  --ivory-dark: #E8E4DC;
  --ink: #1E2420;
  --ink-soft: #2D3B32;
  --green: #3D5445;
  --green-light: #4E6B58;
  --amber: #3D5445;
  --amber-light: #5A7A65;
  --warm: #7A6A4A;
  --warm-light: #A08C65;
  --muted: #7D8A7F;
  --muted-light: #B8C4BC;
  --white: #FFFFFF;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'DM Sans', system-ui, sans-serif;

  --page-pad: clamp(1.5rem, 5vw, 6rem);
  --max-w: 1280px;
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--ink); color: var(--ivory);
  padding: 0.75rem 1.5rem; z-index: 10000;
  border-radius: 0 0 4px 4px; font-size: 0.875rem;
  text-decoration: none;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

body {
  font-family: var(--f-body);
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
}

/* CURSOR */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px;
  background: var(--warm);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.15s ease, opacity 0.3s;
  margin-left: -5px; margin-top: -5px;
  will-change: left, top;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  margin-left: -18px; margin-top: -18px;
  will-change: left, top, width, height;
}
.cursor.is-visible { opacity: 1; }
.cursor.is-hover { transform: scale(0.5); }
body.custom-cursor, body.custom-cursor a, body.custom-cursor button { cursor: none; }
@media (hover: none) {
  .cursor, .cursor-ring { display: none; }
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--page-pad);
  transition: background 0.5s, padding 0.5s, box-shadow 0.5s;
}
nav.scrolled {
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(20px);
  padding: 1rem var(--page-pad);
  box-shadow: 0 1px 0 rgba(26,26,23,0.08);
}
.nav-logo {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
 
}
.nav-logo span { color: var(--warm); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft); text-decoration: none;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--amber); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--ink); color: var(--ivory) !important;
  padding: 0.625rem 1.5rem; border-radius: 2px;
  font-size: 0.8125rem !important; letter-spacing: 0.06em !important;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--amber) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* Tablet landscape — compress nav */
@media (max-width: 1100px) and (min-width: 901px) {
  nav { padding: 1.25rem clamp(1rem, 3vw, 3rem); }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.75rem; letter-spacing: 0.04em; }
  .nav-cta { padding: 0.5rem 1rem !important; font-size: 0.75rem !important; letter-spacing: 0.04em !important; }
  .nav-logo { font-size: 1.1rem; }
}

/* PAGES */
.page { display: none; }
.page.active { display: block; }

/* PAGE TRANSITION — slide up */
.page.is-entering {
  animation: pageSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes pageSlideUp {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .page.is-entering { animation: none; }
}

/* ═══════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════ */

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 7rem var(--page-pad) 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--ivory);
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-line {
  position: absolute; left: var(--page-pad); top: 50%;
  width: 1px; height: 40vh; background: linear-gradient(to bottom, transparent, var(--muted-light), transparent);
  animation: lineFade 3s ease-in-out infinite alternate;
}
@keyframes lineFade { from { opacity: 0.3; transform: translateY(-50%) scaleY(0.8); } to { opacity: 0.8; transform: translateY(-50%) scaleY(1.1); } }

.hero-split {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  max-width: var(--max-w); width: 100%;
  margin: 0 auto;
}
.hero-content { max-width: 580px; }

/* Photo side */
.hero-photo-wrap {
  position: relative;
  display: flex; justify-content: flex-end; align-items: flex-end;
}
.hero-photo-clip-wrap {
  position: relative;
  width: min(480px, 100%);
}
.hero-photo-inner {
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
}
.hero-photo {
  width: 100%; display: block;
  border-radius: 0;
  object-fit: cover; object-position: top center;
  aspect-ratio: 2/3;
  filter: saturate(0.88);
  position: relative; z-index: 1;
  will-change: transform;
}
.hero-photo-accent {
  position: absolute;
  top: 2rem; left: -2rem;
  width: 100%; height: 100%;
  border: 1px solid var(--muted-light);
  border-radius: 4px;
  z-index: 0;
  pointer-events: none;
}

/* About photo */
.about-photo-wrap {
  margin-bottom: 2.5rem;
}
.about-photo {
  width: 100%; max-width: 380px; display: block;
  border-radius: 4px;
  object-fit: cover; object-position: top center;
  aspect-ratio: 3/4;
  filter: saturate(0.88);
}

@media (max-width: 900px) {
  .hero { align-items: flex-start; padding-top: 6rem; }
  .hero-split { grid-template-columns: 1fr; gap: 3rem; }
  .hero-photo-wrap { justify-content: flex-start; }
  .hero-photo-clip-wrap { width: min(300px, 75vw); }
  .hero-photo-accent { display: none; }
  .about-photo { max-width: 280px; }
}
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm); font-weight: 500; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-headline .line { display: block; overflow: visible; }
.hero-headline .line-inner {
  display: block;
}
.hero-headline em { font-style: italic; color: var(--ink-soft); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.hero-meta {
  margin-top: 3rem; display: flex; align-items: center; gap: 2rem;
  opacity: 0; animation: fadeUp 0.8s 1.2s forwards;
}
.hero-name {
  font-size: 0.875rem; color: var(--ink-soft); letter-spacing: 0.05em;
}
.hero-name strong { display: block; font-weight: 500; color: var(--ink); font-size: 1rem; margin-bottom: 0.2rem; }
.hero-divider { width: 40px; height: 1px; background: var(--muted-light); }
.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
  opacity: 0; animation: fadeUp 0.8s 1.6s forwards;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--warm), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.4; } }

@media (max-width: 1280px) {
  .hero-line { display: none; }
  .hero-scroll { display: none !important; }
}

/* SOCIAL PROOF STRIP */
.proof-strip {
  background: var(--ivory-dark);
  border-top: 1px solid var(--muted-light);
  border-bottom: 1px solid var(--muted-light);
  padding: 1.75rem var(--page-pad);
}
.proof-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
}
.proof-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 3rem; text-align: center;
}
.proof-num {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300; color: var(--green); line-height: 1;
  margin-bottom: 0.375rem; letter-spacing: -0.02em;
}
.proof-label {
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}
.proof-divider {
  width: 1px; height: 36px;
  background: var(--muted-light);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .proof-strip { padding: 1.25rem var(--page-pad); }
  .proof-inner { gap: 0; justify-content: space-between; }
  .proof-item { padding: 0; flex: 1; }
  .proof-num { font-size: 1.5rem; }
  .proof-label { font-size: 0.625rem; letter-spacing: 0.04em; }
  .proof-divider { display: none; }
}


/* WORLD MAP */
.worldmap-section { padding: 6rem var(--page-pad); }
.worldmap-inner { max-width: var(--max-w); margin: 0 auto; }
.worldmap-wrap { position: relative; }
#worldMapDiv { border-radius: 4px; overflow: hidden; }
.wm-tagline { font-size: 0.8125rem; color: var(--muted); text-align: center; margin-top: 1.25rem; font-style: italic; }

.protocol-section { padding: 6rem 0; background: var(--ivory-dark); }
.protocol-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--page-pad); }
.protocol-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; margin-top: 4rem;
  border: 1px solid var(--muted-light); border-radius: 4px; overflow: hidden;
}
.protocol-item {
  padding: 2rem 1.5rem; border-right: 1px solid var(--muted-light);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: background 0.3s;
}
.protocol-item:last-child { border-right: none; }
.protocol-item:hover { background: var(--ivory); }
.protocol-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ivory); border: 1px solid var(--muted-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 1.25rem;
  transition: background 0.3s, border-color 0.3s;
}
.protocol-item:hover .protocol-icon { background: var(--green); border-color: var(--green); color: var(--ivory); }
.protocol-name { font-family: var(--f-display); font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; }
.protocol-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) { .protocol-grid { grid-template-columns: repeat(3, 1fr); }
  .protocol-item:nth-child(3) { border-right: none; }
  .protocol-item:nth-child(n+4) { border-top: 1px solid var(--muted-light); } }
@media (max-width: 600px) { .protocol-grid { grid-template-columns: repeat(2, 1fr); }
  .protocol-item:nth-child(2n) { border-right: none; }
  .protocol-item:nth-child(n+3) { border-top: 1px solid var(--muted-light); } }


.manifesto-botanical {
  position: absolute; inset: 0; pointer-events: none;
  color: var(--green);
}
.manifesto-botanical svg { width: 100%; height: 100%; }

.manifesto {
  position: relative; z-index: 1;
  padding: 8rem var(--page-pad);
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start;
}
.manifesto-label {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); padding-top: 0.5rem; position: sticky; top: 8rem;
}
.manifesto-text {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 300; line-height: 1.6; color: var(--ink);
}
.manifesto-text p { margin-bottom: 1.5em; }
.manifesto-text p:last-child { margin-bottom: 0; }
.manifesto-text strong { font-weight: 500; color: var(--green); }
.manifesto-text em { font-style: italic; color: var(--warm); }

/* STATS */
.stats {
  background: var(--ink); color: var(--ivory);
  padding: 0; overflow: hidden;
}
.stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 5rem 3.5rem; border-right: 1px solid rgba(255,255,255,0.07);
  position: relative; overflow: hidden; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.02); }

/* Huge ghost number in background */
.stat-bg-num {
  position: absolute; top: -0.15em; left: -0.05em;
  font-family: var(--f-display); font-size: clamp(8rem, 14vw, 14rem);
  font-weight: 300; line-height: 1; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  pointer-events: none; user-select: none;
  transition: color 0.6s;
}
.stat-item:hover .stat-bg-num { color: rgba(255,255,255,0.07); }

/* Eyebrow */
.stat-eyebrow {
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-light); opacity: 0.7; margin-bottom: 1rem;
  position: relative; z-index: 1;
}

/* Main number */
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300; line-height: 1;
  color: var(--ivory); letter-spacing: -0.03em;
  position: relative; z-index: 1;
}
.stat-plus { color: var(--warm); }

/* Unit label */
.stat-unit {
  font-family: var(--f-display); font-size: 1.125rem; font-weight: 300;
  color: rgba(244,241,236,0.4); margin-top: 0.25rem; margin-bottom: 1.25rem;
  letter-spacing: 0.04em; text-transform: lowercase;
  position: relative; z-index: 1;
}

/* Description */
.stat-desc {
  font-size: 0.8125rem; color: rgba(244,241,236,0.35);
  line-height: 1.6; letter-spacing: 0.01em;
  position: relative; z-index: 1;
  max-width: 240px;
}

/* Decorative SVG bottom-right */
.stat-decoration {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  color: var(--ivory); opacity: 0.15;
  transition: opacity 0.4s;
  z-index: 1;
}
.stat-item:hover .stat-decoration { opacity: 0.3; }

@media (max-width: 900px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); min-height: auto; padding: 3.5rem 2.5rem; }
  .stat-item:last-child { border-bottom: none; }
  .stat-bg-num { font-size: clamp(6rem, 20vw, 10rem); }
}

/* AREAS */
.areas { padding: 8rem var(--page-pad); }
.areas-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm); margin-bottom: 1rem; font-weight: 500;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--muted); }

.areas-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--muted-light);
  border: 1px solid var(--muted-light);
}
.area-card {
  background: var(--ivory); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.4s, color 0.4s;
}
.area-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--transition);
}
.area-card:hover { background: var(--green); }
.area-card:hover::before { transform: scaleX(1); }
.area-card:hover .area-icon { color: rgba(255,255,255,0.4); }
.area-card:hover .area-name { color: var(--white); }
.area-card:hover .area-list { color: rgba(255,255,255,0.65); }
.area-icon {
  width: 28px; height: 28px; margin-bottom: 1.5rem; display: block;
  color: var(--muted); transition: color 0.4s;
  line-height: 1;
}
.area-icon svg { display: block; }
.area-name {
  font-family: var(--f-display); font-size: 1.25rem; font-weight: 500;
  color: var(--ink); margin-bottom: 1rem; transition: color 0.4s; line-height: 1.3;
}
.area-list {
  font-size: 0.8125rem; color: var(--muted); line-height: 1.6;
  transition: color 0.4s;
}

/* PROGRAMS PREVIEW */
.programs-preview { padding: 8rem var(--page-pad); background: var(--ivory-dark); }
.programs-preview-inner { max-width: var(--max-w); margin: 0 auto; }
.programs-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem; margin-top: 4rem;
}
.prog-card:nth-child(4) { grid-column: 1; }
.prog-card:nth-child(5) { grid-column: 2; }
.prog-card {
  background: var(--white); border: 1px solid var(--muted-light);
  padding: 2.5rem; border-radius: 4px;
 
  transition: background 0.4s, border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.prog-index { transition: color 0.4s; }
.prog-name { transition: color 0.4s; }
.prog-tagline { transition: color 0.4s; }
.prog-price { transition: color 0.4s; }
.prog-cta { transition: background 0.3s, color 0.3s; }
.prog-card:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(61,84,69,0.15);
}
.prog-card:hover .prog-index { color: rgba(255,255,255,0.5); }
.prog-card:hover .prog-name { color: var(--white); }
.prog-card:hover .prog-tagline { color: rgba(255,255,255,0.65); }
.prog-card:hover .prog-price { color: var(--ivory); }
.prog-card:hover .prog-cta { background: var(--white); color: var(--green); }
.prog-index {
  font-size: 0.6875rem; letter-spacing: 0.2em; color: var(--warm);
  text-transform: uppercase; margin-bottom: 2rem; font-weight: 500;
}
.prog-name {
  font-family: var(--f-display); font-size: 1.75rem; font-weight: 400;
  color: var(--ink); line-height: 1.2; margin-bottom: 0.75rem;
}
.prog-tagline {
  font-size: 0.875rem; color: var(--muted); line-height: 1.5; flex: 1;
  margin-bottom: 2rem;
}
.prog-price {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 500;
  color: var(--ink); margin-bottom: 1.5rem;
}
.prog-cta {
  display: inline-block; padding: 0.75rem 1.5rem;
  background: var(--ink); color: var(--ivory);
  font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background 0.3s, color 0.3s; text-align: center;
}
.prog-cta:hover { background: var(--amber); color: var(--white); }

/* PROCESS */
.process { padding: 8rem var(--page-pad); }
.process-inner { max-width: var(--max-w); margin: 0 auto; }
.process-steps { margin-top: 5rem; display: grid; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 2rem; padding: 2.5rem 0;
  border-bottom: 1px solid var(--muted-light);
  position: relative; align-items: start;
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 56px !important; height: 56px !important; border-radius: 50% !important;
  background: var(--ivory-dark) !important; border: 1px solid var(--muted-light) !important;
  display: flex !important; align-items: center; justify-content: center;
  color: var(--green); align-self: start; flex-shrink: 0;
  font-size: 1rem !important; line-height: 1 !important;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.process-step:hover .step-num { background: var(--green) !important; border-color: var(--green) !important; color: var(--ivory) !important; }
.step-content { padding-top: 0.5rem; }
.step-title {
  font-family: var(--f-display); font-size: 1.75rem; font-weight: 500;
  color: var(--ink); margin-bottom: 1rem; letter-spacing: -0.01em;
}
.step-text { font-size: 0.9375rem; color: var(--muted); line-height: 1.7; max-width: 600px; }
.step-text strong { color: var(--ink); font-weight: 500; }

/* FAQ PREVIEW */
.faq-preview { padding: 8rem var(--page-pad); background: var(--ink); }
.faq-preview-inner { max-width: var(--max-w); margin: 0 auto; }
.faq-preview .section-eyebrow { color: var(--warm); }
.faq-preview .section-title { color: var(--ivory); }
.faq-list { margin-top: 4rem; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem 0; gap: 2rem;
}
.faq-q-text {
  font-family: var(--f-display); font-size: 1.25rem; font-weight: 400;
  color: var(--ivory); line-height: 1.4; transition: color 0.3s;
}
.faq-toggle {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: grid; place-items: center; transition: background 0.3s, border-color 0.3s;
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: ''; position: absolute;
  background: rgba(255,255,255,0.6); transition: transform 0.4s, opacity 0.4s;
}
.faq-toggle::before { width: 12px; height: 1px; }
.faq-toggle::after { width: 1px; height: 12px; }
.faq-item.open .faq-toggle::after { transform: scaleY(0); opacity: 0; }
.faq-item.open .faq-toggle { background: var(--amber); border-color: var(--amber); }
.faq-item.open .faq-toggle::before { background: white; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 0 2rem;
  font-size: 0.9375rem; color: rgba(245,242,235,0.65); line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
  padding: 8rem var(--page-pad);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,105,20,0.06) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300; color: var(--ink); line-height: 1.15; margin-bottom: 1.5rem;
}
.cta-title em { font-style: italic; color: var(--warm); }
.cta-sub { font-size: 1rem; color: var(--muted); margin-bottom: 3rem; line-height: 1.6; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--ink); color: var(--ivory);
  padding: 1rem 2.5rem; border-radius: 2px;
  font-size: 0.875rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--amber); transform: translateY(-2px); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   PROGRAMS PAGE
═══════════════════════════════════════════ */
.programs-page { padding-top: 6rem; }
.programs-hero { padding: 6rem var(--page-pad) 4rem; max-width: var(--max-w); margin: 0 auto; }
.programs-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300; line-height: 1.1; color: var(--ink);
}
.programs-hero p { font-size: 1rem; color: var(--muted); margin-top: 1.5rem; max-width: 500px; line-height: 1.6; }

.program-block {
  border-top: 1px solid var(--muted-light);
}
.program-block-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 5rem var(--page-pad);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start;
}
.program-block.alt-bg { background: var(--ink); }
.program-block.alt-bg .prog-block-title { color: var(--ivory); }
.program-block.alt-bg .prog-block-for { color: rgba(245,242,235,0.5); }
.program-block.alt-bg .prog-block-price { color: var(--ivory); }
.program-block.alt-bg .prog-block-price span { color: var(--amber-light); }
.program-block.alt-bg .prog-detail-title { color: var(--ivory); }
.program-block.alt-bg .prog-detail-text { color: rgba(245,242,235,0.65); }
.program-block.alt-bg .prog-detail-list li { color: rgba(245,242,235,0.65); }
.program-block.alt-bg .prog-detail-list li::before { background: var(--amber); }
.program-block.alt-bg .btn-prog { background: var(--white); color: var(--ink); }
.program-block.alt-bg .btn-prog:hover { background: var(--amber); color: white; }

.prog-block-left { position: sticky; top: 8rem; }
.prog-block-num { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--warm); text-transform: uppercase; margin-bottom: 2rem; font-weight: 500; }
.prog-block-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400; color: var(--ink); line-height: 1.15; margin-bottom: 1rem;
}
.prog-block-for { font-size: 0.9375rem; color: var(--muted); font-style: italic; margin-bottom: 2.5rem; }
.prog-block-price {
  font-family: var(--f-display); font-size: 2.5rem; font-weight: 300; color: var(--ink);
  margin-bottom: 0.5rem;
}
.prog-block-price span { font-size: 1rem; color: var(--muted); font-family: var(--f-body); }
.btn-prog {
  display: inline-flex; align-items: center; gap: 0.75rem; margin-top: 2rem;
  background: var(--ink); color: var(--ivory);
  padding: 0.875rem 2rem; border-radius: 2px;
  font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: background 0.3s, color 0.3s;
}
.btn-prog:hover { background: var(--amber); color: white; }

.prog-detail-section { margin-bottom: 2.5rem; }
.prog-detail-title {
  font-family: var(--f-display); font-size: 1.125rem; font-weight: 500;
  color: var(--ink); margin-bottom: 1rem; letter-spacing: 0.01em;
}
.prog-detail-text { font-size: 0.9375rem; color: var(--muted); line-height: 1.7; }
.prog-detail-list { list-style: none; }
.prog-detail-list li {
  font-size: 0.9375rem; color: var(--muted); line-height: 1.7;
  padding-left: 1.25rem; position: relative; margin-bottom: 0.5rem;
}
.prog-detail-list li::before {
  content: ''; position: absolute; left: 0; top: 0.75em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--green);
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-page { padding-top: 6rem; }
.about-hero {
  min-height: 70vh; display: grid; place-items: center;
  padding: 6rem var(--page-pad); text-align: center;
  background: var(--ink); position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(45,74,42,0.3) 0%, transparent 60%);
}
.about-hero-inner { position: relative; z-index: 1; max-width: 900px; }
.about-hero-quote {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3.5vw, 3.5rem);
  font-weight: 300; color: var(--ivory); line-height: 1.4; font-style: italic;
}
.about-hero-quote em { color: var(--amber-light); font-style: normal; }
.about-hero-sub { margin-top: 2rem; font-size: 0.875rem; color: rgba(245,242,235,0.45); letter-spacing: 0.1em; text-transform: uppercase; }

.about-bio { padding: 8rem var(--page-pad); max-width: var(--max-w); margin: 0 auto; }
.about-bio-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 8rem; }
.about-bio-left h2 {
  font-family: var(--f-display); font-size: 3rem; font-weight: 300;
  color: var(--ink); line-height: 1.2; margin-bottom: 1.5rem;
}
.about-bio-left p { font-size: 0.9375rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.about-bio-left strong { color: var(--ink); font-weight: 500; }

.timeline { margin-top: 1rem; }
.timeline-item {
  display: flex; gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: none; position: relative;
}
.timeline-item:first-child { padding-top: 0; }
.timeline-marker {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 9px; padding-top: 5px;
}
.timeline-dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
  background: var(--ivory); border: 1.5px solid var(--green);
  transition: background 0.2s; z-index: 1;
}
.timeline-item:hover .timeline-dot { background: var(--green); }
.timeline-line {
  width: 1px; flex: 1; background: var(--muted-light);
  min-height: 20px; margin-top: 4px;
}
.timeline-item:last-child .timeline-line { display: none; }
.timeline-body { display: grid; grid-template-columns: 70px 1fr; gap: 1rem; padding-bottom: 1.5rem; }
.timeline-item:last-child .timeline-body { padding-bottom: 0; }
.timeline-year {
  font-family: var(--f-display); font-size: 1.125rem; font-weight: 500;
  color: var(--green); line-height: 1.2; letter-spacing: -0.01em; padding-top: 0;
}
.timeline-title { font-weight: 500; color: var(--ink); margin-bottom: 0.4rem; font-size: 0.9375rem; }
.timeline-text { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.timeline-year {
  font-family: var(--f-display); font-size: 1.125rem; font-weight: 500;
  color: var(--green); align-self: start; padding-top: 0.1rem;
  letter-spacing: -0.01em;
}
.timeline-title { font-weight: 500; color: var(--ink); margin-bottom: 0.4rem; font-size: 0.9375rem; }
.timeline-text { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* METHOD */
.method { padding: 8rem var(--page-pad); background: var(--ivory-dark); }
.method-inner { max-width: var(--max-w); margin: 0 auto; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 5rem; }
.method-card {
  padding: 3rem; border: 1px solid var(--muted-light); background: var(--ivory);
  position: relative; transition: border-color 0.4s, transform 0.4s;
}
.method-card:hover { border-color: var(--green); transform: translateY(-4px); }
.method-card-num {
  font-family: var(--f-display); font-size: 5rem; font-weight: 300;
  color: var(--muted-light); line-height: 1; margin-bottom: 2rem;
  transition: color 0.4s;
}
.method-card:hover .method-card-num { color: var(--warm); }
.method-card-title {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 500;
  color: var(--ink); margin-bottom: 1rem;
}
.method-card-text { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }
.method-card-items { list-style: none; margin-top: 1.5rem; }
.method-card-items li {
  font-size: 0.8125rem; color: var(--muted); line-height: 1.7;
  padding-left: 1rem; position: relative;
}
.method-card-items li::before {
  content: '—'; position: absolute; left: 0; color: var(--green);
}

/* ═══════════════════════════════════════════
   AREAS PAGE
═══════════════════════════════════════════ */
.areas-page { padding-top: 6rem; }
.areas-page-hero { padding: 6rem var(--page-pad) 4rem; max-width: var(--max-w); margin: 0 auto; }
.areas-grid-wrapper { padding: 0 var(--page-pad); }
.areas-page-hero h1 {
  font-family: var(--f-display); font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300; color: var(--ink); line-height: 1.1;
}
.areas-page-hero p { font-size: 1rem; color: var(--muted); margin-top: 1.5rem; max-width: 500px; line-height: 1.6; }

.areas-filter { padding: 0 var(--page-pad); max-width: var(--max-w); margin: 0 auto 3rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.filter-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0.5rem 1.25rem; border: 1px solid var(--muted-light);
  background: transparent; font-size: 0.8125rem; letter-spacing: 0.04em;
  color: var(--muted); border-radius: 2px;
  transition: all 0.3s; font-family: var(--f-body);
}
.filter-btn.active, .filter-btn:hover { background: var(--green); border-color: var(--green); color: white; }

.areas-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--muted-light);
  border: 1px solid var(--muted-light);
  max-width: var(--max-w); margin: 0 auto 6rem;
}
.area-full-card {
  background: var(--ivory); padding: 2.5rem;
  transition: background 0.4s;
}
.area-full-card:hover { background: var(--green); }
.area-full-card:hover .area-cat { color: rgba(255,255,255,0.4); }
.area-full-card:hover .area-full-name { color: var(--white); }
.area-full-card:hover .area-conditions { color: rgba(255,255,255,0.65); }
.area-cat { font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm); margin-bottom: 0.75rem; transition: color 0.4s; }
.area-full-name { font-family: var(--f-display); font-size: 1.25rem; font-weight: 500; color: var(--ink); margin-bottom: 0.75rem; transition: color 0.4s; }
.area-conditions { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; transition: color 0.4s; }

/* ═══════════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════════ */
.faq-page { padding-top: 8rem; }
.faq-page-inner { max-width: 900px; margin: 0 auto; padding: 0 var(--page-pad) 8rem; }
.faq-page-title {
  font-family: var(--f-display); font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300; color: var(--ink); line-height: 1.1; margin-bottom: 5rem;
}
.faq-page-title em { font-style: italic; color: var(--muted); }

.faq-page-item { border-bottom: 1px solid var(--muted-light); }
.faq-page-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem 0; gap: 2rem;
}
.faq-page-q-text {
  font-family: var(--f-display); font-size: 1.25rem; font-weight: 400;
  color: var(--ink); line-height: 1.4; transition: color 0.3s;
}
.faq-page-item:hover .faq-page-q-text { color: var(--green); }
.faq-pg-toggle {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1px solid var(--muted-light); border-radius: 50%;
  display: grid; place-items: center; transition: background 0.3s, border-color 0.3s;
  position: relative;
}
.faq-pg-toggle::before, .faq-pg-toggle::after {
  content: ''; position: absolute;
  background: var(--muted); transition: transform 0.4s, opacity 0.4s;
}
.faq-pg-toggle::before { width: 12px; height: 1px; }
.faq-pg-toggle::after { width: 1px; height: 12px; }
.faq-page-item.open .faq-pg-toggle::after { transform: scaleY(0); opacity: 0; }
.faq-page-item.open .faq-pg-toggle { background: var(--green); border-color: var(--green); }
.faq-page-item.open .faq-pg-toggle::before { background: white; }
.faq-page-a { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-page-a-inner { padding: 0 0 2rem; font-size: 0.9375rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--ink); color: var(--ivory);
  padding: 5rem var(--page-pad) 3rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem;
  padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 400;
  color: var(--ivory); margin-bottom: 1rem; display: block;
  text-decoration: none;
}
.footer-logo span { color: var(--warm); }
.footer-tagline { font-size: 0.875rem; color: rgba(245,242,235,0.45); line-height: 1.6; }
.footer-nav-title { font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm); margin-bottom: 1.5rem; font-weight: 500; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-list a { font-size: 0.875rem; color: rgba(245,242,235,0.6); text-decoration: none; transition: color 0.3s; }
.footer-nav-list a:hover { color: var(--ivory); }

.footer-contact-item { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.25rem; }
.footer-contact-label { font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,242,235,0.4); }
.footer-contact-val { font-size: 0.9375rem; color: rgba(245,242,235,0.8); }
.footer-tg-btn {
  display: inline-flex; align-items: center; gap: 0.75rem; margin-top: 1rem;
  background: var(--warm); color: var(--white);
  padding: 0.75rem 1.5rem; border-radius: 2px;
  font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: background 0.3s;
}
.footer-tg-btn:hover { background: var(--warm-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-disclaimer { font-size: 0.75rem; color: rgba(245,242,235,0.25); line-height: 1.6; max-width: 700px; font-style: italic; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.75rem; color: rgba(245,242,235,0.35); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: rgba(245,242,235,0.7); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--transition), transform 0.8s var(--transition); }
.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; }

/* ═══════════════════════════════════════════
   EDU PAGE
═══════════════════════════════════════════ */
.edu-page { padding-top: 6rem; }

/* Hero */
.edu-hero {
  padding: 7rem var(--page-pad) 6rem;
  background: var(--ink); position: relative; overflow: hidden;
}
.edu-hero::before {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 50vw; height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(45,74,42,0.25) 0%, transparent 65%);
}
.edu-hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 80px
  );
}
.edu-hero-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: center; }

.edu-hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm); margin-bottom: 2rem; font-weight: 500; }
.edu-hero-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 300; color: var(--ivory); line-height: 1.05; letter-spacing: -0.02em;
}
.edu-hero-title em { font-style: italic; color: rgba(245,242,235,0.4); display: block; }
.edu-hero-sub { font-size: 1rem; color: rgba(245,242,235,0.5); margin-top: 2rem; line-height: 1.7; max-width: 480px; }

.edu-hero-stat-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.edu-hero-stat {
  display: flex; align-items: baseline; gap: 1.5rem;
  padding: 1.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.edu-hero-stat:first-child { padding-top: 0; }
.edu-hero-stat:last-child { border-bottom: none; }
.edu-stat-num {
  font-family: var(--f-display); font-size: 3.5rem; font-weight: 300;
  color: var(--warm); line-height: 1; flex-shrink: 0; width: 5rem;
}
.edu-stat-text { font-size: 0.9375rem; color: rgba(245,242,235,0.6); line-height: 1.5; }
.edu-stat-text strong { display: block; color: rgba(245,242,235,0.9); font-weight: 400; margin-bottom: 0.2rem; }

/* Degree section */
.edu-degree { padding: 8rem var(--page-pad); max-width: var(--max-w); margin: 0 auto; }
.edu-degree-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 8rem; margin-top: 5rem; align-items: start; }
.edu-degree-label { position: sticky; top: 8rem; }
.edu-degree-label-text { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.edu-degree-label-title { font-family: var(--f-display); font-size: 2.5rem; font-weight: 300; color: var(--ink); margin-top: 0.75rem; line-height: 1.2; }
.edu-degree-label-title em { font-style: italic; color: var(--muted); }

.edu-cert-stack { display: flex; flex-direction: column; gap: 1px; background: var(--muted-light); border: 1px solid var(--muted-light); }
.edu-cert-card {
  background: var(--ivory); padding: 2.5rem 3rem;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 2rem; align-items: start;
  transition: background 0.35s;
  cursor: default;
}
.edu-cert-card:hover { background: var(--ivory-dark); }
.edu-cert-year {
  font-family: var(--f-display); font-size: 1.125rem; font-weight: 400;
  color: var(--warm); min-width: 4rem; padding-top: 0.2rem;
}
.edu-cert-title { font-family: var(--f-display); font-size: 1.375rem; font-weight: 500; color: var(--ink); margin-bottom: 0.4rem; line-height: 1.3; }
.edu-cert-institution { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.5rem; }
.edu-cert-desc { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; }
.edu-cert-badge {
  font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); border: 1px solid currentColor;
  padding: 0.3rem 0.75rem; border-radius: 2px; white-space: nowrap;
  align-self: start; margin-top: 0.2rem;
  font-weight: 500;
}
.edu-cert-badge.amber { color: var(--warm); border-color: var(--warm); }

/* Specializations band */
.edu-specializations { background: var(--green); padding: 6rem var(--page-pad); }
.edu-spec-inner { max-width: var(--max-w); margin: 0 auto; }
.edu-spec-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 5rem; }
.edu-spec-title { font-family: var(--f-display); font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 300; color: var(--ivory); line-height: 1.15; }
.edu-spec-title em { font-style: italic; color: rgba(245,242,235,0.45); }
.edu-spec-desc { font-size: 0.9375rem; color: rgba(245,242,235,0.55); line-height: 1.7; }
.edu-spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.1); }
.edu-spec-item {
  background: var(--green); padding: 2.5rem;
  transition: background 0.3s;
}
.edu-spec-item:hover { background: var(--green-light); }
.edu-spec-icon { width: 24px; height: 24px; margin-bottom: 1.25rem; display: block; color: rgba(245,241,236,0.5); }
.edu-spec-icon svg { display: block; }
.edu-spec-name { font-family: var(--f-display); font-size: 1.25rem; font-weight: 500; color: var(--ivory); margin-bottom: 0.5rem; }
.edu-spec-detail { font-size: 0.8125rem; color: rgba(245,242,235,0.5); line-height: 1.6; }

/* Continuous learning */
.edu-learning { padding: 8rem var(--page-pad); }
.edu-learning-inner { max-width: var(--max-w); margin: 0 auto; }
.edu-learning-quote {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 300; color: var(--ink); line-height: 1.5;
  max-width: 900px; margin: 0 auto 6rem; text-align: center;
}
.edu-learning-quote em { font-style: italic; color: var(--warm); }
.edu-recent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.edu-recent-card {
  border: 1px solid var(--muted-light); padding: 2rem;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.edu-recent-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(45,74,42,0.08); }
.edu-recent-year { font-size: 0.6875rem; letter-spacing: 0.15em; color: var(--warm); text-transform: uppercase; margin-bottom: 1rem; font-weight: 500; }
.edu-recent-title { font-family: var(--f-display); font-size: 1.125rem; font-weight: 500; color: var(--ink); line-height: 1.3; margin-bottom: 0.5rem; }
.edu-recent-org { font-size: 0.8125rem; color: var(--muted); line-height: 1.5; }

/* Philosophy strip */
.edu-philosophy { background: var(--ivory-dark); padding: 6rem var(--page-pad); }
.edu-philosophy-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: center; }
.edu-philosophy-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); position: sticky; top: 8rem; }
.edu-philosophy-text { font-family: var(--f-display); font-size: clamp(1.25rem, 2vw, 1.875rem); font-weight: 300; line-height: 1.65; color: var(--ink); }
.edu-philosophy-text p { margin-bottom: 1.25em; }
.edu-philosophy-text p:last-child { margin-bottom: 0; }
.edu-philosophy-text strong { font-weight: 500; color: var(--green); }

/* Responsive */
@media (max-width: 900px) {
  .edu-hero-inner { grid-template-columns: 1fr; gap: 4rem; }
  .edu-degree-grid { grid-template-columns: 1fr; gap: 3rem; }
  .edu-degree-label { position: static; }
  .edu-cert-card { grid-template-columns: auto 1fr; }
  .edu-cert-badge { display: none; }
  .edu-spec-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .edu-spec-grid { grid-template-columns: 1fr 1fr; }
  .edu-recent-grid { grid-template-columns: 1fr 1fr; }
  .edu-philosophy-inner { grid-template-columns: 1fr; gap: 2rem; }
  .edu-philosophy-label { position: static; }
}
@media (max-width: 600px) {
  .edu-spec-grid { grid-template-columns: 1fr; }
  .edu-recent-grid { grid-template-columns: 1fr; }
  .edu-cert-card { grid-template-columns: 1fr; gap: 0.75rem; }
  .edu-cert-year { min-width: auto; }
}

/* CURRENCY SWITCHER */
.currency-switch {
  display: inline-flex; gap: 1px; background: var(--muted-light);
  border-radius: 4px; overflow: hidden; vertical-align: middle;
}
.cur-btn {
  background: var(--ivory); border: none; padding: 5px 10px;
  font-size: 0.8125rem; font-weight: 500;
  color: var(--muted); cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--f-body);
}
.cur-btn:hover { color: var(--ink); }
.cur-btn.active { background: var(--green); color: var(--ivory); }

.programs-section-header { margin-bottom: 4rem; }



.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; padding: 8px; cursor: pointer;
  background: none; border: none;
  position: relative; z-index: 101;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.25s;
  transform-origin: center;
}

@media (max-width: 900px) {
  /* Show hamburger, hide desktop links */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Full-screen overlay */
  nav.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--ivory);
    z-index: 100;
    justify-content: center; align-items: center;
    gap: 0; padding: 5rem 2rem 3rem;
    overflow-y: auto;
  }

  /* Nav bar always on top of overlay */
  nav { z-index: 200; }
  nav.menu-open { background: var(--ivory) !important; box-shadow: none !important; backdrop-filter: none !important; }

  /* Hamburger on top */
  .nav-hamburger { z-index: 201; }

  /* Menu links */
  nav.menu-open .nav-links a {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-family: var(--f-display); font-weight: 300;
    letter-spacing: 0.01em; text-transform: none;
    color: var(--ink); padding: 0.875rem 0;
    width: 100%; text-align: center;
    border-bottom: 1px solid var(--muted-light);
  }
  nav.menu-open .nav-links a:first-child { border-top: 1px solid var(--muted-light); }

  /* Suppress underline animation in mobile menu */
  nav.menu-open .nav-links a::after { display: none !important; }

  /* CTA button in mobile menu */
  nav.menu-open .nav-links .nav-cta {
    font-family: var(--f-body) !important;
    font-size: 0.875rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    background: var(--ink) !important;
    color: var(--ivory) !important;
    padding: 0.875rem 2.5rem !important;
    margin-top: 1.5rem;
    border-bottom: none !important;
    border-radius: 2px;
    width: auto !important;
  }
  nav.menu-open .nav-links .nav-cta:hover { background: var(--green) !important; }
  nav.menu-open .nav-links .nav-cta::after { display: none !important; }

  /* Hamburger → X animation */
  nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Other responsive layout fixes */
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto-label { position: static; }
  .program-block-inner { grid-template-columns: 1fr; gap: 3rem; }
  .prog-block-left { position: static; }
  .about-bio-grid { grid-template-columns: 1fr; gap: 4rem; }
  .method-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .process-step { grid-template-columns: 56px 1fr; gap: 1.5rem; }
  .step-num { font-size: inherit; }
  .programs-track { grid-template-columns: 1fr 1fr; }
  .prog-card:nth-child(4), .prog-card:nth-child(5) { grid-column: auto; }
  .areas-full-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .areas-grid { grid-template-columns: 1fr; }
  .areas-full-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .programs-track { grid-template-columns: 1fr; }
  .prog-card:nth-child(4), .prog-card:nth-child(5) { grid-column: auto; }
}

@media (hover: none) {
  .nav-hamburger { cursor: pointer; }
}
/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.reviews { padding: 8rem var(--page-pad); background: var(--ivory-dark); }
.reviews-inner { max-width: var(--max-w); margin: 0 auto; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--muted-light);
  padding: 2.5rem;
  display: flex; flex-direction: column;
  transition: border-color 0.35s, transform 0.35s;
}
.review-card:hover { border-color: var(--green); transform: translateY(-3px); }
.review-stars {
  display: flex; gap: 4px; margin-bottom: 1.5rem;
}
.review-stars svg { color: var(--warm); }
.review-text {
  font-family: var(--f-display);
  font-size: 1.0625rem; font-weight: 300;
  color: var(--ink); line-height: 1.65;
  flex: 1; margin-bottom: 2rem;
  font-style: italic;
}
.review-text strong { font-style: normal; font-weight: 500; color: var(--green); }
.review-author { display: flex; flex-direction: column; gap: 0.25rem; }
.review-name {
  font-size: 0.875rem; font-weight: 500; color: var(--ink);
}
.review-meta {
  font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em;
}
.review-source {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.75rem; font-size: 0.75rem;
  color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase;
}
.review-source svg { color: var(--muted); }

/* big quote featured */
.review-card.large {
  grid-column: span 2;
  background: var(--green);
  border-color: var(--green);
}
.review-card.large .review-text { color: var(--ivory); font-size: 1.25rem; }
.review-card.large .review-name { color: var(--ivory); }
.review-card.large .review-meta { color: rgba(244,241,236,0.5); }
.review-card.large .review-source { color: rgba(244,241,236,0.4); }
.review-card.large .review-stars svg { color: rgba(244,241,236,0.6); }
.review-card.large:hover { border-color: var(--green-light); }

.prog-card.prog-cta-card {
  border: 1px dashed var(--muted-light);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.prog-card.prog-cta-card:hover {
  border-color: var(--green); border-style: solid;
  transform: translateY(-4px);
  background: transparent;
}
.prog-cta-inner { text-align: center; }
.review-card.review-cta-card {
  border: 1px dashed var(--muted-light);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.review-card.review-cta-card:hover {
  border-color: var(--green); border-style: solid;
  transform: translateY(-3px);
}
.review-cta-inner {
  text-align: center;
}
.review-cta-label {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem; font-weight: 500;
}

.reviews-cta-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.3s;
}
.reviews-cta-link:hover { color: var(--green); }
.reviews-cta-link svg { transition: transform 0.3s; }
.reviews-cta-link:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.large { grid-column: span 1; }
}

/* ═══════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════ */
.blog-page { padding-top: 6rem; }
.blog-hero {
  padding: 6rem var(--page-pad) 5rem;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end;
}
.blog-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300; color: var(--ink); line-height: 1.1;
}
.blog-hero p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

.blog-featured {
  padding: 0 var(--page-pad) 5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.blog-featured-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border: 1px solid var(--muted-light);
  overflow: hidden; transition: border-color 0.4s;
}
.blog-featured-card:hover { border-color: var(--green); }
.blog-featured-img {
  background: var(--ivory-dark);
  min-height: 400px; position: relative;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.blog-featured-img-inner {
  width: 100%; height: 100%; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--ivory-dark) 0%, var(--muted-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-featured-img-glyph {
  font-family: var(--f-display); font-size: 8rem; font-weight: 300;
  color: var(--muted-light); line-height: 1; user-select: none;
  opacity: 0.6;
}
.blog-featured-body {
  padding: 3rem; display: flex; flex-direction: column; justify-content: space-between;
  background: var(--white);
}
.blog-tag {
  font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--warm); font-weight: 500; margin-bottom: 1.25rem;
}
.blog-featured-title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 1rem;
}
.blog-featured-excerpt {
  font-size: 0.9375rem; color: var(--muted); line-height: 1.7; flex: 1;
  margin-bottom: 2rem;
}
.blog-featured-footer {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--muted-light); padding-top: 1.5rem;
}
.blog-date { font-size: 0.8125rem; color: var(--muted); }
.blog-read-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  transition: color 0.3s;
}
.blog-read-link:hover { color: var(--green); }
.blog-read-link svg { transition: transform 0.3s; }
.blog-read-link:hover svg { transform: translateX(4px); }

.blog-grid-section {
  padding: 0 var(--page-pad) 8rem;
  max-width: var(--max-w); margin: 0 auto;
}
.blog-grid-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 2.5rem; border-bottom: 1px solid var(--muted-light); padding-bottom: 1.5rem;
}
.blog-grid-header h2 {
  font-family: var(--f-display); font-size: 1.75rem; font-weight: 300; color: var(--ink);
}
.blog-filter-row {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.blog-card {
  border: 1px solid var(--muted-light); transition: border-color 0.35s, transform 0.35s;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--green); transform: translateY(-3px); }
.blog-card-img {
  aspect-ratio: 16/9; background: var(--ivory-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-card-glyph {
  font-family: var(--f-display); font-size: 4rem; font-weight: 300;
  color: var(--muted-light); opacity: 0.7; user-select: none;
}
.blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-title {
  font-family: var(--f-display); font-size: 1.25rem; font-weight: 400;
  color: var(--ink); line-height: 1.3; margin-bottom: 0.75rem;
  flex: 1;
}
.blog-card-excerpt {
  font-size: 0.8125rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem;
}
.blog-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--muted-light); padding-top: 1rem; margin-top: auto;
}
.blog-card-date { font-size: 0.75rem; color: var(--muted); }
.blog-card-tag {
  font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm); font-weight: 500;
}

.blog-subscribe {
  background: var(--ink); padding: 6rem var(--page-pad);
  text-align: center;
}
.blog-subscribe-inner { max-width: 560px; margin: 0 auto; }
.blog-subscribe-title {
  font-family: var(--f-display); font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300; color: var(--ivory); line-height: 1.2; margin-bottom: 1rem;
}
.blog-subscribe-title em { font-style: italic; color: rgba(244,241,236,0.4); }
.blog-subscribe-sub { font-size: 0.9375rem; color: rgba(244,241,236,0.5); margin-bottom: 2.5rem; line-height: 1.6; }

@media (max-width: 900px) {
  .blog-hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 240px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
}
/* About nav links */
.about-nav-links {
  margin-top: 2.5rem;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--muted-light);
}
.about-nav-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--muted-light);
  text-decoration: none;
  transition: padding 0.3s;
}
.about-nav-link:hover {
  padding-left: 0.75rem;
}
.about-nav-link:hover .about-nav-link-label { color: var(--green); }
.about-nav-link:hover svg { transform: translateX(4px); color: var(--green); }
.about-nav-link svg {
  color: var(--muted-light); flex-shrink: 0;
  transition: transform 0.3s, color 0.3s;
}
.about-nav-link-label {
  font-family: var(--f-display); font-size: 1.125rem; font-weight: 500;
  color: var(--ink); min-width: 140px;
  transition: color 0.3s;
}
.about-nav-link-text {
  font-size: 0.8125rem; color: var(--muted); flex: 1; line-height: 1.4;
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */

/* Manifesto — words slide in from bottom */
.manifesto-text .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.manifesto-text .word.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stats — slide up with stagger */
.stat-item {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.stat-item.stat-hidden {
  opacity: 0;
  transform: translateY(40px);
}

/* Process steps — slide from left */
.process-step {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-step.step-hidden {
  opacity: 0;
  transform: translateX(-30px);
}

/* Hero photo — subtle parallax */
.hero-photo {
  will-change: transform;
}

/* Section headers — fade + scale from 0.96 */
.section-header {
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-header.sh-hidden {
  opacity: 0;
  transform: scale(0.97) translateY(16px);
}

/* ═══════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════ */
.legal-page { padding-top: 6rem; }
.legal-inner {
  max-width: 800px; margin: 0 auto;
  padding: 5rem var(--page-pad) 8rem;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; margin-bottom: 3rem;
  transition: color 0.3s; cursor: none;
}
.legal-back:hover { color: var(--green); }
.legal-back svg { transition: transform 0.3s; }
.legal-back:hover svg { transform: translateX(-4px); }
.legal-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--ink); line-height: 1.1;
  margin-bottom: 0.75rem;
}
.legal-date {
  font-size: 0.875rem; color: var(--muted);
  margin-bottom: 4rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--muted-light);
}
.legal-body h2 {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 500;
  color: var(--ink); margin: 2.5rem 0 1rem; line-height: 1.3;
}
.legal-body h3 {
  font-size: 1rem; font-weight: 500; color: var(--ink);
  margin: 1.5rem 0 0.5rem;
}
.legal-body p {
  font-size: 0.9375rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-body ul, .legal-body ol {
  margin: 0.75rem 0 1rem 1.5rem;
}
.legal-body li {
  font-size: 0.9375rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 0.4rem;
}
.legal-body strong { color: var(--ink); font-weight: 500; }
.legal-body a { color: var(--green); text-decoration: underline; cursor: none; }
.legal-contacts {
  margin-top: 3rem; padding: 2rem; background: var(--ivory-dark);
  border-left: 3px solid var(--green);
}
.legal-contacts p { margin-bottom: 0.5rem; }
.legal-contacts p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0; visibility: hidden;
}
.preloader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.preloader-logo {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300; color: var(--ink);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: preloaderFadeUp 0.6s ease 0.1s forwards;
}
.preloader-logo span { color: var(--warm); }
.preloader-line {
  width: 200px; height: 1px;
  background: var(--muted-light);
  overflow: hidden;
  opacity: 0;
  animation: preloaderFadeUp 0.4s ease 0.3s forwards;
}
.preloader-progress {
  height: 100%;
  background: var(--green);
  width: 0;
  animation: preloaderBar 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
.preloader-label {
  font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
  opacity: 0;
  animation: preloaderFadeUp 0.4s ease 0.5s forwards;
}
@keyframes preloaderFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes preloaderBar {
  from { width: 0; }
  to   { width: 100%; }
}

/* HERO LETTER ANIMATION */
.hero-headline .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px) rotate(var(--rot, 0deg));
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero-headline .char.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}
.hero-headline .char-space { display: inline-block; width: 0.28em; }

/* ═══════════════════════════════════════════
   ANIMATION PACK
═══════════════════════════════════════════ */

/* 1. Scroll progress bar */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--green); z-index: 9999;
  width: 0%; transition: width 0.1s linear;
  pointer-events: none;
}

/* 2. Cursor trail */
.cursor-dot-trail {
  position: fixed; pointer-events: none;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); z-index: 99998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* 3. Magnetic button — no extra CSS needed, handled via JS transform */

/* 4. Hero line draws on load */
.hero-line {
  position: absolute; left: var(--page-pad); top: 50%;
  width: 1px; height: 40vh;
  background: linear-gradient(to bottom, transparent, var(--muted-light), transparent);
  transform: translateY(-50%) scaleY(0);
  transform-origin: top center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2s;
}
.hero-line.drawn { transform: translateY(-50%) scaleY(1); }

/* 6. Photo hover */
.hero-photo-inner { transition: filter 0.4s ease; }
.hero-photo-inner:hover .hero-photo {
  filter: saturate(1.15);
}
.hero-photo { transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s ease; }
.hero-photo-inner:hover .hero-photo { transform: scale(1.03); }

/* ═══════════════════════════════════════════
   ENHANCED VISUAL PACK
═══════════════════════════════════════════ */

/* 1. CINEMATIC HERO LINE REVEAL */
.hero-headline .line {
  overflow: hidden;
  display: block;
  padding-bottom: 0.06em;
}
.hero-headline .line-inner {
  display: block;
  transform: translateY(105%) skewY(2deg);
  opacity: 0;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}
.hero-headline .line-inner.line-revealed {
  transform: translateY(0) skewY(0deg);
  opacity: 1;
}

/* 2. PAGE HEADLINE LINE REVEAL (all non-home pages) */
.page-headline .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.page-headline .line-inner {
  display: block;
  transform: translateY(105%) skewY(2deg);
  opacity: 0;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}
.page-headline .line-inner.line-revealed {
  transform: translateY(0) skewY(0deg);
  opacity: 1;
}

/* PAGE EYEBROW (typewriter target) */
.page-eyebrow { opacity: 0; }
.page-eyebrow.eyebrow-visible { opacity: 1; }

/* 3. HERO GRADIENT ORBS */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: clamp(300px, 42vw, 600px);
  height: clamp(300px, 42vw, 600px);
  background: radial-gradient(circle at center, rgba(122,106,74,0.07) 0%, transparent 65%);
  top: -80px; right: 10%;
  filter: blur(40px);
  animation: orbDrift1 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: clamp(200px, 30vw, 420px);
  height: clamp(200px, 30vw, 420px);
  background: radial-gradient(circle at center, rgba(61,84,69,0.08) 0%, transparent 65%);
  bottom: 5%; left: 15%;
  filter: blur(50px);
  animation: orbDrift2 16s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: clamp(150px, 20vw, 280px);
  height: clamp(150px, 20vw, 280px);
  background: radial-gradient(circle at center, rgba(160,140,101,0.06) 0%, transparent 65%);
  top: 40%; right: 35%;
  filter: blur(35px);
  animation: orbDrift1 19s ease-in-out infinite alternate-reverse;
}
@keyframes orbDrift1 {
  from { transform: translate(0px, 0px) scale(1); }
  to   { transform: translate(30px, -40px) scale(1.08); }
}
@keyframes orbDrift2 {
  from { transform: translate(0px, 0px) scale(1); }
  to   { transform: translate(-25px, 35px) scale(0.94); }
}

/* 3. HERO PHOTO CLIP-PATH REVEAL */
.hero-photo-inner {
  clip-path: inset(100% 0 0 0);
  position: relative;
  z-index: 2;
  transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1) 0.5s,
              filter 0.4s ease;
}
.hero-photo-inner.photo-revealed {
  clip-path: inset(0% 0 0 0);
}
.hero-photo-inner:hover .hero-photo { transform: scale(1.03); }

/* 4. HERO EYEBROW — TYPEWRITER CURSOR */
.hero-eyebrow::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: var(--warm);
  animation: blink 1.1s step-end infinite;
  font-weight: 300;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* 5. MARQUEE STRIP — removed */

/* 6. CARD 3D TILT */
.prog-card,
.review-card,
.area-full-card {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s ease,
              background 0.4s, border-color 0.4s;
  transform-style: preserve-3d;
}

/* 7. SECTION EYEBROW — ANIMATED LINE */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--warm);
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
}
.reveal.visible .section-eyebrow::before,
.section-header.visible .section-eyebrow::before,
.sh-hidden.visible .section-eyebrow::before {
  width: 32px;
}
/* fallback for already visible */
.section-eyebrow.line-grown::before { width: 32px; }

/* 8. STATS GLOW ON HOVER */
.stat-num { position: relative; }
.stat-item:hover .stat-num {
  text-shadow: 0 0 60px rgba(244,241,236,0.15);
}

/* 9. AREA CARD DIAGONAL TEXTURE ON HOVER */
.area-card::after, .area-full-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.015) 10px,
    rgba(255,255,255,0.015) 11px
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  border-radius: inherit;
}
.area-card:hover::after, .area-full-card:hover::after { opacity: 1; }

/* 10. HERO ACCENT LINE — animated on load */
.hero-accent-line {
  position: absolute;
  right: var(--page-pad);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 2.4s forwards;
}
.hero-accent-line-bar {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, transparent, var(--muted-light), transparent);
  animation: growBar 1.4s cubic-bezier(0.16,1,0.3,1) 2.4s forwards;
}
@keyframes growBar {
  from { height: 0; opacity: 0; }
  to   { height: 120px; opacity: 1; }
}
.hero-accent-num {
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
@media (max-width: 1100px) { .hero-accent-line { display: none; } }

/* 11b. MANIFESTO LABEL — cinematic + proportional */
.manifesto-label {
  font-family: var(--f-display) !important;
  font-size: clamp(1rem, 1.6vw, 1.375rem) !important;
  font-weight: 300 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--warm) !important;
  display: block !important;
  padding-top: 0 !important;
}

/* shared line-reveal for both manifesto-label and edu-degree-label */
.manifesto-label .line,
.edu-degree-label-title .line {
  overflow: hidden;
  display: block;
  padding-bottom: 0.07em;
}
.manifesto-label .line-inner,
.edu-degree-label-title .line-inner {
  display: block;
  transform: translateY(108%) skewY(2deg);
  opacity: 0;
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
}
.manifesto-label .line-inner.line-revealed,
.edu-degree-label-title .line-inner.line-revealed {
  transform: translateY(0) skewY(0deg);
  opacity: 1;
}
/* stagger second line */
.edu-degree-label-title .line:nth-child(2) .line-inner {
  transition-delay: 0.16s;
}

.manifesto-text {
  font-size: clamp(1.375rem, 2.2vw, 2rem) !important;
  line-height: 1.65 !important;
}

/* 11. PROGRAMS CARD GRADIENT OVERLAY */
.prog-card .prog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,84,69,0) 0%, rgba(61,84,69,0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  border-radius: 4px;
}
.prog-card:hover .prog-card-overlay { opacity: 1; }
.prog-card { position: relative; overflow: hidden; }

/* 12. NAV LOGO animated dot */
.nav-logo::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--warm);
  margin-right: 0.6rem;
  vertical-align: middle;
  animation: pulseDot 3s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* 13. HERO META — staggered slide-in */
.hero-meta-item {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-meta-item.meta-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 14. SCROLL HINT arrow pulse */
.hero-scroll-arrow {
  animation: arrowBounce 2s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* 15. ENHANCED proof-num shimmer */
@keyframes numShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.proof-num.shimmer {
  background: linear-gradient(90deg, var(--green) 40%, var(--amber-light) 50%, var(--green) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: numShimmer 2s linear forwards;
}


/* EDU hero stats — stagger slide-up */
.edu-hero-stat {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.edu-hero-stat.edu-stat-hidden {
  opacity: 0;
  transform: translateY(24px);
}

/* Programs blocks — slide from left */
.prog-block-left {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.prog-block-left.block-hidden {
  opacity: 0;
  transform: translateX(-28px);
}

/* ═══════════ ACCESSIBILITY ═══════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-orb, .cursor, .cursor-ring, .cursor-dot-trail { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .edu-stat-hidden, .block-hidden, .stat-hidden, .step-hidden { opacity: 1 !important; transform: none !important; }
  .page-headline .line-inner { transform: none !important; opacity: 1 !important; }
  .page-eyebrow { opacity: 1 !important; }
}

@media print {
  nav, .cursor, .cursor-ring, .cursor-dot-trail, .hero-scroll,
  #preloader, #scroll-progress, .hero-orb,
  .btn-primary, .nav-cta, .nav-hamburger { display: none !important; }
  body { color: #000; background: #fff; }
  .page { display: block !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
}
