/* =========================================================
   SUP SLOVACA — premium outdoor design system
   Patagonia/Arc'teryx-inspired editorial vibe
   ========================================================= */

:root {
  /* surfaces */
  --bg: #f4efe6;            /* warm off-white, sandy paper */
  --paper: #ffffff;
  --paper-2: #faf6ed;
  --ink: #0a1f33;           /* deep navy ink */
  --ink-2: #2f4055;
  --mute: #6b7280;
  --mute-2: #93999f;
  --line: #e0d6c1;          /* warm hairline */
  --line-2: #c8bca2;
  --line-strong: #a89c80;

  /* water palette (from logo) */
  --water-deep: #023e8a;
  --water: #0077b6;
  --water-2: #00b4d8;
  --aqua: #48cae4;
  --sky: #ade8f4;
  --foam: #caf0f8;

  /* earthy accents — used sparingly */
  --sand: #e8dec5;
  --moss: #38614a;
  --burn: #c44d3b;          /* the patagonia red, only for primary CTA */
  --sun: #d9a441;

  /* typography */
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --serif: 'Playfair Display', 'DM Sans', serif;

  /* spacing scale */
  --s-0: 4px;
  --s-1: 8px;
  --s-2: 12px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 72px;
  --s-8: 96px;
  --s-9: 144px;

  /* radii */
  --r-0: 0;
  --r-1: 2px;
  --r-2: 4px;
  --r-3: 8px;
  --r-4: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
em { font-style: italic; font-family: var(--serif); font-weight: 700; }

/* selection */
::selection { background: var(--water); color: #fff; }

/* =========================================================
   LAYOUT primitives
   ========================================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 960px; }
.section {
  padding: var(--s-8) 0;
  position: relative;
}
@media (max-width: 768px) {
  .section { padding: var(--s-7) 0; }
  .container { padding: 0 20px; }
}

/* =========================================================
   TYPE
   ========================================================= */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--line-strong);
}
.eyebrow--light { color: rgba(255,255,255,0.65); }
.eyebrow--light::before { background: rgba(255,255,255,0.35); }

.h-display {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
}
.h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-4);
}
.h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: var(--s-3) 0 var(--s-4);
}
.h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-2);
}
.h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  margin: 0 0 var(--s-2);
}
.lead {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 64ch;
  text-wrap: pretty;
  margin: 0 0 var(--s-5);
}
.muted { color: var(--mute); }
.dim { color: var(--mute-2); }

/* light text on dark surfaces */
.section--dark .h1,
.section--dark .h2,
.section--dark .h3,
.section--dark .lead,
.section--dark p { color: #f3ede1; }
.section--dark .muted { color: rgba(243,237,225,0.6); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(244,239,230,0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img {
  height: 58px;
  width: auto;
  transition: transform .25s ease;
}
.nav__brand:hover img { transform: scale(1.04); }
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--water); }
.nav__links a.is-current {
  color: var(--water-deep);
}
.nav__links a.is-current::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--water);
}
.nav__cta {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: all .15s ease;
}
.nav__cta:hover {
  background: var(--burn);
  border-color: var(--burn);
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav { padding: 14px 20px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all .15s ease;
  cursor: pointer;
  background: transparent;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--burn);
  border-color: var(--burn);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(10,31,51,0.04);
}
.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover { background: var(--foam); }
.btn--small { padding: 8px 14px; font-size: 12px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: gap .15s ease;
}
.link-arrow:hover { gap: 14px; color: var(--water); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 16%, rgba(255,193,107,0.42) 0%, rgba(255,140,100,0.16) 30%, rgba(255,255,255,0) 58%),
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(0,180,216,0.22) 0%, transparent 72%),
    linear-gradient(180deg, #fdf3e2 0%, #f6e9d2 50%, #ecdcc0 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0;
}

