@charset "UTF-8";
/* CSS Document */

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #111A12;
  --bg2: #182618;
  --acc: #4A9068;
  --text: #F0EDE6;
  --mute: rgba(240,237,230,0.62);
  --bdr: rgba(240,237,230,0.09);
  --bg3: #1F3222;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "scandia-web";
  font-size: 16px;
  line-height: 1.6;
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 56px;
  border-bottom: 0.5px solid var(--bdr);
}
.nav-logo { font-size: 15px; font-weight: 500; letter-spacing: .06em; color: var(--text); text-decoration: none; }
.nav-back { font-size: 13px; color: var(--mute); text-decoration: none; transition: color .2s; }
.nav-back:hover { color: var(--text); }
main { max-width: 720px; margin: 0 auto; padding: 80px 40px 120px; }
h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 400; letter-spacing: -.02em; margin-bottom: 12px; }
.updated { font-size: 12px; color: var(--mute); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 64px; }
h2 { font-size: 16px; font-weight: 500; letter-spacing: .04em; margin: 48px 0 16px; color: var(--text); }
p { color: var(--mute); margin-bottom: 16px; }
a { color: var(--acc); text-decoration: none; }
a:hover { text-decoration: underline; }
hr { border: none; border-top: 0.5px solid var(--bdr); margin: 48px 0; }
footer {
  border-top: 0.5px solid var(--bdr);
  padding: 32px 56px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-brand { font-size: 13px; color: var(--mute); }
.footer-copy { font-size: 12px; color: var(--mute); }
@media (max-width: 600px) {
  nav, footer { padding: 24px; }
  main { padding: 48px 24px 80px; }
}

html { scroll-behavior: smooth; }


/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 56px;
  transition: background .4s, padding .35s, border-color .4s;
  border-bottom: 0.5px solid transparent;
}
nav.scrolled {
  background: rgba(8,15,10,.93);
  backdrop-filter: blur(14px);
  padding: 18px 56px;
  border-bottom-color: var(--bdr);
}
.nav-logo {
  font-size: 15px; font-weight: 500;
  letter-spacing: .06em; color: var(--text);
  text-decoration: none;
}
.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links a {
  font-size: 13px; color: var(--mute); text-decoration: none;
  letter-spacing: .03em; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: var(--text) !important;
  border: 0.5px solid rgba(240,237,230,.35) !important;
  padding: 8px 22px; border-radius: 24px;
  transition: background .2s, border-color .2s !important;
}
.nav-cta:hover { background: rgba(240,237,230,.07) !important; border-color: rgba(240,237,230,.6) !important; }

/* ─── HERO ─── */
.hero {
  height: 100vh; height: 100svh; min-height: 640px;
  position: relative; display: flex;
  align-items: flex-end; padding: 0 56px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-grain {
  position: absolute; inset: 0; opacity: .18; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}
/* → Swap hero bg for photo: .hero-bg { background-image: url('hero.jpg'); background-size: cover; background-position: center; } */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,10,6,.88) 0%, rgba(5,10,6,.25) 50%, rgba(5,10,6,.1) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(68px, 11vw, 130px);
  font-weight: 400; line-height: .95;
   color: var(--text);
  margin-bottom: 30px;
  margin-left:-5px;
}
.hero-logo { width: clamp(260px, 32vw, 480px); display: block; margin-bottom: 30px; }
.hero-date { font-size: 16px; color: var(--mute); letter-spacing: .08em; margin-bottom: 40px; }
.btn-ghost {
  display: inline-block;
  font-size: 11px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text); border: none; background: var(--acc);
  padding: 12px 28px; border-radius: 28px; text-decoration: none;
  transition: background .2s;
}
.btn-ghost:hover { background: #5aaa78; }
.scroll-hint {
  position: absolute; bottom: 44px; right: 56px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint span { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--mute); }
.scroll-line { width: .5px; height: 44px; background: var(--mute); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.25;transform:scaleY(1)} 50%{opacity:.7;transform:scaleY(1.08)} }

