/* =========================================================
   Tour de Frøya - v2 design system
   Sophisticated, photo-driven, editorial feel.
   ========================================================= */

:root {
  --ink-900: #0a0e1a;
  --ink-800: #111827;
  --ink-700: #1f2937;
  --ink-600: #374151;
  --ink-400: #6b7280;
  --ink-300: #9aa3b0;
  --ink-100: #e5e7eb;
  --ink-50:  #f3f4f6;

  --paper:   #faf8f5;
  --line:    #e7e2d9;

  --brand:        #d62828;   /* TdF red */
  --brand-dark:   #a31b1b;
  --accent:       #f59e0b;   /* warm gold */
  --accent-2:     #fcd34d;
  --sea:          #0d3b66;

  --white: #ffffff;
  --text: var(--ink-900);
  --muted: var(--ink-400);

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(10,14,26,.06);
  --shadow:    0 12px 32px rgba(10,14,26,.10);
  --shadow-lg: 0 24px 60px rgba(10,14,26,.18);

  --ease:      cubic-bezier(.22,.61,.36,1);
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --t-fast:    .2s;
  --t:         .35s;
  --t-slow:    .6s;

  --container: 1240px;
  --gutter: 28px;

  --display: 'Bebas Neue', 'Anton', Impact, sans-serif;
  --sans:    'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.1; color: var(--ink-900); font-weight: 700; }
p { margin: 0 0 1em; }
::selection { background: var(--brand); color: white; }

/* ===== Scroll progress bar ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #ff6b6b 50%, var(--accent-2) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 0 18px rgba(214,40,40,.75), 0 0 6px rgba(252,211,77,.5);
  transition: transform .1s linear;
}

/* ===== Hero letter reveal ===== */
.hero__title-big .letter {
  display: inline-block;
  animation: letterIn 1.1s var(--ease-out) backwards;
  transform-origin: 50% 100%;
}
@keyframes letterIn {
  0%  { opacity: 0; transform: translateY(120%) rotate(18deg) scale(.6); filter: blur(12px); }
  60% { filter: blur(0); }
  to  { opacity: 1; transform: none; filter: blur(0); }
}

/* ===== Countdown flip ===== */
.countdown__num.flip {
  animation: flipNum .55s var(--ease-out);
}
@keyframes flipNum {
  0%   { transform: translateY(-22%) scale(.92); opacity: 0; filter: blur(2px); }
  60%  { transform: translateY(4%) scale(1.02); opacity: 1; filter: blur(0); }
  100% { transform: none; }
}

/* ===== Tilt cards ===== */
.tiltable {
  transform-style: preserve-3d;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
  will-change: transform;
}
.tiltable:hover { box-shadow: var(--shadow-lg) !important; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(.94);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out);
  will-change: opacity, transform;
  filter: blur(6px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.reveal--left  { transform: translateX(-80px) translateY(20px); }
.reveal--right { transform: translateX(80px) translateY(20px); }
.reveal--left.is-in, .reveal--right.is-in { transform: none; }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.narrow { max-width: 820px; margin: 0 auto; }
.centered, .centered-text { text-align: center; }
.muted-note { color: var(--muted); font-size: .9rem; text-align: center; margin-top: 2rem; }

/* ===== Typography helpers ===== */
.display {
  font-family: var(--display);
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  letter-spacing: .02em;
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 400;
}
.display--light { color: var(--white); }
.lead { font-size: 1.18rem; color: var(--ink-700); }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}
.eyebrow--light { color: var(--accent-2); }

/* ===== Topbar ===== */
.topbar {
  background: var(--ink-900);
  color: #cbd2dc;
  font-size: .82rem;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px var(--gutter);
}
.topbar__msg { display: inline-flex; align-items: center; gap: 10px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.topbar__social { display: flex; gap: 14px; }
.topbar__social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: #cbd2dc;
  transition: color .2s, background .2s;
}
.topbar__social a:hover { color: var(--white); background: rgba(255,255,255,.08); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s, padding .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header.is-scrolled .site-header__inner { min-height: 68px; }
.site-header__inner { transition: min-height .35s var(--ease-out); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.logo { display: flex; align-items: center; }
.logo__img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-800);
  position: relative;
  padding: 6px 0;
  letter-spacing: .01em;
  transition: color .25s var(--ease-out);
}
.nav__link::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease-out);
}
.nav__link:hover { color: var(--brand); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--active::after { transform: scaleX(1); }
.nav__cta { margin-left: 4px; }

.nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform .35s var(--ease-out),
    box-shadow .35s var(--ease-out),
    background .25s var(--ease-out),
    color .25s var(--ease-out),
    border-color .25s var(--ease-out);
  font-size: .96rem;
  letter-spacing: .01em;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(0) scale(.98); }