/* tropical sun */
.hero__sun {
  position: absolute;
  top: 8%;
  right: 11%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,247,219,0.95) 0%, rgba(255,209,95,0.85) 36%, rgba(255,150,90,0.34) 62%, rgba(255,150,90,0) 76%);
  filter: blur(1px);
  z-index: 1;
  pointer-events: none;
  animation: heroSunFloat 9s ease-in-out infinite;
}
.hero__sun::before {
  content: '';
  position: absolute;
  inset: -70px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(255,206,110,0.22) 0deg 5deg, rgba(255,206,110,0) 5deg 16deg);
  -webkit-mask: radial-gradient(circle, #000 26%, transparent 66%);
          mask: radial-gradient(circle, #000 26%, transparent 66%);
  animation: heroSpin 70s linear infinite;
}
@media (max-width: 760px) {
  .hero__sun { width: 200px; height: 200px; right: -16px; top: 4%; }
}

/* palm fronds framing the corners */
.hero__palm {
  position: absolute;
  top: -8px;
  width: min(32vw, 340px);
  z-index: 1;
  opacity: 0.10;
  pointer-events: none;
}
.hero__palm--left { left: -28px; }
.hero__palm--right { right: -28px; transform: scaleX(-1); }
@media (max-width: 760px) {
  .hero__palm { width: 200px; opacity: 0.08; }
  .hero__palm--right { display: none; }
}

@keyframes heroSunFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes heroSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__sun { animation: none; }
  .hero__sun::before { animation: none; }
}
.hero__topo {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}
.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--s-8) 32px var(--s-6);
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: var(--s-5) 0 var(--s-4);
  color: var(--ink);
  max-width: 16ch;
}
.hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--water);
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 var(--s-5);
  text-wrap: pretty;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* hero footer band — stats + waves */
.hero__band {
  margin-top: var(--s-7);
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.hero__stats {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hero__stat b {
  display: block;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.hero__stat span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mute);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 20px; }
}

/* live dot */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--burn);
  margin-right: 6px;
  animation: pulse 1.8s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* scroll hint */
.hero__scroll {
  position: absolute;
  right: 32px;
  bottom: 32px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  writing-mode: vertical-rl;
  z-index: 2;
}

/* =========================================================
   SECTIONS / surfaces
   ========================================================= */
.section--paper { background: var(--paper); border-top: 1px solid var(--line); }
.section--sand  { background: var(--sand); }
.section--dark  {
  background: var(--ink);
  color: #f3ede1;
  border-top: 1px solid var(--ink);
}
.section--water {
  background: linear-gradient(160deg, var(--water-deep) 0%, var(--water) 60%, var(--water-2) 100%);
  color: #fff;
}
.section--water .eyebrow { color: rgba(255,255,255,0.75); }
.section--water .eyebrow::before { background: rgba(255,255,255,0.4); }
.section--water .h2,
.section--water .lead { color: #fff; }
.section--water em { color: var(--foam); }
.section--water .muted { color: rgba(255,255,255,0.7); }

/* =========================================================
   GRID UTILITIES
   ========================================================= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: var(--s-5); }
}

/* split header (heading left, link right) */
.split-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}

/* =========================================================
   FEATURE CARDS (3-col)
   ========================================================= */
