/* ============================================================
   HISTORISCHE STERNE — Mercedes-Oldtimertreffen 2027
   Style: "Drive Capital" editorial poster (warm cream + voltage blue)
   ============================================================ */

:root {
  /* Colors */
  --cream: #fff8f1;
  --ash: #bcc6cf;             /* hairlines/borders (stronger for readability) */
  --ink: #000000;
  --accent: #185036;          /* deep racing green (darkened for contrast) */
  --accent-ink: #0f3625;      /* darker green for hover */
  --muted: #3c444e;           /* secondary text (darkened for older eyes) */

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

  /* Layout */
  --page-pad: clamp(20px, 6vw, 144px);
  --section-pad: clamp(72px, 12vh, 150px);
  --max: 1200px;

  --tracking: -0.02em;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: var(--tracking);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "clig", "liga";
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; letter-spacing: inherit; color: inherit; }

/* Faint paper grain — keeps the "printed invite" feel, very subtle */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Shared bits ---------- */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--page-pad); }

.label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.rule { height: 1px; background: var(--ash); border: 0; }

/* Pill buttons — outlined, transparent, invert on hover */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--accent);
  border-radius: 60px;
  padding: 14px 34px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  white-space: nowrap;
}
.pill:hover { background: var(--accent); color: var(--cream); }
.pill:active { transform: translateY(1px); }
.pill--solid { background: var(--accent); color: var(--cream); }
.pill--solid:hover { background: var(--accent-ink); color: var(--cream); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--ash); }
.nav__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 16px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: var(--tracking);
  color: var(--accent);
}
.brand__star { color: var(--gold); font-size: 0.9em; flex: none; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity .2s ease;
}
.nav__links a:hover { opacity: .55; }
.nav__cta { margin-left: 6px; }
.nav__toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span { display: block; width: 24px; height: 1.5px; background: var(--accent); margin: 5px 0; transition: transform .3s ease, opacity .3s ease; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO — event-poster masthead (à la Drive Capital)
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(36px, 6vh, 88px) clamp(48px, 8vh, 104px);
}
.hero__metarow {
  display: flex;
  justify-content: space-between;
  align-items: center;      /* Termin · Logo · Ort auf einer Achse */
  gap: 24px;
  margin-top: clamp(14px, 2.5vh, 26px);
}
.hero__meta { display: flex; flex-direction: column; gap: 6px; }
.hero__meta--right { text-align: right; }
.hero__meta-label {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
/* Termin & Ort — Wunsch Oma: deutlich größer */
.hero__meta-val {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.12;
  color: var(--ink);
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 14vw, 10.5rem);
  line-height: 0.84;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--accent);
}
.hero__rule { margin: clamp(18px, 3vh, 30px) 0; }
.hero__tagline {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(36px, 6vh, 68px);
  font-size: clamp(0.8rem, 1.35vw, 0.95rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
}
.hero__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.hero__col-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__col-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  line-height: 0.95;
  color: var(--accent);
}
.hero__illo { width: clamp(240px, 42vw, 560px); }
.hero__illo img { width: 100%; height: auto; display: block; }

@media (max-width: 760px) {
  .hero__metarow { flex-direction: column; align-items: center; gap: 12px; }
  .hero__meta { align-items: center; text-align: center; }
  .hero__meta--right { text-align: center; }
  .hero__cols { grid-template-columns: 1fr; gap: 26px; }
  .hero__illo { order: -1; width: min(84%, 400px); margin: 0 auto; }
}


/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
  padding-block: 20px;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 0;
  animation: marquee 34s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: 0.01em;
  color: var(--ink);
  padding-inline: 26px;
}
.marquee__track .star { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION scaffolding
   ============================================================ */
.section { padding-block: var(--section-pad); }
.section--tight { padding-block: clamp(56px, 9vh, 110px); }
.section__head { text-align: center; margin-bottom: clamp(40px, 6vh, 72px); }
.section__num {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--accent);
}
.h2 em { font-style: italic; }