/* ─── COMMON ─── */
.sec-label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--acc); margin-bottom: 20px; display: block;
}
.fade { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s ease; }
.fade.on { opacity: 1; transform: none; }
.fade-d1 { transition-delay: .1s; }
.fade-d2 { transition-delay: .2s; }
.fade-d3 { transition-delay: .3s; }

/* ─── OM OS ─── */
#om-os {
  background: radial-gradient(ellipse at 88% 15%, rgba(255,255,255,0.10) 0%, transparent 55%), var(--bg2);
  padding: 130px 56px;
  border-top: 5px solid rgba(255,255,255,0.70);
}
.om-inner { max-width: 1200px; margin: 0 auto; }
.om-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 90px;
}
.om-heading {
  font-size: clamp(34px, 4vw, 54px); font-weight: 400;
  line-height: 1.15; letter-spacing: -.025em; margin-bottom: 0;
}
.om-body { font-size: 15px; color: var(--mute); line-height: 1.8; max-width: 440px; }
/* Stats — Lucid-style: pure typography, no boxes */
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0;
}
.stat {
  padding: 0 48px 0 0;
  border-right: 0.5px solid var(--bdr);
  margin-right: 48px;
}
.stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 16px; display: block;
}
.stat-n {
  font-size: clamp(44px, 5.5vw, 70px); font-weight: 300;
  letter-spacing: -.035em; line-height: 1; margin-bottom: 10px;
}
.stat-l { font-size: 14px; color: var(--mute); line-height: 1.5; }

