/* HypoTirol — Nachtfahrt Design System */

:root {
  --night: #0e1210;
  --fog: #1a221c;
  --slate: #2a332d;
  --mist: #6b7a72;
  --snow: #e8ebe6;
  --paper: #f4f5f2;
  --lime: #b8e986;
  --lime-dim: #8fb86a;
  --ember: #f97316;
  --ember-soft: #fb923c;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ── Layout ── */
.wrap {
  width: min(1440px, calc(100% - 3rem));
  margin-inline: auto;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--night);
  color: var(--snow);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

::selection {
  background: var(--lime);
  color: var(--night);
}

/* ── Logo ── */
.site-logo {
  display: inline-flex;
  transition: opacity 0.2s;
}
.site-logo:hover { opacity: 0.85; }
.site-logo__img { height: 36px; width: auto; }

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
.site-header.is-scrolled {
  background: rgba(14, 18, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 233, 134, 0.12);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ── Nav ── */
.nav-pill {
  display: none;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem;
  background: rgba(26, 34, 28, 0.8);
  border: 1px solid rgba(184, 233, 134, 0.15);
  border-radius: 999px;
}
@media (min-width: 1024px) { .nav-pill { display: flex; } }

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--mist);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--snow); }
.nav-link.active {
  color: var(--night);
  background: var(--lime);
  font-weight: 600;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 233, 134, 0.2);
  border-radius: 50%;
  color: var(--snow);
  background: rgba(26, 34, 28, 0.6);
  transition: border-color 0.2s, background 0.2s;
}
.menu-btn:hover { border-color: var(--lime); background: var(--fog); }
@media (min-width: 1024px) { .menu-btn { display: none; } }

#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--fog);
  border-bottom: 1px solid rgba(184, 233, 134, 0.1);
}
#mobile-menu.open { max-height: 420px; }
#mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.25rem;
}
#mobile-menu a {
  padding: 0.65rem 0;
  font-weight: 500;
  color: var(--snow);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ── Hero ── */