.btn--sm { padding: 9px 18px; font-size: .88rem; }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }
.btn--primary {
  background: var(--brand); color: white;
  box-shadow: 0 6px 16px rgba(214,40,40,.28);
  position: relative;
  overflow: hidden;
}
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transition: left .7s var(--ease-out);
  pointer-events: none;
}
.btn--primary:hover::before { left: 100%; }
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(214,40,40,.42); }
.btn--secondary {
  background: var(--ink-900); color: white;
}
.btn--secondary:hover { background: var(--ink-800); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--ink-900); border-color: var(--ink-100);
}
.btn--ghost:hover { background: var(--ink-900); color: white; border-color: var(--ink-900); }
.btn--outline {
  background: transparent; color: white; border-color: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
}
.btn--outline:hover { background: white; color: var(--ink-900); border-color: white; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-color: #1a1f2e;
  z-index: -2;
  transform: scale(1.08);
  will-change: transform;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(10,14,26,.35) 100%);
  animation: heroPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroPulse {
  from { opacity: .6; }
  to   { opacity: 1; }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,14,26,.35) 0%, rgba(10,14,26,.55) 60%, rgba(10,14,26,.85) 100%),
    linear-gradient(95deg, rgba(10,14,26,.6) 0%, rgba(10,14,26,.15) 60%);
}
.hero__content {
  padding: 140px 0 140px;
  width: 100%;
  max-width: 900px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  margin: 0 0 18px;
  text-transform: uppercase;
  line-height: .88;
  color: white;
  letter-spacing: .01em;
}
.hero__title-top {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: .25em;
  opacity: .9;
  margin-bottom: 6px;
  text-indent: .25em;
}
.hero__title-big {
  display: block;
  font-size: clamp(5rem, 16vw, 12rem);
  letter-spacing: .02em;
  background: linear-gradient(180deg, #ffffff 0%, #d4d4d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 40px rgba(0,0,0,.25);
}
.hero__tagline {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 400;
  margin: 0 0 36px;
  max-width: 580px;
  opacity: .95;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Countdown */
.countdown {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  margin: 0 0 38px;
  padding: 18px 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r);
  backdrop-filter: blur(14px);
}
.countdown__cell {
  display: flex; flex-direction: column; align-items: center;
  min-width: 56px;
}
.countdown__num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: .03em;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: .8;
}
.countdown__sep {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  opacity: .5;
  padding-bottom: 22px;
}

/* Hero marquee */
.hero__marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--brand);
  color: white;
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  gap: 28px;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: .18em;
  padding-left: 28px;
  will-change: transform;
}
.hero__marquee:hover .marquee__track { animation-duration: 24s; }
.marquee__track span:nth-child(even) { opacity: .5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* ===== Section base ===== */
.section { padding: 110px 0; }
.section--alt { background: var(--paper); }
.section--intro { padding: 120px 0 90px; }
.section__head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section__head--row {
  display: flex; justify-content: space-between; align-items: flex-end;
  text-align: left; max-width: none; margin-bottom: 48px; gap: 32px; flex-wrap: wrap;
}
.section__head .eyebrow { padding-left: 28px; }
.section__head--row > div > .eyebrow { padding-left: 28px; }
.section__head .display { margin-bottom: 14px; }
.section__lead { font-size: 1.1rem; color: var(--muted); max-width: 640px; margin-left: auto; margin-right: auto; }

.link-arrow {
  font-weight: 700;
  color: var(--ink-900);
  border-bottom: 2px solid var(--brand);
  padding-bottom: 2px;
  font-size: .95rem;
  letter-spacing: .03em;
}
.link-arrow:hover { color: var(--brand); }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.actions--center { justify-content: center; }

/* ===== Intro ===== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.intro__text .eyebrow { padding-left: 28px; }
.intro__media {
  position: relative;
  aspect-ratio: 5/6;
}
.intro__img {
  position: absolute;
  background-size: cover; background-position: center;
  background-color: var(--ink-100);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.intro__img--main {
  top: 0; left: 0; right: 18%; bottom: 18%;
}
.intro__img--small {
  bottom: 0; right: 0; left: 30%; top: 35%;
  border: 6px solid white;
}
.intro__badge {
  position: absolute;
  top: -24px; right: -24px;
  width: 140px; height: 140px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(-8deg);
  font-family: var(--display);
  z-index: 2;
}
.intro__badge-num { font-size: 3rem; line-height: 1; letter-spacing: .02em; }
.intro__badge-text {
  font-size: .7rem; letter-spacing: .2em; text-align: center; margin-top: 4px;
}
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; gap: 56px; }
  .intro__media { aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; }
  .intro__badge { width: 110px; height: 110px; top: -16px; right: -8px; }
  .intro__badge-num { font-size: 2.2rem; }
}

/* ===== Facts ===== */
.facts {
  background: var(--ink-900);
  color: white;
  padding: 0;
}
.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fact {
  text-align: center;
  padding: 40px 18px;
  border-left: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.fact:first-child { border-left: 0; }
.fact__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--accent-2);
  letter-spacing: .02em;
}
.fact__lbl {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .85;
  font-weight: 600;
}
@media (max-width: 700px) {
  .facts__grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .fact:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
}