/* About / lead text */
.lead {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}
.lead p { font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.55; margin-bottom: 26px; }
.lead p:last-child { margin-bottom: 0; }

/* ============================================================
   ECKDATEN — spec grid (label over value)
   ============================================================ */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ash);
  border-left: 1px solid var(--ash);
}
.fact {
  padding: 34px 30px;
  border-right: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
}
.fact .label { display: block; margin-bottom: 14px; }
.fact .val {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.05;
  color: var(--ink);
}
.fact .val small { display: block; font-family: var(--sans); font-size: 15.5px; line-height: 1.4; color: var(--muted); margin-top: 8px; letter-spacing: 0; text-transform: none; }

/* ============================================================
   PROGRAMM — three day cards
   ============================================================ */
.days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ash);
}
.day { padding: 40px 34px; border-right: 1px solid var(--ash); }
.day:last-child { border-right: 0; }
.day__date { font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.day__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  margin-bottom: 18px;
}
.day p { color: var(--muted); font-size: 17px; line-height: 1.55; }
.note {
  text-align: center;
  margin-top: 28px;
  font-size: 16.5px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--muted);
}

/* ============================================================
   ANMELDUNG — registration form
   ============================================================ */
.form-wrap {
  max-width: 720px;
  margin-inline: auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 30px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--ash);
  padding: 10px 2px;
  font-size: 17px;
  transition: border-color .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #a9b1bd; }
.field input:focus,
.field textarea:focus,
.field select:focus { outline: none; border-bottom-color: var(--accent); }
.field textarea { resize: vertical; min-height: 96px; }

.checks { display: flex; flex-wrap: wrap; gap: 12px; }
.check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--ash);
  border-radius: 60px;
  padding: 10px 20px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  font-size: 15px;
}
.check:hover { border-color: var(--accent); }
.check input { accent-color: var(--accent); width: 16px; height: 16px; }
.check.is-on { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 7%, transparent); }

.consent { display: flex; align-items: flex-start; gap: 12px; font-size: 14px !important; color: var(--muted) !important; text-transform: none !important; letter-spacing: normal !important; }
.field .check { text-transform: none; letter-spacing: normal; color: var(--ink); font-size: 14px; }
.consent input { accent-color: var(--accent); margin-top: 3px; }
.consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.form-actions { margin-top: 34px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-hint { font-size: 13px; color: var(--muted); }

/* ============================================================
   ANFAHRT / KONTAKT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}
.info-block .label { display: block; margin-bottom: 14px; }
.info-block p { margin-bottom: 22px; }
.info-block .big {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
  color: var(--ink);
}
.info-link { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--ash); padding-block: clamp(56px, 8vh, 90px) 40px; }
.footer__grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.95;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.footer__meta { font-size: 15.5px; color: var(--muted); line-height: 1.9; }
.footer__meta a { color: var(--accent); }
.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--ash);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--accent); }

/* Decorative Cursive Accent Fonts */
em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: inherit;
  color: inherit;
  text-transform: inherit !important;
  display: inline;
}
/* Guter Zweck im Hero — Wunsch Oma: viel größer & stärker hervorgehoben */
.hero__nonprofit {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  margin-top: 26px;
  padding-top: 22px;
  border-top: 2px solid var(--accent);
  max-width: 30ch;
  margin-inline: auto;
  text-align: center;
}
.hero__nonprofit strong { font-weight: 400; font-style: italic; }

/* Blend car image white bg into cream site bg */
.hero__illo img {
  mix-blend-mode: multiply;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--cream);
    border-bottom: 1.5px solid var(--accent);
    padding: 18px var(--page-pad) 26px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    box-shadow: 0 16px 24px rgba(24, 80, 54, 0.05);
  }
  .nav__links a { 
    padding: 12px 0; 
    font-size: 14px; 
    width: 100%; 
    border-bottom: 1px solid color-mix(in srgb, var(--ash) 40%, transparent);
  }
  .nav__links a:last-of-type {
    border-bottom: 0;
  }
  .nav.is-open .nav__links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__cta {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    margin-left: 0;
    box-sizing: border-box;
  }
  .nav__toggle { display: block; }
}

