:root {
  --ink: #232528;
  --red: #CE1126;
  --gold: #E3A81C;
  --paper: #FAF8F3;
  --line: #E7E0D2;
  --cream: #EFE8DC;
  --muted: #7C776C;
  --muted-2: #9A9488;
  --body-text: #4A4C50;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: #232528;
  font-family: 'Source Serif 4', Georgia, serif;
  overflow-x: hidden;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--gold); }
input { font-family: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

@keyframes glldrift {
  0% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
  100% { transform: translateY(0); }
}
.drift { animation: glldrift 4s ease-in-out infinite; }
.drift-2 { animation-delay: .4s; }
.drift-3 { animation-delay: .8s; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,248,243,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 46px; width: auto; }
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
}
.main-nav a { color: #3C3E42; }
.main-nav a:hover { color: var(--red); }
.main-nav .event-link { color: var(--red); }
.nav-cta.btn { color: var(--paper); }
.nav-toggle { display: none; }

/* Buttons */
.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  padding: 17px 30px;
  border-radius: 999px;
  display: inline-block;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #b30f21; color: #fff; }
.btn-dark { background: var(--ink); color: var(--paper); padding: 12px 20px; font-weight: 600; letter-spacing: 0.01em; }
.btn-dark:hover { color: var(--paper); opacity: .85; }
.btn-outline-ink { border: 2px solid var(--ink); color: var(--ink); padding: 15px 28px; }
.btn-outline-ink:hover { color: var(--ink); background: var(--ink); color: var(--paper); }
.btn-outline-paper { border: 2px solid var(--paper); color: var(--paper); padding: 15px 28px; }
.btn-outline-paper:hover { color: var(--paper); background: rgba(250,248,243,0.1); }

/* Dots / kicker */
.dot { display: inline-block; border-radius: 50%; }
.dot-ink { background: var(--ink); }
.dot-red { background: var(--red); }
.dot-gold { background: var(--gold); }
.dot-paper { background: var(--paper); }
.dot-sm { width: 10px; height: 10px; }
.dot-lg { width: 16px; height: 16px; }
.dots-line { display: flex; align-items: center; gap: 10px; }
.kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 8px;
}
.kicker-light { color: #B6B2A8; }
.kicker-red { color: var(--red); margin-left: 0; margin-bottom: 14px; display: block; }
.kicker-gold { color: var(--gold); margin-left: 0; margin-bottom: 14px; display: block; }
.eyebrow { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }

/* Hero */
.hero { position: relative; background: var(--paper); }
.hero-flex {
  display: flex;
  align-items: stretch;
  min-height: min(78vh, 720px);
}
.hero-copy-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 40px 72px max(32px, calc((100vw - 1240px) / 2 + 32px));
  box-sizing: border-box;
}
.hero-copy { max-width: 560px; }
.hero-copy .dots-line { margin-bottom: 26px; }
.hero-image-col {
  flex: 1 1 auto;
  position: relative;
  min-width: 280px;
}
.hero-image-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  color: var(--red);
  margin: 0 0 22px;
}
.hero-desc {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: var(--body-text);
  margin: 0 0 34px;
  max-width: 60ch;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

.stats-bar-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }

@media (max-width: 860px) {
  .hero-flex {
    position: relative;
    flex-direction: column;
    min-height: min(86vh, 640px);
  }
  .hero-copy-col {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    justify-content: flex-end;
    padding: 48px 24px 40px;
  }
  .hero-image-col {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: 0;
  }
  .hero-image-col::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,21,23,0.12) 0%, rgba(20,21,23,0.32) 42%, rgba(20,21,23,0.88) 100%);
  }
  .hero .dot-ink { background: var(--paper); }
  .hero .kicker { color: #E7E3D8; }
  .hero h1 { color: var(--paper); }
  .hero-sub { color: #FF7A7A; }
  .hero-desc { color: #ECE8DD; }
  .hero .btn-outline-ink { border-color: var(--paper); color: var(--paper); }
  .hero .btn-outline-ink:hover { background: rgba(250,248,243,0.15); color: var(--paper); }
}
.stats-bar {
  padding: 22px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 26px; font-weight: 600; }
.stat-label { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* Sections */
.section { max-width: 1240px; margin: 0 auto; padding: 96px 32px 0; }
.section:first-of-type { padding-top: 96px; }
#paths.section { padding-bottom: 8px; }
.section-dark { background: var(--ink); color: var(--paper); margin-top: 96px; }
.section-dark .wrap { padding: 96px 32px; }
.section-cream { background: var(--cream); margin-top: 96px; }
.section-cream .wrap { padding: 88px 32px; }

.h2-24ch, .h2-26ch, .h2-22ch, .h2-plain, .h2-say, .h2-cta {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.08;
}
.h2-24ch { font-size: clamp(30px,3.4vw,48px); max-width: 24ch; }
.h2-26ch { font-size: clamp(30px,3.6vw,52px); max-width: 26ch; margin-bottom: 20px; line-height: 1.06; }
#levels .h2-26ch { font-size: clamp(30px,3.4vw,48px); margin-bottom: 16px; line-height: 1.08; }
.h2-22ch { font-size: clamp(28px,3.2vw,44px); max-width: 22ch; margin-bottom: 18px; }
#teacher .h2-24ch { font-size: clamp(28px,3.2vw,44px); margin-bottom: 20px; }
.h2-plain { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: clamp(30px,3.4vw,48px); line-height: 1.08; margin: 0 0 36px; }
#community .h2-plain { margin-bottom: 20px; max-width: none; }
.h2-say { font-size: clamp(26px,2.8vw,38px); line-height: 1.12; margin: 0 0 16px; }
.h2-cta { font-size: clamp(32px,4vw,58px); line-height: 1.04; margin: 0 0 24px; max-width: 24ch; }

.lead-56ch, .lead-58ch, .lead-54ch, .lead-52ch, .lead-50ch {
  font-size: 19px; line-height: 1.6; color: #5E6064; margin: 0 0 44px;
}
.lead-56ch { max-width: 56ch; }
.lead-58ch { max-width: 58ch; font-size: 20px; margin-bottom: 56px; }
.lead-54ch { max-width: 54ch; }
.lead-52ch { max-width: 52ch; margin-bottom: 40px; }
.lead-50ch { max-width: 50ch; margin-bottom: 40px; }
.lead-light { color: #CFCBC1; }

.grid { display: grid; gap: 20px; }
.grid-auto-260 { grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.grid-auto-210 { grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 28px; }
.grid-auto-250 { grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); }
.grid-auto-300 { grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; align-items: start; }
.grid-auto-240 { grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; }

/* Path cards */
.path-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.path-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -28px rgba(35,37,40,0.5); color: var(--ink); }
.path-dot { width: 14px; height: 14px; border-radius: 50%; }
.path-title { font-family: 'Poppins', sans-serif; font-size: 21px; font-weight: 600; line-height: 1.25; }
.path-body { font-size: 17px; line-height: 1.55; color: #5E6064; }

.more-link { margin-top: 32px; }
.link-arrow { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 17px; color: var(--red); }

/* Method steps */
.step-card { border-top: 2px solid #4A4C50; padding-top: 22px; }
.step-num { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.2em; }
.step-title { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 600; margin: 8px 0 10px; }
.step-body { font-size: 17px; line-height: 1.6; color: #CFCBC1; margin: 0; }
.closing-line { font-family: 'Poppins', sans-serif; font-size: clamp(22px,2.4vw,32px); font-weight: 500; line-height: 1.25; margin: 56px 0 0; max-width: 30ch; }
.gold { color: var(--gold); }
.red { color: var(--red); }
.closing-line-dark { font-family: 'Poppins', sans-serif; font-size: clamp(20px,2.1vw,28px); font-weight: 500; line-height: 1.3; margin: 44px 0 0; max-width: 32ch; color: var(--ink); }

/* Levels */
.level-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.level-top { display: flex; align-items: center; justify-content: space-between; }
.level-code { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: 0.1em; padding: 6px 14px; }
.level-stage { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); }
.level-claim { font-family: 'Poppins', sans-serif; font-size: 23px; font-weight: 600; line-height: 1.2; }
.level-body { font-size: 17px; line-height: 1.65; color: #5E6064; margin: 0; }

/* Future */
.future-card { border-radius: 16px; padding: 34px 32px; }
.future-today { background: var(--cream); }
.future-later { background: var(--ink); color: var(--paper); }
.future-label { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.future-label-gold { color: var(--gold); }
.future-quote { font-size: 19px; line-height: 1.5; margin: 0 0 16px; font-style: italic; }
.future-today .future-quote { color: #3C3E42; }

/* Try / name */
.try-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px,4vw,56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 36px;
  align-items: center;
}
.try-desc { font-size: 18px; line-height: 1.6; color: #5E6064; margin: 0; }
.ich-heisse { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; font-family: 'Poppins', sans-serif; font-size: clamp(26px,3vw,40px); font-weight: 600; }
.ich-heisse input {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px,2.8vw,36px);
  font-weight: 600;
  color: var(--red);
  border: 0;
  border-bottom: 3px solid var(--gold);
  background: transparent;
  outline: none;
  width: min(100%,260px);
  padding: 2px 4px;
}
.name-echo { font-size: 18px; line-height: 1.6; color: var(--muted); margin: 16px 0 0; font-style: italic; }
.started-line { font-family: 'Poppins', sans-serif; font-size: 19px; font-weight: 600; color: var(--gold); margin: 14px 0 0; min-height: 1.2em; }

/* Situations */
.situation-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  cursor: default;
}
.situation-kicker { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); }
.situation-title { font-family: 'Poppins', sans-serif; font-size: 21px; font-weight: 600; margin-top: 8px; }
.situation-bottom { border-top: 1px solid var(--cream); padding-top: 14px; }
.situation-phrase { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; color: #B6B2A8; transition: color .15s ease; }
.situation-card:hover .situation-phrase, .situation-card:focus-within .situation-phrase { color: var(--red); }
.situation-gloss { font-size: 16px; color: var(--muted); font-style: italic; margin-top: 4px; }

/* Exam */
.exam-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 44px; align-items: start; }
.exam-desc { font-size: 20px; line-height: 1.6; color: #3C3E42; margin: 0 0 18px; max-width: 44ch; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: var(--paper); border: 1px solid #DFD6C4; border-radius: 999px; padding: 11px 20px; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 500; }

/* Teacher */
.teacher-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 48px; align-items: center; }
.teacher-photo { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; }
.teacher-photo img { width: 100%; height: 100%; object-fit: cover; }
.teacher-p { font-size: 19px; line-height: 1.65; color: #3C3E42; margin: 0 0 18px; max-width: 52ch; }
.teacher-stats { display: flex; gap: 36px; flex-wrap: wrap; font-family: 'Poppins', sans-serif; margin-bottom: 26px; }
.teacher-stat-num { font-size: 32px; font-weight: 600; }
.teacher-stat-red { color: var(--red); }
.teacher-stat-gold { color: var(--gold); }

/* Stories */
.story-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.story-arc { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.story-rows { display: flex; flex-direction: column; gap: 12px; }
.story-label { font-family: 'Poppins', sans-serif; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.story-val { font-size: 18px; color: #3C3E42; }
.story-today-val { font-family: 'Poppins', sans-serif; font-size: 19px; font-weight: 600; }

/* Community */
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 44px; align-items: center; }
.community-p { font-size: 19px; line-height: 1.65; color: #3C3E42; margin: 0 0 16px; max-width: 48ch; }
.community-photo { border-radius: 18px; overflow: hidden; aspect-ratio: 1672/941; }
.community-photo img { width: 100%; height: 100%; object-fit: cover; }

/* FAQ */
.faq-list { max-width: 880px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}
.faq-sign { font-size: 24px; color: var(--red); line-height: 1; }
.faq-a { font-size: 18px; line-height: 1.65; color: #5E6064; margin: 0 0 24px; max-width: 64ch; display: none; }
.faq-item.open .faq-a { display: block; }

/* CTA section */
.cta-section .wrap { padding: 104px 32px; }
.cta-dots { margin-bottom: 28px; }
.cta-kicker { letter-spacing: 0.24em; margin-left: 10px; }
.cta-desc { font-size: 20px; line-height: 1.65; color: #CFCBC1; margin: 0 0 38px; max-width: 44ch; }

.start-grid { max-width: 560px; }
.start-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #CFCBC1;
}
.optional-tag { font-weight: 400; color: #8C887E; text-transform: none; letter-spacing: 0; }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--paper);
  background: rgba(250,248,243,0.06);
  border: 1px solid rgba(250,248,243,0.28);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  resize: vertical;
  transition: border-color .15s ease, background .15s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: #8C887E; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  background: rgba(250,248,243,0.1);
}
.form-row select { color: var(--paper); }
.form-row select option { color: var(--ink); }
.form-row.invalid input,
.form-row.invalid select,
.form-row.invalid textarea { border-color: var(--red); }

.form-error {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #FF8A8A;
  margin: 0;
}
.form-success {
  font-size: 17px;
  line-height: 1.6;
  color: #CFE8D6;
  background: rgba(140,199,160,0.12);
  border: 1px solid rgba(140,199,160,0.35);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 0;
}
.form-success a { color: var(--gold); }

/* Footer */
.site-footer { background: #1B1D1F; color: #B6B2A8; }
.footer-row { padding: 44px 32px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer-logo { height: 52px; width: auto; }
.footer-contact { font-family: 'Poppins', sans-serif; font-size: 15px; line-height: 1.7; }
.footer-contact a { color: var(--gold); }
.footer-copy { font-family: 'Poppins', sans-serif; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }

/* Responsive nav */
@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 32px 28px;
    gap: 18px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-cta { align-self: flex-start; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle span { display: block; width: 100%; height: 2px; background: var(--ink); }
}

/* Event registration popup */
.event-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(27, 29, 31, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s ease;
}
.event-popup-overlay.visible { opacity: 1; }
.event-popup-card {
  position: relative;
  background: var(--paper);
  border-radius: 18px;
  max-width: 440px;
  width: 100%;
  padding: 40px 32px 32px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.45);
  transform: translateY(12px);
  transition: transform .25s ease;
}
.event-popup-overlay.visible .event-popup-card { transform: translateY(0); }
.event-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.event-popup-close:hover { background: var(--cream); color: var(--ink); }
.event-popup-kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.event-popup-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}
.event-popup-when {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
}
.event-popup-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #5E6064;
  margin: 0 0 24px;
}
.event-popup-cta { width: 100%; text-align: center; }
