/* ==========================================================================
   LXV Group — Hoofdstylesheet
   Premium 4x4 / Land Rover / Range Rover specialist
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Kleur — goud/zwart paletten gebaseerd op het LXV-logo */
  --gold-100: #fbeec1;
  --gold-200: #f5e0a3;
  --gold-300: #e9c878;
  --gold-400: #d4af37;
  --gold-500: #b8902a;
  --gold-600: #8c6c1f;
  --gold-glow: rgba(212, 175, 55, 0.35);

  --ink-900: #050505;
  --ink-850: #0a0a0a;
  --ink-800: #111111;
  --ink-700: #161616;
  --ink-600: #1c1c1c;
  --ink-500: #242424;
  --ink-400: #2e2e2e;
  --ink-300: #3a3a3a;

  /* Warme parchment-tinten — passen bij het goud van het logo */
  --paper:        #f1ead6;   /* helder champagne / parchment */
  --paper-soft:   #e6dec4;   /* dieper warm zand */
  --paper-deep:   #cdb98a;   /* koffie-met-room */
  --paper-line:   rgba(140, 108, 31, 0.22);
  --on-paper:     #2a2418;   /* donker bruin voor tekst op licht */
  --on-paper-mut: #5a4f3a;

  --text:   #ebe7df;
  --text-muted: #a8a39a;
  --text-dim:   #6f6a62;
  --line:   rgba(212, 175, 55, 0.18);
  --line-soft: rgba(255, 255, 255, 0.06);

  /* Typografie */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Schaal — fijner en bescheidener dan eerder, dichter bij de
     proporties van de oorspronkelijke leeuwenkamp4x4.nl */
  --step--1: clamp(0.78rem, 0.76rem + 0.10vw, 0.84rem);
  --step-0:  clamp(0.88rem, 0.86rem + 0.12vw, 0.95rem);
  --step-1:  clamp(0.98rem, 0.94rem + 0.20vw, 1.10rem);
  --step-2:  clamp(1.15rem, 1.05rem + 0.45vw, 1.40rem);
  --step-3:  clamp(1.35rem, 1.20rem + 0.70vw, 1.75rem);
  --step-4:  clamp(1.65rem, 1.40rem + 1.10vw, 2.30rem);
  --step-5:  clamp(2.00rem, 1.65rem + 1.60vw, 2.90rem);
  --step-6:  clamp(2.40rem, 1.90rem + 2.40vw, 3.80rem);

  /* Lay-out */
  --container: 1280px;
  --container-wide: 1440px;
  --container-narrow: 980px;
  --gutter: clamp(1.2rem, 3vw, 2.4rem);
  --section-y: clamp(4rem, 8vw, 7.5rem);

  /* Header */
  --header-h: 96px;
  --header-h-compact: 64px;

  /* Effecten */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 14px 40px -16px rgba(0,0,0,.6), 0 2px 6px rgba(0,0,0,.25);
  --shadow-gold: 0 0 0 1px var(--line), 0 18px 50px -20px var(--gold-glow);

  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --ease-in-out: cubic-bezier(.7, 0, .3, 1);
  --t-fast: 180ms;
  --t-base: 320ms;
  --t-slow: 600ms;

  /* Gradients */
  --gold-grad: linear-gradient(135deg, #fbeec1 0%, #d4af37 35%, #8c6c1f 65%, #d4af37 100%);
  --gold-grad-text: linear-gradient(180deg, #f5e0a3 0%, #d4af37 60%, #a78423 100%);
  --dark-grad: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  /* Zachtere hero-veil — laat het LXV-schild + gloed prominent zichtbaar zijn */
  --hero-veil:
    linear-gradient(90deg, rgba(5,5,5,.78) 0%, rgba(5,5,5,.45) 30%, rgba(5,5,5,.05) 60%, transparent 80%),
    linear-gradient(180deg, rgba(5,5,5,.10) 0%, rgba(5,5,5,.35) 100%);
}

@media (max-width: 880px) {
  :root {
    /* Op mobiel: zachte top-to-bottom veil, schild iets minder dominant */
    --hero-veil:
      linear-gradient(180deg, rgba(5,5,5,.15) 0%, rgba(5,5,5,.55) 65%, rgba(5,5,5,.85) 100%);
  }
}

/* ---------- Reset / basis ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--text);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video,
svg { max-width: 100%; height: auto; display: block; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

a { color: var(--gold-300); text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
a:hover, a:focus-visible { color: var(--gold-200); }

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-400); color: var(--ink-900); }

/* ---------- Typografie ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0 0 .5em;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
h5 { font-size: var(--step-0); }

p { margin: 0 0 1.1em; color: var(--text); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--gold-400);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .8em;
  margin-bottom: 1.1em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-400);
  display: inline-block;
}

.lead { font-size: var(--step-1); color: var(--text); max-width: 62ch; line-height: 1.6; }

.gold-text {
  background: var(--gold-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-400);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }

/* "Alt" sectie — donkerzwart, met een subtiele warme gouden gloed */
.section--alt {
  background: var(--ink-850);
  position: relative;
  overflow: hidden;
}
.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212, 175, 55, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section--alt > * { position: relative; z-index: 1; }

/* "Paper" sectie — warme champagne tint, prachtig contrast met de zwarte secties */
.section--paper {
  background:
    radial-gradient(ellipse 70% 80% at 50% 40%, var(--paper) 0%, var(--paper-soft) 100%);
  color: var(--on-paper);
  position: relative;
  overflow: hidden;
}
.section--paper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(212,175,55,0.10), transparent 60%);
  pointer-events: none;
}
.section--paper > * { position: relative; z-index: 1; }
.section--paper h1,
.section--paper h2,
.section--paper h3,
.section--paper h4,
.section--paper h5 { color: var(--on-paper); }
.section--paper p { color: var(--on-paper-mut); }
.section--paper a { color: var(--gold-600); }
.section--paper a:hover { color: var(--gold-500); }
.section--paper .eyebrow { color: var(--gold-600); }
.section--paper .eyebrow::before { background: var(--gold-600); }
.section--paper .divider--gold { background: linear-gradient(90deg, var(--gold-600), var(--gold-400)); }
.section--paper .gold-text { color: var(--gold-600); -webkit-text-fill-color: initial; background: none; }
.section--paper .stats { border-color: var(--paper-line); }
.section--paper .stat__num { color: var(--gold-600); }
.section--paper .stat__label { color: var(--on-paper-mut); }
.section--paper .quote { color: var(--on-paper); border-left-color: var(--gold-500); }
.section--paper .quote cite { color: var(--on-paper-mut); }
.section--paper .card__specs li span:first-child { color: var(--on-paper-mut); }
.section--paper .card__specs li span:last-child { color: var(--on-paper); }
.section--paper .btn--ghost {
  color: var(--on-paper);
  border-color: rgba(42, 36, 24, 0.30);
}
.section--paper .btn--ghost:hover {
  color: var(--gold-600);
  border-color: var(--gold-500);
  background: rgba(212,175,55,0.08);
}
.section--paper .btn--gold-ghost {
  color: var(--gold-600);
  border-color: var(--gold-500);
}
.section--paper .input,
.section--paper .textarea,
.section--paper .select {
  background: rgba(255,255,255,0.55);
  border-color: var(--paper-line);
  color: var(--on-paper);
}
.section--paper .input::placeholder,
.section--paper .textarea::placeholder { color: var(--on-paper-mut); }
.section--paper .input:focus,
.section--paper .textarea:focus,
.section--paper .select:focus {
  border-color: var(--gold-500);
  background: rgba(255,255,255,0.85);
}
.section--paper .field label,
.section--paper .field > span { color: var(--on-paper-mut); }

