/* ============================================================
   styles.css — Lana Kalashnikova
   Globales Design-System
   ============================================================ */

/* --- LOKALE FONTS: Fraunces (variable serif) + Inter (variable sans)
       Selbst gehostet unter /fonts/ — DSGVO-konform, kein Google-Request --- */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  font-stretch: 100%;
  src: url('fonts/fraunces-latin-wght-normal.woff2') format('woff2-variations'),
       url('fonts/fraunces-latin-wght-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 600;
  font-display: swap;
  font-stretch: 100%;
  src: url('fonts/fraunces-latin-wght-italic.woff2') format('woff2-variations'),
       url('fonts/fraunces-latin-wght-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  font-stretch: 100%;
  src: url('fonts/inter-latin-wght-normal.woff2') format('woff2-variations'),
       url('fonts/inter-latin-wght-normal.woff2') format('woff2');
}

/* --- CSS CUSTOM PROPERTIES --- */
:root {
  /* Farben */
  --black:        #0a0a0b;
  --black-2:      #101012;
  --black-3:      #17171a;
  --black-4:      #202024;

  /* Warmes Champagner-Gold */
  --gold:         #c9a063;
  --gold-light:   #e6c791;
  --gold-deep:    #a8834a;
  --gold-dim:     rgba(201, 160, 99, 0.12);
  --gold-hair:    rgba(201, 160, 99, 0.26);

  /* Tiefes Burgunder */
  --burgundy:     #5c1722;
  --burg-light:   #842532;
  --burg-dim:     rgba(92, 23, 34, 0.22);

  /* Text */
  --text:         #f4f0e6;
  --text-2:       rgba(244, 240, 230, 0.74);
  --text-3:       rgba(244, 240, 230, 0.46);
  --text-4:       rgba(244, 240, 230, 0.28);

  /* Linien */
  --hair:         rgba(255, 255, 255, 0.075);
  --hair-2:       rgba(255, 255, 255, 0.04);

  /* Layout */
  --max:          1240px;
  --narrow:       780px;
  --pad:          clamp(22px, 5vw, 72px);
  --gap:          clamp(18px, 2.6vw, 34px);
  --radius:       4px;
  --radius-lg:    10px;
  --radius-sm:    3px;

  /* Typografie */
  --display:      'Fraunces', Georgia, 'Times New Roman', serif;
  --serif:        'Fraunces', Georgia, 'Times New Roman', serif;
  --body:         'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
  --ui:           'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;

  /* Schatten */
  --shadow-card:  0 20px 60px -30px rgba(0, 0, 0, 0.8);
  --shadow-hero:  0 40px 120px -40px rgba(0, 0, 0, 0.9);

  /* Transitions */
  --t:            0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-slow:       0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(201, 160, 99, 0.15);
}

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-width: 320px;
}

/* Subtile Hintergrund-Textur */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(201,160,99,.035), transparent 60%),
    radial-gradient(900px 600px at 85% 100%, rgba(92,23,34,.045), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

main, .nav, .footer { position: relative; z-index: 1; }

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
}

::selection {
  background: var(--gold-dim);
  color: var(--text);
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 0 var(--pad);
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--t), height var(--t), border-color var(--t), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  height: 66px;
  border-bottom-color: var(--hair);
}

.nav__brand {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color var(--t);
  white-space: nowrap;
  flex-shrink: 0;
  font-variation-settings: "opsz" 48;
}

.nav__brand:hover {
  color: var(--gold-light);
}

.nav__menu {
  display: flex;
  gap: 34px;
  align-items: center;
  list-style: none;
}

.nav__link {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 6px 0;
  position: relative;
  transition: color var(--t);
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t), left var(--t);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
  left: 0;
}

/* Hamburger-Button */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform var(--t), opacity var(--t);
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-6px);
}
.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 38px;
  opacity: 0;
  pointer-events: none;
  /* visibility nimmt die versteckten Links aus der Tab-Reihenfolge */
  visibility: hidden;
  transition: opacity var(--t-slow), visibility 0s linear var(--t-slow);
}

.nav__overlay.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transition: opacity var(--t-slow);
}

.nav__overlay .nav__link {
  font-size: 18px;
  letter-spacing: 0.22em;
  color: var(--text-2);
}

.nav__overlay .nav__link:hover {
  color: var(--gold-light);
}

/* Rechte Nav-Gruppe (Menü + Sprachwahl + Hamburger) */
.nav__right {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
}

/* Sprachumschalter DE / EN */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 3px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
}