/* ===== Category cards ===== */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cat-card {
  background: white;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s var(--ease-out);
  display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--ink-100); }
.cat-card__img {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  background-color: var(--ink-700);
  transition: transform .9s var(--ease-out);
}
.cat-card:hover .cat-card__img { transform: scale(1.06); }
.cat-card__body { padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.cat-card__tag {
  align-self: flex-start;
  background: var(--brand); color: white;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}
.cat-card__tag--alt { background: var(--ink-900); }
.cat-card h3 { font-size: 1.5rem; }
.cat-card p { color: var(--muted); margin: 0; }
.cat-card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 4px 0;
}
.cat-card__meta li {
  display: flex; flex-direction: column;
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.cat-card__meta strong {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--ink-900);
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 2px;
}
@media (max-width: 800px) { .cat-grid { grid-template-columns: 1fr; } }

/* ===== Highlight (Kaggestad) ===== */
.highlight {
  background: var(--ink-900);
  color: white;
  position: relative;
  overflow: hidden;
}
.highlight__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}
.highlight__text .eyebrow { padding-left: 28px; }
.highlight__text p { color: rgba(255,255,255,.85); }
.highlight blockquote {
  border-left: 3px solid var(--brand);
  margin: 28px 0 0;
  padding: 8px 0 8px 24px;
  font-style: italic;
  font-size: 1.15rem;
  color: white;
  line-height: 1.55;
}
.highlight blockquote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
}
.highlight__media {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  background-color: var(--ink-700);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
  .highlight__inner { grid-template-columns: 1fr; gap: 48px; padding: 72px 0; }
  .highlight__media { aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; }
}

/* ===== Articles ===== */
.articles {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 28px;
}
.article {
  background: white;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s var(--ease-out);
}
.article:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--ink-100); }
.article__img {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  background-color: var(--ink-700);
  transition: transform .9s var(--ease-out);
}
.article:hover .article__img { transform: scale(1.06); }
.article--featured .article__img { aspect-ratio: 4/3; }
.article__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.article__tag {
  align-self: flex-start;
  background: var(--ink-50); color: var(--ink-700);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
  margin-bottom: 14px;
}
.article h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  line-height: 1.25;
}
.article--featured h3 { font-size: 1.6rem; }
.article p { color: var(--muted); font-size: .95rem; flex: 1; margin-bottom: 16px; }
.article__more {
  font-weight: 700; color: var(--brand);
  font-size: .9rem;
  letter-spacing: .02em;
}
@media (max-width: 900px) { .articles { grid-template-columns: 1fr; } }

/* ===== Bands (CTA strips with images) ===== */
.band {
  position: relative;
  color: white;
  padding: 110px 0;
  overflow: hidden;
  isolation: isolate;
}
.band__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-color: var(--ink-800);
}
.band__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(10,14,26,.92) 0%, rgba(10,14,26,.78) 50%, rgba(10,14,26,.55) 100%);
}
.band--fund .band__scrim {
  background: linear-gradient(105deg, rgba(13,59,102,.92) 0%, rgba(10,14,26,.75) 100%);
}
.band--cta {
  background: linear-gradient(135deg, var(--ink-900), var(--ink-800));
  padding: 110px 0;
}
.band__inner {
  max-width: 720px;
}
.band__inner--center {
  margin: 0 auto;
  text-align: center;
}
.band__text .eyebrow { padding-left: 28px; }
.band h2 { margin-bottom: 18px; }
.band p { color: rgba(255,255,255,.86); font-size: 1.08rem; margin-bottom: 28px; }