@media (max-width: 900px) {
  .facts { 
    grid-template-columns: repeat(2, 1fr); 
    border-top: 1.5px solid var(--accent);
    border-left: 1.5px solid var(--accent);
  }
  .fact {
    border-right: 1.5px solid var(--accent);
    border-bottom: 1.5px solid var(--accent);
    padding: 26px 20px;
  }
  .days { 
    grid-template-columns: 1fr; 
    gap: 20px; 
    border: 0; 
  }
  .day { 
    border: 1.5px solid var(--accent); 
    padding: 30px 24px;
  }
  .day:last-child { 
    border-right: 1.5px solid var(--accent); 
  }
  .split { 
    grid-template-columns: 1fr; 
    gap: 24px; 
  }
  .info-block {
    border: 1.5px solid var(--accent);
    padding: 30px 24px;
  }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding-block: clamp(48px, 8vh, 80px); }
  .section--tight { padding-block: clamp(36px, 6vh, 60px); }
  .hero { padding-block: 28px 48px; }
  .hero__title { font-size: clamp(2.4rem, 10vw, 4rem); text-align: center; }
  .hero__metarow {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 16px;
    margin-top: 20px;
    border-top: 1px solid var(--ash);
    padding-top: 12px;
    width: 100%;
  }
  .hero__meta { align-items: center; text-align: center; }
  .hero__meta--right { text-align: center; }
  .hero__tagline { margin-top: 24px; margin-bottom: 32px; font-size: 13px; }
  .hero__cols { 
    grid-template-columns: 1fr; 
    gap: 32px; 
  }
  .hero__col { 
    border: 1.5px solid var(--accent);
    padding: 24px 20px;
    background: var(--cream);
    max-width: 320px;
    width: 100%;
    margin-inline: auto;
  }
  .hero__col .pill { width: 100%; justify-content: center; }
  .hero__illo { 
    width: 100%; 
    max-width: 440px; 
    margin-inline: auto; 
    border: 1.5px solid var(--accent);
    padding: 6px;
    background: var(--cream);
  }
}

@media (max-width: 720px) {
  .form-wrap {
    padding: 28px 20px;
    border: 1.5px solid var(--accent);
  }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .checks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }
  .check {
    padding: 10px 16px;
    font-size: 13px;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: center;
  }
  .form-actions .pill {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .facts { 
    grid-template-columns: 1fr; 
    border-top: 0;
    border-left: 0;
  }
  .fact { 
    border-right: 0;
    border-left: 0;
    border-top: 1.5px solid var(--accent);
    padding: 20px 0; 
  }
  .fact .val { font-size: 1.6rem; }
}

/* ============================================================
   CHARITY / GUTER ZWECK
   ============================================================ */
.charity {
  max-width: 720px;
  margin: clamp(40px, 6vh, 64px) auto 0;
  border: 1.5px solid var(--accent);
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
}
.charity .label { display: block; margin-bottom: 14px; }
.charity p { font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--ink); }
.charity strong { font-weight: 500; color: var(--accent); }

/* ============================================================
   EINLADUNG — persönlicher Brief
   ============================================================ */
.invite {
  max-width: 640px;
  margin-inline: auto;
}
.invite p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  margin-bottom: 26px;
}
.invite__sign {
  margin-top: 38px;
  text-align: right;
}
.invite__sign em {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--accent);
}
.invite__sign span {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   PROGRAMM — Tageslisten
   ============================================================ */
.day__list { display: grid; gap: 13px; }
.day__list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}
.day__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 10px;
  color: var(--accent);
}

/* ============================================================
   FAHRZEUGE — Galerie mit Geschichte
   ============================================================ */
