/* ==========================================================================
   Salar Azimi — design system
   Tokens 1:1 overgenomen van salarazimi.nl (zie docs/research/DESIGN_TOKENS.md)
   ========================================================================== */

@font-face {
  font-family: "Dubiel";
  src: url("../assets/fonts/Dubiel.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* kleuren */
  --bg: #0d0d0c;
  --bg-deep: #000;
  --bg-footer-bottom: #110a02;
  --text: #fcfcfc;
  --text-cream: #fdf7ea;
  --text-card: #f4f4f4;
  --nav-link: #ede1cf;
  --gold: #d1ad7d;
  --gold-bright: #f5bc6b;
  --gold-warm: #f2ab46;
  --gold-solid: #f3ad4b;
  --on-gold: #151515;
  --muted: rgba(252, 252, 252, 0.72);
  --line: rgba(209, 173, 125, 0.35);
  --btn-green: #1c6b21;
  --btn-green-hover: #248029;

  --grad-gold: linear-gradient(90deg, var(--gold-warm), var(--gold-bright));
  --grad-card: linear-gradient(301deg, rgba(243, 173, 75, 0.23), var(--bg));
  --grad-veil: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));

  /* typografie */
  --font-display: "Dubiel", "Times New Roman", Times, serif;
  --font-body: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* layout */
  --container: 1280px;
  --gutter: 5%;
  --section-y: 112px;
  --radius: 8px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

::selection { background: var(--gold); color: var(--on-gold); }

/* ---------- layout helpers ---------- */
.padding-global { padding-inline: var(--gutter); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.section-pad { padding-block: var(--section-y); }
.max-w-medium { max-width: 560px; }
.max-w-large { max-width: 768px; }
.align-center { margin-inline: auto; }
.text-center { text-align: center; }

/* ---------- typografie ---------- */
.h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--text);
}

.h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--text-cream);
}

.h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--text);
}

.tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.gold { color: var(--gold); }

.text-medium { font-size: 18px; line-height: 1.5; color: #fff; }
.text-light { font-weight: 300; }
.text-muted { color: var(--muted); }

/* ---------- knoppen ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 34px;
  border-radius: 4px;
  background: var(--gold-solid);
  color: var(--on-gold);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(243, 173, 75, 0.22);
}
.btn-primary img { width: 17px; height: auto; transition: transform 0.25s var(--ease); }
.btn-primary:hover img { transform: translateX(4px); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 0;
  border-radius: 4px;
  background: var(--gold-solid);
  color: var(--on-gold);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-1px); }

.btn-book {
  display: block;
  width: 100%;
  padding: 12px 24px;
  border: 1px solid var(--text-card);
  border-radius: 5px;
  background: var(--btn-green);
  color: var(--text-cream);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn-book:hover { background: var(--btn-green-hover); transform: translateY(-2px); }

.btn-book--gold {
  background: var(--gold-solid);
  border-color: transparent;
  color: var(--bg);
}
.btn-book--gold:hover { background: var(--gold-bright); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  border: 1px solid rgba(209, 173, 125, 0.55);
  border-radius: 4px;
  color: var(--text-cream);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--on-gold); }

/* ---------- scroll-progressbar ---------- */
.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 6px;
  background: var(--gold);
  z-index: 999999;
}

/* ==========================================================================
   Navigatie
   ========================================================================== */
.navbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 99;
  height: 128px;
  display: flex;
  align-items: center;
  padding-inline: var(--gutter);
}

.navbar__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.navbar__logo img { width: 77px; height: auto; }

.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.navbar__link {
  position: relative;
  padding: 8px 16px;
  font-size: 17.6px;
  line-height: 1.5;
  color: var(--nav-link);
  transition: color 0.2s var(--ease);
}
.navbar__link:hover,
.navbar__link[aria-current="page"] { color: var(--gold-bright); }

.navbar__link--marrakech::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.navbar__link--marrakech:hover::after,
.navbar__link--marrakech[aria-current="page"]::after { transform: scaleX(1); }