.grid-2 {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-2--narrow-left { grid-template-columns: 5fr 7fr; }
  .grid-2--narrow-right { grid-template-columns: 7fr 5fr; }
}

.grid-3 {
  display: grid;
  gap: clamp(1.4rem, 2.4vw, 2rem);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.divider--gold {
  height: 2px;
  width: 60px;
  background: var(--gold-grad);
  border: 0;
  margin: 1.2rem 0 2rem;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition:
    height var(--t-base) var(--ease-out),
    background-color var(--t-base) var(--ease-out),
    backdrop-filter var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,.85) 0%, rgba(5,5,5,.0) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--t-base) var(--ease-out);
}
.site-header.is-compact {
  height: var(--header-h-compact);
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.site-header.is-compact::before { opacity: 0; }

.nav-row {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.2rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(1.2rem, 2vw, 2rem);
  align-items: center;
}
.nav-list--left { justify-content: flex-end; }
.nav-list--right { justify-content: flex-start; }

.nav-list a {
  color: var(--paper);
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .35em .15em;
  position: relative;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transform: translateX(-50%);
  transition: width var(--t-base) var(--ease-out);
}
.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a[aria-current="page"] { color: var(--gold-300); }
.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-list a[aria-current="page"]::after { width: 100%; }

/* Logo block (centered) */
.nav-brand { justify-self: center; display: flex; align-items: center; }
.nav-brand a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-brand .logo-full,
.nav-brand .logo-mark {
  transition:
    opacity var(--t-base) var(--ease-out),
    transform var(--t-base) var(--ease-out),
    max-height var(--t-base) var(--ease-out);
}
.nav-brand .logo-full { max-height: 64px; width: auto; opacity: 1; }
.nav-brand .logo-mark {
  position: absolute;
  inset: 0;
  margin: auto;
  max-height: 36px;
  width: auto;
  opacity: 0;
  transform: scale(.9);
}
.site-header.is-compact .nav-brand .logo-full {
  max-height: 32px;
  opacity: 0;
  transform: scale(.92);
}
.site-header.is-compact .nav-brand .logo-mark {
  opacity: 1;
  transform: scale(1);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 2;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1.5px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-in-out),
              opacity var(--t-fast) var(--ease-out),
              top var(--t-base) var(--ease-in-out);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile off-canvas nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink-900);
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-slow) var(--ease-in-out),
              opacity var(--t-base) var(--ease-out);
  padding: var(--header-h-compact) var(--gutter);
}
.mobile-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(212,175,55,0.10), transparent 60%);
  pointer-events: none;
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: center;
  position: relative;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  color: var(--paper);
  letter-spacing: .02em;
}
.mobile-nav a:hover { color: var(--gold-300); }
.mobile-nav .mobile-foot {
  margin-top: 2rem;
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .25em;
  text-transform: uppercase;
  position: relative;
}