/* ===== Sponsors ===== */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.sponsor-grid--large {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.sponsor-grid--main {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 960px;
  margin: 0 auto;
  gap: 28px;
}
.sponsor-subhead {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-900);
  text-align: center;
  margin: 24px 0 20px;
  font-weight: 400;
}
.sponsor-subhead + .sponsor-grid { margin-bottom: 48px; }
.sponsor-logo--main {
  aspect-ratio: 16/9;
  padding: 36px;
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  box-shadow: var(--shadow-sm);
}
.sponsor-logo--main img { filter: none; }
.sponsor-logo {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s var(--ease-out);
}
.sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .45s var(--ease-out), transform .45s var(--ease-out);
}
.sponsor-logo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
  border-color: var(--ink-100);
}
.sponsor-logo:hover img { transform: scale(1.04); }
.sponsor-logo:hover img { filter: grayscale(0%); }

/* ===== Page hero (interior pages) ===== */
.page-hero {
  position: relative;
  padding: 140px 0 100px;
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-color: var(--ink-800);
}
.page-hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(10,14,26,.85) 0%, rgba(10,14,26,.6) 100%);
}
.page-hero--fund .page-hero__scrim {
  background: linear-gradient(135deg, rgba(13,59,102,.88) 0%, rgba(10,14,26,.7) 100%);
}
.page-hero__content { max-width: 720px; }
.page-hero h1 { margin: 0 0 18px; }
.page-hero p { font-size: 1.18rem; opacity: .92; max-width: 580px; }

/* ===== Grid-2 ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; gap: 40px; } }

/* ===== Checklist ===== */
.checklist { margin: 0; }
.checklist li {
  position: relative;
  padding: 12px 0 12px 40px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: '';
  position: absolute; left: 0; top: 16px;
  width: 24px; height: 24px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 16px 16px;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 16px 16px;
  border-radius: 50%;
}

.benefit-list {
  background: var(--paper);
  border-radius: var(--r);
  padding: 36px 36px 24px;
  border: 1px solid var(--line);
}
.benefit-list h3 { margin-bottom: 14px; font-size: 1.3rem; }
.info-box {
  background: white;
  padding: 40px;
  border-radius: var(--r);
  border: 1px solid var(--line);
}
.info-box .eyebrow { padding-left: 28px; }
.info-box--dark {
  background: var(--ink-900);
  color: white;
  border: 0;
}
.info-box--dark h3, .info-box--dark .eyebrow { color: white; }
.info-box--dark .checklist li { border-bottom-color: rgba(255,255,255,.08); }
.info-box--dark .checklist li::before { background: var(--accent-2); }
.info-box h3 { font-size: 1.4rem; margin-bottom: 16px; }

/* ===== Tiers ===== */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}
.tier {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s var(--ease-out);
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--ink-100); }
.tier h3 {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 400;
}
.tier__price {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 24px;
}
.tier ul { text-align: left; margin: 0 0 28px; flex: 1; }
.tier ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  color: var(--ink-700);
}
.tier ul li:last-child { border-bottom: 0; }
.tier ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 10px;
  color: var(--brand); font-weight: 800;
}
.tier--featured {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}
.tier__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
}

/* ===== Sykkelfond cards ===== */
.goal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}
.goal {
  background: white;
  padding: 32px 26px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s var(--ease-out);
}
.goal:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: var(--ink-100); }
.goal__icon { transition: transform .45s var(--ease-out); }
.goal:hover .goal__icon { transform: scale(1.08) rotate(-4deg); }
.goal__icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: var(--paper);
  border-radius: 50%;
  color: var(--brand);
}
.goal__icon svg { width: 30px; height: 30px; }
.goal h3 { font-size: 1.1rem; }
.goal p { color: var(--muted); font-size: .95rem; margin: 0; }

.funding-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.funding-card {
  background: white;
  padding: 36px 30px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.funding-card__num {
  display: block;
  font-family: var(--display);
  font-size: 3.2rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.funding-card p { color: var(--ink-700); margin: 0; }

.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.reason {
  background: var(--paper);
  padding: 30px 26px;
  border-radius: var(--r);
  border-left: 3px solid var(--brand);
}
.reason h3 { font-size: 1.1rem; color: var(--ink-900); }
.reason p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ===== Registration page ===== */
.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .reg-grid { grid-template-columns: 1fr; } }
.reg-card {
  background: white;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s var(--ease-out);
  display: flex; flex-direction: column;
}
.reg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.reg-card__img { transition: transform .9s var(--ease-out); }
.reg-card:hover .reg-card__img { transform: scale(1.04); }
.reg-card--featured { border-color: var(--brand); }
.reg-card__img {
  aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  background-color: var(--ink-700);
}
.reg-card__body { padding: 36px 32px; display: flex; flex-direction: column; gap: 16px; }
.reg-card__tag {
  align-self: flex-start;
  background: var(--brand); color: white;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px;
}
.reg-card__tag--alt { background: var(--ink-900); }
.reg-card h2 { font-size: 1.9rem; margin: 0; }
.reg-card p { color: var(--muted); margin: 0; }
.reg-card__list { margin: 8px 0 16px; }
.reg-card__list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .96rem;
}
.reg-card__list li span { color: var(--muted); }
.reg-card__list li strong { color: var(--ink-900); font-weight: 700; }
.reg-card__list li:last-child { border-bottom: 0; }