.lang-switch__opt {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 11px;
  border-radius: 999px;
  line-height: 1;
  transition: color var(--t), background var(--t);
}

.lang-switch__opt:hover {
  color: var(--text);
}

.lang-switch__opt.is-active {
  color: var(--black);
  background: var(--gold);
}

.lang-switch__opt:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* --- LAYOUT --- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.wrap--narrow {
  max-width: var(--narrow);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: clamp(90px, 12vw, 160px) 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,.022) 0%, rgba(255,255,255,.008) 100%);
}

.section--dark {
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 100%);
}

.grid {
  display: grid;
  gap: var(--gap);
}

.grid--2       { grid-template-columns: 1fr 1fr; }
.grid--2-wide  { grid-template-columns: 1.35fr 0.65fr; }
.grid--2-wide-r{ grid-template-columns: 0.65fr 1.35fr; }
.grid--3       { grid-template-columns: repeat(3, 1fr); }
.grid--4       { grid-template-columns: repeat(3, 1fr); }

/* --- TYPOGRAFIE --- */
.kicker {
  display: inline-block;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
  padding-left: 28px;
}

.kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.kicker--plain {
  padding-left: 0;
}
.kicker--plain::before {
  display: none;
}

.h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7.5vw, 104px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.0;
  color: var(--text);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  font-variation-settings: "opsz" 144;
}

.h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: var(--text);
  font-variation-settings: "opsz" 96, "SOFT" 20;
}

.h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.008em;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 48;
}

.lead {
  font-family: var(--body);
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 58ch;
}

.body-text {
  font-size: 15.5px;
  line-height: 1.82;
  font-weight: 300;
  color: var(--text-2);
}

.body-text p + p {
  margin-top: 18px;
}

.body-text strong {
  color: var(--text);
  font-weight: 500;
}

.text-center { text-align: center; }

/* Gold-Trennlinie */
.divider {
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0 28px;
  position: relative;
}

.divider::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.divider--center {
  margin: 24px auto 28px;
}

/* Horizontale Section-Trennlinie */
.rule {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-hair), transparent);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
  border-radius: var(--radius-sm);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 8px 24px -8px rgba(201, 160, 99, 0.35);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -10px rgba(230, 199, 145, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--text-2);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn--outline:hover {
  color: var(--text);
  border-color: var(--gold-hair);
  background: rgba(201, 160, 99, 0.04);
}

.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--text-3);
  padding: 6px 0;
  letter-spacing: 0.2em;
  border-bottom: 1px solid transparent;
  border-radius: 0;
}

.btn--ghost:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.btn__arrow {
  display: inline-block;
  transition: transform var(--t);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Fokus-Ring: dezent in Gold statt Browser-Blau und nur bei
   echter Tastaturnavigation. Maus- und Programm-Fokus (z.B. das
   Age-Gate, das beim Öffnen Fokus setzt) zeigen keinen Ring. */
.btn:focus,
.nav__toggle:focus,
.faq-item__q:focus {
  outline: none;
}

.btn:focus-visible,
.nav__toggle:focus-visible,
.nav__link:focus-visible,
.footer__link:focus-visible,
.link-card:focus-visible,
.faq-item__q:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* --- KARTEN --- */
.card {
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.012));
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  position: relative;
}

.card:hover {
  border-color: var(--gold-hair);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

/* Bild-Karte */
.card--image {
  position: relative;
  min-height: 320px;
}

.card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.card--image:hover img {
  transform: scale(1.035);
}

.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.14) 58%, transparent 100%);
}