.car {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(56px, 9vh, 100px);
}
.car:last-of-type { margin-bottom: 0; }
.car--flip .car__media { order: 2; }
.car--flip .car__body { order: 1; }
.car__media {
  border: 1.5px solid var(--accent);
  padding: 8px;
  background: var(--cream);
}
.car__media img { width: 100%; height: auto; }
.car__body .label { display: block; margin-bottom: 12px; }
.car__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 20px;
}
.car__body p { color: var(--ink); font-size: clamp(0.98rem, 1.7vw, 1.08rem); margin-bottom: 18px; }
.car__body p:last-child { margin-bottom: 0; }

/* ============================================================
   TEILNAHME — Klassen, Nenngeld-Paket, Bedingungen
   ============================================================ */
.classes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ash);
  border-left: 1px solid var(--ash);
  margin-bottom: clamp(48px, 7vh, 80px);
}
.klass {
  padding: 30px 26px;
  border-right: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
}
.klass__num {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--accent);
  margin-bottom: 10px;
}
.klass__range { font-size: 16.5px; line-height: 1.45; color: var(--muted); }

.package {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}
.package .label { display: block; margin-bottom: 14px; }
.package__info p { margin-bottom: 22px; }
.package__info .big {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
  color: var(--ink);
}
.package__bank {
  border: 1px solid var(--ash);
  padding: 22px 24px;
  font-size: 15.5px;
  line-height: 1.7;
}
.package__list ul { display: grid; gap: 12px; }
.package__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}
.package__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 10px;
  color: var(--accent);
}

.notice {
  max-width: 720px;
  margin: clamp(40px, 6vh, 64px) auto;
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 26px;
}
.notice .label { display: block; margin-bottom: 10px; }
.notice p { font-size: 15.5px; color: var(--muted); }

.terms {
  max-width: 760px;
  margin-inline: auto;
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
}
.terms summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 4px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.terms summary::-webkit-details-marker { display: none; }
.terms summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  transition: transform .25s ease;
}
.terms[open] summary::after { transform: rotate(45deg); }
.terms__body { padding: 4px 4px 30px; }
.terms__body h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--accent);
  margin: 26px 0 10px;
}
.terms__body h4:first-child { margin-top: 0; }
.terms__body p { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin-bottom: 12px; }

/* ============================================================
   ANMELDUNG — Gruppentitel
   ============================================================ */
.form-group-label {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--accent);
  border-bottom: 1px solid var(--ash);
  padding-bottom: 12px;
  margin: 44px 0 26px;
}
#regForm .form-group-label:first-child { margin-top: 0; }
.consent + .consent { margin-top: 14px; }

/* ============================================================
   HOTELS
   ============================================================ */
.hotels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ash);
}
.hotel {
  padding: 36px 30px;
  border-right: 1px solid var(--ash);
  text-align: center;
}
.hotel:last-child { border-right: 0; }
.hotel .label { display: block; margin-bottom: 12px; }
.hotel__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.1;
  color: var(--ink);
}

/* ============================================================
   LANDESGARTENSCHAU-LOGO
   ============================================================ */
.lgs { margin-top: 10px; max-width: 240px; }
.lgs img { width: 100%; height: auto; mix-blend-mode: multiply; }

/* ============================================================
   RESPONSIVE — neue Komponenten
   ============================================================ */
@media (max-width: 900px) {
  .car { grid-template-columns: 1fr; gap: 24px; }
  .car--flip .car__media { order: 0; }
  .car--flip .car__body { order: 0; }
  .classes {
    grid-template-columns: repeat(2, 1fr);
    border-top: 1.5px solid var(--accent);
    border-left: 1.5px solid var(--accent);
  }
  .klass { border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); padding: 24px 20px; }
  .package { grid-template-columns: 1fr; gap: 36px; }
  .hotels { grid-template-columns: 1fr; border: 0; display: grid; gap: 16px; }
  .hotel { border: 1.5px solid var(--accent); }
}

