/* Detailmode — Premium Auto Detailing */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --radius: 0.25rem;
  --background: oklch(0.14 0.005 60);
  --foreground: oklch(0.96 0.01 80);
  --surface: oklch(0.18 0.008 60);
  --surface-elevated: oklch(0.22 0.01 60);
  --gold: oklch(0.78 0.12 75);
  --gold-soft: oklch(0.65 0.08 70);
  --muted-foreground: oklch(0.7 0.015 70);
  --border: oklch(0.28 0.01 60);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', ui-serif, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

::selection { background: var(--gold); color: var(--background); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ─── Layout ─── */
.container-page {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ─── Typography helpers ─── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted-foreground); }
.italic     { font-style: italic; }
.hairline   { border-top: 1px solid color-mix(in oklab, var(--gold) 25%, transparent); }

/* ─── Buttons ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--gold);
  color: oklch(0.14 0.005 60);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  transition: all 200ms ease;
  white-space: nowrap;
}
.btn-gold:hover {
  background: color-mix(in oklab, var(--gold) 85%, white);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 1px solid color-mix(in oklab, var(--foreground) 30%, transparent);
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: transparent;
  transition: all 200ms ease;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  background: color-mix(in oklab, var(--background) 82%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
}

.header-inner {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 4rem;
}

@media (min-width: 768px) {
  .header-inner {
    height: 5rem;
  }
}


/* ─── Logo ─── */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;

  height: 100%;
}

.logo img {
  display: block;

  width: 170px;
  height: auto;
  max-height: 58px;

  margin-left: 0;

  object-fit: contain;
}


/* Desktop logo */
@media (min-width: 768px) {
  .logo img {
    width: 250px;
    max-height: 70px;
    margin-left: -25px;
  }
}


/* ─── Desktop navigation ─── */
.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
}

.site-nav a {
  font-size: 0.875rem;
  letter-spacing: 0.025em;

  color: var(--muted-foreground);

  transition: color 200ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}


/* ─── Header actions ─── */
.header-actions {
  display: none;
  align-items: center;
  gap: 10px;

  transform: none;
}

@media (min-width: 768px) {
  .header-actions {
    display: flex;
  }
}

.header-book-button,
.header-portal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 20px;

  border-radius: 4px;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;
  white-space: nowrap;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.header-book-button {
  background: #e3ae50;
  color: #111;
  border: 1px solid #e3ae50;
}

.header-book-button:hover {
  background: #efc366;
  border-color: #efc366;
  transform: translateY(-1px);
}

.header-portal-button {
  background: transparent;
  color: var(--foreground);
  border: 1px solid color-mix(in oklab, var(--gold) 45%, transparent);
}

.header-portal-button:hover {
  background: color-mix(in oklab, var(--gold) 10%, transparent);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}