.card__caption {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

/* Text-Karte */
.card--text {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.card__eyebrow {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.card__title {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 48;
}

.card__body {
  font-size: 14.5px;
  line-height: 1.78;
  font-weight: 300;
  color: var(--text-2);
}

/* Session-Karte */
.card--session {
  padding: 34px 30px;
  border-top: 2px solid var(--burgundy);
  background: linear-gradient(180deg, rgba(92,23,34,.09), rgba(10,10,11,.55));
  transition: border-top-color var(--t), transform var(--t), box-shadow var(--t);
}

.card--session:hover {
  border-top-color: var(--burg-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* Listen in Karten */
.list {
  list-style: none;
  margin-top: 14px;
}

.list li {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--text-2);
  padding: 11px 0 11px 18px;
  border-bottom: 1px solid var(--hair-2);
  position: relative;
}

.list li:last-child {
  border-bottom: none;
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* Regel-Punkte */
.rule-item {
  padding: 22px 0 22px 24px;
  border-bottom: 1px solid var(--hair);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  letter-spacing: 0.005em;
  position: relative;
  counter-increment: regel-counter;
}

.regeln-list {
  list-style: none;
  counter-reset: regel-counter;
}

.rule-item:last-child {
  border-bottom: none;
}

.rule-item::before {
  content: counter(regel-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 22px;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
}

/* Zahlen-Karten (FAQ / Schritte) */
.step-card {
  padding: 34px 28px;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.005));
  transition: border-color var(--t), transform var(--t);
}

.step-card:hover {
  border-color: var(--gold-hair);
  transform: translateY(-2px);
}

.step-card__num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}

.step-card__title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.step-card__body {
  font-size: 14.5px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-2);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--hair);
  padding: 26px 0;
  cursor: pointer;
}

.faq-item:first-child { border-top: 1px solid var(--hair); }

.faq-item__q {
  /* Button-Reset: die Frage ist ein <button> (Tastatur-Bedienbarkeit) */
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--display);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 400;
  color: var(--text);
  transition: color var(--t);
  cursor: pointer;
  min-height: 44px;
  user-select: none;
  -webkit-user-select: none;
}

.faq-item:hover .faq-item__q {
  color: var(--gold-light);
}

.faq-item__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--t);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
}

.faq-item__icon::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform var(--t);
}

.faq-item.open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), margin-top var(--t);
}

.faq-item.open .faq-item__a {
  max-height: 400px;
  margin-top: 18px;
}

.faq-item__a p {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-2);
  max-width: 68ch;
}

.faq-item__a a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-hair);
  transition: color var(--t), border-color var(--t);
}

.faq-item__a a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* FAQ-Gruppen (kategorisierter FAQ, z.B. kontakt.html) */
.faq-group + .faq-group {
  margin-top: 64px;
}

.faq-group__title {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.faq-group__title::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--gold-hair), transparent);
}

/* --- SEITEN-HERO (Unterseiten) --- */
.page-hero {
  min-height: 58vh;
  padding-top: 170px;
  padding-bottom: 90px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero--bg {
  background: linear-gradient(180deg, rgba(92,23,34,.06) 0%, transparent 100%);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: grayscale(60%) contrast(108%) brightness(0.58);
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,11,.35) 0%,
      rgba(10,10,11,.45) 45%,
      rgba(10,10,11,.85) 85%,
      var(--black) 100%),
    linear-gradient(90deg,
      rgba(10,10,11,.35) 0%,
      rgba(10,10,11,.15) 50%,
      rgba(10,10,11,.35) 100%);
}

.page-hero > .wrap,
.page-hero > .wrap--narrow {
  position: relative;
  z-index: 2;
}

/* --- FORMULAR --- */
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form__label {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-3);
}

.form__input,
.form__textarea,
.form__select {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--text);
  font-family: var(--body);
  /* 16px verhindert Auto-Zoom beim Fokus auf iOS Safari */
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  width: 100%;
  min-height: 48px;
  transition: border-color var(--t), background var(--t);
  appearance: none;
  -webkit-appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--gold-hair);
  background: rgba(201, 160, 99, 0.03);
}

.form__input.error,
.form__textarea.error,
.form__select.error {
  border-color: var(--burg-light);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-3);
  font-style: italic;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23c9a063' stroke-width='1' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form__select option {
  background: var(--black-3);
  color: var(--text);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__error {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #c25a68;
  display: none;
}

.form__error.visible {
  display: block;
}

.form__checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.form__checkbox {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form__checkbox-label {
  font-size: 13px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--text-3);
  cursor: pointer;
}

.form__success {
  display: none;
  padding: 32px;
  border: 1px solid var(--gold-hair);
  border-radius: var(--radius-lg);
  text-align: center;
  background: rgba(201, 160, 99, 0.04);
}

.form__success p {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

/* --- LINK-KARTEN (links.html) --- */
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.022), rgba(255,255,255,.006));
  transition: border-color var(--t), background var(--t), transform var(--t);
}

.link-card:hover {
  border-color: var(--gold-hair);
  background: rgba(201, 160, 99, 0.035);
  transform: translateX(4px);
}

.link-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.link-card__platform {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.link-card__name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
}

.link-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-3);
  margin-top: 2px;
}

.link-card__arrow {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 300;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform var(--t), color var(--t);
}

.link-card:hover .link-card__arrow {
  transform: translateX(6px);
  color: var(--gold-light);
}