/* dropdown */
.navbar__dropdown { position: relative; }
.navbar__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 17.6px;
  color: var(--nav-link);
  transition: color 0.2s var(--ease);
}
.navbar__dropdown-toggle:hover { color: var(--gold-bright); }
.navbar__dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease);
}
.navbar__dropdown[data-open="true"] .navbar__dropdown-toggle::after { transform: rotate(-135deg) translateY(-2px); }

.navbar__dropdown-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(13, 13, 12, 0.96);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.navbar__dropdown[data-open="true"] .navbar__dropdown-list,
.navbar__dropdown:hover .navbar__dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar__dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 16px;
  color: var(--nav-link);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.navbar__dropdown-link:hover { background: rgba(209, 173, 125, 0.12); color: var(--gold-bright); }

.navbar__right { display: flex; align-items: center; gap: 16px; justify-content: flex-end; }

/* taalschakelaar */
.lang { position: relative; }
.lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  font-size: 16px;
  color: var(--text);
}
.lang__toggle img,
.lang__link img { width: 22px; height: 15px; object-fit: cover; border-radius: 2px; }
.lang__list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 150px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(13, 13, 12, 0.96);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.lang[data-open="true"] .lang__list { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 15px;
  transition: background 0.2s var(--ease);
}
.lang__link:hover { background: rgba(209, 173, 125, 0.12); }

/* hamburger */
.navbar__menu-cta { display: none; }

.navbar__burger {
  display: none;
  position: relative;
  z-index: 100;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
body.nav-open .navbar__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .navbar__burger span:nth-child(2) { opacity: 0; }
body.nav-open .navbar__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background-image: url("../assets/img/salar-hero.webp");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: contain;
}

.hero__decoration {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 255px;
  height: 750px;
  pointer-events: none;
  opacity: 0.9;
}

.hero__shade {
  position: absolute;
  right: 0;
  bottom: -65px;
  left: 0;
  width: 779px;
  max-width: 100%;
  pointer-events: none;
}

.hero__inner { min-height: 810px; display: flex; align-items: center; padding-top: 75px; }
.hero__content { position: relative; z-index: 2; max-width: 560px; padding-block: var(--section-y); }
.hero .h1 { margin-bottom: 24px; }
.hero__lead { max-width: 420px; margin-bottom: 40px; }
.hero__note { margin-top: 20px; max-width: 500px; }

/* skills-balk */
.skills { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-block: 36px; }
.skills img { width: 20px; height: 24px; }

/* ==========================================================================
   Kaartraster (events + clubs)
   ========================================================================== */
.section-dark { background: var(--bg); }

.section-head { margin-bottom: 64px; }
.section-head .h2 { margin-bottom: 16px; }

.card-grid {
  display: grid;
  /* minmax(0,…) voorkomt dat brede inhoud de kolom oprekt (grid blowout) */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  /* stretch, niet start: kaarten in dezelfde rij worden even hoog. Met
     "start" houdt elke kaart zijn eigen hoogte, en dan heeft de
     margin-top:auto op de knop niets om tegenaan te duwen — de knoppen
     eindigen dan op verschillende hoogtes en de rij oogt rafelig. */
  align-items: stretch;
}
.card-grid > * { min-width: 0; }

/* --- eventkaart --- */
.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  background-color: var(--bg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  color: var(--text-card);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-veil);
  z-index: 0;
}
.event-card > * { position: relative; z-index: 1; }
.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-bright);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.event-card__badge {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 104px;
  margin-bottom: 16px;
}
.event-card__badge img { width: 104px; height: 104px; object-fit: contain; }

.event-card__price {
  font-family: var(--font-body);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--text);
}
.event-card__vat {
  display: block;
  margin-top: 2px;
  font-size: 9.6px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.58);
}
.event-card .tagline { display: block; margin-bottom: 12px; }