/* ─── OPLEV ─── */
#oplev {
  background: radial-gradient(ellipse at 12% 85%, rgba(255,255,255,0.09) 0%, transparent 50%), var(--bg);
  padding: 130px 56px;
  border-top: 5px solid rgba(255,255,255,0.70);
}
.oplev-hdr { max-width: 1200px; margin: 0 auto 70px; }
.oplev-title { font-size: clamp(34px, 4vw, 54px); font-weight: 400; letter-spacing: -.025em; }
.oplev-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 4px;
}
.oplev-item { display: flex; flex-direction: column; }
.oplev-photo {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
}
.oplev-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .7s ease;
}
.oplev-item:hover .oplev-photo img { transform: scale(1.04); }
/* Photo placeholders — green gradient variations per slot */
.ph { width:100%; height:100%; display:block; }
.ph-1 { background: linear-gradient(140deg,#061209 0%,#1a3828 50%,#0b1e12 100%); }
.ph-2 { background: linear-gradient(140deg,#0a1a0d 0%,#214030 55%,#0d2018 100%); }
.ph-3 { background: linear-gradient(140deg,#081008 0%,#1e3820 50%,#0a1c10 100%); }
.ph-4 { background: linear-gradient(140deg,#06100a 0%,#183020 55%,#0b1810 100%); }
.ph-5 { background: linear-gradient(140deg,#0d180a 0%,#263818 50%,#0f1c08 100%); }
.ph-6 { background: linear-gradient(140deg,#081208 0%,#1c3214 55%,#0e1a0c 100%); }
.ph-label {
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  font-size:10px; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(240,237,230,.18); pointer-events:none;
}
.oplev-caption { padding: 20px 0 32px; }
.oplev-cap-title { font-size: 17px; font-weight: 400; color: var(--text); margin-bottom: 6px; }
.oplev-cap-body { font-size: 13px; color: var(--mute); line-height: 1.65; max-width: 320px; }

/* ─── BILLETTER ─── */
#billetter {
  background: radial-gradient(ellipse at 88% 80%, rgba(255,255,255,0.10) 0%, transparent 55%), var(--bg2);
  padding: 130px 56px;
  border-top: 5px solid rgba(255,255,255,0.70);
}
.bil-inner { max-width: 1200px; margin: 0 auto; }
.bil-hdr {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px;
}
.bil-title { font-size: clamp(34px, 4vw, 54px); font-weight: 300; letter-spacing: -.025em; }
.bil-note { font-size: 13px; color: var(--mute); line-height: 1.6; max-width: 210px; text-align: right; }
.ticket-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.5px; background: var(--bdr);
  border: 0.5px solid var(--bdr); border-radius: 14px; overflow: hidden; margin-bottom: 20px;
}
.ticket.trade {
  background: #0d1a0f;
  border-bottom: none;
}
.ticket {
  background: var(--bg3); padding: 44px 36px;
  display: flex; flex-direction: column;
}
.ticket-day {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 36px;
}
.ticket-body { flex: 1; }
.price-eb {
  font-size: clamp(44px, 5vw, 62px); font-weight: 300;
  letter-spacing: -.03em; line-height: 1; color: var(--text);
}
.price-normal { font-size: 14px; color: var(--mute); margin-top: 8px; text-decoration: line-through; }
.eb-badge {
  display: inline-block; margin-top: 14px;
  font-size: 10px; letter-spacing: .08em;
  color: var(--acc); border: 0.5px solid rgba(74,144,104,.4);
  padding: 4px 12px; border-radius: 14px;
}
.ticket-btn {
  display: block; text-align: center;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); border: 0.5px solid rgba(240,237,230,.22);
  padding: 13px; border-radius: 28px; text-decoration: none;
  margin-top: 32px; transition: border-color .2s, background .2s;
}
.ticket-btn:hover { border-color: rgba(240,237,230,.5); background: rgba(240,237,230,.05); }
.ticket-hours { font-size: 12px; color: var(--mute); margin-top: 16px; letter-spacing: .02em; }
.gratis { font-size: 13px; color: var(--mute); padding-top: 18px; border-top: 0.5px solid var(--bdr); }

/* ─── CITATER ─── */
#citater {
  background: radial-gradient(ellipse at 15% 80%, rgba(255,255,255,0.09) 0%, transparent 55%), var(--bg3);
  padding: 130px 56px;
  border-top: 5px solid rgba(255,255,255,0.70);
}
.cit-inner { max-width: 1200px; margin: 0 auto; }
.cit-eyebrow { margin-bottom: 60px; }
/* Brand logo grid */
.brand-grid {
  display: grid; grid-template-columns: repeat(10,1fr);
  gap: 0; margin-bottom: 90px;
  border: 0.5px solid var(--bdr); border-radius: 12px; overflow: hidden;
}
.brand-cell {
  padding: 22px 12px; display: flex; align-items: center; justify-content: center;
  border-right: 0.5px solid var(--bdr); border-bottom: 0.5px solid var(--bdr);
  text-decoration: none; transition: background .2s;
}
.brand-cell:nth-child(10n) { border-right: none; }
.brand-cell:nth-last-child(-n+8) { border-bottom: none; }
.brand-cell:hover { background: rgba(240,237,230,.04); }
.brand-name {
  font-size: 11px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(240,237,230,.45);
  transition: color .2s; text-align: center; line-height: 1.3;
}
.brand-cell:hover .brand-name { color: rgba(240,237,230,.85); }
.cite-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 70px; }
.cite-item {}
.quote-glyph {
  font-size: 90px; line-height: .5; font-weight: 300;
  color: rgba(74,144,104,.28); display: block; margin-bottom: 28px;
}
.cite-text {
  font-size: 18px; font-weight: 300; line-height: 1.7;
  color: var(--text); font-style: italic; margin-bottom: 32px;
}
.cite-rule { width: 36px; height: 0.5px; background: var(--acc); margin-bottom: 18px; }
.cite-name { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.cite-co { font-size: 12px; color: var(--mute); line-height: 1.5; }

/* ─── UDSTILLER ─── */
#udstiller {
  background: radial-gradient(ellipse at 90% 85%, rgba(255,255,255,0.10) 0%, transparent 55%), var(--bg2);
  padding: 130px 56px;
  border-top: 5px solid rgba(255,255,255,0.70);
}
.udst-inner { max-width: 1200px; margin: 0 auto; }
.udst-top { margin-bottom: 60px; }
.udst-heading {
  font-size: clamp(34px, 4vw, 54px); font-weight: 400;
  letter-spacing: -.025em; line-height: 1.15; margin-bottom: 22px; max-width: 560px;
}
.udst-body { font-size: 15px; color: var(--mute); line-height: 1.8; max-width: 480px; }
/* Partner logo grid */
.partner-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 1.5px; background: var(--bdr);
  border: 0.5px solid var(--bdr); border-radius: 12px; overflow: hidden;
  margin-bottom: 72px;
}
.partner-cell {
  background: var(--bg3); padding: 32px 20px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .25s;
}
.partner-cell:hover { background: #1e3a2a; }
/* Logo images go inside .partner-logo-img — using text fallback for prototype */
.partner-logo-img {
  max-width: 100%; max-height: 36px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .55; transition: opacity .25s;
}
.partner-cell:hover .partner-logo-img { opacity: .9; }
.partner-name {
  font-size: 13px; font-weight: 500; color: var(--mute);
  letter-spacing: .04em; transition: color .25s;
}
.partner-cell:hover .partner-name { color: var(--text); }
/* Contact layout */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start;
}
.contact-heading {
  font-size: 26px; font-weight: 400; letter-spacing: -.015em;
  margin-bottom: 14px;
}
.contact-body { font-size: 14px; color: var(--mute); line-height: 1.75; }
.form { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form input, .form textarea, .form select {
  background: rgba(240,237,230,.04);
  border: 0.5px solid rgba(240,237,230,.12);
  border-radius: 0px; padding: 14px 16px;
  font-size: 14px; color: var(--text);
  font-family:  "scandia-web", sans-serif;
  outline: none; width: 100%;
  transition: border-color .2s;
}
.form input:focus, .form textarea:focus { border-color: rgba(240,237,230,.32); }
.form input::placeholder, .form textarea::placeholder { color: rgba(240,237,230,.3); }
.form textarea { height: 120px; resize: vertical; }
.btn-submit {
  background: var(--acc); border: none; border-radius: 28px;
  padding: 13px 28px; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text); cursor: pointer;
  font-family:  "scandia-web", sans-serif; align-self: flex-start;
  transition: background .2s;
}
.btn-submit:hover { background: #5aaa78; }

/* ─── PRAKTISK ─── */
#praktisk {
  background: var(--bg);
  padding: 100px 56px;
  border-top: 5px solid rgba(255,255,255,0.70);
}
.prak-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 56px;
}
.prak-label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--acc); margin-bottom: 16px; display: block;
}
.prak-title { font-size: 17px; font-weight: 400; margin-bottom: 12px; }
.prak-body { font-size: 14px; color: var(--mute); line-height: 1.75; }
.prak-link { color: var(--acc); text-decoration: none; }
.prak-link:hover { text-decoration: underline; }

/* ─── PARTNERE ─── */
#partnere {
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.07) 0%, transparent 60%), var(--bg);
  padding: 100px 56px;
  border-top: 5px solid rgba(255,255,255,0.70);
  overflow: hidden;
}
.partnere-inner { max-width: 1200px; margin: 0 auto; }
.partnere-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-auto-rows: 90px;
  gap: 8px;
  margin-top: 48px;
}
.partnere-cell {
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .2s;
  border-radius: 6px;
}
.partnere-cell:hover { background: rgba(240,237,230,.04); }
/* Logo billede — tilføj når PNG-filer er klar */
.partnere-logo {
  max-width: 80px; max-height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.42;
  transition: opacity .25s;
  display: block;
}
.partnere-cell:hover .partnere-logo { opacity: 0.85; }
/* Tekst-fallback bruges indtil logo-filer er tilføjet */
.partnere-name {
  font-size: 10px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(240,237,230,.38);
  transition: color .2s;
  text-align: center; line-height: 1.4;
}
.partnere-cell:hover .partnere-name { color: rgba(240,237,230,.82); }

