/* ============================================================
   LEARN GERMAN — Modern Product / Bauhaus
   Bricolage Grotesque + Manrope
   Off-white + ink + confident red + warm gold
   ============================================================ */

:root {
  /* Colours */
  --cream: #FAFAF5;
  --paper: #FFFFFF;
  --ink: #0E0E0C;
  --ink-2: #1F1F1B;
  --ink-3: #4A4A45;
  --ink-4: #8B8A82;

  --red: #C8302E;
  --red-deep: #A82826;
  --red-soft: #FCE8E7;

  --gold: #E5B43C;
  --gold-deep: #C99A2D;
  --gold-soft: #FBF1DA;

  --line: #E8E5DE;
  --line-2: #D4D0C7;

  /* Type */
  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-narrow: 800px;
  --pad: clamp(4.5rem, 9vw, 8rem);
  --pad-sm: clamp(3rem, 6vw, 5rem);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(14,14,12,0.04), 0 1px 3px rgba(14,14,12,0.04);
  --shadow-md: 0 2px 4px rgba(14,14,12,0.04), 0 4px 16px -4px rgba(14,14,12,0.08);
  --shadow-lg: 0 4px 8px rgba(14,14,12,0.04), 0 12px 32px -8px rgba(14,14,12,0.12);
  --shadow-xl: 0 8px 16px rgba(14,14,12,0.06), 0 24px 60px -12px rgba(14,14,12,0.18);
  --shadow-red: 0 8px 24px -6px rgba(200,48,46,0.4);

  /* Easings */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Lock to light mode — design is intentional cream-paper light theme.
   Without this, iOS Safari / in-app webviews / some Android browsers will
   auto-invert the page and break the carefully tuned contrast. */
html {
  color-scheme: light;
  background: var(--cream);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  forced-color-adjust: none;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  background-color: #FAFAF5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: var(--cream); }
em { font-style: italic; }

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--ink); color: var(--cream);
  padding: 0.5rem 1rem; border-radius: var(--r-sm);
  z-index: 100; font-size: 0.875rem; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 96;
  color: var(--ink);
  display: block;
}
.hero-h1-line {
  display: block;
}
.hero-h1-line--sub {
  font-weight: 400;
  font-style: italic;
  color: var(--ink-2);
  font-size: 0.7em;
  margin-top: 0.1em;
  letter-spacing: -0.025em;
  opacity: 0.7;
}
.hero-accent {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
}

.section-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 72;
  color: var(--ink);
}
.section-h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--red);
}
.section-h2--light { color: var(--cream); }
.section-h2--light em { color: var(--gold); }

.final-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 96;
  color: var(--cream);
}
.final-h2 em {
  font-style: italic;
  color: var(--gold);
}

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--red);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.85rem;
  background: var(--red-soft);
  border-radius: 999px;
}
.kicker--light {
  color: var(--gold);
  background: rgba(229, 180, 60, 0.12);
}
.kicker--gold {
  color: var(--gold);
  background: rgba(229, 180, 60, 0.15);
}

.lang-de {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.005em;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--pad) 0; position: relative; }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section-lede {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink-3);
  margin-top: 1.25rem;
  max-width: 56ch;
}
.section-head--center .section-lede { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.003em;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-lg { padding: 1.05rem 1.85rem; font-size: 1.02rem; }
.btn-xl { padding: 1.25rem 2.25rem; font-size: 1.1rem; }
.btn svg { transition: transform 0.3s var(--ease-spring); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 24px -6px rgba(229, 180, 60, 0.5);
}
.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(229, 180, 60, 0.6);
}

.btn-light {
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.btn-light:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(229, 180, 60, 0.55);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid var(--ink-2);
  position: relative;
  z-index: 51;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  padding: 0.65rem 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0.85;
  text-transform: uppercase;
}
.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--red);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 245, 0.85);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.is-scrolled {
  background: rgba(250, 250, 245, 0.95);
  box-shadow: 0 1px 0 var(--line);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark { flex-shrink: 0; display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 24;
}
.brand-tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-4);
  margin-top: 0.15rem;
  letter-spacing: 0.01em;
}