.hero-night {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
}
.hero-night__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(184,233,134,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 75%, rgba(249,115,22,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26,34,28,0.9) 0%, transparent 60%),
    var(--night);
}
.hero-night__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,233,134,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,233,134,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
}
.hero-night__img {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(58vw, 760px);
  aspect-ratio: 4/5;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  opacity: 0.55;
  border: 1px solid rgba(184,233,134,0.15);
}
@media (max-width: 900px) {
  .hero-night__img {
    right: 50%;
    transform: translate(50%, -40%);
    width: 80vw;
    opacity: 0.25;
  }
}
.hero-night__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-night__content {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 3rem));
  margin-inline: auto;
}
.hero-night__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.75rem;
}
.hero-night__tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--ember);
}
.hero-night__title {
  font-size: clamp(3.25rem, 9vw, 6.25rem);
  line-height: 0.95;
  max-width: 14ch;
  margin-bottom: 1.75rem;
}
.hero-night__title em {
  font-style: italic;
  color: var(--lime);
}
.hero-night__lead {
  font-size: 1.25rem;
  color: var(--mist);
  max-width: 42rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-night__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-night__coords {
  position: absolute;
  bottom: 2rem;
  right: 1.25rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) { .hero-night__coords { display: none; } }

/* ── Buttons ── */
.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  background: var(--lime);
  color: var(--night);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-lime:hover {
  background: #c9f0a0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,233,134,0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  color: var(--snow);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(232,235,230,0.25);
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* ── Marquee ── */
.marquee-strip {
  overflow: hidden;
  border-block: 1px solid rgba(184,233,134,0.12);
  background: var(--fog);
  padding: 0.85rem 0;
}
.marquee-strip__track {
  display: flex;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-strip__track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  white-space: nowrap;
}
.marquee-strip__track span strong { color: var(--lime); font-weight: 700; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Section ── */
.section { padding: 7rem 0; }
.section--fog { background: var(--fog); }
.section--paper { background: var(--paper); color: var(--night); }
.section--paper .font-display { color: var(--night); }
.section--paper p { color: #4a524d; }

.section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.75rem;
}
.section--paper .section-label { color: var(--ember); }

.section-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

/* ── Stats row ── */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(184,233,134,0.12);
}
.stat-block__num {
  font-family: 'DM Serif Display', serif;
  font-size: 3.25rem;
  line-height: 1;
  color: var(--lime);
}
.section--paper .stat-block__num { color: var(--night); }
.stat-block__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--mist);
  margin-top: 0.25rem;
}
.section--paper .stat-block__label { color: #6b7a72; }

/* ── Horizontal scroll tours ── */
.tour-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tour-scroll::-webkit-scrollbar { display: none; }

.tour-slide {
  flex: 0 0 min(440px, 90vw);
  scroll-snap-align: start;
  background: var(--slate);
  border: 1px solid rgba(184,233,134,0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.section--paper .tour-slide {
  background: white;
  border-color: rgba(14,18,16,0.08);
  box-shadow: 0 4px 24px rgba(14,18,16,0.06);
}
.tour-slide:hover {
  border-color: rgba(184,233,134,0.35);
  transform: translateY(-4px);
}
.tour-slide__img {
  aspect-ratio: 16/11;
  overflow: hidden;
}
.tour-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-slide:hover .tour-slide__img img { transform: scale(1.05); }
.tour-slide__body { padding: 1.75rem 2rem 2rem; }
.tour-slide__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.tour-slide__km {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}
.section--paper .tour-slide__km { color: #6b7a72; }

.tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}
.tag--lime { background: rgba(184,233,134,0.15); color: var(--lime); }
.tag--ember { background: rgba(249,115,22,0.15); color: var(--ember-soft); }
.section--paper .tag--lime { background: rgba(184,233,134,0.35); color: #4a6b32; }
.section--paper .tag--ember { background: rgba(249,115,22,0.12); color: #c2410c; }

.tour-slide__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.tour-slide__desc {
  font-size: 0.9375rem;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.section--paper .tour-slide__desc { color: #5a635c; }
.tour-slide__link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  transition: color 0.2s;
}
.section--paper .tour-slide__link { color: var(--ember); }
.tour-slide__link:hover { color: var(--ember-soft); }

/* ── Split feature ── */
.split-feature {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split-feature { grid-template-columns: 1fr 1fr; }
}
.split-feature__img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 5/6;
  border: 1px solid rgba(184,233,134,0.12);
}
.split-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-list { margin-top: 2rem; }
.feature-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section--paper .feature-list li { border-color: rgba(14,18,16,0.08); }
.feature-list__num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--ember);
  line-height: 1;
}

/* ── Region orbit ── */
.region-orbit {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
}
.region-orbit__item {
  flex: 0 0 140px;
  scroll-snap-align: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.region-orbit__ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0.75rem;
  border: 2px solid rgba(184,233,134,0.2);
  transition: border-color 0.3s, transform 0.3s;
}
.region-orbit__item:hover .region-orbit__ring {
  border-color: var(--lime);
  transform: scale(1.05);
}
.region-orbit__ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.region-orbit__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--snow);
}
.section--paper .region-orbit__name { color: var(--night); }

/* ── Blog cards ── */
.blog-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .blog-row { grid-template-columns: 1fr 1fr; } }
.blog-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--slate);
  border: 1px solid rgba(184,233,134,0.08);
  border-radius: 16px;
  transition: border-color 0.3s;
  text-decoration: none;
  color: inherit;
}
.section--paper .blog-card {
  background: white;
  border-color: rgba(14,18,16,0.06);
}
.blog-card:hover { border-color: rgba(184,233,134,0.3); }
.blog-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.blog-card__cat {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
}
.blog-card__title {
  font-size: 1.05rem;
  margin-top: 0.25rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-card__title { color: var(--lime); }
.section--paper .blog-card:hover .blog-card__title { color: var(--ember); }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--lime) 0%, #9ed66f 100%);
  color: var(--night);
  text-align: center;
  padding: 4.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(14,18,16,0.03) 20px,
    rgba(14,18,16,0.03) 21px
  );
}
.cta-band__inner { position: relative; z-index: 1; }
.cta-band .font-display { color: var(--night); }
.cta-band p { color: rgba(14,18,16,0.7); max-width: 28rem; margin: 0.75rem auto 1.75rem; }
.btn-dark {
  display: inline-flex;
  padding: 0.95rem 2rem;
  background: var(--night);
  color: var(--lime);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,18,16,0.3);
}

/* ── Footer ── */
.site-footer {
  background: var(--night);
  border-top: 1px solid rgba(184,233,134,0.1);
  padding: 4rem 0 2rem;
}
.site-footer a { color: var(--mist); transition: color 0.2s; }
.site-footer a:hover { color: var(--lime); }
.footer-col__title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--snow);
  margin-bottom: 1.25rem;
}