@media (max-width: 480px) {
  .classes { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .marquee__track { animation: none; }
}

/* ============================================================
   ============================================================
   V2 — MULTIPAGE · BARRIEREFREI (größer) · BLUMEN · LESE-GATE
   Zielgruppe = ältere Menschen → größere Schrift, größere
   Klickflächen, klare aktive Navigation, weniger Gedränge.
   ============================================================
   ============================================================ */

:root {
  --tap: 52px;                 /* Mindest-Klickfläche */
  --g-lilac: #8f86cc;
  --g-orange: #ec7a1c;
  --g-green: #3f9e78;
  --g-yellow: #f2b21e;
  --g-teal: #2f7f63;
  --g-blue: #3f7fce;
  --g-ink: #2b4156;
}

/* ---------- Größere Grundschrift ---------- */
body { font-size: 21px; line-height: 1.65; }

.label { font-size: 15px; letter-spacing: 0.15em; }

.pill {
  font-size: 17px;
  padding: 17px 38px;
  min-height: var(--tap);
}

/* ---------- Navigation: Multipage statt Scroll ---------- */
.nav__inner { padding-block: 18px; gap: 20px; }
.nav__links { gap: 22px; align-items: center; }
.nav__links a {
  font-size: 19px;             /* Wunsch Oma: Navigation größer */
  letter-spacing: 0.01em;      /* enger = besser lesbar bei längeren Wörtern */
  text-transform: none;        /* Groß-/Kleinschreibung liest sich leichter */
  white-space: nowrap;         /* niemals umbrechen → keine schiefe Ausrichtung */
  flex: none;                  /* nicht schrumpfen lassen */
  padding: 12px 2px;
  line-height: 1.1;
  border-bottom: 3px solid transparent;
  transition: opacity .2s ease, border-color .2s ease;
}
.nav__links a:hover { opacity: 1; border-bottom-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.nav__links a[aria-current="page"] {
  opacity: 1;
  font-weight: 500;
  border-bottom-color: var(--accent);
}
.nav__links a.nav__cta,
.nav__links a.nav__cta[aria-current="page"] { border-bottom: 1.5px solid var(--accent); }
.nav__ext { display: inline-flex; align-items: center; gap: 5px; }

/* Hamburger früher einblenden, damit die längeren Menüpunkte nie quetschen */
@media (max-width: 1180px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    background: var(--cream);
    border-bottom: 1.5px solid var(--accent);
    padding: 14px var(--page-pad) 24px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    box-shadow: 0 16px 24px rgba(24, 80, 54, 0.06);
  }
  .nav__links a {
    padding: 16px 0;
    font-size: 18px;
    width: 100%;
    border-bottom: 1px solid color-mix(in srgb, var(--ash) 45%, transparent);
  }
  .nav__links a[aria-current="page"] { border-bottom-color: var(--accent); }
  .nav.is-open .nav__links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__cta {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    margin-left: 0;
    box-sizing: border-box;
  }
  .nav__toggle { display: block; padding: 12px; }
}

/* ---------- Formular: größer & besser lesbar ---------- */
.field label { font-size: 16px; }
.field input,
.field textarea,
.field select {
  font-size: 20px;
  padding: 14px 4px;
  border-bottom-width: 2px;
}
.field textarea { min-height: 120px; }
.field input[type="file"] {
  border: 2px dashed var(--ash);
  border-bottom-width: 2px;
  border-radius: 6px;
  padding: 18px;
  font-size: 16px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.field input[type="file"]:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 4%, transparent); }
.field input[type="file"]::file-selector-button {
  font: inherit;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 11px 20px;
  border-radius: 60px;
  margin-right: 16px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.field input[type="file"]::file-selector-button:hover { background: var(--accent); color: var(--cream); }
.consent { font-size: 16px !important; gap: 14px; }
.consent input { width: 22px; height: 22px; margin-top: 2px; flex: none; }
.check { font-size: 16px; padding: 14px 24px; min-height: var(--tap); }
.check input { width: 20px; height: 20px; }
.form-hint { font-size: 16px; line-height: 1.5; }

/* ---------- Skip-Link (Barrierefreiheit) ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--cream);
  padding: 14px 22px;
  font-size: 16px;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Footer-Navigation ---------- */
.footer__nav {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--ash);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
}
.footer__nav a {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 0;
}
.footer__nav a:hover { opacity: .6; }