.info-callout {
  background: linear-gradient(135deg, var(--paper), white);
  padding: 32px 36px;
  border-radius: var(--r);
  border-left: 4px solid var(--brand);
  box-shadow: var(--shadow-sm);
}
.info-callout h3 { font-size: 1.2rem; margin-bottom: 8px; }
.info-callout--brand {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--ink-900), #1a2540);
  color: white;
  border-left-color: var(--accent-2);
  padding: 40px 44px;
}
.info-callout--brand h3 { color: white; font-size: 1.4rem; }
.info-callout--brand a { color: var(--accent-2); }
.info-callout--brand .actions { margin-top: 22px; }

/* ===== Giveaway / profilering grid ===== */
.giveaway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.giveaway {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px;
  background: white;
  border: 1px solid #e8e2d6;
  border-radius: var(--r);
  text-decoration: none;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .25s;
  position: relative;
  overflow: hidden;
}
.giveaway::after {
  content: '';
  position: absolute;
  inset: auto -30% -30% auto;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(214,40,40,.10), transparent 70%);
  pointer-events: none;
}
.giveaway:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}
.giveaway__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(214,40,40,.08), rgba(252,211,77,.12));
  color: var(--brand);
  line-height: 1;
  transition: background .35s var(--ease-out), color .35s var(--ease-out), transform .35s var(--ease-out);
}
.giveaway__icon svg { width: 28px; height: 28px; }
.giveaway:hover .giveaway__icon {
  background: linear-gradient(135deg, var(--brand), #b71c1c);
  color: white;
}
.giveaway h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: .03em;
  margin: 4px 0 2px;
}
.giveaway p { color: #475063; font-size: .96rem; line-height: 1.55; flex: 1; }
.giveaway__link {
  margin-top: 12px;
  font-weight: 700;
  color: var(--brand);
  font-size: .92rem;
  letter-spacing: .04em;
}

/* Tier price sub-label */
.tier__price-sub {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink-900);
  color: #aab2bf;
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer__brand p { max-width: 380px; margin-top: 16px; color: #8a93a1; }
.footer__logo { height: 56px; width: auto; mix-blend-mode: lighten; }
.footer h4 {
  color: white;
  font-size: .85rem;
  margin-bottom: 18px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer ul li { margin-bottom: 12px; }
.footer ul li a { transition: color .2s; }
.footer ul li a:hover { color: var(--accent-2); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
  font-size: .85rem;
  color: #6b7280;
}
.footer__bottom .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer__bottom a { color: var(--accent-2); }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }

/* ===== Nav dropdown (desktop) ===== */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  color: var(--ink-800);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  position: relative;
  transition: color .25s var(--ease-out);
}
.nav__dropdown-toggle::after {
  content: '';
  position: absolute; left: 0; right: 16px; bottom: -2px;
  height: 2px; background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease-out);
}
.nav__dropdown-toggle:hover { color: var(--brand); }
.nav__dropdown-toggle:hover::after,
.nav__dropdown.is-open .nav__dropdown-toggle::after { transform: scaleX(1); }
.nav__dropdown-caret {
  width: 10px; height: 10px;
  transition: transform .25s var(--ease-out);
}
.nav__dropdown.is-open .nav__dropdown-caret,
.nav__dropdown:hover .nav__dropdown-caret { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 220px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility .2s;
  z-index: 60;
}
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-800);
  border-radius: var(--r-sm);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.is-active {
  background: var(--paper);
  color: var(--brand);
}