.primary-nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-3);
}
.primary-nav a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease);
}
.primary-nav a:hover { color: var(--red); }
.primary-nav a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.86rem;
  padding: 0.6rem 1.1rem;
}
.menu-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
  background: var(--cream);
  background-color: #FAFAF5;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bauhaus { position: absolute; }
.bauhaus--circle {
  width: clamp(200px, 30vw, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  top: 8%;
  right: -8%;
  opacity: 0.08;
}
.bauhaus--square {
  width: clamp(120px, 18vw, 240px);
  aspect-ratio: 1;
  background: var(--gold);
  bottom: 10%;
  left: -5%;
  opacity: 0.1;
  transform: rotate(8deg);
}
.bauhaus--triangle {
  width: clamp(100px, 14vw, 180px);
  aspect-ratio: 1;
  top: 18%;
  left: 35%;
  color: var(--ink);
  opacity: 0.04;
  transform: rotate(-12deg);
}
.bauhaus--line {
  width: 70%;
  height: 1.5px;
  background: var(--ink);
  opacity: 0.06;
  top: 65%;
  left: 0;
  transform: rotate(-2deg);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line-2);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
}
.tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 48, 46, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200, 48, 46, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(200, 48, 46, 0.08); }
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 1.85rem 0 2.5rem;
  max-width: 52ch;
  font-weight: 400;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-sub em { color: var(--red); font-style: italic; font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-meta-item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 36;
}
.hero-meta-item span {
  font-size: 0.82rem;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  font-weight: 500;
}
.hero-meta-divider {
  width: 1px;
  height: 28px;
  background: var(--line-2);
}

/* Hero visual */
.hero-visual {
  position: relative;
}
.photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1F1F1B 0%, #0E0E0C 100%);
  color: var(--cream);
  padding: 2rem;
}
.placeholder-monogram {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 14vw, 9rem);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 96;
  margin-bottom: 1rem;
}
.placeholder-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.placeholder-corner {
  position: absolute;
  width: 24px; height: 24px;
}
.placeholder-corner--tl {
  top: 1.5rem; left: 1.5rem;
  background: var(--red);
}
.placeholder-corner--br {
  bottom: 1.5rem; right: 1.5rem;
  background: var(--gold);
}

.photo-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}
.overlay-quote {
  background: rgba(14, 14, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--cream);
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  position: relative;
}
.quote-mark {
  position: absolute;
  top: -0.3rem;
  left: 0.85rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.overlay-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-left: 1rem;
  font-variation-settings: "opsz" 18;
}
.overlay-quote small {
  display: block;
  margin-top: 0.3rem;
  margin-left: 1rem;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-style: normal;
  font-family: var(--font-body);
}

.price-chip {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--red);
  color: var(--cream);
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-wrap: wrap;
  max-width: 200px;
  z-index: 3;
  box-shadow: var(--shadow-red);
  animation: chipFloat 3.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes chipFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-4px); }
}
.price-chip-pre {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  flex-basis: 100%;
}
.price-chip-amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 36;
}
.price-chip-post {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.95;
  flex-basis: 100%;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}
.trust-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
}
.trust-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}
.trust-label .lang-de {
  font-weight: 500;
  color: var(--red);
}
.trust-unis {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.85rem;
}
.uni {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 24;
}
.uni-sep {
  color: var(--red);
  font-size: 0.6rem;
  opacity: 0.6;
}

/* ============================================================
   WHY VERA
   ============================================================ */
.section--why { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-2);
}
.why-card--dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.why-card--dark:hover {
  border-color: var(--ink);
  box-shadow: 0 12px 32px -8px rgba(14, 14, 12, 0.35);
}

.why-shape {
  margin-bottom: 1.85rem;
}
.why-shape--circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
}
.why-shape--square {
  width: 64px; height: 64px;
  background: var(--gold);
}
.why-shape--triangle {
  width: 64px; height: 56px;
  color: var(--ink);
}
.why-shape--triangle svg { width: 100%; height: 100%; }

.why-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 36;
  margin-bottom: 0.85rem;
}
.why-card h3 em {
  font-style: italic;
  color: var(--red);
}
.why-card--dark h3 em { color: var(--gold); }

