/* ============================================================
   ØLSTYKKE BY & MOTORFESTIVAL 2026 — styles
   ============================================================ */

:root {
  --bg: #0b0a09;
  --bg-2: #15120f;
  --bg-3: #1f1b16;
  --line: #2a241d;
  --line-2: #3a3128;
  --cream: #f5efe6;
  --cream-dim: #b8ad9c;
  --mute: #8a8073;
  --red: #e63946;
  --red-dim: #b32a36;
  --gold: #d4a942;
  --gold-dim: #9a7a26;
  --accent: var(--red);
  --accent-2: var(--gold);

  --ff-display: "Anton", "Oswald", Impact, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #0b0a09; }

/* ----- layout ----- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; position: relative; }
.section-tight { padding: 56px 0; }

/* ----- mono label ----- */
.label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.label-accent { color: var(--accent); }
.label-bracket::before { content: "[ "; opacity: 0.55; }
.label-bracket::after  { content: " ]"; opacity: 0.55; }

/* ----- display text ----- */
.display {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.88;
  text-transform: uppercase;
}
.display-tight { line-height: 0.82; }

/* ----- hazard stripes (re-usable) ----- */
.hazard {
  height: 14px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--gold) 0 14px,
    #1a1611 14px 28px
  );
  width: 100%;
}
.hazard-red {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--red) 0 14px,
    #1a1611 14px 28px
  );
}

/* ----- divider ----- */
.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ----- topbar ----- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 10, 9, 0.78);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 14px;
}
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #0b0a09;
  font-family: var(--ff-display);
  font-size: 22px;
  transform: skewX(-8deg);
  position: relative;
}
.brand-mark span { transform: skewX(8deg); display: block; line-height: 1; }
.brand-text {
  display: flex; flex-direction: column;
  line-height: 1.05;
}
.brand-text .a { font-family: var(--ff-display); font-size: 17px; letter-spacing: 0.02em; }
.brand-text .b { font-family: var(--ff-mono); font-size: 9.5px; letter-spacing: 0.18em; color: var(--cream-dim); text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-family: var(--ff-mono);
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream-dim);
  transition: color .15s;
  position: relative;
}
.nav a:hover { color: var(--cream); }
.nav a.active { color: var(--cream); }
.nav-cta {
  background: var(--accent);
  color: #0b0a09 !important;
  padding: 10px 16px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform .15s, background .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--cream); transform: translateY(-1px); }