/* ─── Mobile menu button ─── */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  padding: 0;

  background: transparent;
  border: 1px solid color-mix(in oklab, var(--foreground) 18%, transparent);
  border-radius: 4px;

  color: var(--foreground);

  transition:
    color 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.menu-btn:hover {
  color: var(--gold);
  border-color: color-mix(in oklab, var(--gold) 50%, transparent);
  background: color-mix(in oklab, var(--gold) 6%, transparent);
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn svg {
  width: 21px;
  height: 21px;

  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ─── Mobile navigation ─── */
.mobile-nav {
  position: absolute;

  top: 100%;
  left: 0;
  right: 0;

  overflow: hidden;

  max-height: 0;
  opacity: 0;
  visibility: hidden;

  border-top: 1px solid transparent;

  background: color-mix(in oklab, var(--background) 96%, black 4%);

  transform: translateY(-8px);

  transition:
    max-height 300ms ease,
    opacity 200ms ease,
    transform 300ms ease,
    visibility 300ms ease,
    border-color 300ms ease;
}

.mobile-nav.open {
  max-height: calc(100vh - 4rem);
  opacity: 1;
  visibility: visible;

  border-top-color: var(--border);

  transform: translateY(0);
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;

  padding: 1.25rem 1.5rem 1.5rem;

  gap: 0;

  border-bottom: 1px solid var(--border);
}


/* Mobile links */
.mobile-nav a:not(.btn-gold) {
  display: flex;
  align-items: center;

  min-height: 48px;

  padding: 0.25rem 0;

  border-bottom: 1px solid color-mix(in oklab, var(--border) 55%, transparent);

  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;

  color: var(--muted-foreground);

  transition:
    color 200ms ease,
    padding-left 200ms ease;
}

.mobile-nav a:not(.btn-gold):hover,
.mobile-nav a:not(.btn-gold).active {
  color: var(--gold);
  padding-left: 6px;
}


/* Mobile CTA */
.mobile-nav .btn-gold {
  width: 100%;

  margin-top: 1.25rem;

  min-height: 48px;

  font-size: 0.8rem;
}


/* Mobile phone */
.mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0.5rem;

  margin-top: 1.25rem;

  font-size: 0.8rem;
  letter-spacing: 0.04em;

  color: var(--muted-foreground);
}

.mobile-phone svg {
  color: var(--gold);
}
/* ─── Footer ─── */
.site-footer { margin-top: 8rem; border-top: 1px solid var(--border); background: var(--surface); }
.footer-grid { padding-block: 4rem; display: grid; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.5rem; letter-spacing: -0.02em; }
.footer-desc { margin-top: 1rem; font-size: 0.875rem; color: var(--muted-foreground); max-width: 22rem; line-height: 1.7; }
.footer-col-title { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 200ms; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { list-style: none; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.footer-contact-list a { transition: color 200ms; }
.footer-contact-list a:hover { color: var(--foreground); }
.footer-contact-list svg { color: var(--gold); margin-top: 2px; flex-shrink: 0; width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--muted-foreground);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ─── main offset ─── */
main { padding-top: 4rem; }
@media (min-width: 768px) { main { padding-top: 5rem; } }

/* ─── Hero ─── */
.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-t { position: absolute; inset: 0; background: linear-gradient(to top, var(--background) 0%, color-mix(in oklab, var(--background) 70%, transparent) 40%, color-mix(in oklab, var(--background) 30%, transparent) 100%); }
.hero-overlay-r { position: absolute; inset: 0; background: linear-gradient(to right, color-mix(in oklab, var(--background) 80%, transparent) 0%, transparent 60%); }
.hero-content { position: relative; z-index: 10; padding-bottom: 5rem; padding-top: 8rem; width: 100%; }
@media (min-width: 768px) { .hero-content { padding-bottom: 8rem; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.75rem; border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--gold) 30%, transparent);
  background: color-mix(in oklab, var(--background) 40%, transparent);
  backdrop-filter: blur(4px);
}
.hero-badge span { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-foreground); }
.hero-badge svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero h1 { margin-top: 1.5rem; font-size: clamp(2.5rem, 8vw, 5rem); line-height: 0.95; max-width: 32rem; }
.hero-desc { margin-top: 1.5rem; max-width: 32rem; color: var(--muted-foreground); line-height: 1.7; }
.hero-btns { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ─── Trust bar ─── */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: color-mix(in oklab, var(--surface) 50%, transparent); }
.trust-grid { padding-block: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.trust-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ─── Services cards (home) ─── */
.section-header-2col { display: grid; gap: 3rem; align-items: flex-end; margin-bottom: 4rem; }
@media (min-width: 768px) { .section-header-2col { grid-template-columns: 1fr 1fr; } }
.services-grid { display: grid; gap: 1px; background: var(--border); }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: var(--background); }
.service-card-img { aspect-ratio: 4/3; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: all 700ms ease; }
.service-card:hover .service-card-img img { filter: grayscale(0%); transform: scale(1.05); }
.service-card-body { padding: 1.5rem; }
@media (min-width: 768px) { .service-card-body { padding: 2rem; } }
.service-card-body h3 { font-size: 1.5rem; }
.service-card-body p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* ─── Process ─── */
.process-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-steps { margin-top: 4rem; display: grid; gap: 3rem; }
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.process-step .num { font-family: 'Fraunces', serif; font-size: 3rem; color: color-mix(in oklab, var(--gold) 40%, transparent); }
.process-step h3 { font-size: 1.25rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid color-mix(in oklab, var(--gold) 25%, transparent); }
.process-step p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* ─── CTA block ─── */
.cta-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .cta-grid { grid-template-columns: 1fr 1fr; } }

