/* ==========================================================================
   STIJLGIDS — Escape Room Amsterdam
   Bron-van-waarheid voor design-tokens + design-keuzes van deze site.
   Bij elke kleur-/font-/spacing-wijziging: pas zowel de :root-variabele
   hieronder als deze comments aan, zodat de stijlgids in sync blijft.
   Design-system: "Aura Noir" — donker premium, warm goud, hoog contrast.
   ========================================================================== */

/* PRIMAIRE / ACCENT KLEUR
   #e8a838 — Warm goud uit het Aura Noir design-system. Gebruikt voor:
   knoppen (.btn-accent), stat-nummers (.stat-num), stap-nummers (.stap-num),
   logo-accent (.logo-accent), tags (.kamer-tag), focus-outlines,
   mobile-sticky-bar achtergrond. Bewust gekozen: hoog contrast op donkere
   achtergrond (#121317), evoceert avontuur en premium curation. */

/* ACHTERGROND / BACKGROUND
   #121317 — Diep donker marine/zwart. De "donkere kamer" basis van de site.
   Alle pagina-achtergronden. Stuurt bezoekers naar de inhoud. */

/* SURFACE-KLEUREN (tonal layering, geen schaduwen)
   --surface-low: #1a1b1f — Subtiele laag boven background. Voor footer, secties.
   --surface: #1e1f23 — Standaard card-achtergrond.
   --surface-high: #292a2e — Actieve/hover states van cards.
   --surface-highest: #343539 — Borders, dividers. */

/* TEKST
   --text-primary: #e3e2e7 — Warm lichtgrijs. Body-tekst en headings.
   --text-secondary: #d5c4af — Warmer, meer amber. Subtitels, labels, meta.
   --text-muted: #9d8e7c — Placeholder, disabled, footer-klein.
   Lijn-hoogte body: 1.65, headings: 1.2. */

/* TYPOGRAFIE
   Headings: Raleway, 700/600 weight — geometrisch, scherp, past bij avontuur.
   Body: Inter, 400 weight — maximale leesbaarheid op donkere achtergrond.
   Fallback: system-ui, -apple-system, sans-serif (geen externe font-loading
   in productie — demo laadt Raleway via Google Fonts voor visuele impact;
   verwijder in productie als privacy-vereiste geldt).
   Schaal: clamp voor responsieve headings, 1rem base. */

/* SPACING-SCHAAL
   Base: 8px. Section-padding: clamp(3rem, 8vw, 5rem) verticaal.
   Container max-width: 1200px, padding: 1.5rem sides. */

/* RADIUS + BORDERS
   --radius-sm: 4px (tags, chips)
   --radius: 8px (knoppen, inputs, kleine cards)
   --radius-lg: 12px (kamer-cards, feature-cards)
   Borders: 1px solid var(--border) — subtiel, weinig gebruik. */

/* KNOPPEN
   .btn-accent: goud (#e8a838) achtergrond, donkere tekst (#1a1a2e),
   geen border, radius 100px (pill-shape), hover: iets donkerder goud.
   .btn-ghost: transparant, witte tekst, 1px white border.
   .btn-nav: compacte versie van .btn-accent voor nav.
   Mobile: .btn-accent is full-width op sticky bar. */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (design tokens)
   ========================================================================== */
:root {
  /* Kleuren */
  --bg: #121317;
  --surface-low: #1a1b1f;
  --surface: #1e1f23;
  --surface-high: #292a2e;
  --surface-highest: #343539;
  --border: #504535;
  --border-subtle: #2d2b28;

  --gold: #e8a838;
  --gold-dim: #d4940f;
  --gold-soft: rgba(232, 168, 56, 0.15);

  --text-primary: #e3e2e7;
  --text-secondary: #d5c4af;
  --text-muted: #9d8e7c;
  --text-on-gold: #1a1200;

  /* Typografie */
  --font-heading: 'Raleway', 'Georgia', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --section-gap: clamp(3rem, 8vw, 5rem);
  --container-max: 1200px;
  --container-pad: 1.5rem;

  /* Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Misc */
  --transition: 200ms ease;
}

/* ==========================================================================
   RESET + BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

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

/* Raleway + Inter via Google Fonts — demo only, verwijder in productie indien AVG-bezwaar -->
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Raleway:wght@600;700&display=swap');

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   TYPOGRAFIE
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-secondary);
  max-width: 65ch;
}

/* ==========================================================================
   KNOPPEN
   ========================================================================== */
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--gold);
  color: var(--text-on-gold);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--gold-dim);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-nav {
  background: var(--gold);
  color: var(--text-on-gold);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  transition: background var(--transition);
  text-decoration: none;
}