.feat {
  padding: var(--s-5);
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--r-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.feat:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.feat__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--water);
  font-weight: 700;
}
.feat h3 {
  font-size: 24px;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.feat p { margin: 0; color: var(--ink-2); line-height: 1.45; }
.feat__cta {
  margin-top: auto;
  font-weight: 600;
  font-size: 14px;
  color: var(--water);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =========================================================
   RACE LIST
   ========================================================= */
.races {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.race {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background .15s ease;
}
.race:hover { background: rgba(0,119,182,0.03); }
.race__date {
  font-family: var(--sans);
  text-align: center;
}
.race__date b {
  display: block;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.race__date span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mute);
  margin-top: 4px;
  text-transform: uppercase;
}
.race__body { min-width: 0; }
.race__body h3 {
  font-size: 22px;
  margin: 4px 0 4px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.race__body p {
  color: var(--ink-2);
  margin: 0;
  font-size: 14px;
}
.race__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  background: var(--line);
  color: var(--ink);
}
.race__tag--cup {
  background: var(--water);
  color: #fff;
}
.race__tag--final {
  background: var(--burn);
  color: #fff;
}
.race__tag--fun {
  background: var(--sand);
  color: var(--ink);
}
.race__loc {
  font-size: 13px;
  color: var(--mute);
  text-align: right;
  min-width: 140px;
}
.race__meta {
  font-size: 13px;
  color: var(--mute);
  text-align: right;
  min-width: 110px;
}
.race__meta b {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}
.race--cup { background: rgba(0,119,182,0.025); }
.race--final { background: rgba(196,77,59,0.035); }
.race--done .race__date b { color: var(--mute); }
.race--done h3 { color: var(--mute); }
@media (max-width: 800px) {
  .race { grid-template-columns: 64px 1fr; gap: 16px; padding: 18px 0; }
  .race__date b { font-size: 32px; }
  .race__meta, .race__loc { grid-column: 2; text-align: left; }
}

/* =========================================================
   COUNTDOWN
   ========================================================= */
.countdown {
  display: flex;
  gap: 4px;
  align-items: flex-start;
}
.countdown__cell {
  background: var(--ink);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--r-2);
  text-align: center;
  min-width: 76px;
  font-variant-numeric: tabular-nums;
}
.countdown__cell b {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.countdown__cell span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 6px;
  color: rgba(255,255,255,0.6);
}
.countdown--light .countdown__cell {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.countdown--light .countdown__cell span { color: var(--mute); }

/* =========================================================
   STANDINGS TABLE
   ========================================================= */
.stand {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.stand th, .stand td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.stand th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--mute);
  border-bottom-color: var(--line-strong);
}
.stand td:first-child { color: var(--mute); width: 32px; }
.stand td.stand__name { font-weight: 600; }
.stand td.stand__club { color: var(--mute); font-size: 13px; }
.stand td.stand__score { text-align: center; }
.stand td.stand__total {
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  text-align: right;
}
.stand tr.is-top td:first-child {
  color: var(--burn);
  font-weight: 700;
}
.stand__cat-filter {
  display: flex;
  gap: 8px;
  margin-bottom: var(--s-4);
  flex-wrap: wrap;
}
.chip {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  transition: all .15s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* =========================================================
   MAP
   ========================================================= */
.map-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .map-wrap { grid-template-columns: 1fr; }
}
.map {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  width: 100%;
  display: block;
  aspect-ratio: 2.2 / 1;
}
.spot-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 360px;
}
.spot-card__placeholder {
  margin: auto;
  text-align: center;
  color: var(--mute);
  font-size: 14px;
}
.spot-card__pulse {
  width: 12px;
  height: 12px;
  background: var(--water);
  border-radius: 999px;
  margin: 0 auto 12px;
  animation: pulse 1.8s ease-in-out infinite;
}
.spot-card__eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--water);
  font-weight: 600;
}
.spot-card__photo {
  margin: -24px -24px 4px;
  border-radius: var(--r-3) var(--r-3) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--sand);
}
.spot-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spot-card h3 {
  font-size: 24px;
  margin: 4px 0 8px;
  letter-spacing: -0.01em;
}
.spot-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spot-card__stat span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mute);
}
.spot-card__stat b {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-top: 2px;
}
.spot-card__tip {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-2);
  font-style: italic;
  padding-left: 12px;
  border-left: 2px solid var(--water);
}
.spot-card__cta {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
}

/* pins */
.pin { cursor: pointer; }
.pin .pin-outer {
  transition: r .15s ease, stroke-width .15s ease;
}
.pin:hover .pin-outer {
  stroke-width: 3;
}
.pin.is-active .pin-outer {
  stroke: var(--ink);
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 6px rgba(10,31,51,0.25));
}
.pin-label {
  font-size: 10px;
  font-weight: 700;
  fill: var(--ink);
  text-anchor: middle;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  paint-order: stroke;
  stroke: rgba(244,239,230,0.95);
  stroke-width: 3.5;
  stroke-linejoin: round;
  opacity: 0;
  transition: opacity .15s ease;
}
.pin:hover .pin-label,
.pin.is-active .pin-label {
  opacity: 1;
}

.spot-legend {
  display: flex;
  gap: 24px;
  margin-top: var(--s-4);
  font-size: 12px;
  color: var(--mute);
  flex-wrap: wrap;
}
.spot-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 6px;
  vertical-align: middle;
}

/* =========================================================
   RENTALS
   ========================================================= */