/* ============================================================
   PAGE-HERO (Kopf der Unterseiten)
   ============================================================ */
.page-hero {
  padding: clamp(52px, 9vh, 104px) 0 clamp(32px, 5vh, 60px);
  text-align: center;
  border-bottom: 1px solid var(--ash);
}
.page-hero__eyebrow {
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.page-hero__title em { font-style: italic; }
.page-hero__sub {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
}

/* Karten-Wegweiser auf der Startseite */
.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ash);
  border-left: 1px solid var(--ash);
}
.route {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 38px 32px;
  border-right: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
  color: var(--ink);
  transition: background .2s ease;
  min-height: var(--tap);
}
.route:hover { background: color-mix(in srgb, var(--accent) 5%, transparent); }
.route__num { font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.route__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.05;
  color: var(--accent);
}
.route__desc { font-size: 17px; line-height: 1.55; color: var(--muted); }
.route__go { margin-top: auto; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
@media (max-width: 900px) {
  .routes { grid-template-columns: 1fr; border-top: 1.5px solid var(--accent); border-left: 1.5px solid var(--accent); }
  .route { border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); }
}

/* ============================================================
   GEOMETRISCHE BLUMEN (Landesgartenschau-Motiv)
   ============================================================ */
.flower {
  /* Wunsch Oma: doppelt so groß wie vorher (war clamp(32px,5vw,44px)) */
  width: clamp(58px, 9vw, 88px);
  height: clamp(58px, 9vw, 88px);
  display: inline-block;
  opacity: 0;
  transform: scale(.55) rotate(-18deg);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1);
}
.flower.is-in { opacity: 1; transform: none; }
.flower-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3.5vw, 34px);
  padding: clamp(34px, 6vh, 60px) var(--page-pad);
}
.flower-strip .flower:nth-child(1) { transition-delay: 0s; }
.flower-strip .flower:nth-child(2) { transition-delay: .07s; }
.flower-strip .flower:nth-child(3) { transition-delay: .14s; }
.flower-strip .flower:nth-child(4) { transition-delay: .21s; }
.flower-strip .flower:nth-child(5) { transition-delay: .28s; }
.flower-strip .flower:nth-child(6) { transition-delay: .35s; }
.flower-strip .flower.is-in:hover { transform: rotate(12deg) scale(1.12); transition-duration: .3s; }

/* LGS-Logo auf der Startseite — bewusst NICHT im Hero, sondern weiter unten
   bei "Die Veranstaltung", wo der Text die Landesgartenschau erwähnt. */