.feature-list {
  display: grid;
  gap: 16px;
  padding-block: 8px;
  margin: 16px 0 32px;
  text-align: left;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
}
.feature img { width: 22px; height: 22px; flex: 0 0 22px; margin-top: 1px; }

.event-card__cta { margin-top: auto; }

/* --- clubkaart --- */
.club-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--grad-card);
  color: var(--text-card);
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.club-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-bright);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.club-card__badge { height: 104px; margin-bottom: 16px; display: flex; align-items: center; }
.club-card__badge img { max-height: 104px; width: auto; object-fit: contain; }
.club-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.club-card__price {
  font-family: var(--font-body);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--text);
  margin-top: 16px;
}
.club-card__note { font-size: 18px; line-height: 1.4; color: var(--text-card); }
.club-card__unit {
  font-size: 9.6px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.58);
}
.club-card .feature-list { width: 100%; }
.club-card__cta { margin-top: auto; width: 100%; }

/* ==========================================================================
   Diamond
   ========================================================================== */
.diamond {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.diamond__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/img/salar-6.webp") no-repeat 78% 50% / cover;
  z-index: 0;
}
.diamond__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 12, 0.96) 0%, rgba(13, 13, 12, 0.85) 38%, rgba(13, 13, 12, 0.25) 70%, rgba(13, 13, 12, 0.6) 100%);
}
.diamond__inner { position: relative; z-index: 1; }
.diamond__content { max-width: 560px; padding-block: var(--section-y); }
.diamond__badge { width: 96px; margin-bottom: 24px; }
.diamond .h2 { margin-bottom: 20px; }
.diamond__lead { font-size: 22px; line-height: 1.5; margin-bottom: 32px; }
.diamond__price { margin-top: 24px; font-size: 16px; color: var(--muted); }
.diamond__price strong { font-family: var(--font-display); font-size: 24px; color: var(--gold); }

/* ==========================================================================
   Verhaal
   ========================================================================== */
.story { position: relative; overflow: hidden; }
.story__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  opacity: 0.5;
  pointer-events: none;
}
.story__head { text-align: center; margin-bottom: 72px; }
.story__rule { height: 1px; background: var(--line); margin-block: 32px; }

