/* ============================================
   ZAZIGE — Main Stylesheet
   Bold Contrast Design System
   ============================================ */


:root {
  --ink: #0f0f12;
  --ink-soft: #1e1e24;
  --chalk: #f5f4f0;
  --chalk-mid: #e8e6e0;
  --chalk-dark: #d8d5cc;
  --accent: #2d9cdb;
  --accent-deep: #1a6fa0;
  --accent-warm: #e8a020;
  --accent-warm-deep: #c4841a;
  --text-body: #2c2c34;
  --text-muted: #6b6b78;
  --text-light: #9898a2;
  --nav-h: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(15,15,18,0.06), 0 1px 2px rgba(15,15,18,0.04);
  --shadow-md: 0 4px 12px rgba(15,15,18,0.08), 0 2px 4px rgba(15,15,18,0.05);
  --shadow-lg: 0 12px 32px rgba(15,15,18,0.1), 0 4px 12px rgba(15,15,18,0.06), 0 1px 3px rgba(15,15,18,0.04);
  --shadow-xl: 0 24px 64px rgba(15,15,18,0.12), 0 8px 24px rgba(15,15,18,0.08), 0 2px 6px rgba(15,15,18,0.04);
  --shadow-accent: 0 8px 24px rgba(45,156,219,0.25), 0 2px 8px rgba(45,156,219,0.15);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--chalk);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease, opacity 0.3s ease; }

/* ============================================
   TYPOGRAPHY SCALE
   ============================================ */

.hero-headline {
  font-family: 'Newsreader', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--chalk);
  letter-spacing: -0.03em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.section-heading {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.page-hero-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--chalk);
}
.page-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,244,240,0.7);
  margin-top: 0.75rem;
  font-weight: 400;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-label.light { color: rgba(45,156,219,0.8); }
.section-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto;
}
.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.body-text:last-of-type { margin-bottom: 0; }
.highlight-text {
  color: var(--accent);
  font-weight: 600;
}

/* ============================================
   NAVIGATION
   ============================================ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.nav-scrolled {
  background: rgba(245,244,240,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(15,15,18,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  z-index: 901;
}
.nav-logo-text {
  font-family: 'Newsreader', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 901;
  padding: 0;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}
.nav-toggle:hover { background: rgba(15,15,18,0.05); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.hero-section .nav-logo-text { color: var(--chalk); }
.hero-section .nav-toggle span { background: var(--chalk); }


.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,15,18,0.5);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}
.mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: var(--ink);
  z-index: 960;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-panel.is-open {
  transform: translateX(0);
}
.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(245,244,240,0.1);
}
.mobile-panel-header .nav-logo-text { color: var(--chalk); }
.panel-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chalk);
  font-size: 1.25rem;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}
.panel-close:hover { background: rgba(245,244,240,0.1); }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  flex: 1;
}
.mobile-nav-item {
  display: block;
  padding: 0.875rem 1.75rem;
  color: rgba(245,244,240,0.85);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(245,244,240,0.06);
  transition: color 0.3s ease, background 0.3s ease, padding-left 0.3s ease;
  opacity: 0;
  transform: translateX(-16px);
}
.mobile-panel.is-open .mobile-nav-item {
  animation: slideInNavItem 0.4s ease forwards;
  animation-delay: var(--delay, 0.05s);
}
@keyframes slideInNavItem {
  to { opacity: 1; transform: translateX(0); }
}
.mobile-nav-item:hover {
  color: var(--accent);
  background: rgba(45,156,219,0.06);
  padding-left: 2.25rem;
}
.mobile-panel-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(245,244,240,0.1);
}
.mobile-cta {
  display: block;
  text-align: center;
  width: 100%;
}

/* ============================================
   BUTTONS / ACTIONS
   ============================================ */

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}
.primary-action:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45,156,219,0.35), 0 4px 12px rgba(45,156,219,0.2);
}
.primary-action:active { transform: translateY(0); }

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--chalk);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid rgba(245,244,240,0.3);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.secondary-action:hover {
  border-color: rgba(245,244,240,0.7);
  background: rgba(245,244,240,0.08);
  transform: translateY(-2px);
}