/* ─── Diensten ─── */
.package-article { display: grid; gap: 2rem; align-items: center; margin-bottom: 6rem; }
@media (min-width: 768px) { .package-article { grid-template-columns: 7fr 5fr; gap: 4rem; margin-bottom: 8rem; } }
.package-img { aspect-ratio: 4/3; overflow: hidden; }
.package-img img { width: 100%; height: 100%; object-fit: cover; }
.package-img.flip { order: 0; }
@media (min-width: 768px) { .package-img.flip { order: 2; } }
.package-body .eyebrow { display: block; margin-bottom: 0.75rem; }
.package-body h2 { font-size: clamp(2rem, 4vw, 3rem); }
.package-price { font-family: 'Fraunces', serif; font-size: 1.5rem; font-style: italic; color: var(--gold); margin-top: 0.5rem; }
.package-body > .desc { margin-top: 1rem; color: var(--muted-foreground); line-height: 1.7; }
.package-list { list-style: none; margin-top: 1.5rem; }
.package-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; margin-bottom: 0.75rem; }
.package-list svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; flex-shrink: 0; }
.package-body .btn-gold { margin-top: 2rem; }
.addons-grid { display: grid; gap: 1px; background: var(--border); }
@media (min-width: 768px) { .addons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .addons-grid { grid-template-columns: repeat(3, 1fr); } }
.addon-card { background: var(--surface); padding: 2rem; transition: background 200ms; }
.addon-card:hover { background: var(--surface-elevated); }
.addon-card h3 { font-size: 1.25rem; }
.addon-card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* ─── Portfolio ─── */
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.portfolio-item {
  position: relative; overflow: hidden;
  height: 280px;
}
@media (min-width: 768px) { .portfolio-item { height: 320px; } }
@media (min-width: 768px) {
  .portfolio-item.col2 { grid-column: span 2; }
  .portfolio-item.row2 { grid-row: span 2; height: auto; min-height: 660px; }
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(10%); transition: all 700ms ease; }
.portfolio-item:hover img { filter: grayscale(0%); transform: scale(1.05); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in oklab, var(--background) 90%, transparent) 0%, color-mix(in oklab, var(--background) 20%, transparent) 50%, transparent 100%); }
.portfolio-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.portfolio-caption .tag { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.portfolio-caption .title { font-family: 'Fraunces', serif; font-size: 1.5rem; margin-top: 0.25rem; }

/* ─── Reviews ─── */
.rating-row { margin-top: 2rem; display: flex; align-items: center; gap: 1rem; }
.stars { display: flex; gap: 0.25rem; }
.stars svg { width: 20px; height: 20px; fill: var(--gold); stroke: var(--gold); stroke-width: 1; }
.rating-text { font-size: 0.875rem; color: var(--muted-foreground); }
.rating-text strong { color: var(--foreground); font-weight: 500; }
.reviews-grid { display: grid; gap: 1px; background: var(--border); }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: var(--background); padding: 2rem; display: flex; flex-direction: column; }
@media (min-width: 768px) { .review-card { padding: 2.5rem; } }
.review-quote-icon svg { width: 28px; height: 28px; stroke: color-mix(in oklab, var(--gold) 60%, transparent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.review-text { margin-top: 1.5rem; font-size: 1rem; line-height: 1.7; color: color-mix(in oklab, var(--foreground) 90%, transparent); flex: 1; }
.review-author { padding-top: 1rem; border-top: 1px solid color-mix(in oklab, var(--gold) 25%, transparent); margin-top: 2rem; }
.review-author strong { font-weight: 500; display: block; }
.review-author span { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.125rem; display: block; }

/* ─── Forms ─── */
.form-wrap { background: var(--surface); border: 1px solid var(--border); padding: 2rem; }
@media (min-width: 768px) { .form-wrap { padding: 2.5rem; } }
.form-wrap h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-row { display: grid; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.field:last-child { margin-bottom: 0; }
.field label { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-foreground); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--background); border: 1px solid var(--border);
  padding: 0.75rem 1rem; font-size: 0.875rem; font-family: inherit;
  color: var(--foreground); outline: none; transition: border-color 200ms;
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field select option { background: oklch(0.14 0.005 60); color: oklch(0.96 0.01 80); }
.form-note { font-size: 0.75rem; color: var(--muted-foreground); text-align: center; margin-top: 0.75rem; }
.form-success { background: var(--surface); border: 1px solid var(--border); padding: 2.5rem; text-align: center; display: none; }
.form-success.show { display: block; }
.form-success h2 { font-size: 1.875rem; margin-top: 1rem; }
.form-success p { margin-top: 0.75rem; color: var(--muted-foreground); }

/* ─── Contact ─── */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.contact-items { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item-link { display: block; transition: opacity 200ms; }
.contact-item-link:hover { opacity: 0.8; }
.contact-item-inner { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--gold) 30%, transparent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-label { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-foreground); }
.contact-value { font-size: 1.125rem; margin-top: 0.25rem; }

/* ─── Booking ─── */
.booking-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .booking-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.booking-side-items { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.booking-side-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; }
.booking-side-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ─── Page hero (inner pages) ─── */
.page-hero { padding-top: 5rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .page-hero { padding-top: 8rem; padding-bottom: 6rem; } }
.page-hero h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); max-width: 48rem; margin-top: 1rem; }
.page-hero p { margin-top: 1.5rem; max-width: 36rem; color: var(--muted-foreground); line-height: 1.7; }