.rentals { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); }
@media (max-width: 1100px) { .rentals { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rentals { grid-template-columns: 1fr; } }
.rental {
  padding: var(--s-4);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .15s ease;
}
.rental:hover { border-color: var(--ink); }
.rental__loc {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--water);
  font-weight: 600;
}
.rental h3 {
  font-size: 18px;
  margin: 0;
  letter-spacing: -0.01em;
}
.rental p { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.4; flex: 1; }
.rental__price {
  margin-top: var(--s-2);
  padding-top: var(--s-2);
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--mute);
}
.rental__price b { color: var(--ink); font-weight: 700; }

/* =========================================================
   CLUBS
   ========================================================= */
.clubs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
@media (max-width: 900px) { .clubs { grid-template-columns: 1fr; } }
.club {
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.club__avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: var(--s-2);
}
.club h3 { font-size: 22px; margin: 0; letter-spacing: -0.01em; }
.club__meta {
  font-size: 12px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.club p { font-size: 14px; color: var(--ink-2); margin: 0; flex: 1; }
.club a {
  font-size: 14px;
  font-weight: 600;
  color: var(--water);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery__tile {
  border-radius: var(--r-3);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  background: linear-gradient(135deg, var(--water-2), var(--water-deep));
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #fff;
  cursor: pointer;
  isolation: isolate;
}
.gallery__tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(255,255,255,0.06) 24px 25px),
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.gallery__tile > * { position: relative; z-index: 2; }
.gallery__tile span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
}
.gallery__tile b {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.gallery__tile--lg { grid-column: span 6; min-height: 320px; }
.gallery__tile--md { grid-column: span 4; }
.gallery__tile--sm { grid-column: span 3; }
.gallery__tile.has-photo::before {
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%);
}
@media (max-width: 800px) {
  .gallery__tile, .gallery__tile--lg, .gallery__tile--md, .gallery__tile--sm { grid-column: span 12; min-height: 200px; }
}