/* ----- hamburger / mobile nav ----- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 9px;
  background: none;
  border: 1px solid var(--line);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: transform .2s, opacity .2s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: rgba(11, 10, 9, 0.98);
  padding: 8px 20px 24px;
}
.mobile-nav a {
  display: block;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: color .15s;
}
.mobile-nav a:active { color: var(--cream); }
.mobile-nav .mobile-cta {
  display: block;
  margin-top: 16px;
  padding: 16px;
  background: var(--accent);
  color: #0b0a09 !important;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-bottom: none;
}

/* ----- hero ----- */
.hero {
  position: relative;
  padding: 40px 0 40px;
}
.hero-grid {
  padding: 0 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-left { padding-bottom: 0; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(230,57,70,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(230,57,70,0.05); }
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.96;
  letter-spacing: 0.002em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.hero-title .row { display: block; padding-top: 0.04em; }
.hero-title .accent { color: var(--accent); }
.hero-title .outline {
  -webkit-text-stroke: 1.5px var(--cream);
  color: transparent;
}
.hero-tag {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin: 0 0 20px;
  text-transform: uppercase;
}
.hero-tag .strike { text-decoration: line-through; text-decoration-color: var(--red); opacity: 0.55; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--cream-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-meta strong { color: var(--cream); font-weight: 500; display: block; font-size: 13px; margin-top: 2px; }
.hero-cta-row {
  display: flex; gap: 16px; margin-top: 24px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #0b0a09; }
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line-2); color: var(--cream); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-xl { padding: 22px 40px; font-size: 14px; letter-spacing: 0.16em; }

/* ----- hero right (image + sticker) ----- */
.hero-right {
  position: relative;
}
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
}
.image-placeholder {
  width: 100%; height: 100%;
  background:
    linear-gradient(0deg, rgba(11,10,9,0.55), rgba(11,10,9,0.15)),
    repeating-linear-gradient(135deg,
      #2a241d 0 8px,
      #1a1611 8px 16px);
  display: grid;
  place-items: center;
  position: relative;
}
.image-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: rgba(11,10,9,0.6);
  padding: 6px 9px;
  border: 1px solid var(--line-2);
}
.image-placeholder .ip-icon {
  font-family: var(--ff-display);
  font-size: 72px;
  color: rgba(245, 239, 230, 0.18);
  letter-spacing: 0.05em;
}

/* corner sticker over hero image */
.sticker {
  position: absolute;
  top: -32px; right: -24px;
  width: 168px; height: 168px;
  border-radius: 50%;
  background: var(--gold);
  color: #0b0a09;
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-size: 28px;
  text-align: center;
  line-height: 0.92;
  transform: rotate(-12deg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  text-transform: uppercase;
  padding: 12px;
}
.sticker small { display: block; font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.16em; margin-top: 4px; font-weight: 600; }

/* counter */
.counter {
  margin-top: 24px;
  border: 1px solid var(--line);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-2);
}
.counter-label {
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream-dim);
}
.counter-vals { display: flex; gap: 14px; }
.counter-vals .cell {
  display: flex; flex-direction: column; align-items: center;
  min-width: 48px;
}
.counter-vals .num {
  font-family: var(--ff-display);
  font-size: 36px;
  line-height: 1;
  color: var(--cream);
}
.counter-vals .unit {
  font-family: var(--ff-mono);
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}

/* ----- marquee ----- */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  margin-top: 80px;
}
.marquee-track {
  display: flex; gap: 64px;
  padding: 26px 0;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: var(--ff-display);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--cream);
}
.marquee-item .star {
  display: inline-block; width: 10px; height: 10px;
  background: var(--accent);
  transform: rotate(45deg);
}
.marquee-item .gold { color: var(--gold); }
.marquee-item .outline {
  -webkit-text-stroke: 1px var(--cream);
  color: transparent;
}

/* ----- reach stats strip ----- */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.reach-cell { background: var(--bg); padding: 28px 24px; }
.reach-cell .big-num {
  font-family: var(--ff-display);
  font-size: 56px;
  line-height: 0.9;
  color: var(--cream);
}

/* ----- section header ----- */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 56px;
}
.section-head .lhs { display: flex; flex-direction: column; gap: 14px; }
.section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6vw, 88px);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.002em;
}
.section-head h2 .accent { color: var(--accent); }
.section-head .num {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--cream-dim);
  letter-spacing: 0.14em;
}

/* ----- hvad sker der (grid) ----- */
.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.what-cell {
  background: var(--bg);
  padding: 32px 24px;
  min-height: 220px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .2s;
}
.what-cell:hover { background: var(--bg-2); }
.what-cell:hover .what-num { color: var(--accent); }
.what-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cream-dim);
  transition: color .2s;
}
.what-title {
  font-family: var(--ff-display);
  font-size: 30px;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 12px 0 0;
}
.what-sub {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.5;
  margin-top: 14px;
  max-width: 220px;
}
.what-cell .accent-dot {
  position: absolute;
  top: 24px; right: 24px;
  width: 6px; height: 6px; background: var(--accent);
}