/* ─── NYHEDSBREV ─── */
#nyhedsbrev {
  background: radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.12) 0%, transparent 60%), var(--bg3);
  padding: 120px 56px;
  text-align: center;
  border-top: 5px solid rgba(255,255,255,0.70);
}
.nl-section-inner { max-width: 560px; margin: 0 auto; }
.nl-section-title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 400;
  letter-spacing: -.02em; line-height: 1.2; margin-bottom: 14px;
}
.nl-section-body { font-size: 15px; color: var(--mute); line-height: 1.75; margin-bottom: 40px; }
.nl-section-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.nl-section-input {
  flex: 1; background: rgba(240,237,230,.05);
  border: 0.5px solid rgba(240,237,230,.18);
  border-radius: 28px; padding: 13px 22px;
  font-size: 14px; color: var(--text);
  font-family:  "scandia-web", sans-serif; outline: none;
  transition: border-color .2s;
}
.nl-section-input:focus { border-color: rgba(240,237,230,.4); }
.nl-section-input::placeholder { color: rgba(240,237,230,.32); }
.nl-section-btn {
  background: transparent; border: 0.5px solid rgba(240,237,230,.35);
  border-radius: 28px; padding: 13px 24px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); cursor: pointer;
  font-family:  "scandia-web", sans-serif; white-space: nowrap;
  transition: border-color .2s, background .2s;
}
.nl-section-btn:hover { border-color: rgba(240,237,230,.65); background: rgba(240,237,230,.07); }
.nl-consent { font-size: 11px; color: rgba(240,237,230,.28); margin-top: 14px; }

