:root {
  --accent: oklch(0.78 0.13 80);
  --accent-deep: oklch(0.55 0.13 60);
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --line: oklch(0.78 0.13 80 / 0.45);
  --line-soft: oklch(0.78 0.13 80 / 0.18);
  --cream: oklch(0.96 0.02 85);
  --cream-soft: oklch(0.88 0.025 85 / 0.82);
  --cream-faint: oklch(0.88 0.025 85 / 0.4);
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
body {
  font-family: var(--sans);
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------------- Page shell ---------------- */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(28px, 4vh, 56px) clamp(20px, 5vw, 64px) clamp(40px, 6vh, 72px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vh, 56px);
}

/* ---------------- Topbar / Logo ---------------- */
.topbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.logo {
  width: clamp(240px, 38vw, 480px);
  aspect-ratio: 733.33 / 114.36;
  color: var(--cream);
  background-color: currentColor;
  -webkit-mask: url("billiardino-logo.svg") no-repeat center / contain;
  mask: url("billiardino-logo.svg") no-repeat center / contain;
  filter: drop-shadow(0 4px 22px rgba(0,0,0,0.55));
}

.tagline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--cream-soft);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  padding: 0 36px;
  margin: 0;
}
.tagline::before, .tagline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1px;
  background: var(--accent);
}
.tagline::before { left: 0; }
.tagline::after  { right: 0; }

/* ---------------- Hero ---------------- */
.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vh, 20px);
}
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-soft);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.headline {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-wrap: balance;
  padding-bottom: 0.12em;
}
.headline .accent {
  color: var(--accent);
  font-style: italic;
}
.sub {
  max-width: 540px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-soft);
  margin: 0;
  font-weight: 400;
}

/* ---------------- Cards (2-column chooser) ---------------- */
.cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.card {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.4vh, 24px);
  padding: clamp(16px, 2.4vh, 28px) clamp(20px, 3vw, 36px);
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
              background 320ms ease;
}
.card + .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--line-soft);
}
.card:hover, .card:focus-visible {
  transform: translateY(-2px);
  background: var(--bg-soft);
  outline: none;
}
.card:hover .arrow, .card:focus-visible .arrow {
  transform: translateX(6px);
}
.card:hover .card-city, .card:focus-visible .card-city {
  color: var(--accent);
}

.card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.card-city {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--cream);
  transition: color 320ms ease;
}

/* Status (Zürich — heute geöffnet) */
.card-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 oklch(0.78 0.13 80 / 0.55);
  animation: pulse 2.4s ease-out infinite;
  display: inline-block;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.78 0.13 80 / 0.55); }
  70%  { box-shadow: 0 0 0 10px oklch(0.78 0.13 80 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.78 0.13 80 / 0); }
}

/* Badge (Luzern — Neu · Eröffnung) */
.card-badge {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: oklch(0.78 0.13 80 / 0.05);
  border-radius: 999px;
}

/* Meta grid (Adresse, Öffnungszeiten, …) */
.card-meta {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vh, 16px);
  margin: 0;
}
.card-meta .row {
  display: grid;
  grid-template-columns: 110px 1fr;
  column-gap: 16px;
  align-items: baseline;
}
.card-meta dt {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.card-sched-row dd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.card-meta dd {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.55;
  color: var(--cream);
  font-weight: 400;
}

/* Season toggle */
.season-toggle {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--cream-soft);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  align-self: flex-start;
  transition: border-color 240ms ease, color 240ms ease;
}
.season-toggle:hover { border-color: var(--line); }
.season-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.season-toggle [data-season] { color: var(--cream-faint); }
.season-toggle [data-season].on { color: var(--accent); }
.season-toggle .sep { color: var(--cream-faint); }

/* Schedule table */
.sched {
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  width: 100%;
  max-width: 280px;
}
.sched td {
  padding: 2px 0;
  font-size: clamp(12px, 1.2vw, 13px);
  line-height: 1.5;
  font-weight: 400;
}
.sched td:first-child {
  color: var(--cream-soft);
  padding-right: 14px;
  width: 64px;
}
.sched td:last-child {
  color: var(--cream);
}

/* CTA */
.cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--sans);
  font-size: clamp(11px, 1.2vw, 13px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  padding-top: clamp(8px, 1.4vh, 14px);
  border-top: 1px solid var(--line-soft);
}
.arrow {
  width: 36px;
  height: 12px;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------------- Reduced motion ---------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------------- Mobile ---------------- */
@media (max-width: 720px) {
  .page { padding: 24px 16px 36px; gap: 28px; }
  .logo { width: 200px; }
  .tagline { font-size: 9px; letter-spacing: 0.3em; padding: 0 24px; }
  .tagline::before, .tagline::after { width: 16px; }
  .eyebrow { font-size: 9px; gap: 10px; }
  .eyebrow::before, .eyebrow::after { width: 18px; }
  .headline { font-size: 28px; line-height: 1.1; }
  .headline br { display: none; }
  .sub { font-size: 13px; max-width: 320px; line-height: 1.45; }

  .cards {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 24px 4px;
    gap: 14px;
  }
  .card + .card::before {
    /* vertical divider out, horizontal in */
    left: 8%;
    right: 8%;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .card-city { font-size: 30px; }
  .card-status { font-size: 10px; letter-spacing: 0.18em; }
  .card-badge { font-size: 9px; padding: 5px 10px; letter-spacing: 0.18em; }
  .card-meta .row { grid-template-columns: 90px 1fr; column-gap: 10px; }
  .card-meta dt { font-size: 9px; letter-spacing: 0.18em; }
  .card-meta dd { font-size: 12.5px; }
  .sched td { font-size: 12px; }
  .sched td:first-child { width: 58px; padding-right: 10px; }
  .cta { font-size: 10px; letter-spacing: 0.2em; }
  .arrow { width: 28px; height: 10px; }
}
