:root {
  --blue: #002366;
  --blue-2: #0b3477;
  --blue-deep: #001847;
  --gold: #d4af37;
  --gold-soft: #eadb9b;
  --cream: #f5e6c8;
  --cream-light: #fbf6eb;
  --ink: #182033;
  --muted: #667085;
  --line: #d8dce5;
  --white: #fff;
  --shadow: 0 18px 50px rgba(0, 35, 102, .10);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 17px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; }
a { color: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed; z-index: 1000; left: 16px; top: 10px;
  padding: 10px 14px; background: #fff; color: var(--blue);
  transform: translateY(-160%); border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.club-bar { background: var(--blue-deep); color: #fff; font-size: 14px; }
.club-bar__inner {
  min-height: 42px; display: flex; gap: 24px; align-items: center; justify-content: space-between;
}
.club-back { color: #fff; text-decoration: none; font-weight: 700; }
.club-back:hover { text-decoration: underline; text-underline-offset: 4px; }
.club-bar__claim { opacity: .72; letter-spacing: .04em; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,35,102,.08);
}
.site-header__inner {
  min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { display: inline-flex; gap: 14px; align-items: center; text-decoration: none; min-width: 0; }
.brand-mark {
  width: 54px; height: 54px; border-radius: 50%;
  border: 2px solid var(--gold); color: var(--blue);
  display: grid; place-items: center; position: relative; flex: 0 0 auto;
  transform: rotate(-7deg);
}
.brand-mark__r { font-family: Georgia, serif; font-size: 26px; font-weight: 700; }
.brand-mark__route {
  position: absolute; width: 17px; height: 2px; background: var(--gold);
  right: -10px; bottom: 8px; transform: rotate(-25deg);
}
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { color: var(--blue); font-family: Georgia, "Times New Roman", serif; font-size: 22px; }
.brand-copy small { color: var(--muted); margin-top: 5px; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  text-decoration: none; color: var(--blue); font-weight: 750; font-size: 15px;
  position: relative; padding: 8px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px;
  background: var(--gold); transition: right .2s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(212,175,55,.22), transparent 28%),
    linear-gradient(135deg, var(--blue) 0%, #062d72 55%, #0c428f 100%);
  color: #fff;
}
.hero__grid {
  min-height: 650px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 72px; align-items: center;
  padding-block: 92px;
}
.eyebrow {
  margin: 0 0 12px; color: var(--blue); font-weight: 850; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow--light { color: var(--gold-soft); }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1, .subhero h1 {
  font-family: Georgia, "Times New Roman", serif; font-weight: 500;
  margin: 0; letter-spacing: -.035em; line-height: 1.03;
}
.hero h1 { max-width: 760px; font-size: clamp(52px, 7vw, 92px); }
.hero__lead { max-width: 760px; font-size: clamp(19px, 2vw, 23px); line-height: 1.55; color: rgba(255,255,255,.88); }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 12px 20px; border-radius: 999px;
  text-decoration: none; font-weight: 800; line-height: 1.2;
  border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.button--gold { background: var(--gold); color: var(--blue-deep); }
.button--ghost { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.button--blue { background: var(--blue); color: #fff; }
.button--light { background: #fff; color: var(--blue); }
.button--outline { color: var(--blue); border-color: rgba(0,35,102,.22); background: #fff; }

.hero__passport { display: grid; place-items: center; perspective: 1000px; }
.passport-card {
  width: min(100%, 390px); aspect-ratio: .76; border-radius: 24px;
  background: linear-gradient(145deg, #f6e8c9, #e8d29f);
  color: var(--blue); padding: 32px;
  box-shadow: 0 35px 90px rgba(0,0,0,.28);
  transform: rotate(4deg); position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.5);
}
.passport-card::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 15px, rgba(0,35,102,.025) 15px 16px);
}
.passport-card__top { display: flex; justify-content: space-between; font-weight: 900; letter-spacing: .16em; font-size: 12px; position: relative; }
.passport-card__stamp {
  width: 176px; height: 176px; margin: 58px auto 54px; border: 3px solid rgba(0,35,102,.58);
  border-radius: 50%; display: grid; place-content: center; text-align: center; transform: rotate(-9deg); position: relative;
}
.passport-card__stamp::after {
  content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(0,35,102,.48); border-radius: 50%;
}
.passport-card__stamp span { font: 700 34px/1 Georgia, serif; }
.passport-card__stamp small { margin-top: 10px; font-weight: 800; letter-spacing: .12em; }
.passport-card__route { display: flex; align-items: center; position: relative; }
.route-dot {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(0,35,102,.35); font-size: 10px; font-weight: 900; background: rgba(255,255,255,.35);
}
.route-dot.done { background: var(--blue); color: #fff; }
.route-dot.next { background: var(--gold); border-color: var(--gold); }
.route-line { flex: 1; height: 1px; background: rgba(0,35,102,.3); }
.passport-card > p { margin-top: 35px; font-size: 13px; font-weight: 800; position: relative; }

.section { padding: 88px 0; }
.section--cream { background: var(--cream-light); }
.section--blue { background: var(--blue); color: #fff; }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.section-heading h2, .current-station h2, .feature-card h2, .support h2, .facts h2,
.editorial h2, .support-panel h2, .external-panel h2, .station h2 {
  color: var(--blue); font: 500 clamp(32px, 4vw, 52px)/1.1 Georgia, "Times New Roman", serif;
  margin: 0 0 18px; letter-spacing: -.025em;
}
.section-heading p { color: var(--muted); }
.section-heading--split > p { font-size: 18px; margin: 0; }
.section--blue h2 { color: #fff; }

.route {
  list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: rgba(0,35,102,.12); border: 1px solid rgba(0,35,102,.12); border-radius: 20px; overflow: hidden;
}
.route__item { background: #fff; min-width: 0; }
.route__item a { min-height: 245px; padding: 24px; display: flex; flex-direction: column; text-decoration: none; }
.route__item a:hover { background: #fffdf7; }
.route__number { color: var(--gold); font: 500 42px/1 Georgia, serif; }
.route__state { margin: 10px 0 28px; color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.route__item strong { color: var(--blue); line-height: 1.25; margin-bottom: 8px; }
.route__item time, .route__meta { font-size: 14px; color: var(--muted); }
.route__meta { margin-top: auto; padding-top: 22px; }
.route__item--done { box-shadow: inset 0 4px 0 var(--blue); }
.route__item--next { box-shadow: inset 0 4px 0 var(--gold); }
.route__item--next .route__state { color: #765c00; }
.route__item--sold .route__state { color: #8d3740; }

.current-station {
  display: grid; grid-template-columns: .4fr 1fr; gap: 70px; align-items: start;
}
.current-station__label { border-top: 1px solid var(--line); padding-top: 24px; }
.big-number { display: block; color: var(--gold); font: 500 clamp(78px, 10vw, 130px)/.85 Georgia, serif; }
.current-station__label p { color: var(--muted); }
.current-station__content { max-width: 760px; }
.lead { font-size: 20px; line-height: 1.6; }
.current-station__content .button { margin-top: 16px; }

.support { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.support p { color: rgba(255,255,255,.85); }
.text-link { font-weight: 850; color: var(--blue); text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.text-link--light { color: #fff; }

.story-preview {
  display: grid; grid-template-columns: 1fr 1fr; text-decoration: none;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff;
}
.story-preview__visual {
  min-height: 330px; display: grid; place-items: center;
  background:
    linear-gradient(120deg, rgba(0,35,102,.9), rgba(0,35,102,.45)),
    repeating-linear-gradient(135deg, #d7b95c 0 18px, #e5cf89 18px 36px);
}
.story-preview__stamp {
  width: 150px; height: 150px; border-radius: 50%; border: 3px solid rgba(255,255,255,.8);
  color: #fff; display: grid; place-content: center; text-align: center;
  font: 700 35px/1 Georgia, serif; transform: rotate(-10deg);
}
.story-preview__copy { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.story-preview__copy small { color: var(--gold); font-weight: 900; letter-spacing: .12em; }
.story-preview__copy strong { color: var(--blue); font: 500 38px/1.12 Georgia, serif; margin: 12px 0 34px; }
.story-preview__copy span { font-weight: 850; color: var(--blue); }

.two-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-card { background: #fff; border-radius: var(--radius); padding: 42px; border: 1px solid rgba(0,35,102,.08); }
.feature-card--accent { border-top: 5px solid var(--gold); }

.subhero { padding: 86px 0 76px; }
.subhero--blue { background: linear-gradient(135deg, var(--blue-deep), var(--blue-2)); color: #fff; }
.subhero--passport {
  background:
    radial-gradient(circle at 82% 20%, rgba(212,175,55,.26), transparent 24%),
    linear-gradient(180deg, var(--cream-light), #fff);
}
.subhero__inner { max-width: 900px; }
.subhero h1 { font-size: clamp(44px, 6vw, 72px); }
.subhero--blue .eyebrow { color: var(--gold-soft); }
.subhero--blue .lead { color: rgba(255,255,255,.84); }

.facts { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.fact-list { margin: 0; }
.fact-list > div {
  display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 18px 0; border-bottom: 1px solid var(--line);
}
.fact-list dt { color: var(--muted); }
.fact-list dd { margin: 0; color: var(--blue); font-weight: 750; }

.editorial { display: grid; grid-template-columns: .55fr 1.45fr; gap: 80px; }
.editorial__aside { color: var(--blue); border-top: 2px solid var(--gold); padding-top: 20px; }
.editorial__number { display: block; font: 500 72px/1 Georgia, serif; }
.editorial__aside span:last-child { color: var(--muted); }
.editorial__body { max-width: 720px; }

.support-panel {
  display: grid; grid-template-columns: 160px 1fr; gap: 48px; max-width: 980px;
  border: 1px solid rgba(0,35,102,.12); border-radius: var(--radius); padding: 44px;
  box-shadow: var(--shadow);
}
.support-panel__mark {
  width: 130px; height: 130px; border-radius: 50%; background: var(--gold); color: var(--blue);
  display: grid; place-items: center; font: 400 80px/1 Georgia, serif;
}
.external-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.external-panel p { color: rgba(255,255,255,.85); }

.passport-layout { display: grid; grid-template-columns: 230px 1fr; gap: 70px; align-items: start; }
.passport-nav {
  position: sticky; top: 118px; border: 1px solid rgba(0,35,102,.1); border-radius: 18px; padding: 16px;
  background: #fff; box-shadow: 0 12px 35px rgba(0,35,102,.06);
}
.passport-nav__title { margin: 4px 10px 12px; color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.passport-nav a { display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 10px; text-decoration: none; font-size: 14px; color: var(--blue); }
.passport-nav a:hover, .passport-nav a.is-current { background: var(--cream-light); }
.passport-nav a span { color: var(--gold); font-weight: 900; }

.station { display: grid; grid-template-columns: 80px 1fr; scroll-margin-top: 125px; }
.station__rail { display: flex; flex-direction: column; align-items: center; }
.station__number {
  width: 58px; height: 58px; border-radius: 50%; border: 2px solid var(--gold);
  display: grid; place-items: center; color: var(--blue); font-weight: 900; background: #fff; z-index: 1;
}
.station--done .station__number { color: #fff; background: var(--blue); border-color: var(--blue); }
.station--current .station__number { background: var(--gold); border-color: var(--gold); }
.station__line { width: 1px; flex: 1; min-height: 100%; background: var(--line); }
.station__body { padding: 4px 0 88px 24px; max-width: 790px; }
.station__topline { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 24px; }
.station__topline time { color: var(--muted); font-size: 14px; }
.status {
  display: inline-flex; padding: 6px 10px; border-radius: 999px;
  background: var(--cream-light); color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
}
.status--done { background: #e8eef9; }
.status--current { background: var(--gold); color: var(--blue-deep); }
.status--sold { background: #f8e7e8; color: #842d38; }

.pending-content {
  margin: 30px 0; padding: 28px; border: 1px dashed rgba(0,35,102,.25);
  border-radius: 16px; background: var(--cream-light); display: grid; grid-template-columns: 48px 1fr; gap: 18px;
}
.pending-content__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; color: var(--blue); }
.pending-content p { margin-bottom: 0; color: var(--muted); }
.info-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin: 28px 0;
}
.info-strip > div { background: var(--cream-light); padding: 20px; display: grid; }
.info-strip small { color: var(--muted); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; }
.info-strip span { color: var(--muted); font-size: 14px; }
.sold-note { padding: 18px 20px; border-left: 4px solid #9f3d48; background: #fbefef; }
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin: 32px 0; }
.gallery figure { margin: 0; }
.gallery img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; }
.gallery figcaption { color: var(--muted); font-size: 13px; margin-top: 8px; }
.station-video { width: 100%; border-radius: 16px; background: #000; margin: 30px 0; }

.site-footer { background: #101a31; color: #fff; padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.site-footer h2 { margin: 0 0 18px; font-size: 17px; color: #fff; }
.site-footer p { color: rgba(255,255,255,.8); }
.site-footer a { color: #fff; text-underline-offset: 4px; }
.muted { opacity: .67; }

@media (max-width: 980px) {
  .main-nav {
    display: none; position: absolute; left: 20px; right: 20px; top: calc(100% + 8px);
    background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
    padding: 12px; flex-direction: column; align-items: stretch; gap: 0;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; border-radius: 10px; }
  .main-nav a:hover { background: var(--cream-light); }
  .main-nav a::after { display: none; }
  .nav-toggle {
    display: inline-flex; gap: 10px; align-items: center; border: 1px solid var(--line);
    background: #fff; color: var(--blue); border-radius: 999px; padding: 9px 14px; font-weight: 800;
  }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; gap: 60px; }
  .hero__passport { max-width: 480px; justify-self: center; width: 100%; }
  .route { grid-template-columns: 1fr 1fr; }
  .current-station, .support, .facts, .editorial, .external-panel { grid-template-columns: 1fr; gap: 34px; }
  .passport-layout { grid-template-columns: 1fr; }
  .passport-nav { position: static; display: flex; overflow-x: auto; gap: 4px; }
  .passport-nav__title { display: none; }
  .passport-nav a { flex: 0 0 auto; }
}

@media (max-width: 720px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .club-bar__claim { display: none; }
  .site-header__inner { min-height: 76px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 10px; }
  .nav-toggle span:first-child { display: none; }
  .hero__grid { padding-block: 60px; }
  .hero h1 { font-size: clamp(46px, 14vw, 70px); }
  .passport-card { max-width: 320px; padding: 24px; }
  .passport-card__stamp { width: 145px; height: 145px; margin: 40px auto; }
  .section { padding: 64px 0; }
  .section-heading--split, .two-cards, .story-preview, .footer-grid { grid-template-columns: 1fr; }
  .route { grid-template-columns: 1fr; }
  .route__item a { min-height: auto; }
  .route__meta { margin-top: 18px; padding-top: 0; }
  .story-preview__visual { min-height: 220px; }
  .story-preview__copy { padding: 30px; }
  .feature-card { padding: 28px; }
  .support-panel { grid-template-columns: 1fr; padding: 28px; }
  .support-panel__mark { width: 82px; height: 82px; font-size: 52px; }
  .fact-list > div { grid-template-columns: 1fr; gap: 4px; }
  .station { grid-template-columns: 54px 1fr; }
  .station__number { width: 46px; height: 46px; font-size: 13px; }
  .station__body { padding-left: 14px; padding-bottom: 68px; }
  .station__topline { align-items: flex-start; flex-direction: column; gap: 8px; }
  .info-strip, .gallery { grid-template-columns: 1fr; }
  .pending-content { grid-template-columns: 1fr; }
  .footer-grid { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}


.brand-mark--fleur {
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(0,35,102,.04);
  border-color: rgba(212,175,55,.8);
  transform: none;
}
.brand-mark--fleur::after { content: none; }
.hero__visual { display: grid; gap: 24px; }
.hero-figure {
  margin: 0; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.22);
}
.hero-figure img { display: block; width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.hero-figure figcaption {
  padding: 12px 16px 16px; color: rgba(255,255,255,.88); font-size: 14px; line-height: 1.5;
}
.hero__passport { margin-top: 0; }
.stage-teasers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stage-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid rgba(0,35,102,.08);
}
.stage-card img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.stage-card__body { padding: 26px; }
.stage-card__body h2 { font-size: clamp(30px,3vw,40px); margin-bottom: 12px; }
.image-band { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: center; }
.image-band__figure { margin: 0; }
.image-band__figure img { width: 100%; display: block; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-band__copy h2 { margin-top: 0; }
.station-media { margin: 28px 0; }
.station-media img { display: block; width: 100%; border-radius: 18px; box-shadow: var(--shadow); }
.image-placeholder-note {
  display: inline-block; margin: 10px 0 22px; padding: 8px 12px; border-radius: 999px;
  background: var(--cream-light); border: 1px dashed rgba(0,35,102,.2); color: var(--muted); font-size: 14px;
}
.footer-logo-wrap { padding-bottom: 20px; }
.footer-logo { max-width: min(100%, 420px); display: block; }
@media (max-width: 980px) {
  .image-band, .stage-teasers { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-figure figcaption { font-size: 13px; }
  .footer-logo { max-width: 280px; }
}

.finale-image {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}
.finale-image figure { margin: 0; }
.finale-image img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.finale-image h2 {
  color: var(--blue);
  font: 500 clamp(32px, 4vw, 52px)/1.1 Georgia, "Times New Roman", serif;
  margin: 0 0 18px;
  letter-spacing: -.025em;
}
@media (max-width: 980px) {
  .finale-image { grid-template-columns: 1fr; }
}

/* v4: ruhigere Bildgrößen auf Desktop + schnellere Darstellung */
@media (min-width: 981px) {
  .hero__grid {
    grid-template-columns: 1.42fr .58fr;
    gap: 56px;
  }
  .hero__visual {
    width: min(100%, 430px);
    justify-self: end;
  }
  .hero-figure img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .hero__passport {
    width: 82%;
    justify-self: end;
  }
  .stage-teasers {
    max-width: 980px;
    margin-inline: auto;
  }
  .stage-card img {
    aspect-ratio: 16 / 10;
    max-height: 300px;
    object-fit: cover;
  }
  .station-media {
    max-width: 620px;
  }
  .station-media img {
    max-height: 430px;
    object-fit: cover;
  }
  .finale-image {
    grid-template-columns: .9fr 1.1fr;
    max-width: 1040px;
    margin-inline: auto;
  }
  .finale-image figure {
    max-width: 520px;
  }
  .finale-image img {
    max-height: 420px;
    object-fit: cover;
  }
}


/* =========================================================
   v5 · Desktop refinement
   Mobile/tablet behavior below 980px remains unchanged.
   ========================================================= */

:root {
  --blue: #002366;
  --blue-2: #002366;
  --blue-deep: #002366;
  --gold: #D4AF37;
  --gold-dark: #B8860B;
  --cream: #F5E6C8;
  --cream-light: #FFF5E1;
  --ink: #002366;
  --muted: #5f6680;
}

@media (min-width: 981px) {
  body {
    background: var(--cream-light);
    color: var(--blue);
  }

  .wrap {
    width: min(calc(100% - 64px), 1120px);
  }

  /* Header */
  .site-header__inner {
    min-height: 82px;
  }

  /* Hero: tighter, calmer, stronger hierarchy */
  .hero {
    background:
      linear-gradient(90deg, rgba(0,35,102,.98) 0 57%, rgba(0,35,102,.94) 57% 100%);
    position: relative;
  }

  .hero::after {
    content: "⚜";
    position: absolute;
    right: 4%;
    top: 4%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 280px;
    line-height: 1;
    color: rgba(212,175,55,.11);
    pointer-events: none;
  }

  .hero__grid {
    min-height: 520px;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    gap: 56px;
    padding-block: 64px;
    align-items: center;
  }

  .hero__copy {
    align-self: center;
  }

  .hero h1 {
    font-size: clamp(58px, 5.5vw, 78px);
    max-width: 700px;
  }

  .hero__lead {
    font-size: 20px;
    max-width: 670px;
    margin-top: 22px;
  }

  .hero__visual {
    width: 100%;
    max-width: 420px;
    justify-self: end;
    position: relative;
    display: block;
  }

  .hero-figure {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.55);
    box-shadow: 0 24px 54px rgba(0,0,0,.28);
    margin: 0;
  }

  .hero-figure img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .hero-figure figcaption {
    padding: 10px 14px 12px;
    font-size: 12px;
    background: rgba(0,35,102,.88);
  }

  .hero__passport {
    position: absolute;
    width: 185px;
    right: -24px;
    bottom: -46px;
    z-index: 2;
  }

  .passport-card {
    width: 185px;
    padding: 17px;
    border-radius: 15px;
    transform: rotate(3deg);
  }

  .passport-card__top {
    font-size: 7px;
  }

  .passport-card__stamp {
    width: 84px;
    height: 84px;
    margin: 22px auto 20px;
    border-width: 2px;
  }

  .passport-card__stamp span {
    font-size: 18px;
  }

  .passport-card__stamp small {
    font-size: 7px;
    margin-top: 5px;
  }

  .passport-card__route .route-dot {
    width: 18px;
    height: 18px;
    font-size: 6px;
  }

  .passport-card > p {
    font-size: 7px;
    margin-top: 15px;
  }

  /* Main sections */
  .section {
    padding: 72px 0;
  }

  .section--cream {
    background: var(--cream);
  }

  .section-heading--split {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 72px;
    align-items: center;
  }

  /* Station overview: compact timeline */
  .route {
    max-width: 1080px;
    margin-inline: auto;
    border-radius: 16px;
    gap: 0;
    background: rgba(0,35,102,.1);
  }

  .route__item a {
    min-height: 205px;
    padding: 22px 20px;
  }

  .route__number {
    font-size: 36px;
  }

  .route__state {
    margin: 8px 0 18px;
  }

  .route__item strong {
    font-size: 16px;
  }

  /* Current station: stronger card, less floating whitespace */
  .current-station {
    max-width: 1040px;
    grid-template-columns: 220px minmax(0,1fr);
    gap: 52px;
    padding: 42px 46px;
    border-radius: 22px;
    background: var(--cream-light);
    border: 1px solid rgba(0,35,102,.1);
    box-shadow: 0 18px 45px rgba(0,35,102,.08);
  }

  .current-station__label {
    border-top: 0;
    border-right: 1px solid rgba(0,35,102,.13);
    padding: 0 36px 0 0;
  }

  .big-number {
    font-size: 102px;
  }

  .current-station__content h2 {
    font-size: 46px;
  }

  /* Station 2 & 3 as restrained visual cards */
  .stage-teasers {
    max-width: 1040px;
    gap: 28px;
  }

  .stage-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 250px;
  }

  .stage-card img {
    width: 190px;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .stage-card__body {
    padding: 28px 30px;
  }

  .stage-card__body h2 {
    font-size: 31px;
  }

  /* Sponsorship section: more editorial, less billboard-like */
  .support {
    max-width: 1040px;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    padding-block: 8px;
  }

  /* Alternating story sections */
  .story-preview {
    max-width: 1040px;
    margin-inline: auto;
    grid-template-columns: .9fr 1.1fr;
    min-height: 320px;
  }

  .story-preview__visual {
    min-height: 320px;
  }

  .story-preview__copy {
    padding: 42px;
  }

  .story-preview__copy strong {
    font-size: 34px;
  }

  .finale-image {
    max-width: 1040px;
    grid-template-columns: .95fr 1.05fr;
    gap: 48px;
  }

  .finale-image figure {
    max-width: 440px;
  }

  .finale-image img {
    max-height: 340px;
    object-fit: cover;
  }

  /* Bottom cards */
  .two-cards {
    max-width: 1040px;
    margin-inline: auto;
    gap: 28px;
  }

  .feature-card {
    padding: 36px;
    min-height: 265px;
  }

  /* Footer */
  .site-footer {
    padding: 52px 0;
  }

  .footer-logo {
    max-width: 330px;
  }
}


/* =========================================================
   v6 · korrigierter und vereinfachter Startseiten-Hero
   ========================================================= */

.hero-figure {
  position: relative;
}

.hero-figure figcaption {
  display: none;
}

.hero-figure__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0,35,102,.90);
  color: #F5E6C8;
  border: 1px solid rgba(212,175,55,.75);
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: .10em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.hero-figure__badge strong {
  color: #D4AF37;
  font-size: 13px;
}

.hero-figure__lily {
  color: #D4AF37;
  font: 30px/1 Georgia, "Times New Roman", serif;
}

@media (min-width: 981px) {
  .hero {
    min-height: 0;
  }

  .hero::after {
    content: none;
  }

  .hero__grid {
    min-height: 500px;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    gap: 64px;
    padding-block: 58px;
  }

  .hero__copy {
    max-width: 660px;
  }

  .hero h1 {
    font-size: clamp(56px, 4.9vw, 72px);
    line-height: 1.01;
    max-width: 650px;
  }

  .hero__lead {
    font-size: 19px;
    line-height: 1.55;
    max-width: 620px;
  }

  .hero__visual {
    display: block;
    width: 100%;
    max-width: 455px;
    justify-self: end;
  }

  .hero-figure {
    width: 100%;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.55);
    box-shadow: 0 26px 60px rgba(0,0,0,.24);
  }

  .hero-figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .hero__passport,
  .passport-card {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .hero-figure__badge {
    right: 12px;
    bottom: 12px;
  }
}


/* v7 · Startseitenbild vollständig anzeigen */
@media (min-width: 981px) {
  .hero-figure img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }
}