.btn-nav:hover { background: var(--gold-dim); }

.btn-kamer {
  width: 100%;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   LINKS
   ========================================================================== */
.link-arrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 0.5rem; }

/* ==========================================================================
   HEADER + NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 19, 23, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px;
}

.logo {
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

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

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.main-nav a:not(.btn-nav):hover {
  color: var(--text-primary);
  background: var(--surface-high);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: opacity var(--transition);
}

.mobile-menu {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  padding: 1rem 0;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 12, 18, 0.88) 0%,
    rgba(12, 12, 18, 0.72) 50%,
    rgba(18, 19, 23, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 10vh, 7rem);
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-soft);
  border: 1px solid rgba(232, 168, 56, 0.3);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

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

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(229, 226, 231, 0.85);
  margin-bottom: 2rem;
  max-width: 60ch;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.5rem 0.5rem 0;
  min-width: 120px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(213, 196, 175, 0.7);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 1.5rem 0 0;
  align-self: stretch;
}

/* ==========================================================================
   VOOR-WIE
   ========================================================================== */
.voor-wie {
  padding-block: var(--section-gap);
  background: var(--surface-low);
}

.voor-wie h2 {
  margin-bottom: 2.5rem;
}

.persona-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.persona-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}

.persona-card:hover {
  border-color: rgba(232, 168, 56, 0.3);
  background: var(--surface-high);
}

.persona-card--featured {
  border-color: rgba(232, 168, 56, 0.4);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(232, 168, 56, 0.05) 100%);
}

.persona-featured-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(232,168,56,0.3);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.6rem;
}

.persona-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}

.persona-pain {
  font-style: italic;
  color: var(--text-secondary);
  border-left: 2px solid var(--gold);
  padding-left: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.persona-card p:not(.persona-pain) {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   UITKOMST
   ========================================================================== */
.uitkomst {
  padding-block: var(--section-gap);
  background: var(--bg);
}

.uitkomst-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.uitkomst-text h2 {
  margin-bottom: 1rem;
}

.uitkomst-text > p {
  margin-bottom: 1.5rem;
}

.uitkomst-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.uitkomst-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.check-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.uitkomst-card-wrapper {
  display: flex;
  justify-content: center;
}

.uitkomst-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.feature-card-header {
  background: var(--gold);
  padding: 0.75rem 1.5rem;
}

.feature-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-gold);
}

.feature-card-body {
  padding: 1.5rem;
}

.feature-stat-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.feature-stat {
  display: flex;
  flex-direction: column;
}

.feature-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.feature-stat-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.feature-card-copy {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: none;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ==========================================================================
   TAGS + CHIPS
   ========================================================================== */
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-high);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.65rem;
}

/* ==========================================================================
   BEWIJS
   ========================================================================== */
.bewijs {
  padding-block: var(--section-gap);
  background: var(--surface-low);
}

.bewijs-intro {
  max-width: 70ch;
  margin-bottom: 2.5rem;
}

.bewijs-criteria {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.criterium {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.criterium-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.criterium h3 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.criterium p {
  font-size: 0.9rem;
  max-width: none;
}

.quote-block {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 70ch;
}

.quote-text {
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  max-width: none;
}

.quote-source {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   KAMERS (Aanbod)
   ========================================================================== */
.kamers {
  padding-block: var(--section-gap);
  background: var(--bg);
}

.kamers-intro {
  max-width: 65ch;
  margin-bottom: 2rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  color: var(--text-primary);
  border-color: var(--gold);
}

.filter-btn--active {
  background: var(--gold);
  color: var(--text-on-gold);
  border-color: var(--gold);
}

.kamers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.kamer-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}

.kamer-card:hover {
  border-color: rgba(232, 168, 56, 0.35);
  transform: translateY(-2px);
}

.kamer-card--featured {
  border-color: rgba(232, 168, 56, 0.4);
}

.kamer-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-gold);
  background: var(--gold);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.65rem;
}

.kamer-img-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.kamer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.kamer-card:hover .kamer-img {
  transform: scale(1.03);
}

.kamer-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,19,23,0.7) 0%, transparent 60%);
}

.kamer-card-body {
  padding: 1.5rem;
}

.kamer-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.kamer-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(232,168,56,0.25);
  border-radius: var(--radius-sm);
  padding: 0.15rem 0.5rem;
}

.kamer-difficulty {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  padding: 0.15rem 0.5rem;
}

.kamer-difficulty--easy {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
}

.kamer-difficulty--medium {
  color: #fb923c;
  background: rgba(251, 146, 60, 0.12);
}

.kamer-difficulty--hard {
  color: #f87171;
  background: rgba(248, 113, 113, 0.12);
}