.why-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-3);
  margin-bottom: 1.5rem;
}
.why-card--dark p {
  color: rgba(250, 250, 245, 0.75);
}
.why-card p em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}
.why-card--dark p em { color: var(--gold); }

.why-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--red);
  padding: 0.35rem 0.75rem;
  background: var(--red-soft);
  border-radius: 999px;
  font-variation-settings: "opsz" 14;
}
.why-card--dark .why-tag {
  color: var(--gold);
  background: rgba(229, 180, 60, 0.15);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.section--how {
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--line-2) 10%, var(--line-2) 90%, transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}
.step-num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 36;
  margin-bottom: 1.5rem;
  transition: background 0.3s, color 0.3s;
}
.step:hover .step-num {
  background: var(--ink);
  color: var(--cream);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 24;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.step p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-3);
  margin-bottom: 1rem;
}
.step-de {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--red);
  font-variation-settings: "opsz" 14;
}

/* ============================================================
   ABOUT VERA
   ============================================================ */
.section--about {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section--about::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(to right, var(--red) 0%, var(--red) 33%, var(--ink) 33%, var(--ink) 66%, var(--gold) 66%, var(--gold) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-photo {
  position: relative;
}
.about-photo-wrap {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--shadow-xl);
  position: relative;
}
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder--lg .placeholder-monogram {
  font-size: clamp(6rem, 16vw, 11rem);
}

.about-photo-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1rem;
  background: var(--gold);
  color: var(--ink);
  padding: 1.1rem 1.4rem;
  border-radius: var(--r-md);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  box-shadow: 0 12px 28px -6px rgba(229, 180, 60, 0.45);
}
.about-photo-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.about-photo-badge strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 36;
}

.about-copy .kicker--light { margin-bottom: 1.25rem; }

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(250, 250, 245, 0.78);
  margin: 1.85rem 0 2.25rem;
}
.about-bio strong { color: var(--cream); font-weight: 600; }
.about-bio em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.about-sign {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: 0.75rem;
  font-variation-settings: "opsz" 36;
}

/* ============================================================
   TEACHING PRINCIPLES
   ============================================================ */
.section--teaching {
  background: var(--cream);
}

.teach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.teach-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.teach-item:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.teach-num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 36;
}
.teach-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 24;
  margin-bottom: 0.65rem;
}
.teach-item p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-3);
}
.teach-item p em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}

/* ============================================================
   LESSONS
   ============================================================ */
.section--lessons {
  background: var(--paper);
}

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lesson {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.95rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.lesson:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.lesson--featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.lesson--featured:hover {
  border-color: var(--red);
  box-shadow: 0 16px 36px -10px rgba(14, 14, 12, 0.4);
}

.lesson-flag {
  position: absolute;
  top: -12px;
  left: 1.75rem;
  background: var(--red);
  color: var(--cream);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.lesson-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-2);
}
.lesson--featured .lesson-head {
  border-color: rgba(250, 250, 245, 0.15);
}
.lesson-level {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--red);
  font-variation-settings: "opsz" 14;
}
.lesson--featured .lesson-level { color: var(--gold); }
.lesson-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 24;
}

.lesson-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 36;
  margin-bottom: 0.85rem;
}

.lesson-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-3);
  margin-bottom: 1.35rem;
}
.lesson--featured .lesson-desc {
  color: rgba(250, 250, 245, 0.78);
}
.lesson-desc em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}
.lesson--featured .lesson-desc em { color: var(--gold); }

.lesson-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.lesson-list li {
  font-size: 0.88rem;
  color: var(--ink-2);
  padding-left: 1.35rem;
  position: relative;
}
.lesson-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 2px;
  background: var(--red);
}
.lesson--featured .lesson-list li {
  color: rgba(250, 250, 245, 0.85);
}
.lesson--featured .lesson-list li::before { background: var(--gold); }

.lesson-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--red);
  align-self: flex-start;
  transition: gap 0.25s var(--ease-spring);
}
.lesson-cta svg { transition: transform 0.25s var(--ease-spring); }
.lesson-cta:hover { gap: 0.6rem; }
.lesson-cta:hover svg { transform: translateX(3px); }
.lesson--featured .lesson-cta { color: var(--gold); }

/* ============================================================
   MODE: ONLINE OR IN PERSON
   ============================================================ */