@media (max-width: 920px) {
  .nav-row { grid-template-columns: auto 1fr auto; }
  .nav-list--desktop { display: none; }
  .nav-toggle { display: block; }
  .nav-brand { justify-self: start; }
  .nav-brand .logo-full { max-height: 44px; }
  .site-header.is-compact .nav-brand .logo-full { max-height: 0; }
  .site-header.is-compact .nav-brand .logo-mark { max-height: 28px; }
}

main { padding-top: var(--header-h); }
.no-header-offset main { padding-top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .95em 1.6em;
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all var(--t-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--gold-grad);
  color: var(--ink-900);
  box-shadow: 0 10px 30px -10px var(--gold-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px var(--gold-glow);
  color: var(--ink-900);
}
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,.25);
}
.btn--ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  background: rgba(212,175,55,.06);
}
.btn--gold-ghost {
  background: transparent;
  color: var(--gold-300);
  border-color: var(--gold-400);
}
.btn--gold-ghost:hover { background: var(--gold-grad); color: var(--ink-900); }
.btn--sm { padding: .65em 1.2em; font-size: .72rem; }
.btn--lg { padding: 1.05em 1.9em; font-size: .88rem; }

.btn .arrow {
  display: inline-block;
  width: 1em;
  height: 1px;
  background: currentColor;
  position: relative;
  margin-left: .3em;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 1.4em; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(580px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(6rem, 12vw, 9rem) clamp(3rem, 6vw, 5rem);
  background: var(--ink-900);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: contrast(1.08) saturate(1.10);
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--hero-veil);
  pointer-events: none;
}
/* Hero "klein" — gebruikt op subpagina's, iets compacter */
.hero--compact { min-height: clamp(440px, 60vh, 560px); padding-block: clamp(6rem, 10vw, 8rem) clamp(2rem, 4vw, 3rem); }
.hero__inner { max-width: 720px; position: relative; z-index: 1; }
.hero h1 {
  font-weight: 400;
  letter-spacing: -0.01em;
  font-size: clamp(2.2rem, 1.7rem + 2.6vw, 4.0rem);
  line-height: 1.05;
  margin-bottom: .8em;
}
.hero--compact h1 { font-size: clamp(1.9rem, 1.5rem + 2.0vw, 3.2rem); }
.hero .lead {
  color: var(--text);
  font-size: var(--step-1);
  margin-bottom: 2rem;
  max-width: 56ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero .breadcrumbs {
  margin-top: 1.2rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero .breadcrumbs a { color: var(--text-muted); }
.hero .breadcrumbs a:hover { color: var(--gold-300); }
.hero .breadcrumbs span { color: var(--gold-400); margin-inline: .8em; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: .8rem;
  z-index: 2;
}
.hero--compact .hero-scroll { display: none; }
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: var(--gold-400);
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(.4); opacity: .3; }
  50%      { transform: scaleY(1);  opacity: 1; }
}