/* topographic SVG bg fill */
.bg-topo {
  background:
    radial-gradient(circle at 30% 70%, rgba(0,119,182,0.25) 0%, transparent 50%),
    linear-gradient(160deg, #134e75 0%, #0a3454 100%);
}
.bg-forest {
  background:
    radial-gradient(circle at 70% 30%, rgba(56,97,74,0.6) 0%, transparent 60%),
    linear-gradient(160deg, #2a3d2f 0%, #18211b 100%);
}
.bg-sun {
  background:
    radial-gradient(circle at 80% 80%, rgba(217,164,65,0.8) 0%, transparent 55%),
    linear-gradient(160deg, #c44d3b 0%, #6a2316 100%);
}
.bg-frost {
  background:
    radial-gradient(circle at 50% 50%, rgba(202,240,248,0.4) 0%, transparent 70%),
    linear-gradient(160deg, #8ab8c4 0%, #4a6c7a 100%);
}

/* =========================================================
   GAME
   ========================================================= */
.game {
  background: var(--ink);
  border-radius: var(--r-3);
  padding: var(--s-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  color: #fff;
}
.game__hud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.game__hud > div span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.game__hud > div b {
  display: block;
  font-size: 28px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
#game-canvas {
  width: 100%;
  background: #001528;
  border-radius: var(--r-2);
  display: block;
  touch-action: none;
}
.game__controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.game__keys {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-left: auto;
}
.game__keys kbd {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  margin: 0 2px;
}

/* =========================================================
   QUIZ
   ========================================================= */
.quiz {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: var(--s-6);
  max-width: 720px;
  margin: 0 auto;
}
.quiz__progress {
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: var(--s-5);
}
.quiz__progress > div {
  height: 100%;
  background: var(--water);
  width: 0;
  transition: width .35s ease;
}
.quiz__q {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  margin-bottom: var(--s-2);
}
.quiz__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 var(--s-5);
}
.quiz__opts { display: flex; flex-direction: column; gap: 12px; }
.quiz__opt {
  background: var(--paper-2);
  border: 1px solid var(--line);
  text-align: left;
  padding: 16px 20px;
  border-radius: var(--r-3);
  font-size: 15px;
  color: var(--ink);
  transition: all .15s ease;
}
.quiz__opt:hover {
  border-color: var(--water);
  background: var(--foam);
  transform: translateX(4px);
}
.quiz__result {
  text-align: center;
  padding: var(--s-3) 0;
}
.quiz__result-arch {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--water);
  letter-spacing: -0.02em;
  margin: var(--s-2) 0;
}
.quiz__result p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 50ch;
  margin: 0 auto var(--s-4);
}
.quiz__retry {
  margin-top: var(--s-3);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 900px; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  cursor: pointer;
}
.faq__item summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-weight: 300;
  font-size: 24px;
  color: var(--water);
  transition: transform .15s ease;
  line-height: 1;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p {
  margin: 12px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 70ch;
}

/* =========================================================
   PLANNER
   ========================================================= */
.planner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: var(--s-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
@media (max-width: 800px) { .planner { grid-template-columns: 1fr; } }
.planner__form { display: flex; flex-direction: column; gap: var(--s-3); }
.planner__field { display: flex; flex-direction: column; gap: 6px; }
.planner__field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
}
.planner__field select,
.planner__field input[type=range] {
  width: 100%;
}
.planner__field select {
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-family: var(--sans);
  font-size: 14px;
  border-radius: var(--r-2);
}
.planner__field input[type=range] { accent-color: var(--water); }
.planner__field .planner__value {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.planner__diff {
  display: flex;
  gap: 6px;
}
.planner__diff button {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-2);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}
.planner__diff button.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.planner__result {
  background: var(--bg);
  border-radius: var(--r-3);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.planner__result h3 {
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0;
}
.planner__result-meta {
  font-size: 13px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.planner__result-tip {
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  border-left: 2px solid var(--water);
  padding-left: 12px;
  margin: 8px 0;
}
.planner__result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: var(--s-2);
  border-top: 1px solid var(--line);
}
.planner__result-stats span {
  display: block;
  font-size: 11px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.planner__result-stats b {
  display: block;
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}

/* =========================================================
   BETTING LEAGUE
   ========================================================= */
.bets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 800px) { .bets { grid-template-columns: 1fr; } }
.bet {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: var(--s-4);
}
.bet__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s-3);
}
.bet__head h4 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.bet__head time { font-size: 12px; color: var(--mute); }
.bet__opts { display: flex; flex-direction: column; gap: 8px; }
.bet__opt {
  width: 100%;
  text-align: left;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all .15s ease;
}
.bet__opt:hover { border-color: var(--water); }
.bet__opt.is-picked {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.bet__odds {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 13px;
  color: var(--water);
}
.bet__opt.is-picked .bet__odds { color: var(--foam); }
.bet__foot {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--mute);
  display: flex;
  justify-content: space-between;
}
.bet__foot b { color: var(--ink); }

/* player bar */
.bet-player {
  margin-top: 4px;
  font-size: 14px;
  color: var(--ink-2);
}
.bet-player b { color: var(--ink); }
.bet-link {
  background: none;
  border: none;
  color: var(--water);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.bet-link:hover { color: var(--water-deep); }

/* status pills */
.bet__status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}
.bet__status--done { background: var(--moss); color: #fff; }
.bet__status--closed { background: var(--line-2); color: var(--ink); }

/* option internals */
.bet__optname { display: flex; align-items: center; gap: 6px; }
.bet__optright { display: flex; align-items: center; gap: 10px; }
.bet__cnt {
  font-size: 11px;
  color: var(--mute);
  font-variant-numeric: tabular-nums;
}
.bet__opt:disabled { cursor: default; opacity: 1; }
.bet__opt.is-winner {
  border-color: var(--moss);
  background: rgba(56,97,74,0.10);
}
.bet__opt.is-winner .bet__optname { color: var(--moss); font-weight: 700; }
.bet__opt.is-lost {
  border-color: var(--line);
  opacity: 0.6;
}
.bet__opt.is-picked.is-lost { background: rgba(196,77,59,0.06); border-color: rgba(196,77,59,0.4); }

/* result note */
.bet__note {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 12px;
  border-radius: var(--r-2);
  background: var(--paper-2);
}
.bet__note--ok { color: var(--water-deep); background: rgba(0,180,216,0.08); }
.bet__note--win { color: var(--moss); background: rgba(56,97,74,0.10); font-weight: 700; }
.bet__note--lose { color: var(--burn); background: rgba(196,77,59,0.07); }

/* leaderboard extras */
.lboard__empty {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.5;
  margin: 8px 0 0;
}
.lboard__note {
  font-size: 11px;
  color: var(--mute-2);
  line-height: 1.4;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* name modal */
.bet-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10,31,51,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(3px);
}
.bet-modal__card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  width: min(420px, 92vw);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.bet-modal__card h3 { margin: 0 0 8px; font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.bet-modal__card p { margin: 0 0 18px; font-size: 14px; color: var(--mute); line-height: 1.5; }
.bet-modal__card input {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-2);
  margin-bottom: 8px;
}
.bet-modal__card input:focus { outline: none; border-color: var(--water); box-shadow: 0 0 0 3px rgba(0,180,216,0.14); }
.bet-modal__err { color: var(--burn); font-size: 13px; font-weight: 600; min-height: 18px; margin-bottom: 8px; }
.bet-modal__actions { display: flex; justify-content: flex-end; gap: 8px; }

/* leaderboard */
.lboard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-3); padding: var(--s-4); }
.lboard h3 { font-size: 16px; margin: 0 0 var(--s-3); }
.lboard ol { list-style: none; padding: 0; margin: 0; }
.lboard li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  align-items: center;
}
.lboard li:last-child { border-bottom: none; }
.lboard__rank { font-weight: 700; color: var(--mute); }
.lboard__points { font-weight: 700; font-variant-numeric: tabular-nums; }
.lboard li.is-you { background: var(--foam); border-radius: var(--r-2); padding: 10px 12px; }
.lboard li.is-you .lboard__rank { color: var(--burn); }