/* ===== Mobile nav ===== */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: 68px 0 0 0;
    flex-direction: column;
    background: white;
    padding: 28px 22px 48px;
    gap: 4px;
    border-top: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform .4s var(--ease-out);
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link {
    font-size: 1.25rem;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav__dropdown {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 1.25rem;
    padding: 14px 0;
  }
  .nav__dropdown-toggle::after { display: none; }
  .nav__dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 12px 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    transition: none;
  }
  .nav__dropdown.is-open .nav__dropdown-menu { display: flex; }
  .nav__dropdown-menu a {
    font-size: 1.05rem;
    padding: 10px 0;
    border-bottom: 0;
  }
  .nav__cta { margin: 16px 0 0; width: 100%; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .topbar__msg { font-size: .72rem; }
  .topbar__social { display: none; }
  .section { padding: 72px 0; }
  .section--intro { padding: 72px 0; }
  .hero__content { padding: 110px 0 110px; }
  .hero__marquee { padding: 10px 0; }
  .marquee__track { font-size: .9rem; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .site-header__inner { min-height: 68px; }
  .logo__img { height: 38px; }
  .grid-2 { gap: 32px; }
}
@media (max-width: 480px) {
  .countdown { gap: 4px; padding: 14px 12px; }
  .countdown__cell { min-width: 42px; }
  .countdown__sep { padding-bottom: 18px; }
  .hero { min-height: 92vh; }
  .hero__content { padding: 90px 0 120px; }
  .hero__title-top { font-size: 1.4rem; letter-spacing: .2em; }
  .hero__title-big { font-size: clamp(4rem, 22vw, 6rem); }
  .hero__tagline { font-size: 1rem; margin-bottom: 28px; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .display { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .section { padding: 56px 0; }
  .section__head { margin-bottom: 40px; }
  .container { padding: 0 18px; }
  .page-hero { padding: 100px 0 70px; }
  .intro__badge { width: 90px; height: 90px; top: -8px; right: 0; }
  .intro__badge-num { font-size: 1.8rem; }
  .intro__badge-text { font-size: .55rem; }
  .cat-card__body, .reg-card__body { padding: 24px; }
  .info-box, .benefit-list { padding: 28px 24px; }
  .tier { padding: 32px 24px; }
  .footer { padding: 56px 0 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer__bottom .container { flex-direction: column; text-align: center; gap: 6px; }
  body { font-size: 15.5px; }
}

/* ===== Hero entrance animation ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero__eyebrow,
.hero__title-top,
.hero__title-big,
.hero__tagline,
.countdown,
.hero__ctas {
  animation: fadeUp .9s var(--ease-out) backwards;
}
.hero__eyebrow   { animation-delay: .05s; }
.hero__title-top { animation-delay: .15s; }
.hero__title-big { animation-delay: .25s; }
.hero__tagline   { animation-delay: .45s; }
.countdown       { animation-delay: .55s; }
.hero__ctas      { animation-delay: .65s; }

/* When letters are split, parent stays visible and only letters animate */
.hero__title-big[data-split="1"] {
  opacity: 1 !important;
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title-top, .hero__title-big,
  .hero__tagline, .countdown, .hero__ctas {
    animation: none; opacity: 1;
  }
  .hero__bg { animation: none; }
  .marquee__track { animation: none; }
}

/* ===== Praktisk info grid ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.info-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .25s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--ink-100); }
.info-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(214,40,40,.08), rgba(252,211,77,.12));
  color: var(--brand);
  margin-bottom: 16px;
}
.info-card__icon svg { width: 26px; height: 26px; }
.info-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: .03em;
  margin-bottom: 14px;
}
.info-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.info-card__list li {
  font-size: .95rem;
  color: #475063;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.info-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.info-card__list li strong { color: var(--ink-900); font-weight: 700; }

.checklist--light li { color: rgba(255,255,255,.88); }
.checklist--light li::before { background: var(--accent-2); }

/* ===== Results table ===== */
.results-table {
  margin-top: 24px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: white;
}
.results-row {
  display: grid;
  grid-template-columns: 110px 1fr 200px;
  align-items: center;
  padding: 22px 28px;
  gap: 20px;
  text-decoration: none;
  color: var(--ink-900);
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease-out), transform .25s var(--ease-out);
}
.results-row:last-child { border-bottom: 0; }
.results-row--head {
  background: var(--ink-900);
  color: white;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.results-row:not(.results-row--head):hover { background: var(--paper); }
.results-row:not(.results-row--head):hover .results-col--cta {
  color: var(--brand);
  transform: translateX(6px);
}
.results-col--year {
  font-family: var(--display);
  font-size: 2.2rem;
  letter-spacing: .04em;
  color: var(--brand);
}
.results-row--head .results-col--year { color: var(--accent-2); font-size: 1.05rem; }
.results-col--event { font-weight: 600; font-size: 1.05rem; }
.results-col--cta {
  text-align: right;
  font-weight: 700;
  color: var(--ink-900);
  font-size: .95rem;
  letter-spacing: .04em;
  transition: color .25s, transform .25s;
}
@media (max-width: 600px) {
  .results-row { grid-template-columns: 70px 1fr; padding: 18px 18px; }
  .results-col--cta { grid-column: 1 / -1; text-align: left; }
  .results-col--year { font-size: 1.8rem; }
}

/* ===== Event hero (foredrag) ===== */
.event-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--paper) 0%, white 60%, rgba(252,211,77,.18) 100%);
  position: relative;
  overflow: hidden;
}
.event-hero::before {
  content: '';
  position: absolute;
  inset: auto -100px -200px auto;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(214,40,40,.10), transparent 70%);
  pointer-events: none;
}
.event-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.event-hero__text h1.display { font-size: clamp(3rem, 7vw, 5.5rem); line-height: .95; margin: 8px 0 4px; }
.event-hero__sub {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: .04em;
  color: var(--brand);
  margin-bottom: 22px;
}
.event-hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin: 36px 0;
  padding: 24px 28px;
  border-radius: var(--r);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.event-meta { display: flex; flex-direction: column; gap: 2px; }