/* ---------- Page header (small hero for sub-pages) ---------- */
.page-head {
  position: relative;
  padding-block: clamp(6rem, 11vw, 8rem) clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  background: var(--ink-850);
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(212,175,55,.15), transparent 55%);
  pointer-events: none;
}
.page-head h1 { font-size: var(--step-4); }
.page-head .breadcrumbs {
  margin-top: 1.2rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}
.page-head .breadcrumbs a { color: var(--text-muted); }
.page-head .breadcrumbs a:hover { color: var(--gold-300); }
.page-head .breadcrumbs span { color: var(--gold-400); margin-inline: .8em; }
.page-head > * { position: relative; }

/* ---------- Image / figure ---------- */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: var(--ink-700);
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease-out); }
.frame:hover img { transform: scale(1.04); }
.frame--tall { aspect-ratio: 4/5; }
.frame--landscape { aspect-ratio: 16/10; }
.frame--square { aspect-ratio: 1/1; }
.frame--bordered { outline: 1px solid var(--line); outline-offset: 8px; }

/* ---------- Cards ---------- */
.card {
  background: var(--ink-700);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}

.card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink-800);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.06); }

.card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(5,5,5,.75);
  backdrop-filter: blur(4px);
  color: var(--gold-300);
  padding: .35em .9em;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}

.card__body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card__title { font-size: 1.25rem; margin: 0 0 .25em; color: var(--paper); line-height: 1.2; }
.card__sub {
  color: var(--gold-400);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.card__specs {
  list-style: none;
  padding: 0;
  margin: .5rem 0 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem 1.2rem;
  font-size: .85rem;
}
.card__specs li { display: flex; flex-direction: column; gap: .15em; }
.card__specs li span:first-child {
  color: var(--text-muted);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.card__specs li span:last-child { color: var(--paper); font-weight: 500; }

.card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  color: var(--gold-300);
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.card__cta::after { content: "→"; transition: transform var(--t-base) var(--ease-out); }
.card:hover .card__cta::after { transform: translateX(4px); }
.card__cta-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.card__price {
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

/* ---------- Timeline — verhalend, alternerend met gouden lijn ---------- */
.timeline {
  position: relative;
  padding-block: 1rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.1rem;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--gold-400) 12%,
    var(--gold-500) 50%,
    var(--gold-400) 88%,
    transparent 100%);
  opacity: .7;
}
.timeline__item {
  position: relative;
  padding-left: 3.5rem;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(1.1rem - 7px);
  top: clamp(2.0rem, 3.5vw, 3.0rem);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow:
    0 0 0 4px var(--ink-900),
    0 0 0 5px var(--gold-400),
    0 0 20px var(--gold-glow);
}
.timeline__year {
  font-family: var(--font-display);
  font-size: var(--step-3);
  color: var(--gold-300);
  font-weight: 500;
  line-height: 1;
  margin-bottom: .4rem;
  letter-spacing: -.01em;
}
.timeline__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--paper);
  margin: 0 0 .55rem;
}
.timeline__text {
  color: var(--text);
  max-width: 60ch;
  margin: 0;
}
.timeline__text + .timeline__text { margin-top: .8rem; }
.timeline__media {
  margin-top: 1.2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 480px;
  border: 1px solid var(--line-soft);
}
.timeline__media img { width: 100%; height: auto; display: block; transition: transform var(--t-slow) var(--ease-out); }
.timeline__media:hover img { transform: scale(1.03); }

/* Op desktop: alternerend links/rechts rondom een centrale lijn */
@media (min-width: 880px) {
  .timeline { padding-inline: 0; }
  .timeline::before { left: 50%; transform: translateX(-50%); }
  .timeline__item {
    width: 50%;
    padding-left: 0;
    padding-right: clamp(2rem, 4vw, 3.5rem);
    text-align: right;
  }
  .timeline__item::before {
    left: auto;
    right: -8px;
    top: clamp(2.0rem, 3.5vw, 3.0rem);
  }
  .timeline__media { margin-left: auto; }
  .timeline__item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: clamp(2rem, 4vw, 3.5rem);
    text-align: left;
  }
  .timeline__item:nth-child(even)::before {
    left: -8px;
    right: auto;
  }
  .timeline__item:nth-child(even) .timeline__media { margin-left: 0; }
}