/* =========================================================
   PADDLECAST (podcast)
   ========================================================= */
.cast-show {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--s-5);
  align-items: center;
  margin-top: 40px;
  padding: var(--s-5);
  background: var(--ink);
  color: #f3ede1;
  border-radius: var(--r-4);
}
.cast-show__art {
  aspect-ratio: 1;
  border-radius: var(--r-3);
  overflow: hidden;
  background: var(--water-deep);
}
.cast-show__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cast-show__body .eyebrow { color: var(--water-2); }
.cast-show__body h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-style: italic;
  line-height: 1;
  margin: 8px 0 12px;
  color: #fff;
}
.cast-show__body p { color: rgba(243,237,225,0.72); font-size: 15px; max-width: 54ch; margin: 0 0 16px; }
.cast-show__by { font-size: 13px; color: rgba(243,237,225,0.55); margin-bottom: 20px; }
.cast-show__by b { color: var(--sky); }
.cast-show__links { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .cast-show { grid-template-columns: 1fr; text-align: left; }
  .cast-show__art { max-width: 180px; }
}

.casts { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
@media (max-width: 820px) { .casts { grid-template-columns: 1fr; } }
.cast {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: var(--s-4);
  padding: var(--s-4);
  background: #fff;
  border: 1px solid rgba(10,31,51,0.10);
  border-radius: var(--r-4);
}
.cast__art {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-3);
  overflow: hidden;
  background: var(--water-deep);
}
.cast__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cast__badge {
  position: absolute;
  top: 8px; left: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 7px;
  border-radius: var(--r-2);
  background: rgba(2,62,138,0.85);
  color: #fff;
  backdrop-filter: blur(2px);
}
.cast__body { display: flex; flex-direction: column; min-width: 0; }
.cast__meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--water);
  font-weight: 600;
}
.cast__body h3 { font-size: 19px; margin: 6px 0 8px; letter-spacing: -0.01em; line-height: 1.15; }
.cast__body p { font-size: 13px; color: var(--ink-2); margin: 0 0 14px; line-height: 1.5; }