.kamer-naam {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.kamer-omschrijving {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: none;
  line-height: 1.55;
}

.kamer-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.kamer-spec {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.spec-icon {
  font-size: 0.9rem;
}

.kamer-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.stars {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.rating-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   METHODE
   ========================================================================== */
.methode {
  padding-block: var(--section-gap);
  background: var(--surface-low);
}

.stappen-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  list-style: none;
  counter-reset: none;
}

.stap {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.stap:last-child {
  border-bottom: none;
}

.stap-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
  padding-top: 0.1em;
}

.stap-content h3 {
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.stap-content p {
  font-size: 0.9375rem;
  max-width: 60ch;
}

.methode-cta {
  text-align: center;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding-block: var(--section-gap);
  background: var(--bg);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.faq-intro h2 {
  margin-bottom: 0.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-question {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 1.125rem 2.5rem 1.125rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color var(--transition);
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform var(--transition), content var(--transition);
  line-height: 1;
}

details[open] > .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-answer {
  padding-bottom: 1.25rem;
  padding-right: 2rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  max-width: 65ch;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  padding-block: var(--section-gap);
  background: var(--surface-low);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-intro h2 {
  margin-bottom: 0.75rem;
}

.contact-intro > p {
  margin-bottom: 1.75rem;
  max-width: 45ch;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.contact-icon {
  font-size: 1.125rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-option strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.contact-option a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.contact-option a:hover { text-decoration: underline; }

.contact-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.125rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.label-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-high);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.7rem 0.9rem;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239d8e7c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Turnstile widget spacing */
.cf-turnstile {
  margin: 0.75rem 0;
}

.btn-submit {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.form-status {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.form-status--success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.form-status--error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: none;
  line-height: 1.5;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--surface-low);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  max-width: none;
}

.footer-contact-email a {
  font-size: 0.875rem;
  color: var(--gold);
  text-decoration: none;
}

.footer-contact-email a:hover { text-decoration: underline; }

.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.footer-nav ul { list-style: none; }

.footer-nav li + li { margin-top: 0.4rem; }

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold); }

.footer-skyline {
  grid-column: 1 / -1;
  overflow: hidden;
  opacity: 0.4;
}

.skyline-img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: cover;
  object-position: center;
  filter: sepia(100%) saturate(200%) hue-rotate(10deg) brightness(0.7);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-block: 1.25rem;
  background: var(--bg);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: none;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--text-secondary); }

.footer-photo-credit {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: none;
}

.footer-photo-credit a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-photo-credit a:hover { color: var(--text-secondary); }

.eo-credit {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: none;
}

.eo-credit a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.eo-credit a:hover { color: var(--text-secondary); }

/* ==========================================================================
   DEMO DISCLAIMER
   ========================================================================== */
.demo-disclaimer {
  background: rgba(232, 168, 56, 0.08);
  border-top: 1px solid rgba(232, 168, 56, 0.3);
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
}

.demo-disclaimer a {
  color: var(--gold);
  text-decoration: none;
}

.demo-disclaimer a:hover { text-decoration: underline; }

/* ==========================================================================
   MOBILE STICKY CTA (zichtbaar < 720px, pure CSS)
   ========================================================================== */
.mobile-sticky-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
}

.mobile-sticky-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  padding: 0.8rem;
}

body {
  padding-bottom: 72px; /* Ruimte voor sticky bar op mobiel */
}

/* ==========================================================================
   RESPONSIVE — TABLET (min-width: 600px)
   ========================================================================== */
@media (min-width: 600px) {
  .persona-grid {
    grid-template-columns: 1fr 1fr;
  }

  .persona-card:first-child {
    grid-column: 1;
  }

  .persona-card--featured {
    grid-column: 1 / -1;
  }

  .bewijs-criteria {
    grid-template-columns: 1fr 1fr;
  }

  .kamers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   RESPONSIVE — DESKTOP (min-width: 720px)
   ========================================================================== */
@media (min-width: 720px) {
  .main-nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-sticky-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .persona-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .persona-card:first-child,
  .persona-card--featured {
    grid-column: auto;
  }

  .uitkomst-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .bewijs-criteria {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .kamers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-inner {
    grid-template-columns: 1fr 2fr;
    align-items: start;
    gap: 4rem;
  }

  .contact-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-skyline {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    flex-wrap: nowrap;
  }
}

/* ==========================================================================
   RESPONSIVE — LARGE DESKTOP (min-width: 1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  .kamers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kamer-card--featured {
    grid-column: 1 / -1;
  }

  .kamer-card--featured .kamer-img-wrapper {
    aspect-ratio: 21/9;
  }

  .stap {
    padding-block: 2rem;
  }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}