.content-block .secondary-action,
.overview-cta ~ .secondary-action {
  color: var(--ink);
  border-color: rgba(15,15,18,0.2);
}
.content-block .secondary-action:hover,
.overview-cta ~ .secondary-action:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(45,156,219,0.04);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.content-block {
  padding: var(--space-2xl) 0;
}
.visual-break {
  padding: var(--space-2xl) 0;
  background: var(--ink-soft);
}
.section-header-centered {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-header-centered .section-heading {
  color: var(--chalk);
  margin-bottom: 1rem;
}
.visual-break .section-label { color: rgba(45,156,219,0.8); }
.visual-break .section-heading { color: var(--chalk); }
.visual-break .section-subtext { color: rgba(245,244,240,0.6); }
.visual-break .body-text { color: rgba(245,244,240,0.8); }

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  min-height: 100vh;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 4vw, 3rem) 5rem;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(45,156,219,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--chalk));
  pointer-events: none;
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(45,156,219,0.3);
  border-radius: 100px;
  background: rgba(45,156,219,0.08);
}
.hero-subtext {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(245,244,240,0.7);
  line-height: 1.7;
  margin: 1.75rem 0 2.5rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual-block {
  position: relative;
  z-index: 2;
}
.hero-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-accent);
}
.hero-badge i { font-size: 1.1rem; }


@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.scroll-reveal-hero {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* ============================================
   INTRO STRIP
   ============================================ */

.intro-strip {
  background: var(--chalk-mid);
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--chalk-dark);
  border-bottom: 1px solid var(--chalk-dark);
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.02em;
}
.strip-icon {
  color: var(--accent);
  font-size: 1rem;
}
.strip-divider {
  width: 1px;
  height: 20px;
  background: var(--chalk-dark);
}

/* ============================================
   OVERVIEW SECTION
   ============================================ */

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.overview-text-col { display: flex; flex-direction: column; gap: 0; }
.overview-text-col .section-heading { margin-bottom: 1.25rem; }
.overview-text-col .body-text { margin-bottom: 1rem; }
.overview-cta { margin-top: 2rem; align-self: flex-start; }
.overview-image-col { position: relative; }
.overview-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.overview-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--ink);
  color: var(--chalk);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}
.overview-accent-card i {
  font-size: 1.5rem;
  color: var(--accent);
}
.overview-accent-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}
.overview-accent-card span {
  font-size: 0.78rem;
  color: rgba(245,244,240,0.6);
}

/* ============================================
   PROGRAM CARDS
   ============================================ */

.info-grid { display: grid; gap: 1.5rem; }
.program-grid { grid-template-columns: repeat(3, 1fr); }