/* Op paper-secties */
.section--paper .timeline::before {
  background: linear-gradient(180deg,
    transparent 0%,
    var(--gold-500) 12%,
    var(--gold-600) 50%,
    var(--gold-500) 88%,
    transparent 100%);
}
.section--paper .timeline__item::before {
  box-shadow:
    0 0 0 4px var(--paper),
    0 0 0 5px var(--gold-500),
    0 0 20px rgba(212,175,55,0.4);
}
.section--paper .timeline__year { color: var(--gold-600); }
.section--paper .timeline__title { color: var(--on-paper); }
.section--paper .timeline__text { color: var(--on-paper-mut); }
.section--paper .timeline__media { border-color: var(--paper-line); }

/* ---------- Stat ---------- */
.stats {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 2.4rem;
}
.stat { text-align: left; }
.stat__num {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
  color: var(--gold-300);
  margin-bottom: .35rem;
}
.stat__label {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Quote ---------- */
.quote {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.35;
  color: var(--paper);
  font-style: italic;
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--gold-400);
  max-width: 60ch;
}
.quote cite {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Forms ---------- */
.form-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.form-row > * { flex: 1; min-width: 220px; }

.input,
.textarea,
.select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  color: var(--paper);
  padding: .95em 1.1em;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color var(--t-base), background var(--t-base);
}
.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(212,175,55,.05);
}
.textarea { resize: vertical; min-height: 140px; }

.field { display: flex; flex-direction: column; gap: .5rem; }
.field label,
.field > span {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Spec table ---------- */
.spec-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.spec-table th,
.spec-table td {
  text-align: left;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.spec-table th {
  width: 44%;
  font-weight: 400;
  color: var(--text-muted);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding-right: 1.5rem;
}
.spec-table td { color: var(--paper); font-weight: 500; }

/* ---------- Gallery ---------- */
.gallery {
  --gap: clamp(.6rem, 1.2vw, 1rem);
  column-count: 1;
  column-gap: var(--gap);
}
@media (min-width: 560px) { .gallery { column-count: 2; } }
@media (min-width: 880px) { .gallery { column-count: 3; } }
@media (min-width: 1240px){ .gallery { column-count: 4; } }

.gallery__item {
  break-inside: avoid;
  margin-bottom: var(--gap);
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--ink-700);
  display: block;
}
.gallery__item img {
  width: 100%;
  transition: transform var(--t-slow) var(--ease-out),
              filter var(--t-base) var(--ease-out);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,5,5,.75) 100%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
  pointer-events: none;
}
.gallery__item:hover img { transform: scale(1.04); filter: brightness(1.05); }
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-base), transform var(--t-base);
  z-index: 1;
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 4rem 1.5rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 80vh; box-shadow: 0 30px 80px -20px black; }
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--paper);
  font-size: 1.2rem;
}
.lightbox__close:hover { background: var(--gold-400); color: var(--ink-900); border-color: var(--gold-400); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--paper);
}
.lightbox__nav:hover { background: var(--gold-400); color: var(--ink-900); border-color: var(--gold-400); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* ---------- Video landing ---------- */
.video-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.video-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-color: var(--ink-900);
}
.video-hero__media video { width: 100%; height: 100%; object-fit: cover; }
.video-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5,5,5,.45) 0%, rgba(5,5,5,.65) 100%);
}
.video-hero__content { max-width: 800px; padding: 0 var(--gutter); }
.video-hero h1 {
  font-size: clamp(2.2rem, 1.7rem + 2.6vw, 4.0rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.video-hero .lead { margin-inline: auto; }

/* ---------- Footer — donkerzwart met kleine warme gloed ---------- */
.site-footer {
  background: var(--ink-850);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(3rem, 5vw, 5rem) 2rem;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 90% at 50% 100%, rgba(212, 175, 55, 0.06), transparent 70%);
  pointer-events: none;
}
.site-footer > * { position: relative; }

.footer-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 3rem;
}
.footer-brand img { max-height: 96px; }
.footer-brand p { margin-top: 1.2rem; font-size: .9rem; max-width: 32ch; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 1.2rem;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-col a { color: var(--text-muted); font-size: .92rem; }
.footer-col a:hover { color: var(--gold-300); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.socials {
  display: flex;
  gap: .8rem;
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t-base);
}
.socials a:hover {
  background: var(--gold-grad);
  color: var(--ink-900);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}
.socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Animations on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0ms !important;
    transition-duration: 0ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Misc helpers ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }

.section > * { position: relative; z-index: 1; }

/* Skip-link */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  background: var(--gold-400);
  color: var(--ink-900);
  padding: .8em 1.2em;
  z-index: 999;
  border-radius: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
