/* ============================================================
   Tolerance International School — Variant B
   "International Modern"
   Design: Usnea | 2026-04-03
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --color-navy:       #0F1C3F;
  --color-navy-light: #1E2E55;
  --color-teal:       #00A6A6;
  --color-teal-dark:  #008F8F;
  --color-teal-light: #E0F7F7;
  --color-teal-xlight:#F0FBFB;
  --color-ivory:      #FFFFF0;
  --color-gold:       #E8B84A;
  --color-gold-dark:  #D4A030;
  --color-slate:      #64748B;
  --color-slate-light:#94A3B8;
  --color-border:     #E2E8F0;
  --color-white:      #FFFFFF;
  --color-error:      #E53E3E;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width:    1180px;
  --nav-height:   72px;
  --radius:       10px;
  --radius-sm:    6px;

  --shadow-sm:  0 2px 8px rgba(15,28,63,0.06);
  --shadow-md:  0 8px 24px rgba(15,28,63,0.12);
  --shadow-lg:  0 16px 48px rgba(15,28,63,0.16);

  --transition: 200ms ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-ivory);
  color: var(--color-navy);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-gold));
  width: 0%;
  z-index: 1000;
  transition: width 50ms linear;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-teal);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 16px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; }
h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 18px; font-weight: 600; font-family: var(--font-heading); letter-spacing: 0; }
p { font-size: 16px; line-height: 1.75; color: var(--color-slate); }
p.lead { font-size: 18px; line-height: 1.65; color: var(--color-slate); }
small { font-size: 14px; color: var(--color-slate-light); }
.text-teal { color: var(--color-teal); }
.text-navy { color: var(--color-navy); }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-white p { color: rgba(255,255,255,0.75); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section--teal {
  background: var(--color-teal);
}
.section--teal h2,
.section--teal h3,
.section--teal p,
.section--teal .teal-accent-bar { color: #fff; }
.section--teal p { color: rgba(255,255,255,0.8); }
.section--navy {
  background: var(--color-navy);
  color: #fff;
}

/* ── Teal Accent Bar ── */
.teal-accent-bar {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--color-teal);
  border-radius: 2px;
  margin-bottom: 16px;
}
.teal-accent-bar--center { margin-left: auto; margin-right: auto; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  height: var(--nav-height);
}
.nav.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 16px rgba(15,28,63,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  flex-shrink: 0;
}
.nav__logo span { color: var(--color-teal); display: block; font-weight: 500; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-slate);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-teal);
  transition: width 250ms ease;
  border-radius: 2px;
}
.nav__link:hover { color: var(--color-navy); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--color-teal); }
.nav__cta { flex-shrink: 0; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-navy);
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--color-teal); }
.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: var(--color-slate);
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform 100ms ease;
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn:active { transform: translateY(1px); }

.btn--teal {
  background: var(--color-teal);
  color: #fff;
}
.btn--teal:hover {
  background: var(--color-teal-dark);
  box-shadow: 0 4px 16px rgba(0,166,166,0.30);
}

.btn--ghost {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}
.btn--ghost:hover {
  background: rgba(15,28,63,0.05);
}

.btn--ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: #fff;
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-navy);
}
.btn--gold:hover {
  background: var(--color-gold-dark);
  box-shadow: 0 4px 16px rgba(232,184,74,0.35);
}

.btn--lg { padding: 15px 36px; font-size: 16px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── Hero ── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: var(--color-ivory);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content { z-index: 1; }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease-out 0.1s forwards;
}
.hero h1 {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease-out 0.2s forwards;
}
.hero__sub {
  font-size: 18px;
  color: var(--color-slate);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease-out 0.3s forwards;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease-out 0.4s forwards;
}
.hero__photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  animation: fadeIn 0.7s ease-out 0.5s forwards;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15,28,63,0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__photo-badge svg { color: var(--color-gold); }
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-slate-light);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--color-navy);
  padding: 48px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── School Levels ── */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.level-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
  border-left: 3px solid transparent;
  position: relative;
}
.level-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-teal);
}
.level-card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-teal-xlight);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-teal);
}
.level-card__icon svg { width: 26px; height: 26px; }
.level-card h3 { margin-bottom: 12px; }
.level-card p { font-size: 15px; margin-bottom: 20px; }
.level-card__link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.level-card__link:hover { gap: 10px; }
.level-card__link svg { width: 16px; height: 16px; }