.player {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.player__toggle {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--burn);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.player__toggle:hover { transform: scale(1.06); }
.player.is-playing .player__toggle { background: var(--water); }
.player__track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(10,31,51,0.12);
  cursor: pointer;
  overflow: hidden;
}
.player__progress {
  height: 100%;
  width: 0%;
  background: var(--water);
  border-radius: 999px;
  transition: width 0.1s linear;
}
.player__time {
  flex: none;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
  min-width: 42px;
  text-align: right;
}
.cast__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--water);
}
.cast__link:hover { color: var(--water-deep); }
@media (max-width: 480px) {
  .cast { grid-template-columns: 1fr; }
  .cast__art { max-width: 140px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: #f3ede1;
  padding: var(--s-7) 0 var(--s-4);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-5);
}
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
.footer__brand img { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__brand p { color: rgba(243,237,225,0.6); font-size: 14px; max-width: 36ch; }
.footer h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(243,237,225,0.6);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: #f3ede1;
  padding: 4px 0;
}
.footer__col a:hover { color: var(--water-2); }
.footer__bottom {
  max-width: 1280px;
  margin: var(--s-6) auto 0;
  padding: var(--s-3) 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(243,237,225,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  background: var(--ink);
  color: #f3ede1;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.ticker__track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 50s linear infinite;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.ticker__track span:nth-child(odd) { color: var(--water-2); }
.ticker__track span:nth-child(even) { color: rgba(243,237,225,0.4); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   COOKIE / CONSENT BAR
   ========================================================= */
.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.cookie-bar.is-in { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--ink);
  color: #f3ede1;
  border-radius: var(--r-3);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 16px 50px rgba(10,31,51,0.35);
  flex-wrap: wrap;
}
.cookie-bar__txt {
  flex: 1;
  min-width: 240px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(243,237,225,0.85);
}
.cookie-bar__txt b { color: #fff; font-weight: 700; }
.cookie-bar__more {
  color: var(--water-2);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.cookie-bar__detail { color: rgba(243,237,225,0.7); }
.cookie-bar__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-bar__btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .15s ease;
  white-space: nowrap;
}
.cookie-bar__btn--ghost {
  background: transparent;
  color: #f3ede1;
  border-color: rgba(255,255,255,0.3);
}
.cookie-bar__btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.cookie-bar__btn--ok {
  background: var(--water-2);
  color: var(--ink);
}
.cookie-bar__btn--ok:hover { background: #fff; }
@media (max-width: 620px) {
  .cookie-bar__inner { padding: 16px; }
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__btn { flex: 1; }
}
.page-head {
  padding: var(--s-7) 0 var(--s-6);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-head__crumbs {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: var(--s-2);
}
.page-head h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 16ch;
}
.page-head__intro {
  max-width: 60ch;
  font-size: 17px;
  color: var(--ink-2);
  margin-top: var(--s-3);
}

/* =========================================================
   LIVE BANNER (official results CTA)
   ========================================================= */
.live-banner {
  margin-top: var(--s-5);
  padding: 20px 24px;
  background: var(--ink);
  color: #f3ede1;
  border-radius: var(--r-3);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.live-banner__pill {
  background: var(--burn);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.live-banner__pill .live-dot { background: #fff; margin: 0; }
.live-banner__txt { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 4px; }
.live-banner__txt b { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: #fff; }
.live-banner__txt span { font-size: 13px; color: rgba(243,237,225,0.65); line-height: 1.45; }
.live-banner .btn--primary {
  background: var(--burn);
  border-color: var(--burn);
}
.live-banner .btn--primary:hover {
  background: #d65c4a;
  border-color: #d65c4a;
}

.live-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(196,77,59,0.1);
  color: var(--burn);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all .15s ease;
}
.live-link:hover {
  background: var(--burn);
  color: #fff;
}
.live-link::before {
  content: '';
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 999px;
  animation: pulse 1.8s ease-in-out infinite;
}
.live-link--start {
  background: rgba(0,119,182,0.1);
  color: var(--water);
}
.live-link--start:hover {
  background: var(--water);
  color: #fff;
}

/* =========================================================
   UTIL animations
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* topographic line backgrounds */
.topo-lines {
  background-image:
    radial-gradient(circle at 30% 50%, transparent 30%, rgba(10,31,51,0.04) 31%, transparent 32%),
    radial-gradient(circle at 30% 50%, transparent 25%, rgba(10,31,51,0.04) 26%, transparent 27%),
    radial-gradient(circle at 30% 50%, transparent 20%, rgba(10,31,51,0.04) 21%, transparent 22%),
    radial-gradient(circle at 30% 50%, transparent 15%, rgba(10,31,51,0.04) 16%, transparent 17%);
  background-size: 600px 400px;
}