.rahmen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: clamp(44px, 7vh, 72px);
}
.rahmen__label {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.rahmen img {
  width: clamp(200px, 28vw, 320px);
  height: auto;
  mix-blend-mode: multiply;
  transition: transform .25s ease;
}
.rahmen a:hover img { transform: scale(1.03); }

/* ============================================================
   HERO-GARTEN — Blumen wachsen von unten in den Hero hinein
   ============================================================ */
.hero { overflow: hidden; }              /* schneidet die Blumen an der Unterkante ab */
.hero { padding-bottom: clamp(96px, 15vh, 172px); }  /* Platz für den Blumenstreifen */

/* Garten liegt per z-index:-1 hinter dem Inhalt.
   WICHTIG: kein z-index auf den Inhalt legen — das erzeugt einen Stacking-Context
   und zerstört das mix-blend-mode des Landesgartenschau-Logos (weißer Kasten). */
.hero__garden {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(4px, 1.5vw, 22px);
  padding-inline: clamp(4px, 2vw, 40px);
  pointer-events: none;
}
.hero__garden .flower {
  flex: 0 0 auto;
  height: auto;
  aspect-ratio: 1;
  transform-origin: bottom center;
  /* wächst von unten heraus statt einzudrehen */
  transform: scale(0.15);
  transition: opacity .5s ease, transform .9s cubic-bezier(.2,.9,.25,1);
}
.hero__garden .flower.is-in { transform: none; }

/* unterschiedliche Größen + Anschnitt = wirkt wie ein gewachsenes Beet */
.hero__garden .flower:nth-child(1) { width: clamp(44px, 7.5vw, 104px); margin-bottom: -16px; transition-delay: .05s; }
.hero__garden .flower:nth-child(2) { width: clamp(62px, 11vw, 150px);  margin-bottom: -34px; transition-delay: .13s; }
.hero__garden .flower:nth-child(3) { width: clamp(38px, 6.5vw, 88px);  margin-bottom: -8px;  transition-delay: .21s; }
.hero__garden .flower:nth-child(4) { width: clamp(70px, 12.5vw, 176px); margin-bottom: -44px; transition-delay: .29s; }
.hero__garden .flower:nth-child(5) { width: clamp(42px, 7vw, 96px);    margin-bottom: -12px; transition-delay: .37s; }
.hero__garden .flower:nth-child(6) { width: clamp(58px, 10vw, 140px);  margin-bottom: -30px; transition-delay: .45s; }
.hero__garden .flower:nth-child(7) { width: clamp(40px, 7vw, 92px);    margin-bottom: -10px; transition-delay: .53s; }
.hero__garden .flower:nth-child(8) { width: clamp(52px, 9vw, 122px);   margin-bottom: -24px; transition-delay: .61s; }

@media (max-width: 620px) {
  /* am Handy weniger Blumen, damit sie groß bleiben statt zu quetschen */
  .hero__garden .flower:nth-child(7),
  .hero__garden .flower:nth-child(8) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__garden .flower { transform: none; transition: none; }
}

/* Blumen-Cluster am Landesgartenschau-Logo */
.lgs { position: relative; display: inline-block; }
.lgs__flowers { position: absolute; top: -26px; right: -18px; display: flex; gap: 6px; pointer-events: none; }
.lgs__flowers .flower { width: 38px; height: 38px; }
.lgs__flowers .flower--f2 { margin-top: 14px; }
.lgs__flowers .flower--f3 { margin-top: 4px; }

@media (prefers-reduced-motion: reduce) {
  .flower { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   LESE-GATE — erst Teilnahmebedingungen, dann Anmeldung
   ============================================================ */
.gate-terms {
  border: 1.5px solid var(--accent);
  padding: clamp(24px, 4vw, 44px);
  margin-bottom: 40px;
}
.gate-terms h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 30px 0 12px;
}
.gate-terms h3:first-of-type { margin-top: 0; }
.gate-terms p { font-size: 18px; line-height: 1.6; color: var(--ink); margin-bottom: 14px; }
.gate-terms .small { font-size: 16.5px; line-height: 1.6; color: var(--muted); }

.gate-accept {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 2px solid var(--ash);
}
.gate-accept .consent { font-size: 18px !important; font-weight: 500; color: var(--ink) !important; }

.gate-locked {
  text-align: center;
  padding: clamp(40px, 7vh, 80px) 24px;
  border: 2px dashed var(--ash);
  color: var(--muted);
}
.gate-locked__icon { font-size: 30px; color: var(--accent); margin-bottom: 14px; }
.gate-locked p { font-size: 17px; max-width: 460px; margin-inline: auto; }

/* Überschrift "Nenngeld" — größer und fett */
.gate-terms h3.gate-terms__preis-titel {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
}

/* Inline-Textlinks (z. B. Museum Angerlehner, Gärtnerei Dopetsberger) */
.link-inline {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.link-inline:hover { text-decoration-thickness: 2.5px; }

/* Nenngeld-Preis — groß und deutlich */
.preis {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  border: 2px solid var(--accent);
  padding: clamp(24px, 4vw, 38px) 24px;
  margin: 8px 0 26px;
}
.preis__betrag {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.preis__info {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 36ch;
}
.preis__info strong { font-weight: 500; color: var(--accent); }
.preis__extra {
  width: 100%;
  max-width: 420px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--ash);
  display: grid;
  gap: 12px;
}
.preis__extra li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--ink);
  text-align: left;
}
.preis__extra-betrag {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  white-space: nowrap;
}

/* Leistungen im Nenngeld — jeder Punkt eine eigene Zeile (Wunsch Oma) */
.package__list-inline { display: grid; gap: 11px; margin: 4px 0 6px; }
.package__list-inline li {
  position: relative;
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
}
.package__list-inline li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 11px;
  color: var(--accent);
}