/* ── Page hero (inner) ── */
.page-hero {
  padding: 9rem 0 4.5rem;
  background: var(--fog);
  border-bottom: 1px solid rgba(184,233,134,0.1);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184,233,134,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .section-title { position: relative; }

/* ── Cards (inner pages) ── */
.card-dark {
  background: var(--slate);
  border: 1px solid rgba(184,233,134,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.card-dark:hover {
  border-color: rgba(184,233,134,0.25);
  transform: translateY(-3px);
}

/* ── Cookie Panel ── */
.cookie-panel {
  position: fixed;
  z-index: 9999;
  bottom: 1.25rem;
  right: 1.25rem;
  left: auto;
  width: min(420px, calc(100vw - 2rem));
  transform: translateY(120%) scale(0.96);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  pointer-events: none;
}
@media (max-width: 520px) {
  .cookie-panel {
    right: 1rem;
    left: 1rem;
    width: auto;
    bottom: 1rem;
  }
}
.cookie-panel.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.cookie-panel.is-closing {
  transform: translateY(120%) scale(0.96);
  opacity: 0;
  pointer-events: none;
}
.cookie-panel__inner {
  background: linear-gradient(145deg, rgba(26,34,28,0.97) 0%, rgba(14,18,16,0.98) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(184, 233, 134, 0.14);
  border-radius: 20px;
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(184, 233, 134, 0.08) inset;
}
.cookie-panel__head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}
.cookie-panel__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(184, 233, 134, 0.1);
  border: 1px solid rgba(184, 233, 134, 0.2);
  border-radius: 12px;
  color: var(--lime);
}
.cookie-panel__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--snow);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.cookie-panel__text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--mist);
  margin: 0;
}
.cookie-panel__text a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-panel__text a:hover { color: #d4f5a8; }
.cookie-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 400px) {
  .cookie-panel__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.cookie-btn:active { transform: scale(0.97); }
.cookie-btn--primary {
  background: var(--lime);
  color: var(--night);
  flex: 1;
  min-width: 8rem;
}
.cookie-btn--primary:hover {
  background: #c9f0a0;
  box-shadow: 0 4px 20px rgba(184, 233, 134, 0.25);
}
.cookie-btn--secondary {
  background: transparent;
  color: var(--snow);
  border: 1px solid rgba(232, 235, 230, 0.2);
  flex: 1;
  min-width: 8rem;
}
.cookie-btn--secondary:hover {
  border-color: rgba(184, 233, 134, 0.4);
  color: var(--lime);
}
.cookie-btn--link {
  background: none;
  color: var(--mist);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  width: 100%;
  text-align: center;
}
@media (min-width: 400px) {
  .cookie-btn--link { width: auto; margin-left: auto; }
}
.cookie-btn--link:hover { color: var(--lime); }
.cookie-btn--sm { padding: 0.55rem 1rem; font-size: 0.7rem; margin-top: 0.25rem; }
.cookie-panel__settings {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}
.cookie-panel__settings.is-open {
  max-height: 220px;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 233, 134, 0.1);
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  cursor: pointer;
  user-select: none;
}
.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle__track {
  flex-shrink: 0;
  width: 36px;
  height: 20px;
  background: var(--slate);
  border: 1px solid rgba(184, 233, 134, 0.15);
  border-radius: 999px;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.cookie-toggle__track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: var(--mist);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle__track {
  background: rgba(184, 233, 134, 0.2);
  border-color: rgba(184, 233, 134, 0.4);
}
.cookie-toggle input:checked + .cookie-toggle__track::after {
  transform: translateX(16px);
  background: var(--lime);
}
.cookie-toggle input:disabled + .cookie-toggle__track {
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-toggle__label {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.cookie-toggle__label strong {
  font-size: 0.8125rem;
  color: var(--snow);
  font-weight: 600;
}
.cookie-toggle__label small {
  font-size: 0.6875rem;
  color: var(--mist);
}

/* Legacy #cookie-banner compat */
#cookie-banner {
  transform: translateY(120%) scale(0.96);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  pointer-events: none;
  background: transparent !important;
  border: none !important;
}
#cookie-banner.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
#cookie-banner.is-closing {
  transform: translateY(120%) scale(0.96);
  opacity: 0;
  pointer-events: none;
}

/* ── Legal ── */
.legal-prose h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--snow);
}
.legal-prose h3 { font-size: 1.05rem; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--snow); }
.legal-prose p, .legal-prose li { line-height: 1.75; color: var(--mist); }
.legal-prose ul { list-style: disc; padding-left: 1.5rem; margin: 0.75rem 0; }
.legal-prose a { color: var(--lime); }