.program-card {
  background: var(--chalk-mid);
  border: 1px solid var(--chalk-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  animation-delay: var(--card-delay, 0s);
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(45,156,219,0.2);
}
.program-card:hover::before { transform: scaleX(1); }
.card-number {
  font-family: 'Newsreader', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--chalk-dark);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.card-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(45,156,219,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 1.25rem;
  transition: background 0.3s ease;
}
.program-card:hover .card-icon-wrap { background: rgba(45,156,219,0.18); }
.card-title {
  font-family: 'Newsreader', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}
.card-text {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s ease, color 0.3s ease;
}
.card-link:hover { gap: 0.7rem; color: var(--accent-deep); }

/* ============================================
   WHY SECTION
   ============================================ */

.why-grid { grid-template-columns: repeat(2, 1fr); }
.why-card {
  background: rgba(245,244,240,0.06);
  border: 1px solid rgba(245,244,240,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.35s ease, transform 0.35s ease;
  animation-delay: var(--card-delay, 0s);
}
.why-card:hover {
  background: rgba(245,244,240,0.1);
  transform: translateY(-4px);
}
.why-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(45,156,219,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease;
}
.why-card:hover .why-icon-wrap { background: rgba(45,156,219,0.25); }
.why-title {
  font-family: 'Newsreader', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--chalk);
  margin-bottom: 0.75rem;
}
.why-text {
  font-size: 0.925rem;
  line-height: 1.7;
  color: rgba(245,244,240,0.65);
}

/* ============================================
   MILESTONE / JOURNEY SECTION
   ============================================ */

.milestone-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.milestone-text-col .section-heading { margin-bottom: 1.25rem; }
.milestone-text-col .body-text { margin-bottom: 1rem; }
.milestone-text-col .primary-action { margin-top: 1.5rem; }
.milestone-steps-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.milestone-step {
  display: flex;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2rem;
  animation-delay: var(--card-delay, 0s);
}
.milestone-step:last-child { padding-bottom: 0; }
.milestone-step::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--chalk-dark);
}
.milestone-step:last-child::before { display: none; }
.step-marker {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(45,156,219,0.15);
}
.step-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.step-content { padding-top: 0.35rem; }
.step-title {
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.step-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   COUNTER SECTION
   ============================================ */

.counter-grid { grid-template-columns: repeat(4, 1fr); }
.counter-item {
  text-align: center;
  padding: 2rem 1.5rem;
  animation-delay: var(--card-delay, 0s);
}
.counter-icon {
  width: 52px;
  height: 52px;
  background: rgba(45,156,219,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  margin: 0 auto 1.25rem;
}
.counter-value {
  font-family: 'Newsreader', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--chalk);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.counter-label {
  font-size: 0.875rem;
  color: rgba(245,244,240,0.6);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================
   IMAGE BREAK SECTION
   ============================================ */

.image-break-section {
  padding: 0;
  background: none;
}
.image-break-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  height: 480px;
  overflow: hidden;
}
.break-image-main, .break-image-secondary { position: relative; overflow: hidden; }
.break-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.break-image-main:hover .break-img,
.break-image-secondary:hover .break-img { transform: scale(1.04); }
.break-text-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(15,15,18,0.85) 0%, transparent 100%);
  color: var(--chalk);
}
.break-text-overlay h3 {
  font-family: 'Newsreader', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.break-text-overlay p {
  font-size: 0.875rem;
  color: rgba(245,244,240,0.75);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(45,156,219,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-text-col .section-heading { color: var(--chalk); }
.cta-text-col .body-text { color: rgba(245,244,240,0.7); margin-top: 1rem; }
.cta-action-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.centered-cta {
  text-align: center;
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
}
.centered-cta .section-heading { color: var(--chalk); margin-bottom: 1rem; }
.centered-cta .cta-body-text { color: rgba(245,244,240,0.65); max-width: 520px; margin: 0 auto 2.5rem; }
.cta-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.footer-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer-bg-pattern::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(45,156,219,0.04);
}
.footer-bg-pattern::after {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 50px solid rgba(45,156,219,0.03);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem clamp(1.25rem, 4vw, 3rem) 2rem;
  position: relative;
  z-index: 1;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,244,240,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: 'Newsreader', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--chalk);
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(245,244,240,0.5);
  line-height: 1.65;
  max-width: 300px;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-link {
  font-size: 0.9rem;
  color: rgba(245,244,240,0.6);
  transition: color 0.3s ease;
  position: relative;
}
.footer-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.footer-link:hover { color: var(--chalk); }
.footer-link:hover::after { width: 100%; }
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(245,244,240,0.6);
}
.footer-contact-list i {
  color: var(--accent);
  margin-top: 0.1rem;
  flex-shrink: 0;
  font-size: 0.875rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(245,244,240,0.35);
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links .footer-link { font-size: 0.8rem; }

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  min-height: 55vh;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(45,156,219,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--chalk));
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.mission-text-col .section-heading { margin-bottom: 1.25rem; }
.mission-text-col .body-text { margin-bottom: 1rem; }

.values-grid { grid-template-columns: repeat(2, 1fr); }
.value-card {
  background: rgba(245,244,240,0.06);
  border: 1px solid rgba(245,244,240,0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  animation-delay: var(--card-delay, 0s);
  transition: background 0.35s ease, transform 0.35s ease;
}
.value-card:hover {
  background: rgba(245,244,240,0.1);
  transform: translateY(-4px);
}
.value-num {
  font-family: 'Newsreader', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
}
.value-title {
  font-family: 'Newsreader', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--chalk);
  margin-bottom: 0.75rem;
}
.value-text {
  font-size: 0.925rem;
  color: rgba(245,244,240,0.65);
  line-height: 1.7;
}

.format-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.format-text-col .section-heading { margin-bottom: 1.25rem; }
.format-text-col .body-text { margin-bottom: 1rem; }
.format-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.75rem;
}
.format-spec-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 0.75rem 1rem;
  background: var(--chalk-mid);
  border-radius: var(--radius-md);
  border: 1px solid var(--chalk-dark);
}
.format-spec-item i { color: var(--accent); font-size: 1rem; flex-shrink: 0; }
.format-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.location-text .section-heading { margin-bottom: 1.25rem; }
.location-text .body-text { margin-bottom: 1rem; }
.contact-details-block {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 1.75rem 0;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: rgba(245,244,240,0.75);
}
.contact-detail-item i { color: var(--accent); }
.contact-detail-item a { color: rgba(245,244,240,0.75); transition: color 0.3s; }
.contact-detail-item a:hover { color: var(--accent); }
.location-card {
  background: rgba(245,244,240,0.06);
  border: 1px solid rgba(245,244,240,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.location-map-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.location-card p {
  font-size: 0.925rem;
  color: rgba(245,244,240,0.65);
  line-height: 1.7;
}

/* ============================================
   PROGRAMS PAGE
   ============================================ */

.programs-intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: center;
}
.programs-intro-text .section-heading { margin-bottom: 1.25rem; }
.intro-aside-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
}
.aside-stat { text-align: center; }
.aside-num {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.aside-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(245,244,240,0.55);
  font-weight: 500;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.aside-divider {
  width: 100%;
  height: 1px;
  background: rgba(245,244,240,0.08);
}

.module-header {
  margin-bottom: 2.5rem;
}
.module-number-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.module-number-badge.mod-02 { background: var(--accent-warm); }
.module-number-badge.mod-03 { background: var(--ink); }
.module-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}
.module-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
}
.module-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.module-content-grid.reversed { direction: rtl; }
.module-content-grid.reversed > * { direction: ltr; }
.module-sessions-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.session-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--chalk-dark);
  animation-delay: var(--card-delay, 0s);
  transition: background 0.3s ease;
}
.session-item:last-child { border-bottom: none; }
.session-num {
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 32px;
  padding-top: 0.1rem;
}
.session-num.accent-warm { color: var(--accent-warm); }
.session-num.accent-ink { color: var(--ink); }
.session-title {
  font-family: 'Newsreader', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.session-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.module-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.module-divider {
  height: 1px;
  background: var(--chalk-dark);
  margin: 0;
  padding: 0;
}

/* ============================================
   GUIDE PAGE
   ============================================ */

.guide-disclaimer-section { padding-top: 2rem; padding-bottom: 0; }
.disclaimer-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}
.disclaimer-banner i { color: var(--accent-warm); margin-top: 0.1rem; flex-shrink: 0; }