.gate-accept .consent input:disabled { opacity: .4; cursor: not-allowed; }
.gate-accept .consent input:disabled ~ span { opacity: .55; }

.center-cta { text-align: center; margin-top: clamp(32px, 5vh, 52px); }

/* ============================================================
   GROSSE NON-PROFIT-ZEILE (guter Zweck, deutlich sichtbar)
   ============================================================ */
.nonprofit-band {
  background: var(--accent);
  color: var(--cream);
  text-align: center;
  padding: clamp(48px, 9vh, 96px) var(--page-pad);
}
.nonprofit-band__eyebrow {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 26px;
}
.nonprofit-band__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  line-height: 1.06;
  max-width: 15ch;
  margin: 0 auto;
}
.nonprofit-band__title strong { font-weight: 400; font-style: italic; }
.nonprofit-band__sub {
  max-width: 620px;
  margin: 26px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
  opacity: 0.92;
}

/* ============================================================
   HOTELS — jetzt als anklickbare Karten mit Buchungslink
   ============================================================ */
.hotel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.hotel__book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--accent);
  border-radius: 60px;
  padding: 13px 28px;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: transparent;
  transition: background .25s ease, color .25s ease;
  min-height: var(--tap);
  white-space: nowrap;
}
.hotel__book:hover { background: var(--accent); color: var(--cream); }
.hotel__site {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 6px 0;
}
.hotel__site:hover { color: var(--accent); }

/* Hotel-Reservierung: aufklappbares Feld statt reinem mailto */
.hotels { align-items: start; }
.resv { width: 100%; }
.resv summary { list-style: none; cursor: pointer; display: inline-flex; }
.resv summary::-webkit-details-marker { display: none; }
.resv__body {
  margin-top: 14px;
  text-align: left;
  border: 1px solid var(--ash);
  padding: 16px 18px;
  display: grid;
  gap: 12px;
}
.resv__step { font-size: 15px; color: var(--muted); line-height: 1.45; }
.resv__step strong { color: var(--accent); font-weight: 600; }
.resv__mailrow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.resv__mail { font-size: 16px; font-weight: 500; color: var(--accent); word-break: break-all; }
.resv__copy {
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 60px;
  padding: 9px 18px;
  font-size: 14px;
  cursor: pointer;
  min-height: 42px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.resv__copy:hover { background: var(--accent); color: var(--cream); }
.resv__copy.is-copied { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.resv__open { font-size: 14px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.resv__open:hover { color: var(--accent); }

/* ============================================================
   FAHRZEUG-DATENBLOCK (Infos wie aus der Anmeldung)
   ============================================================ */
.car__specs {
  margin: 4px 0 22px;
  border-top: 1px solid var(--ash);
}
.car__specs div {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ash);
}
.car__specs dt {
  flex: 0 0 42%;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 2px;
}
.car__specs dd {
  flex: 1;
  font-size: 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.3;
}

/* Feld-Hinweis (z. B. Werksnummer ist wichtig) */
.field .hint {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--muted);
  margin-top: -2px;
}
.field .hint strong { color: var(--accent); font-weight: 500; }

.reg-reveal { display: none; }
.reg-reveal.is-open { display: block; animation: revealForm .5s ease; }
@keyframes revealForm { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reg-reveal.is-open { animation: none; } }