.section--mode {
  background: var(--cream);
}

.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mode-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.5rem 2.25rem 2.25rem;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.mode-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.mode-card--featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.mode-card--featured:hover {
  border-color: var(--red);
}

.mode-flag {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.mode-icon {
  color: var(--red);
  margin-bottom: 1.5rem;
}
.mode-card--featured .mode-icon { color: var(--gold); }

.mode-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 48;
  margin-bottom: 0.3rem;
}
.mode-where {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--red);
  margin-bottom: 1.1rem;
  font-variation-settings: "opsz" 18;
}
.mode-card--featured .mode-where { color: var(--gold); }
.mode-where .lang-de { font-weight: 600; }

.mode-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-3);
  margin-bottom: 1.35rem;
}
.mode-card--featured .mode-desc {
  color: rgba(250, 250, 245, 0.78);
}

.mode-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mode-list li {
  font-size: 0.9rem;
  color: var(--ink-2);
  padding-left: 1.35rem;
  position: relative;
}
.mode-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 2px;
  background: var(--red);
}
.mode-card--featured .mode-list li {
  color: rgba(250, 250, 245, 0.85);
}
.mode-card--featured .mode-list li::before { background: var(--gold); }

.mode-foot {
  text-align: center;
  font-size: 1rem;
  color: var(--ink-3);
}
.mode-foot strong { color: var(--red); font-weight: 700; }
.mode-foot span {
  display: block;
  margin-top: 0.4rem;
  font-style: italic;
  color: var(--ink-4);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 18;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.section--reviews {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review {
  background: rgba(250, 250, 245, 0.04);
  border: 1px solid rgba(250, 250, 245, 0.1);
  border-radius: var(--r-lg);
  padding: 2rem 1.85rem 1.75rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.review:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(250, 250, 245, 0.06);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.review blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 24;
}
.review blockquote em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.review figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(250, 250, 245, 0.12);
}
.review figcaption strong {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
}
.review figcaption span {
  font-size: 0.8rem;
  color: rgba(250, 250, 245, 0.55);
}

/* ============================================================
   PRICE CALLOUT
   ============================================================ */
.section--price {
  background: var(--red);
  color: var(--cream);
  padding: var(--pad-sm) 0;
}
.price-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.price-pre {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}
.price-big {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
}
.price-currency {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--cream);
  font-variation-settings: "opsz" 72;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--cream);
  font-variation-settings: "opsz" 96;
}
.price-unit {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
  opacity: 0.9;
  font-variation-settings: "opsz" 48;
}
.price-post {
  margin-top: 0.85rem;
  font-size: 1rem;
  opacity: 0.92;
  font-weight: 500;
}

.price-copy p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 36;
  margin-bottom: 1.25rem;
}
.price-copy p em {
  font-style: italic;
  font-weight: 500;
}
.price-sign {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-variation-settings: "opsz" 18;
}

/* ============================================================
   FAQ
   ============================================================ */
.section--faq {
  background: var(--cream);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:hover {
  border-color: var(--line-2);
}
.faq-item[open] {
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 24;
  color: var(--ink);
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}

.faq-body {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 65ch;
}
.faq-body strong { color: var(--ink); font-weight: 600; }
.faq-body em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}

/* ============================================================
   BOOK (Calendly)
   ============================================================ */
.section--book {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.book-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bauhaus--book-circle {
  width: clamp(200px, 24vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  top: -10%;
  right: -5%;
  opacity: 0.1;
}
.bauhaus--book-square {
  width: clamp(140px, 18vw, 240px);
  aspect-ratio: 1;
  background: var(--gold);
  bottom: -8%;
  left: -3%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.book-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  position: relative;
  z-index: 2;
}

.book-lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(250, 250, 245, 0.85);
  margin: 1.5rem 0 2.25rem;
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.005em;
}
.book-lede strong { color: var(--cream); font-weight: 600; }

.book-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.book-list li {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  font-size: 1rem;
  color: rgba(250, 250, 245, 0.88);
}
.check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.9rem;
  font-variation-settings: "opsz" 14;
}