.event-meta__label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.event-meta__value { font-family: var(--display); font-size: 1.6rem; letter-spacing: .03em; color: var(--ink-900); }
.event-meta__sub { font-size: .85rem; color: var(--muted); }

.event-hero__media { position: relative; }
.event-hero__img {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  display: block;
}
.event-hero__badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--brand);
  color: white;
  padding: 18px 22px;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(-4deg);
}
.event-hero__badge-num { display: block; font-family: var(--display); font-size: 2rem; line-height: 1; }
.event-hero__badge-text { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .15em; margin-top: 4px; }

.event-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.event-point {
  background: white;
  border: 1px solid var(--line);
  padding: 26px 24px;
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}
.event-point__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(214,40,40,.08), rgba(252,211,77,.12));
  color: var(--brand);
  margin-bottom: 14px;
}
.event-point__icon svg { width: 24px; height: 24px; }
.event-point h3 { font-family: var(--display); font-size: 1.3rem; letter-spacing: .03em; margin-bottom: 8px; }
.event-point p { color: var(--muted); font-size: .95rem; margin: 0; }

.ticket-card {
  max-width: 460px;
  margin: 32px auto 0;
  background: white;
  border-radius: var(--r);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 36px 32px;
  text-align: left;
}
.ticket-card__price {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px dashed var(--line);
}
.ticket-card__amount { display: block; font-family: var(--display); font-size: 3.6rem; line-height: 1; color: var(--brand); letter-spacing: .03em; }
.ticket-card__sub { display: block; font-size: .85rem; color: var(--muted); margin-top: 6px; }
.ticket-card__list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.ticket-card__list li { padding-left: 24px; position: relative; color: #475063; }
.ticket-card__list li::before {
  content: '\2713';
  position: absolute; left: 0; top: 0;
  color: var(--brand); font-weight: 700;
}

.highlight__media--portrait {
  background-size: cover;
  background-position: center top;
  aspect-ratio: 4 / 5;
}

@media (max-width: 860px) {
  .event-hero { padding: 80px 0 60px; }
  .event-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .event-hero__badge { bottom: -16px; left: 16px; }
}

/* ===== Program (pamelding) ===== */
.program {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.program__day-title {
  font-size: 1.25rem;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand);
}
.program__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.program__list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.program__time {
  font-weight: 700;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.program__event {
  color: var(--ink-800);
}
@media (max-width: 760px) {
  .program { grid-template-columns: 1fr; gap: 28px; }
  .program__list li { grid-template-columns: 90px 1fr; gap: 10px; }
}

/* ===== Rittregler ===== */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.rule-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.04));
}
.rule-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: var(--ink-900);
  border-left: 4px solid var(--brand);
  padding-left: 10px;
}
.rule-card p {
  margin: 8px 0;
  color: var(--ink-700);
  font-size: .95rem;
}
.rule-card ul {
  margin: 8px 0;
  padding-left: 20px;
  color: var(--ink-700);
  font-size: .95rem;
}
.rule-card ul li {
  margin: 6px 0;
  line-height: 1.5;
}
.rule-card a {
  color: var(--brand);
  text-decoration: underline;
}

/* ===== Form (Netlify forms for foredrag, frivillig, sykkelfondet) ===== */
.tdf-form {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.04));
}
.tdf-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .tdf-form__row { grid-template-columns: 1fr; }
  .tdf-form { padding: 22px; }
}
.tdf-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: .92rem;
  color: var(--ink-800);
}
.tdf-form input[type="text"],
.tdf-form input[type="email"],
.tdf-form input[type="tel"],
.tdf-form input[type="number"],
.tdf-form select,
.tdf-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 1rem;
  background: white;
  color: var(--ink-900);
  transition: border-color .2s;
  box-sizing: border-box;
}
.tdf-form input:focus,
.tdf-form select:focus,
.tdf-form textarea:focus {
  outline: none;
  border-color: var(--brand);
}
.tdf-form textarea {
  min-height: 110px;
  resize: vertical;
}
.tdf-form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tdf-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--ink-700);
  cursor: pointer;
}
.tdf-form__checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
}
.tdf-form__note {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
}
.tdf-form button[type="submit"] {
  justify-self: start;
}