/* ─── FOOTER ─── */
footer {
  background: #050a06; border-top: 0.5px solid var(--bdr);
  padding: 44px 56px;
}
.footer-inner {
  max-width: 1050px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 45px;
}
.footer-brand { font-size: 14px; font-weight: 500; color: var(--text); letter-spacing: .04em; }
.footer-brand span { display: block; font-size: 11px; color: var(--mute); font-weight: 400; margin-top: 4px; letter-spacing: .1em; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 12px; color: var(--mute); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.newsletter { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.nl-label { font-size: 11px; color: var(--mute); letter-spacing: .1em; text-transform: uppercase; }
.nl-form { display: flex; gap: 8px; }
.nl-input {
  background: rgba(240,237,230,.05); border: 0.5px solid rgba(240,237,230,.14);
  border-radius: 28px; padding: 9px 18px; font-size: 13px; color: var(--text);
  font-family: "scandia-web", sans-serif; width: 210px; outline: none; transition: border-color .2s;
}
.nl-input:focus { border-color: rgba(240,237,230,.32); }
.nl-input::placeholder { color: rgba(240,237,230,.3); }
.nl-btn {
  background: transparent; border: 0.5px solid rgba(240,237,230,.3);
  border-radius: 28px; padding: 9px 18px; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text);
  cursor: pointer; font-family: "scandia-web", sans-serif; transition: border-color .2s, background .2s;
}
.nl-btn:hover { border-color: rgba(240,237,230,.55); background: rgba(240,237,230,.06); }

/* ─── MOBILE ─── */
@media (max-width: 960px) {
  nav, nav.scrolled { padding: 20px 24px; }
  .nav-links li:not(:first-child):not(:last-child) { display: none; }
  .hero { padding: 0 24px 60px; }
  .scroll-hint { right: 24px; }
  #om-os, #oplev, #billetter, #citater, #udstiller, #praktisk { padding: 90px 24px; }
  footer { padding: 40px 24px; }
  .om-top, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: 1fr; gap: 40px; }
  .stat { border-right: none; margin-right: 0; padding-right: 0; padding-bottom: 40px; border-bottom: 0.5px solid var(--bdr); }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
  .nl-section-form { flex-direction: column; }
  .oplev-grid, .cite-grid, .prak-inner { grid-template-columns: 1fr; }
  .ticket-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(4,1fr); }
  .brand-cell:nth-child(10n) { border-right: 0.5px solid var(--bdr); }
  .brand-cell:nth-last-child(-n+8) { border-bottom: 0.5px solid var(--bdr); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .newsletter { align-items: flex-start; }
  .bil-hdr { flex-direction: column; align-items: flex-start; gap: 16px; }
  .bil-note { text-align: left; max-width: 100%; }
  #partnere { padding: 72px 24px; }
  .partnere-grid { grid-template-columns: repeat(5, 1fr); }
  .scroll-hint { display: none; }
  .hero-sep { display: none; }
}