.guide-intro-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.toc-block {
  background: var(--chalk-mid);
  border: 1px solid var(--chalk-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.toc-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.3s ease, background 0.3s ease;
}
.toc-link i { color: var(--accent); font-size: 0.8rem; }
.toc-link:hover { color: var(--accent); background: rgba(45,156,219,0.06); }

.guide-intro-text-col .section-heading { margin-bottom: 1.25rem; }
.guide-topic-section { scroll-margin-top: calc(var(--nav-h) + 1rem); }
.guide-topic-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.guide-topic-icon {
  width: 56px;
  height: 56px;
  background: rgba(45,156,219,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.guide-topic-icon.warm {
  background: rgba(232,160,32,0.1);
  color: var(--accent-warm);
}
.guide-topic-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.visual-break .guide-topic-title { color: var(--chalk); }
.guide-topic-body .body-text { margin-bottom: 1.25rem; }
.guide-callout {
  display: flex;
  gap: 1rem;
  background: rgba(45,156,219,0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-body);
}
.guide-callout i { color: var(--accent); margin-top: 0.1rem; flex-shrink: 0; }
.guide-callout strong { display: block; margin-bottom: 0.3rem; color: var(--ink); }
.warm-callout {
  background: rgba(232,160,32,0.08);
  border-left-color: var(--accent-warm);
}
.warm-callout i { color: var(--accent-warm); }
.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(45,156,219,0.3);
  transition: text-decoration-color 0.3s ease;
}
.inline-link:hover { text-decoration-color: var(--accent); }
.guide-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}
.guide-signal-card {
  background: rgba(245,244,240,0.06);
  border: 1px solid rgba(245,244,240,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: background 0.3s ease;
}
.guide-signal-card:hover { background: rgba(245,244,240,0.1); }
.signal-icon {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
}
.guide-signal-card h4 {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--chalk);
  margin-bottom: 0.5rem;
}
.guide-signal-card p {
  font-size: 0.875rem;
  color: rgba(245,244,240,0.6);
  line-height: 1.65;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: start;
}
.contact-form-heading { margin-bottom: 0.75rem; }
.contact-intro-text { color: var(--text-muted); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-row-single { width: 100%; }
.form-field-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.required-mark { color: var(--accent); }
.form-input, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--chalk-mid);
  border: 1.5px solid var(--chalk-dark);
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,156,219,0.12);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-privacy-row { padding: 0.5rem 0; }
.privacy-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  cursor: pointer;
}
.privacy-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--accent);
  cursor: pointer;
}
.privacy-check-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.form-link { color: var(--accent); text-decoration: underline; }
.form-submit-btn { align-self: flex-start; }
.form-note { font-size: 0.8rem; color: var(--text-light); }
.contact-info-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-info-title {
  font-family: 'Newsreader', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--chalk);
  margin-bottom: 1.5rem;
}
.contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(45,156,219,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.45);
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-size: 0.9rem;
  color: rgba(245,244,240,0.85);
  line-height: 1.5;
  transition: color 0.3s ease;
}
a.contact-info-value:hover { color: var(--accent); }
.contact-map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }


.inquiry-timeline {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.timeline-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2.5rem;
  animation-delay: var(--card-delay, 0s);
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-connector {
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: rgba(245,244,240,0.12);
}
.last-connector { display: none; }
.timeline-dot {
  width: 44px;
  height: 44px;
  background: rgba(45,156,219,0.15);
  border: 2px solid rgba(45,156,219,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.active-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(45,156,219,0.15);
}
.upcoming-dot {
  background: rgba(245,244,240,0.06);
  border-color: rgba(245,244,240,0.15);
  color: rgba(245,244,240,0.3);
}
.timeline-content { padding-top: 0.5rem; }
.timeline-step-title {
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--chalk);
  margin-bottom: 0.5rem;
}
.timeline-step-text {
  font-size: 0.9rem;
  color: rgba(245,244,240,0.6);
  line-height: 1.65;
}

/* ============================================
   THANKS PAGE
   ============================================ */

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-h) - 300px);
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 4vw, 3rem) 4rem;
}
.thanks-container {
  max-width: 560px;
  width: 100%;
  text-align: center;
}
.thanks-icon-wrap {
  margin-bottom: 1.5rem;
}
.thanks-check-icon {
  font-size: 4rem;
  color: var(--accent);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.thanks-heading {
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.thanks-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.thanks-home-btn { margin: 0 auto 3rem; }
.thanks-timeline {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--chalk-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.thanks-timeline-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--chalk-dark);
  transition: background 0.3s ease;
}
.thanks-timeline-item:last-child { border-bottom: none; }
.thanks-timeline-item.completed { background: var(--chalk-mid); }
.thanks-timeline-item.highlighted {
  background: rgba(45,156,219,0.06);
  border-left: 3px solid var(--accent);
}
.thanks-timeline-item.upcoming { opacity: 0.5; }
.thanks-timeline-dot {
  width: 36px;
  height: 36px;
  background: rgba(45,156,219,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.thanks-timeline-item.highlighted .thanks-timeline-dot {
  background: var(--accent);
  color: #fff;
}
.upcoming-dot-thanks {
  background: var(--chalk-dark) !important;
  color: var(--text-light) !important;
}
.thanks-timeline-line { display: none; }
.thanks-timeline-text h4 {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.thanks-timeline-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-main { padding-top: calc(var(--nav-h) + 3rem); }
.legal-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 6rem;
}
.legal-header {
  padding: 3rem 0 2.5rem;
  border-bottom: 2px solid var(--chalk-dark);
  margin-bottom: 2.5rem;
}
.legal-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.legal-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.legal-body h2 {
  font-family: 'Newsreader', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 1rem;
  letter-spacing: -0.01em;
}
.legal-body h3 {
  font-family: 'Newsreader', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.75rem;
}
.legal-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}
.cookies-subhead {
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.5rem;
}
.legal-body code {
  font-family: monospace;
  background: var(--chalk-mid);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.875em;
  color: var(--accent-deep);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--card-delay, 0s);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   COOKIE CONSENT — SIDE PANEL
   ============================================ */

.cookie-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,15,18,0.4);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cookie-panel-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-side-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--ink);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(15,15,18,0.3);
}
.cookie-side-panel.is-open {
  transform: translateX(0);
}
.cookie-panel-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(245,244,240,0.08);
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.cookie-shield-icon {
  width: 40px;
  height: 40px;
  background: rgba(45,156,219,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cookie-panel-title {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--chalk);
}
.cookie-panel-subtitle {
  font-size: 0.75rem;
  color: rgba(245,244,240,0.5);
  margin-top: 0.15rem;
}
.cookie-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-panel-intro {
  font-size: 0.825rem;
  color: rgba(245,244,240,0.6);
  line-height: 1.6;
}
.cookie-category {
  background: rgba(245,244,240,0.05);
  border: 1px solid rgba(245,244,240,0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.cookie-category-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--chalk);
}
.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(245,244,240,0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.toggle-track::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: rgba(245,244,240,0.5);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}
.cookie-toggle input:checked + .toggle-track { background: var(--accent); }
.cookie-toggle input:checked + .toggle-track::after {
  transform: translateX(18px);
  background: #fff;
}
.cookie-toggle input:disabled + .toggle-track { cursor: not-allowed; opacity: 0.6; }
.cookie-category-desc {
  font-size: 0.78rem;
  color: rgba(245,244,240,0.45);
  line-height: 1.55;
}
.cookie-panel-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(245,244,240,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cookie-accept-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cookie-accept-btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.cookie-reject-btn {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  color: rgba(245,244,240,0.5);
  border: 1px solid rgba(245,244,240,0.12);
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.cookie-reject-btn:hover {
  color: rgba(245,244,240,0.8);
  border-color: rgba(245,244,240,0.3);
}
.cookie-legal-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.cookie-legal-link {
  font-size: 0.72rem;
  color: rgba(245,244,240,0.35);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.cookie-legal-link:hover { color: rgba(245,244,240,0.7); }

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */

@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-bottom: 4rem;
  }
  .hero-content-wrap { max-width: 600px; margin: 0 auto; }
  .hero-subtext { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual-block { max-width: 480px; margin: 0 auto; }
  .hero-image { aspect-ratio: 16/9; }

  .overview-grid { grid-template-columns: 1fr; }
  .overview-image-col { max-width: 480px; }
  .overview-accent-card { right: 0; }

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

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

  .milestone-inner { grid-template-columns: 1fr; }

  .counter-grid { grid-template-columns: repeat(2, 1fr); }

  .image-break-grid { grid-template-columns: 1fr; height: auto; }
  .break-image-main { height: 300px; }
  .break-image-secondary { height: 240px; }

  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-action-col { flex-direction: row; justify-content: center; }

  .footer-top-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }

  .about-mission-grid { grid-template-columns: 1fr; }
  .format-split-grid { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; }

  .programs-intro-grid { grid-template-columns: 1fr; }
  .intro-aside-card { flex-direction: row; gap: 2rem; }

  .module-content-grid { grid-template-columns: 1fr; }
  .module-content-grid.reversed { direction: ltr; }
  .module-img { position: static; aspect-ratio: 16/9; }

  .guide-intro-grid { grid-template-columns: 1fr; }
  .toc-block { position: static; }

  .guide-signal-grid { grid-template-columns: 1fr; }

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

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

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */

@media (max-width: 768px) {
  :root {
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;
  }
  .section-container { padding: 0 1.25rem; }
  .content-block { padding: 3rem 0; }
  .visual-break { padding: 3rem 0; }

  .hero-section { padding: calc(var(--nav-h) + 2rem) 1.25rem 3rem; }
  .hero-headline { font-size: clamp(2.5rem, 10vw, 4rem); }

  .strip-inner { gap: 1rem; }
  .strip-divider { display: none; }

  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .counter-item { padding: 1.5rem 1rem; }

  .image-break-section { display: none; }

  .cta-inner { padding: 2rem 1.5rem; }
  .centered-cta { padding: 2.5rem 1.5rem; }

  .footer-top-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }

  .page-hero { min-height: 45vh; padding-bottom: 3rem; }

  .module-header { margin-bottom: 1.5rem; }

  .inquiry-timeline { max-width: 100%; }

  .cookie-side-panel { width: 100%; max-width: 320px; }

  .thanks-main { padding-top: calc(var(--nav-h) + 2rem); }

  .legal-container { padding-bottom: 4rem; }

  .guide-intro-grid { gap: 2rem; }

  .intro-aside-card { flex-direction: column; gap: 1rem; }

  .overview-accent-card {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .primary-action,
  .hero-actions .secondary-action { width: 100%; justify-content: center; }
  .cta-btn-group { flex-direction: column; align-items: center; }
  .cta-action-col { flex-direction: column; }
}