:root {
  --bg: #071018;
  --bg-2: #0c1822;
  --bg-3: #122230;
  --ice: #b9d8ea;
  --ice-2: #7eb4cd;
  --foam: #eef6fb;
  --gold: #c9b089;
  --text: #e8f0f5;
  --muted: #8aa0ae;
  --line: rgba(185, 216, 234, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --nav-h: 68px;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Sora", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--foam);
  color: var(--bg);
  padding: 8px 12px;
}

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  z-index: 40;
  background: linear-gradient(180deg, rgba(7,16,24,0.86), rgba(7,16,24,0));
  backdrop-filter: blur(8px);
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}
.brand strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.18em;
}
.brand span { color: var(--muted); }
.nav-links {
  display: flex;
  gap: 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--foam); }

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: drift 28s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,16,24,0.25) 0%, rgba(7,16,24,0.15) 40%, rgba(7,16,24,0.88) 100%),
    linear-gradient(90deg, rgba(7,16,24,0.45), transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 0 8vw 10vh;
  max-width: 920px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin: 14px 0 18px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--ice);
}
.lede {
  max-width: 38ch;
  color: var(--ice);
  font-size: 18px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--foam);
  color: var(--bg);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn.ghost {
  background: transparent;
  color: var(--foam);
  border: 1px solid var(--line);
}
.btn:hover { filter: brightness(1.06); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
.stat {
  background: var(--bg-2);
  padding: 22px 20px;
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}
.stat span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* TIMELINE */
.timeline-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 30;
  background: #071018;
  border-bottom: 1px solid var(--line);
}
.timeline {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 18px;
  scrollbar-width: none;
}
.timeline::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.chip.active, .chip:hover {
  color: var(--bg);
  background: var(--ice);
  border-color: var(--ice);
}

/* DAYS */
.days { padding: 28px 0 80px; }
#reise { scroll-margin-top: var(--nav-h); }
.day {
  padding: 56px 6vw 12px;
  scroll-margin-top: 132px;
}
.day-head {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
  max-width: 1400px;
}
.day-kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.day-kicker small {
  display: block;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-size: 11px;
}
.day h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  margin: 0 0 10px;
}
.day p.lead {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}
.day-count {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.grid {
  columns: 4 230px;
  column-gap: 10px;
}
.card {
  break-inside: avoid;
  margin: 0 0 10px;
  position: relative;
  border: 0;
  padding: 0;
  background: var(--bg-3);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  display: block;
}
.card img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.card:hover img { transform: scale(1.04); }
.card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(0,0,0,0.45));
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover::after { opacity: 1; }

/* VIDEOS */
.films {
  padding: 72px 6vw 40px;
  border-top: 1px solid var(--line);
}
.films h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 42px;
  margin: 0 0 8px;
}
.films .intro {
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 28px;
}
.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.film {
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.film video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  display: block;
}
.film figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 13px;
}

/* FOOTER */
.footer {
  padding: 48px 6vw 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}

/* LIGHTBOX */
.lb {
  position: fixed;
  inset: 0;
  background: #05090d;
  z-index: 100;
  display: none;
  flex-direction: column;
}
.lb.open { display: flex; }
.lb-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  color: var(--muted);
  font-size: 13px;
}
.lb-stage {
  flex: 1;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  min-height: 0;
}
.lb-stage img {
  max-height: calc(100svh - 130px);
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: var(--shadow);
}
.lb-nav, .icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--foam);
  font-size: 22px;
  display: grid;
  place-items: center;
}
.lb-nav { margin: 0 auto; }
.lb-nav:hover, .icon-btn:hover { background: rgba(255,255,255,0.08); }
.lb-meta {
  padding: 10px 22px 18px;
  text-align: center;
  color: var(--ice);
}
.lb-meta small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .day-head { grid-template-columns: 1fr; gap: 10px; }
  .nav-links { display: none; }
  .grid { columns: 2 140px; }
  .lb-stage { grid-template-columns: 1fr; }
  .lb-nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
  html { scroll-behavior: auto; }
}