/* ── Why Tolerance ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.why-item { text-align: center; padding: 32px 24px; }
.why-item__icon {
  width: 64px;
  height: 64px;
  background: var(--color-teal-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-teal);
}
.why-item__icon svg { width: 30px; height: 30px; }
.why-item__stat {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 6px;
}
.why-item__stat-label {
  font-size: 13px;
  color: var(--color-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.why-item h3 { margin-bottom: 10px; font-size: 20px; }

/* ── SHS Tracks ── */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.track-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--transition), transform var(--transition);
}
.track-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.track-card__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(232,184,74,0.15);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.track-card h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
}
.track-card p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.track-card__paths {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.track-card__path {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* ── Values Section ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.value-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-item__icon {
  width: 56px;
  height: 56px;
  background: var(--color-teal-xlight);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-teal);
}
.value-item__icon svg { width: 28px; height: 28px; }
.value-item h3 { margin-bottom: 12px; }
.value-item p { font-size: 15px; }

/* ── Admissions CTA Banner ── */
.admissions-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.admissions-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,166,166,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.admissions-banner h2 {
  color: #fff;
  max-width: 680px;
  margin: 0 auto 16px;
}
.admissions-banner p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 17px;
}
.admissions-banner .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Page Header ── */
.page-header {
  background: var(--color-navy);
  padding: 72px 0 64px;
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; font-size: 17px; }
.page-header .teal-accent-bar { margin: 0 auto 20px; }

/* ── Admissions Process ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.process-step:first-child { border-top: 1px solid var(--color-border); }
.process-step__number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--color-border);
  line-height: 1;
  text-align: right;
  transition: color var(--transition);
}
.process-step:hover .process-step__number { color: var(--color-teal-light); }
.process-step__content h3 { margin-bottom: 8px; font-size: 22px; }
.process-step__content p { font-size: 15px; }

/* ── Enrollment Requirements ── */
.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.req-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.req-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.req-card h3 svg { color: var(--color-teal); width: 20px; height: 20px; }
.req-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.req-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--color-slate);
  line-height: 1.5;
}
.req-list__item svg {
  width: 16px;
  height: 16px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
}
.contact-info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-info-item strong { display: block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-slate-light); margin-bottom: 4px; }
.contact-info-item a { color: var(--color-teal); }
.contact-info-item a:hover { text-decoration: underline; }
.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.contact-social__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-slate);
  transition: border-color var(--transition), color var(--transition);
}
.contact-social__link:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}
.contact-social__link svg { width: 16px; height: 16px; }

/* ── Forms ── */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 14px; font-weight: 600; color: var(--color-navy); }
.form-label span { color: var(--color-error); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  font-size: 15px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0,166,166,0.12);
}
.form-input.error,
.form-select.error,
.form-textarea.error { border-color: var(--color-error); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-error { font-size: 13px; color: var(--color-error); display: none; }
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea { border-color: var(--color-error); }
.form-submit { margin-top: 4px; }
.form-success {
  display: none;
  padding: 24px;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius);
  border-left: 4px solid #16A34A;
}
.form-success.show { display: block; }
.form-success h3 { font-size: 18px; color: #166534; margin-bottom: 6px; font-family: var(--font-heading); font-weight: 700; }
.form-success p { font-size: 15px; color: var(--color-slate); }

/* ── Footer ── */
.footer {
  background: var(--color-navy);
  color: #fff;
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.footer__logo span { color: var(--color-teal); display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 280px; }
.footer__heading {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 15px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer__link:hover { color: var(--color-teal); }
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition);
}
.footer__social-link:hover { border-color: var(--color-teal); color: var(--color-teal); }
.footer__social-link svg { width: 18px; height: 18px; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Map Placeholder ── */
.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-slate-light);
  font-size: 15px;
  font-weight: 500;
}
.map-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__photo { max-width: 600px; }
  .hero { min-height: auto; padding: 60px 0; }
  .tracks-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .section { padding: 64px 0; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .levels-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .tracks-grid { grid-template-columns: 1fr 1fr; }
  .requirements-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