/* ─── Section spacing ─── */
.section-py { padding-block: 6rem; }
@media (min-width: 768px) { .section-py { padding-block: 8rem; } }
.section-py-sm { padding-block: 4rem; }

/* ─── Flex helpers ─── */
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.btn-row.center { justify-content: center; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ─── 404 ─── */
.not-found { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.not-found-box { max-width: 28rem; text-align: center; }
.not-found-box h1 { font-size: 3rem; margin-top: 1rem; }
.not-found-box p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;

  transform: translateX(180px);
}

.header-book-button,
.header-portal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  padding: 0 24px;

  border-radius: 4px;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
  white-space: nowrap;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.header-book-button {
  background: #e3ae50;
  color: #111;
  border: 1px solid #e3ae50;
}

.header-book-button:hover {
  background: #efc366;
  border-color: #efc366;
  transform: translateY(-1px);
}

.header-portal-button {
  background: #e3ae50;
  color: #111;
  border: 1px solid #e3ae50;
}

.header-portal-button:hover {
  background: #efc366;
  border-color: #efc366;
  transform: translateY(-1px);
}

/* =========================================================
   MOBILE HEADER FIX
   ========================================================= */

@media (max-width: 767px) {

  .site-header {
    width: 100%;
  }

  .header-inner {
    height: 64px;
    padding-left: 16px;
    padding-right: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    height: 64px;
    flex: 0 1 auto;
    min-width: 0;
  }

  .logo img {
    display: block;
    width: 145px;
    height: auto;
    max-height: 52px;
    margin-left: 0;
    object-fit: contain;
  }

  /* Desktop buttons NOOIT tonen op mobiel */
  .header-actions {
    display: none !important;
  }

  /* Hamburger */
  .menu-btn {
    display: flex !important;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    align-items: center;
    justify-content: center;

    margin-left: auto;
    padding: 0;

    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 4px;

    background: rgba(255,255,255,0.03);
    color: #ffffff;

    position: relative;
    z-index: 100;

    cursor: pointer;
  }

  .menu-btn svg {
    display: block;

    width: 21px;
    height: 21px;

    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Mobile menu */
  .mobile-nav {
    position: absolute;

    top: 64px;
    left: 0;
    right: 0;

    display: block;

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    background: #151411;

    border-top: 1px solid transparent;

    transform: translateY(-5px);

    transition:
      max-height 300ms ease,
      opacity 200ms ease,
      transform 300ms ease,
      visibility 300ms ease,
      border-color 300ms ease;
  }

  .mobile-nav.open {
    max-height: calc(100vh - 64px);

    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    border-top-color: var(--border);
  }

  .mobile-nav-inner {
    padding: 12px 16px 20px;

    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-nav a:not(.btn-gold) {
    display: flex;
    align-items: center;

    min-height: 48px;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    color: var(--muted-foreground);

    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .mobile-nav a:not(.btn-gold).active,
  .mobile-nav a:not(.btn-gold):hover {
    color: var(--gold);
  }

  .mobile-nav .btn-gold {
    width: 100%;
    min-height: 48px;

    margin-top: 18px;
  }

  .mobile-phone {
    justify-content: center;
    margin-top: 18px;
    padding-top: 16px;

    border-top: 1px solid rgba(255,255,255,0.08);
  }
}

/* =========================================================
   MOBILE NAVIGATION - DEFINITIVE
   ========================================================= */

@media (max-width: 767px) {

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 9999;
  }

  .header-inner {
    height: 64px;

    padding-left: 16px;
    padding-right: 16px;
  }

  .menu-btn {
    display: flex !important;

    position: relative;
    z-index: 10001;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-left: auto;
    padding: 0;

    background: rgba(20, 19, 16, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;

    color: #ffffff;
  }

  .menu-btn svg {
    width: 21px;
    height: 21px;

    display: block;

    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-nav {
    position: absolute;

    top: 64px;
    left: 0;
    right: 0;

    z-index: 10000;

    display: block !important;

    max-height: 0;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    background: #151411;

    border-top: 1px solid transparent;

    transform: translateY(-10px);

    transition:
      max-height 300ms ease,
      opacity 200ms ease,
      transform 300ms ease,
      visibility 300ms ease,
      border-color 200ms ease;
  }

  .mobile-nav.open {
    max-height: calc(100vh - 64px);

    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    border-top-color: var(--border);

    overflow-y: auto;
  }

  .mobile-nav-inner {
    display: flex;
    flex-direction: column;

    padding: 12px 16px 24px;

    gap: 0;
  }

  .mobile-nav a:not(.btn-gold) {
    display: flex;
    align-items: center;

    min-height: 50px;

    padding: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    color: var(--muted-foreground);

    font-size: 15px;
    letter-spacing: 0.04em;

    transition: color 200ms ease;
  }

  .mobile-nav a:not(.btn-gold):hover,
  .mobile-nav a:not(.btn-gold).active {
    color: var(--gold);
  }

  .mobile-nav .btn-gold {
    width: 100%;

    min-height: 48px;

    margin-top: 18px;
  }

  .mobile-phone {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 18px;
    padding-top: 16px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: var(--muted-foreground);
  }
}

@media (max-width: 767px) {

  .menu-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 10001;
  }

  .mobile-nav {
    display: block !important;
    position: absolute !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000;
  }

  .mobile-nav.open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: calc(100vh - 64px) !important;
  }
}