.story__grid {
  display: grid;
  grid-template-columns: 421px 1fr;
  gap: 48px;
  align-items: start;
}
.story__photo { border-radius: 4px; overflow: hidden; }
.story__photo img { width: 100%; height: 100%; object-fit: cover; }
.story__lead {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.story__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.story__col p { color: var(--muted); }
.story__col--offset { padding-top: 120px; position: relative; }
.story__col--offset::before {
  content: "";
  position: absolute;
  top: 132px;
  left: -80px;
  width: 60px;
  height: 1px;
  background: var(--gold);
}

/* ==========================================================================
   Voordelen + ticker
   ========================================================================== */
.benefits { position: relative; overflow: hidden; }
.benefits__head { text-align: center; margin-bottom: 56px; }
.benefits__rule { height: 1px; background: var(--line); margin-bottom: 56px; }

.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.benefits__icon { width: 32px; height: 32px; margin-bottom: 24px; }
.benefits__title { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 16px; }
.benefits__text { color: var(--muted); }

.ticker-band {
  position: relative;
  margin-top: 80px;
  height: 400px;
  overflow: hidden;
}
.ticker-band__img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  display: flex;
  gap: 128px;
  width: max-content;
  animation: ticker 30s linear infinite;
  pointer-events: none;
}
.ticker span {
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 8px;
  color: rgba(252, 252, 252, 0.92);
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { position: relative; overflow: hidden; }
.faq__deco { position: absolute; top: 10%; right: 0; width: 360px; opacity: 0.45; pointer-events: none; }
.faq__head { text-align: center; margin-bottom: 56px; }
.faq__label { font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.faq__list { max-width: 768px; margin-inline: auto; }

.faq-item { border-bottom: 1px solid rgba(209, 173, 125, 0.22); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 80px;
  padding: 20px 24px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s var(--ease);
}
.faq-item__q:hover { color: var(--gold-bright); }
.faq-item__icon { width: 24px; height: 24px; flex: 0 0 24px; transition: transform 0.3s var(--ease); }
.faq-item[data-open="true"] .faq-item__icon { transform: rotate(72deg) scale(1.05); }

.faq-item__a {
  overflow: hidden;
  height: 0;
  transition: height 0.35s var(--ease);
}
.faq-item__a-inner { padding: 0 64px 24px 24px; color: var(--muted); }
.faq-item__a-inner ul { margin-top: 12px; display: grid; gap: 6px; }
.faq-item__a-inner li::before { content: "— "; color: var(--gold); }
.faq-item__a-inner a { color: var(--gold); text-decoration: underline; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { position: relative; background: var(--bg-deep); overflow: hidden; }
.footer__shadow { position: absolute; top: 0; left: 0; width: 700px; opacity: 0.7; pointer-events: none; }
.footer__deco { position: absolute; right: 0; bottom: 0; width: 380px; opacity: 0.6; pointer-events: none; }

.footer__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 96px;
  padding-block: 72px;
}

.footer__brand { width: 557px; max-width: 100%; }
.footer__network {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 24px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-cream);
}
.footer__network img { width: 18px; height: 22px; }
.footer__networth {
  font-family: var(--font-display);
  font-size: 91.2px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
  color: var(--text);
}
.footer__signature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 64px;
  font-family: var(--font-display);
  font-size: 30px;
  font-style: italic;
  color: var(--text-cream);
  transition: color 0.2s var(--ease);
}
.footer__signature::before {
  content: "";
  width: 64px;
  height: 1px;
  background: var(--gold);
  flex: 0 0 64px;
}
.footer__signature:hover { color: var(--gold); }

.footer__right { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.footer__logo { width: 177px; }
.footer__socials { display: flex; gap: 20px; }
.footer__social {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--text);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer__social:hover { color: var(--gold); transform: translateY(-2px); }
.footer__social svg { width: 22px; height: 22px; fill: currentColor; }

.footer__bottom {
  position: relative;
  z-index: 1;
  min-height: 85px;
  display: flex;
  align-items: center;
  background: var(--bg-footer-bottom);
}
.footer__bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
  font-size: 14px;
  color: var(--muted);
}
.footer__bottom-inner > :last-child { justify-self: end; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { text-decoration: underline; }
.footer__credit a { color: var(--gold); }
.footer__links a:hover,
.footer__bottom a:hover { color: var(--gold); }

/* ==========================================================================
   Reveal-animatie
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1199px) {
  .h1 { font-size: 48px; }
  .h2 { font-size: 40px; }
  .story__grid { grid-template-columns: 340px 1fr; gap: 32px; }
  .ticker span { font-size: 150px; }
  .footer__networth { font-size: 72px; }
}

@media (max-width: 991px) {
  :root { --section-y: 80px; --gutter: 5%; }

  .navbar { height: 96px; }
  .navbar__inner { grid-template-columns: auto 1fr; height: 64px; }
  .navbar__burger { display: flex; justify-self: end; }

  .navbar__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 86vw);
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: 112px 24px 40px;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(10px);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 98;
    overflow-y: auto;
  }
  body.nav-open .navbar__menu { transform: none; }
  .navbar__menu > * { width: 100%; }
  .navbar__link,
  .navbar__dropdown-toggle { display: flex; font-size: 20px; padding: 14px 4px; }
  .navbar__dropdown-list {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    margin-left: 4px;
    padding: 0 0 0 12px;
    display: none;
  }
  .navbar__dropdown[data-open="true"] .navbar__dropdown-list { display: block; }
  .navbar__dropdown:hover .navbar__dropdown-list { display: none; }
  .navbar__dropdown[data-open="true"]:hover .navbar__dropdown-list { display: block; }
  .navbar__right { gap: 8px; position: relative; z-index: 100; }
  /* dropdown rechts uitlijnen, anders steekt hij buiten het scherm */
  .lang__list { left: auto; right: 0; }
  .navbar__right .btn-gold { display: none; }
  .navbar__menu-cta { display: inline-flex; margin-top: 24px; width: 100%; }

  .hero { background-size: cover; background-position: 70% 50%; }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 13, 12, 0.95) 0%, rgba(13, 13, 12, 0.8) 55%, rgba(13, 13, 12, 0.45) 100%);
  }
  .hero__inner { min-height: 640px; }
  .hero__content { z-index: 3; }
  .hero__decoration { display: none; }

  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .story__grid { grid-template-columns: 1fr; }
  .story__photo { max-width: 460px; }
  .story__col--offset { padding-top: 0; }
  .story__col--offset::before { display: none; }
  .diamond { min-height: 720px; }
  .diamond__bg::after { background: linear-gradient(90deg, rgba(13, 13, 12, 0.96) 0%, rgba(13, 13, 12, 0.8) 60%, rgba(13, 13, 12, 0.55) 100%); }

  .ticker-band { height: 300px; }
  .ticker span { font-size: 110px; }

  .footer__top { flex-direction: column; align-items: flex-start; gap: 40px; padding-block: 56px; }
  .footer__brand { width: 100%; }
  .footer__right { align-items: flex-start; }
  .footer__networth { font-size: 56px; }
  .footer__network { font-size: 24px; padding-left: 0; }
  .footer__signature { padding-left: 0; font-size: 24px; }
}