/* ── Forms ── */
input, select, textarea {
  background: var(--slate) !important;
  border: 1px solid rgba(184,233,134,0.15) !important;
  color: var(--snow) !important;
  border-radius: 12px !important;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--lime) !important;
}
.section--paper input,
.section--paper select,
.section--paper textarea {
  background: white !important;
  border-color: rgba(14,18,16,0.12) !important;
  color: var(--night) !important;
}

/* ── FAQ ── */
details.card-dark { padding: 1.25rem 1.5rem; margin-bottom: 0.75rem; }
details summary { cursor: pointer; font-weight: 600; list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* Aliases */
.card-offset, .card-dark {
  background: var(--slate);
  border: 1px solid rgba(184,233,134,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.card-offset:hover, .card-dark:hover {
  border-color: rgba(184,233,134,0.25);
  transform: translateY(-3px);
}
.btn-kupfer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  background: var(--lime);
  color: var(--night);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-kupfer:hover {
  background: #c9f0a0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,233,134,0.25);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  color: var(--snow);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(232,235,230,0.25);
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }
.stamp-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(184,233,134,0.12);
  color: var(--lime);
}
.difficulty-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  margin-right: 3px;
}
.difficulty-dots span.filled { background: var(--lime); }

/* ── Layout utilities (no Tailwind) ── */
.grid-2 { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.grid-3 { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: 2fr 1fr; gap: 4rem; } }
.grid-4 { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-3-cards { display: grid; gap: 2rem; }
@media (min-width: 768px) { .grid-3-cards { grid-template-columns: repeat(3, 1fr); } }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.flex-between { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end; justify-content: space-between; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-20 > * + * { margin-top: 5rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-6 { margin-top: 1.5rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.hidden { display: none; }
.fixed { position: fixed; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-200 { z-index: 200; }
.order-2-md { order: 0; }
@media (min-width: 768px) { .order-2-md { order: 2; } }
.order-1-md { order: 0; }
@media (min-width: 768px) { .order-1-md { order: 1; } }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.img-h-56 { width: 100%; height: 14rem; object-fit: cover; }
@media (min-width: 768px) { .img-h-full-md { height: 100%; min-height: 280px; } }
.sticky-aside { position: sticky; top: 7rem; height: fit-content; }
.hero-img-bar { position: relative; height: 22rem; overflow: hidden; }
@media (min-width: 768px) { .hero-img-bar { height: 28rem; } }
.hero-img-bar img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-bar__overlay { position: absolute; inset: 0; background: rgba(14,18,16,0.55); }
.hero-img-bar__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 0; }
.etappe { border-left: 4px solid var(--ember); padding: 0.5rem 0 0.5rem 1.25rem; margin-bottom: 0.75rem; }
.highlight-box { background: var(--fog); border: 1px solid rgba(184,233,134,0.12); border-radius: 12px; padding: 1.25rem; }
.cta-box { background: rgba(184,233,134,0.08); border: 1px solid rgba(184,233,134,0.2); border-radius: 16px; padding: 1.5rem; margin-top: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--snow); margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; }
.form-check { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.875rem; color: var(--mist); }
.form-check input { margin-top: 0.2rem; accent-color: var(--lime); }
.prose-article h2 { font-family: 'DM Serif Display', serif; font-size: 1.35rem; margin-top: 1.75rem; margin-bottom: 0.75rem; color: var(--snow); }
.prose-article p { color: var(--mist); line-height: 1.75; margin-bottom: 1rem; }
.prose-article a { color: var(--lime); }
.border-t-footer { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.legal-header { padding: 1.1rem 0; border-bottom: 1px solid rgba(184,233,134,0.1); background: var(--night); }
.legal-main { width: 100%; max-width: none; margin-inline: auto; padding: 4rem 0 5rem; }
.prose-article { width: 100%; max-width: none; margin-inline: auto; }
.content-narrow { width: 100%; max-width: none; }
.stat-number { font-family: 'DM Serif Display', serif; font-size: 3.25rem; color: var(--lime); line-height: 1; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.75rem; color: var(--mist); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: 0.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.flex-col { display: flex; flex-direction: column; }
.flex-row-lg { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 1024px) { .flex-row-lg { flex-direction: row; align-items: center; } }
.cta-band .font-display,
.cta-band__title { font-size: clamp(1.75rem, 4vw, 2.25rem); color: var(--night); }
.flex-1 { flex: 1; }
.not-italic { font-style: normal; }
.border-t-subtle { border-top: 1px solid rgba(255,255,255,0.1); }