.link-group__title {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 18px;
  padding-left: 2px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-style: normal;
  font-family: var(--ui);
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--hair);
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  margin-top: 40px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer__brand {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 72;
}

.footer__sub {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__link {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color var(--t);
}

.footer__link:hover {
  color: var(--gold-light);
}

.footer__copy {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* --- REVEAL-ANIMATIONEN --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--d1 { transition-delay: 0.12s; }
.reveal--d2 { transition-delay: 0.24s; }
.reveal--d3 { transition-delay: 0.36s; }
.reveal--d4 { transition-delay: 0.48s; }

/* --- RESPONSIVE --- */

/* 8 Nav-Punkte (inkl. Blog & Gästebuch): auf mittleren Breiten kompakter */
@media (min-width: 961px) and (max-width: 1240px) {
  .nav__menu  { gap: 20px; }
  .nav__link  { letter-spacing: 0.16em; }
  .nav__brand { font-size: 19px; }
}

/* Tablet & kleiner: Mobile-Navigation, Single-Column-Grids */
@media (max-width: 960px) {
  .nav {
    padding-left: max(var(--pad), env(safe-area-inset-left));
    padding-right: max(var(--pad), env(safe-area-inset-right));
  }

  .nav__brand    { font-size: 18px; }
  .nav__menu     { display: none; }
  .nav__toggle   { display: flex; }

  .grid--2,
  .grid--2-wide,
  .grid--2-wide-r,
  .grid--3        { grid-template-columns: 1fr; }

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

  .lead           { max-width: none; }

  .h1             { font-size: clamp(40px, 10vw, 72px); }
  .h2             { font-size: clamp(28px, 6vw, 40px); }

  .section        { padding: clamp(70px, 11vw, 120px) 0; }

  .page-hero      { min-height: 50vh; padding-top: 140px; padding-bottom: 70px; }

  /* Bild-Karten etwas kürzer auf Tablet */
  .card--image    { min-height: 280px; }
}

/* Smartphones */
@media (max-width: 640px) {
  :root {
    --pad: clamp(18px, 5vw, 28px);
    --gap: 18px;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 16px 28px;
  }

  .hero__cta .btn,
  .hero__cta      { width: 100%; }

  .hero {
    min-height: 92svh;
    min-height: 92vh;
    padding-bottom: clamp(60px, 12vh, 120px);
  }

  .hero__eyebrow  {
    font-size: 10px;
    letter-spacing: 0.36em;
    margin-bottom: 18px;
  }

  .hero__title    { font-size: clamp(44px, 13vw, 72px); margin-bottom: 22px; }
  .hero__tagline  { font-size: 17px; margin-bottom: 32px; max-width: none; }
  .hero__scroll-hint { display: none; }

  .page-hero {
    min-height: 44vh;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .h1             { font-size: clamp(38px, 11vw, 58px); line-height: 1.05; }
  .h2             { font-size: clamp(26px, 7vw, 36px); }
  .h3             { font-size: clamp(18px, 5vw, 21px); }

  .lead           { font-size: 16px; line-height: 1.7; }
  .body-text      { font-size: 15px; line-height: 1.78; }

  .section        { padding: clamp(60px, 14vw, 90px) 0; }
  .divider        { margin: 20px 0 22px; }
  .divider--center { margin: 20px auto 22px; }

  .kicker {
    font-size: 10px;
    letter-spacing: 0.28em;
    padding-left: 24px;
    margin-bottom: 14px;
  }
  .kicker::before { width: 14px; }

  .card--text     { padding: 28px 22px; }
  .card--session  { padding: 26px 22px; }

  .card__title    { font-size: 19px; }
  .card__body     { font-size: 14.5px; line-height: 1.75; }


  .step-card      { padding: 28px 22px; }
  .step-card__num { font-size: 38px; margin-bottom: 14px; }

  .faq-item       { padding: 22px 0; }
  .faq-item__q    { font-size: 17px; gap: 16px; }
  .faq-item__a p  { font-size: 14.5px; }

  .quote-mark     { font-size: 72px; }
  .quote-text     { font-size: 20px; line-height: 1.5; }

  .rule-item      { padding: 18px 0 18px 32px; font-size: 14.5px; }
  .rule-item::before { top: 20px; }

  .link-card      { padding: 20px 22px; gap: 14px; }
  .link-card__name { font-size: 16px; }

  .footer__top    { flex-direction: column; gap: 32px; }
  .footer__links  { flex-direction: column; align-items: flex-start; gap: 16px; }

  .nav            { height: 68px; }
  .nav.scrolled   { height: 58px; }
  .nav__overlay .nav__link { font-size: 22px; }

  /* Safe-Area für Footer & Body auf iPhones mit Home-Bar */
  .footer {
    padding-bottom: max(40px, env(safe-area-inset-bottom));
  }
  .wrap, .wrap--narrow {
    padding-left: max(var(--pad), env(safe-area-inset-left));
    padding-right: max(var(--pad), env(safe-area-inset-right));
  }
}

/* Sehr kleine Smartphones (iPhone SE etc.) */
@media (max-width: 380px) {
  .hero__title    { font-size: clamp(38px, 14vw, 58px); }
  .h1             { font-size: clamp(34px, 12vw, 50px); }
  .h2             { font-size: clamp(24px, 8vw, 32px); }
  .btn            { font-size: 10px; letter-spacing: 0.22em; padding: 14px 22px; }
  .nav__brand     { font-size: 15px; }
  .lang-switch__opt { padding: 5px 8px; letter-spacing: 0.08em; }
  .nav__right     { gap: 12px; }
}

/* Querformat-Smartphones: niedriger Hero, damit Content sichtbar bleibt */
@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .page-hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .hero__scroll-hint { display: none; }
}

/* Touch-Geräte: Hover-Effekte dezenter (verhindert Sticky-Hover) */
@media (hover: none) {
  .card:hover        { transform: none; }
  .card--image:hover img { transform: none; }
  .card--session:hover   { transform: none; }
  .step-card:hover   { transform: none; }
  .btn--primary:hover { transform: none; }
  .link-card:hover   { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   AGE GATE (18+) — wird per main.js auf allen Seiten injiziert
   (außer Impressum & Datenschutz, siehe initAgeGate)
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(10, 10, 11, 0.55);
  -webkit-backdrop-filter: blur(30px) saturate(0.85);
  backdrop-filter: blur(30px) saturate(0.85);
  transition: opacity 0.45s ease;
}

/* Fallback ohne backdrop-filter-Unterstützung: fast deckend */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .age-gate { background: rgba(10, 10, 11, 0.97); }
}

.age-gate.closing {
  opacity: 0;
  pointer-events: none;
}

/* Dialog-Container erhält beim Öffnen den Fokus (siehe initAgeGate),
   soll dabei aber selbst keinen sichtbaren Ring zeigen. */
.age-gate:focus {
  outline: none;
}

/* Tastatur-Fokus auf den Age-Gate-Buttons: klarer Gold-Ring */
.age-gate__btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.age-gate__card {
  width: 100%;
  max-width: 480px;
  margin: auto;
  background: var(--black-2);
  border: 1px solid var(--gold-hair);
  border-radius: var(--radius-lg);
  padding: clamp(38px, 6vw, 58px) clamp(26px, 5vw, 50px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  animation: ageGateIn 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* Goldene Haarlinie am oberen Kartenrand */
.age-gate__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

@keyframes ageGateIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.age-gate__badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-hair);
  border-radius: 50%;
  background: var(--gold-dim);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  color: var(--gold);
}

.age-gate__kicker {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.age-gate__title {
  font-family: var(--display);
  font-size: clamp(26px, 4.6vw, 34px);
  font-weight: 450;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.age-gate__text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-2);
  margin: 0 auto 32px;
  max-width: 360px;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-gate__btn {
  width: 100%;
  justify-content: center;
}

.age-gate__legal {
  margin-top: 28px;
  font-family: var(--ui);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--text-4);
}

.age-gate__legal a {
  color: var(--text-3);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--t), border-color var(--t);
}

.age-gate__legal a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-hair);
}

.age-gate__legal span {
  margin: 0 8px;
  color: var(--text-4);
}

@media (max-width: 480px) {
  .age-gate { padding: 16px; }
  .age-gate__badge { width: 56px; height: 56px; font-size: 18px; margin-bottom: 20px; }
  .age-gate__text { margin-bottom: 26px; }
}

/* ============================================================
   SKIP-LINK — Tastatur-Nutzer springen direkt zum Inhalt.
   Unsichtbar, bis er per Tab fokussiert wird.
   ============================================================ */
.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 2000;
  padding: 12px 20px;
  background: var(--black-2);
  color: var(--gold-light);
  border: 1px solid var(--gold-hair);
  border-radius: var(--radius);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transform: translateY(calc(-100% - 20px));
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}