/* ===== Sponsor tiers ===== */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 960px) {
  .tier-grid { grid-template-columns: 1fr; }
}
.tier-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.04));
  position: relative;
}
.tier-card--featured {
  border: 2px solid var(--brand);
  transform: translateY(-8px);
}
.tier-card--featured::before {
  content: 'Mest synlig';
  position: absolute;
  top: -14px; left: 28px;
  background: var(--brand);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tier-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.tier-card__price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 4px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .02em;
}
.tier-card__price-note {
  font-size: .82rem;
  color: var(--muted);
  margin: 0 0 16px;
}
.tier-card__intro {
  font-size: .95rem;
  color: var(--ink-700);
  margin: 0 0 18px;
  line-height: 1.55;
}
.tier-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tier-card__list li {
  padding-left: 26px;
  position: relative;
  font-size: .92rem;
  color: var(--ink-700);
  line-height: 1.5;
}
.tier-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--brand);
  font-weight: 700;
}

/* ===== Profileringsprodukter ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.product-card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: var(--ink-900);
}
.product-card__tagline {
  font-size: .92rem;
  color: var(--brand);
  font-weight: 600;
  margin: 0 0 14px;
}
.product-card p {
  font-size: .93rem;
  color: var(--ink-700);
  margin: 0 0 12px;
  line-height: 1.55;
}
.product-card ul {
  font-size: .92rem;
  color: var(--ink-700);
  padding-left: 20px;
  margin: 0 0 14px;
}
.product-card ul li { margin: 4px 0; }
.product-card__price {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-weight: 700;
  color: var(--ink-900);
  font-size: 1rem;
}
.product-card__price small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: .82rem;
  margin-top: 2px;
}

/* ===== Volunteer roles ===== */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.role-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
}
.role-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--ink-900);
}
.role-card p {
  font-size: .93rem;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0 0 10px;
}
.role-card__req {
  display: inline-block;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .82rem;
  color: var(--ink-700);
  font-weight: 600;
}
.role-card__req--easy { background: #e8f5e9; border-color: #c8e6c9; color: #2e7d32; }
.role-card__req--med { background: #fff3e0; border-color: #ffe0b2; color: #ef6c00; }
.role-card__req--hard { background: #ffebee; border-color: #ffcdd2; color: #c62828; }

/* ===== Committee (team page) ===== */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.committee-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.committee-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(10, 14, 26, 0.06);
}
.committee-card__role {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand);
}
.committee-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0;
  font-family: var(--display, inherit);
  letter-spacing: .01em;
  line-height: 1.25;
}
.committee-card--lead {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: white;
  grid-column: span 2;
}
.committee-card--lead:hover { border-color: var(--brand); }
.committee-card--lead .committee-card__role { color: var(--accent-2, #fcd34d); }
.committee-card--lead .committee-card__name { color: white; font-size: 1.35rem; }

/* ===== Article page ===== */
.article-page__hero {
  position: relative;
  min-height: 380px;
  padding: 70px 0 50px;
  color: white;
  overflow: hidden;
}
.article-page__hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.article-page__hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,.55) 0%, rgba(10,14,26,.82) 100%);
  z-index: 1;
}
.article-page__hero-inner {
  position: relative;
  z-index: 2;
}
.article-page__back {
  display: inline-block;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.article-page__back:hover { color: white; }
.article-page__tag {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 5px 12px;
  border-radius: var(--r-sm);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.article-page__title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  max-width: 900px;
}
.article-page__meta {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin: 0;
}
.article-page__body {
  padding: 60px 0 100px;
}
.article-page__body h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
}
.article-page__body p,
.article-page__body ul,
.article-page__body ol {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-700);
}
.article-page__body ul, .article-page__body ol {
  padding-left: 22px;
}
.article-page__body li { margin: 8px 0; }
.article-page__body a {
  color: var(--brand);
  text-decoration: underline;
}
.article-page__body .lead {
  font-size: 1.2rem;
  color: var(--ink-800);
  margin-bottom: 28px;
}
@media (max-width: 560px) {
  .committee-card--lead { grid-column: span 1; }
}