@media (max-width: 767px) {
  :root { --section-y: 64px; }

  .h1 { font-size: 36px; line-height: 1.15; }
  .h2 { font-size: 30px; line-height: 1.2; }
  .h3 { font-size: 24px; }
  .tagline { font-size: 18px; letter-spacing: 3px; }
  .text-medium { font-size: 16px; }

  .btn-primary { font-size: 18px; padding: 12px 18px; }

  .hero__inner { min-height: 560px; }
  .hero__lead { max-width: none; }

  .skills { flex-direction: column; align-items: flex-start; gap: 12px; padding-block: 28px; }
  .skills img { display: none; }

  .card-grid { grid-template-columns: minmax(0, 1fr); }
  .event-card,
  .club-card { padding: 24px; }
  .event-card__price { font-size: 44px; }
  .club-card__price { font-size: 44px; }
  .club-card__title { font-size: 18px; letter-spacing: 3px; }

  .benefits__grid { grid-template-columns: 1fr; gap: 32px; }
  .story__lead { font-size: 26px; }
  .story__cols { grid-template-columns: 1fr; gap: 24px; }
  .story__deco,
  .faq__deco,
  .footer__deco { width: 220px; opacity: 0.3; }

  .diamond__lead { font-size: 18px; }
  .ticker-band { height: 220px; }
  .ticker span { font-size: 68px; }

  .faq-item__q { font-size: 16px; padding: 18px 0; }
  .faq-item__a-inner { padding: 0 0 20px; }

  .footer__networth { font-size: 38px; line-height: 1.2; }
  .footer__network { font-size: 20px; }
  .footer__signature { font-size: 20px; }
  .footer__signature::before { width: 32px; flex-basis: 32px; }
  .footer__bottom-inner { grid-template-columns: 1fr; gap: 12px; }
  /* ruimere tikdoelen op telefoon */
  .footer__bottom a { display: inline-block; padding-block: 8px; }
  /* taalschakelaar en 'Bereik Salar' waren te klein om te raken */
  .lang__toggle { padding-block: 11px; }
  .footer__signature { padding-block: 8px; }
  .footer__bottom-inner > :last-child { justify-self: start; }
  .footer__links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 479px) {
  .navbar__logo img { width: 60px; }
  .lang__toggle span { display: none; }
  .footer__networth { font-size: 30px; }
  .ticker span { font-size: 52px; }
}