/* ----- lineup ----- */
.lineup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.line-card {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 0;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.line-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.line-img {
  aspect-ratio: 16/11;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.line-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.line-body { padding: 20px 22px 24px; }
.line-card .name {
  font-family: var(--ff-display);
  font-size: 26px;
  line-height: 1.05;
  margin: 8px 0 10px;
  text-transform: uppercase;
}
.line-card .meta {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.line-card .blurb {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.55;
  margin-top: 12px;
}
.line-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(11,10,9,0.78);
  border: 1px solid var(--line-2);
  padding: 5px 9px;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

/* ----- program (3-day tabs) ----- */
.program {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
}
.day-tabs { display: flex; flex-direction: column; gap: 6px; }
.day-tab {
  text-align: left;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  padding: 14px 18px;
  background: var(--bg);
  transition: background .15s, border-color .15s;
}
.day-tab:hover { background: var(--bg-2); }
.day-tab.active { background: var(--accent); border-color: var(--accent); color: #0b0a09; }
.day-tab .d-day {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.day-tab .d-num {
  font-family: var(--ff-display);
  font-size: 28px;
  line-height: 1.05;
  margin-top: 2px;
}
.day-tab .d-name {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.8;
}
.program-panel {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 24px 24px 28px;
}
.program-head {
  display: flex; justify-content: space-between; align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px; margin-bottom: 14px;
}
.program-head .head-day {
  font-family: var(--ff-display);
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.05;
}
.program-head .head-date {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.prog-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.prog-row:last-child { border-bottom: none; }
.prog-time {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.prog-title {
  font-family: var(--ff-display);
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}
.prog-sub {
  font-size: 12px;
  color: var(--cream-dim);
  margin-top: 2px;
  line-height: 1.45;
}
.prog-tag {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
  text-transform: uppercase;
  padding: 3px 6px;
  border: 1px solid var(--line);
  white-space: nowrap;
}
.prog-tag.hot { color: var(--red); border-color: var(--red-dim); }

/* ----- voting ----- */
.vote-bg {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.vote-card {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 0;
  cursor: pointer;
  transition: border-color .15s, transform .15s;
  overflow: hidden;
  position: relative;
}
.vote-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.vote-card.voted { border-color: var(--accent); }
.vote-img {
  aspect-ratio: 4/3;
  border-bottom: 1px solid var(--line);
}
.vote-body { padding: 14px 16px 18px; }
.vote-name {
  font-family: var(--ff-display);
  font-size: 19px;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.vote-owner {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.vote-bar {
  margin-top: 12px;
  height: 4px;
  background: var(--bg-3);
  overflow: hidden;
}
.vote-bar > div {
  height: 100%;
  background: var(--accent);
  transition: width .5s ease;
}
.vote-pct {
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
  text-transform: uppercase;
  margin-top: 8px;
}
.vote-pct .pct-num { color: var(--cream); }
.vote-card.voted .vote-name { color: var(--accent); }
.vote-stamp {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: #0b0a09;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 4px 8px;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .2s, transform .2s;
}
.vote-card.voted .vote-stamp { opacity: 1; transform: scale(1); }

/* ----- tilmelding ----- */
.signup {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.signup-info p {
  color: var(--cream-dim);
  line-height: 1.6;
  font-size: 15px;
  max-width: 480px;
}
.fee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 32px;
}
.fee {
  background: var(--bg-2);
  padding: 24px;
}
.fee .label { margin-bottom: 12px; }
.fee .amt {
  font-family: var(--ff-display);
  font-size: 56px;
  line-height: 0.9;
  color: var(--gold);
}
.fee .amt small { font-size: 16px; color: var(--cream-dim); margin-left: 4px; }
.fee .for {
  font-size: 13px;
  color: var(--cream-dim);
  margin-top: 8px;
  line-height: 1.5;
}

/* form */
.form {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 32px;
}
.form h3 {
  font-family: var(--ff-display);
  font-size: 32px;
  text-transform: uppercase;
  margin: 0 0 6px;
  letter-spacing: 0.005em;
  line-height: 1.05;
}
.form .form-sub {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cream-dim);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 12px 14px;
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.deadline-strip {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 14px 16px;
  margin-bottom: 24px;
}
.deadline-strip .lhs { display: flex; align-items: center; gap: 12px; }
.deadline-strip .lhs .iconbox {
  width: 30px; height: 30px;
  background: var(--accent);
  display: grid; place-items: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: #0b0a09;
  font-weight: 700;
}
.deadline-strip .when {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.deadline-strip .when strong { color: var(--cream); font-weight: 500; display: block; font-size: 12.5px; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: #0b0a09;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background .15s;
}
.form-submit:hover { background: var(--cream); }
.form-thanks {
  padding: 60px 20px;
  text-align: center;
}
.form-thanks .check {
  width: 48px; height: 48px; border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--accent); color: #0b0a09;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 700;
}
.form-thanks h4 {
  font-family: var(--ff-display);
  font-size: 30px;
  margin: 0 0 8px;
  text-transform: uppercase;
  line-height: 1.05;
}
.form-thanks p {
  color: var(--cream-dim);
  margin: 0 auto;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.5;
}

/* ----- practical / footer ----- */
.practical {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.p-cell { background: var(--bg-2); padding: 28px 24px; min-height: 200px; }
.p-cell h4 {
  font-family: var(--ff-display);
  font-size: 26px;
  text-transform: uppercase;
  margin: 14px 0 12px;
  line-height: 1.05;
}
.p-cell p, .p-cell a.line { font-size: 14px; color: var(--cream-dim); line-height: 1.55; }
.p-cell a.line { display: block; color: var(--cream); margin-bottom: 4px; }
.p-cell a.line:hover { color: var(--accent); }

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.foot-col h5 {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin: 0 0 16px;
}
.foot-col a { display: block; font-size: 14px; margin-bottom: 8px; color: var(--cream); }
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.big-foot-mark {
  font-family: var(--ff-display);
  font-size: clamp(80px, 16vw, 220px);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-2);
  margin-top: 24px;
}

/* ============================================================
   TIKKIO CTA
   ============================================================ */

.tikkio-box {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.btn-tikkio {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  background: var(--accent);
  color: #0b0a09;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: tikkio-glow 2s ease-in-out infinite;
  transition: transform .15s, background .15s;
  align-self: flex-start;
}
.btn-tikkio:hover { background: var(--cream); transform: translateY(-2px); }
.btn-tikkio:hover .arrow { transform: translateX(4px); }
.btn-tikkio .arrow { transition: transform .15s; }
.btn-tikkio::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  animation: tikkio-shine 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes tikkio-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.45), 0 8px 24px rgba(230,57,70,0.2); }
  50%       { box-shadow: 0 0 0 10px rgba(230,57,70,0), 0 8px 36px rgba(230,57,70,0.5); }
}
@keyframes tikkio-shine {
  0%        { left: -100%; }
  50%, 100% { left: 150%; }
}

.tikkio-trust {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.tikkio-trust span {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ============================================================
   BILLETSYSTEM (priser + info)
   ============================================================ */

.billet-bg {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

.billet-centered {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.billet-centered h3 {
  font-family: var(--ff-display);
  font-size: 36px;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}
.billet-centered .lead {
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.billet-centered .billet-pricing {
  width: 100%;
  text-align: left;
}
.billet-cta-btn {
  align-self: center;
}
.billet-pricing {
  border: 1px solid var(--line);
  background: var(--bg);
}
.billet-pricing .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}
.billet-pricing .row:last-child { border-bottom: none; }
.billet-pricing .ltype {
  font-family: var(--ff-display);
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1;
}
.billet-pricing .ldesc {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 4px;
}
.billet-pricing .lprice {
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}
.billet-pricing .lprice .kr {
  font-size: 12px;
  color: var(--cream-dim);
  margin-left: 4px;
}
.billet-pricing .lprice.free { color: var(--accent); }

.billet-bullets {
  display: grid; gap: 14px;
  margin-top: 4px;
}
.billet-bullets li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.5;
  list-style: none;
}
.billet-bullets li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--ff-mono);
  font-weight: 700;
}
.billet-bullets { padding: 0; margin: 0; }

/* booking widget */
.booking {
  border: 1px solid var(--line);
  background: var(--bg-2);
  display: flex; flex-direction: column;
  position: relative;
}
.booking-bar {
  display: flex;
  border-bottom: 1px solid var(--line);
}
.booking-bar .step {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  border-right: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
}
.booking-bar .step:last-child { border-right: none; }
.booking-bar .step.active { color: var(--cream); background: var(--bg); }
.booking-bar .step.done { color: var(--gold); }
.booking-bar .step .stepnum {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px;
  border: 1px solid currentColor;
  font-size: 10px;
}
.booking-bar .step.active .stepnum { background: var(--accent); color: #0b0a09; border-color: var(--accent); }
.booking-bar .step.done .stepnum { background: var(--gold); color: #0b0a09; border-color: var(--gold); }

.booking-body { padding: 36px 36px 32px; flex: 1; }
.booking-body h4 {
  font-family: var(--ff-display);
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 1.05;
}
.booking-body .bsub {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cream-dim);
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* date chips */
.date-chips {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.date-chip {
  padding: 14px 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  text-align: left;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .15s, background .15s, color .15s;
}
.date-chip .dc-day {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.date-chip .dc-date {
  font-family: var(--ff-display);
  font-size: 22px;
  line-height: 1;
  color: var(--cream);
}
.date-chip.active { border-color: var(--accent); background: rgba(230, 57, 70, 0.08); }
.date-chip.active .dc-day { color: var(--accent); }
.date-chip:hover { border-color: var(--line-2); }

/* qty stepper */
.qty-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.qty-row:last-of-type { border-bottom: none; }
.qty-row .qinfo .name {
  font-family: var(--ff-display);
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}
.qty-row .qinfo .meta {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.stepper {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  background: var(--bg);
}
.stepper button {
  width: 36px; height: 36px;
  font-size: 18px;
  color: var(--cream);
  display: grid; place-items: center;
  transition: background .15s;
}
.stepper button:hover:not(:disabled) { background: var(--bg-3); color: var(--accent); }
.stepper button:disabled { color: var(--mute); cursor: not-allowed; }
.stepper .qval {
  min-width: 40px; text-align: center;
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--cream);
  font-weight: 600;
}

/* total bar */
.btotal {
  margin-top: 24px;
  padding: 22px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.btotal .blbl {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.btotal .bamt {
  font-family: var(--ff-display);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}
.btotal .bamt small { font-size: 14px; color: var(--cream-dim); margin-left: 4px; }
.btotal.free .bamt { color: var(--accent); }

.bnext {
  display: block; width: 100%;
  margin-top: 18px;
  padding: 18px;
  background: var(--accent);
  color: #0b0a09;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background .15s, transform .15s;
}
.bnext:hover:not(:disabled) { background: var(--cream); transform: translateY(-1px); }
.bnext:disabled { background: var(--bg-3); color: var(--mute); cursor: not-allowed; }
.bback {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 14px;
}
.bback:hover { color: var(--accent); }

/* payment methods */
.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.pay-method {
  padding: 22px 18px;
  border: 1px solid var(--line);
  background: var(--bg);
  text-align: left;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.pay-method.active { border-color: var(--accent); background: rgba(230,57,70,0.08); }
.pay-method .pmname {
  font-family: var(--ff-display);
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}
.pay-method .pmdesc {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.pay-method.active .pmname { color: var(--accent); }
.pay-summary {
  border: 1px dashed var(--line-2);
  padding: 16px 18px;
  margin-bottom: 18px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--cream-dim);
}
.pay-summary .prow { display: flex; justify-content: space-between; padding: 4px 0; }
.pay-summary .prow.bold { color: var(--cream); padding-top: 10px; border-top: 1px dashed var(--line-2); margin-top: 6px; }

/* payment processing */
.pay-processing {
  padding: 60px 20px;
  text-align: center;
}
.pay-processing .spinner {
  width: 44px; height: 44px;
  border: 3px solid var(--bg-3);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* confirmation */
.conf-head {
  padding: 32px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.conf-head .check {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: var(--accent);
  color: #0b0a09;
  display: grid; place-items: center;
  font-size: 26px;
  font-weight: 700;
}
.conf-head h4 {
  font-family: var(--ff-display);
  font-size: 36px;
  margin: 0 0 8px;
  text-transform: uppercase;
  line-height: 1.05;
}
.conf-head .csub {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.conf-actions {
  display: flex; gap: 12px;
  padding: 20px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.conf-actions .btn { flex: 1; justify-content: center; }

/* ----------- TICKET CARDS ----------- */
.tickets-stack {
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  max-height: 540px;
  overflow-y: auto;
}
.tickets-stack::-webkit-scrollbar { width: 6px; }
.tickets-stack::-webkit-scrollbar-thumb { background: var(--line-2); }

.ticket {
  display: grid;
  grid-template-columns: 1fr 130px;
  background: var(--cream);
  color: #0b0a09;
  position: relative;
  font-family: var(--ff-body);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  overflow: hidden;
}
.ticket-main {
  padding: 20px 22px;
  display: flex; flex-direction: column;
  background:
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(11,10,9,0.04) 28px 29px),
    var(--cream);
  border-left: 6px solid var(--accent);
}
.ticket-main .t-pre {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11,10,9,0.55);
}
.ticket-main .t-name {
  font-family: var(--ff-display);
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 4px 0 14px;
  color: #0b0a09;
}
.ticket-main .t-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
  margin-bottom: 14px;
}
.ticket-main .t-grid > div .tl {
  font-family: var(--ff-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11,10,9,0.55);
  margin-bottom: 2px;
}
.ticket-main .t-grid > div .tv {
  font-family: var(--ff-display);
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.ticket-main .t-code {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #0b0a09;
  background: #fff;
  border: 1px dashed rgba(11,10,9,0.35);
  padding: 8px 10px;
  margin-top: auto;
  text-align: center;
}

.ticket-stub {
  background: #0b0a09;
  color: var(--cream);
  padding: 18px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  position: relative;
  border-left: 2px dashed rgba(245, 239, 230, 0.3);
}
.ticket-stub::before, .ticket-stub::after {
  content: "";
  position: absolute;
  left: -8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-2);
}
.ticket-stub::before { top: -8px; }
.ticket-stub::after { bottom: -8px; }
.ticket-stub .stub-pre {
  font-family: var(--ff-mono);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.ticket-stub .qr {
  width: 94px; height: 94px;
  background: var(--cream);
  padding: 6px;
}
.ticket-stub .qr svg { width: 100%; height: 100%; display: block; }
.ticket-stub .stub-id {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--cream);
}

/* mine billetter banner */
.have-tix {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.have-tix .htl {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.have-tix .htl strong { color: var(--gold); font-weight: 600; }
.have-tix button {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 12px;
  border: 1px solid var(--accent);
}
.have-tix button:hover { background: var(--accent); color: #0b0a09; }

/* secondary truck registration block */
.truck-cta {
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.truck-cta .tc-lhs { flex: 1; min-width: 280px; }
.truck-cta .tc-lhs h4 {
  font-family: var(--ff-display);
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 8px;
}
.truck-cta .tc-lhs p {
  margin: 0;
  font-size: 13.5px;
  color: var(--cream-dim);
  line-height: 1.55;
  max-width: 520px;
}
.truck-cta .tc-fees {
  display: flex; gap: 24px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.truck-cta .tc-fees strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--gold);
  margin-top: 4px;
}

/* ----- responsive ----- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { max-width: 520px; margin-top: 24px; }
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup { grid-template-columns: repeat(2, 1fr); }
  .vote-grid { grid-template-columns: repeat(2, 1fr); }
  .program { grid-template-columns: 1fr; }
  .day-tabs { flex-direction: row; }
  .day-tab { flex: 1; }
  .signup { grid-template-columns: 1fr; }
  .billet-grid { grid-template-columns: 1fr; }
  .practical { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .topbar-inner { padding: 12px 16px; }
  .brand-text .b { display: none; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 28px 0 32px; }
  .hero-grid { padding: 0 16px; }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero-title { font-size: clamp(44px, 13vw, 72px); margin: 0 0 12px; }
  .hero-tag { font-size: 17px; margin: 0 0 14px; }
  .hero-meta { gap: 14px; }
  .hero-cta-row { margin-top: 18px; gap: 10px; }
  .btn-xl { padding: 14px 22px; font-size: 12px; }
  .counter { padding: 12px 14px; }
  .counter-vals .num { font-size: 26px; }
  .counter-vals { gap: 10px; }
  .what-grid, .lineup, .vote-grid, .practical { grid-template-columns: 1fr; }
  .prog-row { grid-template-columns: 60px 1fr; gap: 10px; }
  .prog-tag { display: none; }
  .prog-title { font-size: 14px; }
  .program-panel { padding: 16px 16px 20px; }
  .day-tab { padding: 10px 12px; }
  .day-tab .d-num { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .fee-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .date-chips { grid-template-columns: 1fr 1fr; }
  .booking-bar .step { font-size: 9.5px; padding: 12px 8px; gap: 6px; }
  .ticket { grid-template-columns: 1fr; }
  .ticket-stub { border-left: none; border-top: 2px dashed rgba(245,239,230,0.3); flex-direction: row; }
  .tickets-stack { max-height: 420px; }
  .booking-body { padding: 24px 20px; }
  .billet-pricing .lprice { font-size: 28px; }
}