.book-widget {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 0.75rem;
  overflow: hidden;
}
.calendly-inline-widget {
  border-radius: var(--r-md);
  overflow: hidden;
}
.book-noscript {
  padding: 2rem;
  text-align: center;
  color: var(--ink);
}
.book-noscript a {
  color: var(--red);
  text-decoration: underline;
  font-weight: 600;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.section--final {
  background: var(--red);
  color: var(--cream);
  padding: var(--pad-sm) 0;
  text-align: center;
}
.final-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.final-h2 em { color: var(--cream); }
.section--final p {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 50ch;
}
.final-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  font-size: 0.88rem;
  opacity: 0.85;
}
.final-dot { opacity: 0.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(250, 250, 245, 0.75);
  padding: clamp(3.5rem, 5vw, 4.5rem) 0 2rem;
  border-top: 4px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.brand--light { color: var(--cream); }
.brand--light .brand-name { color: var(--cream); }
.brand--light .brand-tag { color: var(--gold); }

.footer-brand .brand--light { margin-bottom: 1.25rem; }

.footer-blurb {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(250, 250, 245, 0.65);
  max-width: 40ch;
}
.footer-blurb strong { color: var(--gold); font-weight: 600; }

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  color: var(--cream);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 18;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a, .footer-col li {
  font-size: 0.88rem;
  color: rgba(250, 250, 245, 0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 245, 0.1);
  font-size: 0.82rem;
  color: rgba(250, 250, 245, 0.55);
}
.footer-bottom .lang-de { color: var(--red); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 40;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.25rem;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 12px 32px -6px rgba(14, 14, 12, 0.5);
  transition: transform 0.4s var(--ease-spring), opacity 0.3s;
  transform: translateY(150%);
  opacity: 0;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-cta:active { transform: translateY(2px); }
.sticky-cta-price {
  background: var(--red);
  color: var(--cream);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .price-chip { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .why-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { max-width: 460px; margin: 0 auto; width: 100%; }
  .teach-grid { grid-template-columns: repeat(2, 1fr); }
  .lessons-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .mode-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .price-container { grid-template-columns: 1fr; gap: 2rem; }
  .book-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .primary-nav { display: none; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 32px; height: 32px;
    align-items: center;
    justify-content: center;
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s, opacity 0.3s;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .primary-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem) 1.85rem;
    border-bottom: 1px solid var(--line);
    gap: 0;
  }
  .primary-nav.is-open a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .primary-nav.is-open a::after { display: none; }

  .nav-cta { display: none; }

  .hero { padding-top: 2rem; }
  .hero-h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .bauhaus--circle { opacity: 0.05; width: clamp(180px, 50vw, 280px); right: -15%; }
  .bauhaus--square { opacity: 0.05; width: 100px; }
  .bauhaus--triangle { opacity: 0.025; }
  .bauhaus--line { opacity: 0.04; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .hero-meta { gap: 1rem; }
  .hero-meta-divider { display: none; }
  .hero-meta-item strong { font-size: 1.25rem; }
  .hero-meta-item { flex: 1; min-width: 40%; }

  .price-chip { top: -0.75rem; right: -0.5rem; padding: 0.7rem 0.9rem; }
  .price-chip-amt { font-size: 1.5rem; }

  .steps { grid-template-columns: 1fr; gap: 1rem; }
  .step { padding: 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); display: flex; align-items: flex-start; gap: 1.25rem; flex-wrap: wrap; }
  .step-num { width: 56px; height: 56px; font-size: 1.25rem; margin-bottom: 0; flex-shrink: 0; }
  .step h3, .step p, .step-de { flex-basis: calc(100% - 70px); margin-bottom: 0.4rem; }
  .step h3 { font-size: 1.1rem; }

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

  .price-amount { font-size: clamp(6rem, 28vw, 10rem); }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .sticky-cta { display: flex; }

  /* Add bottom padding so sticky CTA doesn't cover footer content */
  body { padding-bottom: 4.5rem; }
}

@media (max-width: 480px) {
  .brand-tag { display: none; }
  .ticker-item { font-size: 0.72rem; }
  .kicker { font-size: 0.7rem; padding: 0.35rem 0.75rem; }
  .uni { font-size: 0.95rem; }
  .uni-sep { font-size: 0.5rem; }
}
