/*
Theme Name: The House of Automotive
Theme URI: https://www.houseofautomotive.nl
Author: The House of Automotive
Description: Maatwerk WordPress-theme voor The House of Automotive – verkoop van betrouwbare occasions. Inclusief occasionbeheer met foto's, specificaties en filterbaar aanbod.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: houseofautomotive
Tags: custom-menu, custom-logo, featured-images, translation-ready
*/

/* =========================================================
   Design tokens — afgeleid van het logo (goud / zilver / steen)
   ========================================================= */
:root {
  --ink: #1b1a18;
  --ink-2: #262421;
  --ink-3: #33302c;
  --stone: #eef0f3;      /* lichtgrijze basis */
  --stone-2: #e4e7eb;    /* iets diepere laag */
  --paper: #ffffff;      /* witte kaarten/secties */
  --head: #1d1f23;       /* koppen op licht */
  --gold: #c6a15b;
  --gold-deep: #a8853f;
  --gold-soft: #e6d3ab;
  --silver: #9ea3a8;
  --line: #e2e5e9;
  --line-dark: #2a2c30;
  --text: #2b2d31;
  --text-soft: #676c73;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(27, 26, 24, .10);
  --shadow-lg: 0 24px 60px rgba(27, 26, 24, .16);
  --font-display: "Outfit", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --wrap: 1180px;
}

/* ============ Basis ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background-color: #edeff2;
  background-image: linear-gradient(180deg, #f7f8fa 0%, #edeff2 50%, #e5e8ec 100%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--head); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--head);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: .02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--dark { background: linear-gradient(180deg, #17181b, #101114); color: #d8d4cc; }
.section--dark h2, .section--dark h3 { color: #f4efe6; }
.section--paper { background: linear-gradient(180deg, #ffffff, #fbfcfd); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.section--dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.occasion-hero .eyebrow { color: var(--gold); }
.lead { font-size: 1.12rem; color: var(--text-soft); max-width: 60ch; }
.section--dark .lead { color: #b9b4aa; }

/* Gouden lijn zoals in het logo */
.rule {
  width: 72px; height: 2px; border: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  margin: 18px 0 26px;
}

/* ============ Knoppen ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600; font-size: .95rem;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }

/* Primaire knop: goud-gradient met subtiele glans */
.btn--gold {
  background: linear-gradient(160deg, #ecd9ae 0%, var(--gold) 40%, #9a7a35 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(90, 66, 20, .35);
  box-shadow: 0 8px 22px rgba(168, 133, 63, .40), inset 0 1px 0 rgba(255, 255, 255, .45);
}
.btn--gold:hover { color: #fff; box-shadow: 0 12px 30px rgba(168, 133, 63, .5), inset 0 1px 0 rgba(255, 255, 255, .45); transform: translateY(-2px); }

/* Secundaire knop: brons-gradient */
.btn--ghost {
  background: linear-gradient(160deg, #b08948 0%, #8d6a30 55%, #6f5223 100%);
  color: #fdf6e6;
  text-shadow: 0 1px 2px rgba(60, 42, 10, .4);
  box-shadow: 0 6px 18px rgba(111, 82, 35, .35), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.btn--ghost:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(111, 82, 35, .45), inset 0 1px 0 rgba(255, 255, 255, .28); }

/* WhatsApp-knop in kaarten/detailpagina */
.btn--wa {
  background: linear-gradient(160deg, #4fdc7c 0%, #25d366 45%, #128c4b 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 70, 30, .35);
  box-shadow: 0 8px 22px rgba(18, 140, 75, .38), inset 0 1px 0 rgba(255, 255, 255, .40);
}
.btn--wa:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(18, 140, 75, .5), inset 0 1px 0 rgba(255, 255, 255, .40); }
.btn svg { flex: none; }

/* Zwevende WhatsApp-knop (rechtsonder, elke pagina) */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: inline-flex; align-items: center; gap: 0;
  background: linear-gradient(160deg, #4fdc7c, #25d366 55%, #128c4b);
  color: #fff; border-radius: 999px;
  padding: 14px;
  box-shadow: 0 10px 28px rgba(18, 140, 75, .45), inset 0 1px 0 rgba(255, 255, 255, .35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover { color: #fff; transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 34px rgba(18, 140, 75, .55), inset 0 1px 0 rgba(255, 255, 255, .35); }
.wa-float svg { display: block; }
.wa-float__label {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem; letter-spacing: .06em;
  transition: max-width .25s ease, margin .25s ease;
}
.wa-float:hover .wa-float__label { max-width: 110px; margin-left: 10px; }
@media (max-width: 640px) { .wa-float { right: 16px; bottom: 16px; } }
@media (prefers-reduced-motion: reduce) { .wa-float, .wa-float__label { transition: none; } }

/* ============ Topbar & header ============ */
.topbar { background: var(--ink); color: #cfcac1; font-size: .85rem; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--gold-soft); }
.topbar a:hover { color: #fff; }
.topbar__slogan { letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-display); font-size: .72rem; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(28, 30, 34, .90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand svg, .brand img.custom-logo { height: 56px; width: auto; }
.brand img.brand__logo { height: 64px; width: auto; display: block; border-radius: 10px; box-shadow: 0 4px 14px rgba(0, 0, 0, .35); }
.footer-logo { width: 170px; height: auto; border-radius: 12px; box-shadow: 0 8px 22px rgba(0, 0, 0, .35); margin-bottom: 14px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; font-family: var(--font-display); }
.brand__text .t1 { font-size: .62rem; letter-spacing: .34em; color: var(--gold-deep); }
.brand__text .t2 { font-size: 1.15rem; font-weight: 700; letter-spacing: .14em; color: var(--ink); }
.brand__text .t3 { font-size: .68rem; letter-spacing: .30em; color: var(--silver); }

.main-nav ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: 10px 14px;
  font-family: var(--font-display); font-size: .84rem; font-weight: 600;
  letter-spacing: .10em; text-transform: uppercase;
  color: #d8d6d0; border-radius: 8px;
}
.main-nav a:hover { color: var(--gold); background: rgba(198, 161, 91, .12); }
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #e8e6e1; margin: 5px 0; border-radius: 3px; transition: transform .2s ease, opacity .2s ease; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: 0; top: 0; background: var(--ink); display: none; align-items: center; justify-content: center; z-index: 70; }
  .main-nav.is-open { display: flex; }
  .main-nav ul { flex-direction: column; text-align: center; gap: 14px; }
  .main-nav a { color: #f0ebe1; font-size: 1.1rem; }
  .main-nav .nav-close { position: absolute; top: 22px; right: 26px; background: none; border: 0; color: var(--gold-soft); font-size: 2rem; cursor: pointer; line-height: 1; }
  .brand svg, .brand img.custom-logo { height: 46px; }
}

/* ============ Hero ============ */
.hero { background: radial-gradient(1200px 600px at 70% -10%, #3b3f47 0%, #17181b 60%); color: #ddd8cf; overflow: hidden; position: relative; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-top: 84px; padding-bottom: 84px; }
.hero h1 { color: #f6f1e7; }
.hero h1 .accent { color: var(--gold); }
.hero p { color: #b9b4aa; font-size: 1.12rem; max-width: 52ch; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero__usps { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero__usps span { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; color: #cfc9be; }
.hero__usps svg { color: var(--gold); flex: none; }

.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,.35)); }

/* De auto tekent zichzelf – signatuur-animatie */
.draw { stroke-dasharray: 1600; stroke-dashoffset: 1600; animation: draw 2.6s ease-out .3s forwards; }
.draw--2 { stroke-dasharray: 900; stroke-dashoffset: 900; animation-duration: 2s; animation-delay: 1s; }
.draw--arc { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation-duration: 2.2s; animation-delay: 0s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.road-dash { stroke-dasharray: 34 26; animation: road 1.4s linear infinite; }
@keyframes road { to { stroke-dashoffset: -60; } }
.wheel-spin { transform-origin: center; transform-box: fill-box; animation: spin 2.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.glide { animation: glide 5s ease-in-out infinite alternate; }
@keyframes glide { from { transform: translateY(0); } to { transform: translateY(-8px); } }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; }
  .hero__art { order: -1; max-width: 420px; margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .draw, .draw--2, .draw--arc { animation: none; stroke-dashoffset: 0; }
  .road-dash, .wheel-spin, .glide, .reveal { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============ USP-kaarten ============ */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.usp {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
}
.usp__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(198,161,91,.16), rgba(198,161,91,.05));
  color: var(--gold-deep);
}
.usp h3 { font-size: 1.05rem; letter-spacing: .02em; }
.usp p { margin: 0; color: var(--text-soft); font-size: .95rem; }
@media (max-width: 1000px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .usp-grid { grid-template-columns: 1fr; } }

/* ============ Occasion-kaarten ============ */
.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 1000px) { .car-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .car-grid { grid-template-columns: 1fr; } }

.car-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.car-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--stone-2); }
.car-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.car-card:hover .car-card__media img { transform: scale(1.05); }
.car-card__media .placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--silver); }
.car-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--gold-soft);
  font-family: var(--font-display); font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.car-card__badge--sold { background: #8c2f2f; color: #fff; }
.car-card__badge--reserved { background: var(--gold-deep); color: #fff; }
.car-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.car-card__title { font-size: 1.08rem; margin: 0; }
.car-card__title a { color: var(--head); }
.car-card__title a:hover { color: var(--gold); }
.car-card__specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.car-card__specs li {
  font-size: .78rem; color: var(--text-soft);
  background: var(--stone); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.car-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; border-top: 1px solid var(--line); }
.car-card__price { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--head); }
.car-card__price small { display: block; font-weight: 400; font-size: .68rem; color: var(--text-soft); letter-spacing: .06em; text-transform: uppercase; }
.car-card__link { font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

/* ============ Filterbalk aanbod ============ */
.filterbar {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow); margin-bottom: 34px;
}
.filterbar form { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 14px; align-items: end; }
.filterbar label { display: block; font-family: var(--font-display); font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 6px; }
.filterbar select {
  width: 100%; padding: 11px 12px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--stone); color: var(--text);
  font-family: var(--font-body); font-size: .95rem;
}
.filterbar .btn { padding: 12px 22px; }
.filterbar__reset { font-size: .82rem; margin-left: 8px; }
@media (max-width: 900px) { .filterbar form { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .filterbar form { grid-template-columns: 1fr; } }

/* ============ Detailpagina occasion ============ */
.occasion-hero { background: linear-gradient(180deg, #202227, #1a1c20); border-bottom: 0; }
.occasion-hero h1 { color: #f6f1e7; }
.occasion-hero .wrap { padding-top: 40px; padding-bottom: 40px; }
.occasion-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 36px; align-items: start; }
@media (max-width: 960px) { .occasion-layout { grid-template-columns: 1fr; } }

.gallery__main { border-radius: var(--radius); overflow: hidden; background: var(--stone-2); aspect-ratio: 16/10; box-shadow: var(--shadow); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 12px; }
.gallery__thumbs button { padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; cursor: pointer; background: none; aspect-ratio: 4/3; }
.gallery__thumbs button.is-active { border-color: var(--gold); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .gallery__thumbs { grid-template-columns: repeat(4, 1fr); } }

.spec-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; position: sticky; top: 110px; }
.spec-card__price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--head); }
.spec-card__price small { display: block; font-size: .72rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft); }
.spec-list { list-style: none; margin: 20px 0; padding: 0; border-top: 1px solid var(--line); }
.spec-list li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.spec-list .k { color: var(--text-soft); }
.spec-list .v { font-weight: 600; color: var(--head); text-align: right; }
.spec-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.spec-card__note { font-size: .8rem; color: var(--text-soft); text-align: center; margin-top: 14px; }

.occasion-content { margin-top: 40px; max-width: 75ch; }
.occasion-content h2 { font-size: 1.4rem; }

/* ============ Merken ============ */
.brands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.brand-card { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 26px; }
.brand-card h3 { color: var(--gold-soft); letter-spacing: .12em; text-transform: uppercase; font-size: 1rem; }
.brand-card p { color: #a9a49a; font-size: .93rem; margin: 0; }
.brands--soon { margin-top: 22px; opacity: .75; }
.brands--soon .brand-card { border-style: dashed; }
@media (max-width: 800px) { .brands { grid-template-columns: 1fr; } }

/* ============ Over ons / missie ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.mission { text-align: center; }
.mission blockquote {
  margin: 0 auto; max-width: 62ch;
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 500; color: #efe9dd; line-height: 1.5;
}
.mission blockquote strong { color: var(--gold); font-weight: 600; }

/* ============ Hero-foto: echte auto ============ */
.hero__photo {
  position: relative; margin: 0 auto; max-width: 520px;
  animation: carIn 1.1s cubic-bezier(.2,.8,.3,1) both;
}
.hero__photo-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(198, 161, 91, .85);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45), inset 0 0 0 1px rgba(255, 255, 255, .06);
  aspect-ratio: 4 / 3;
  background: var(--ink-2);
}
.hero__photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-caption {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  background: rgba(27, 26, 24, .82); color: var(--gold-soft);
  font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(198, 161, 91, .4);
}
@media (max-width: 900px) { .hero__photo { max-width: 360px; } }
@media (prefers-reduced-motion: reduce) { .hero__photo { animation: none; } }

/* ============ Auto-illustratie in de hero ============ */
.car-illu .car-in { animation: carIn 1.1s cubic-bezier(.2,.8,.3,1) both; }
@keyframes carIn { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
.car-illu .paint-shine {
  animation: shine 4.5s ease-in-out infinite;
  opacity: 0;
}
@keyframes shine {
  0%, 55% { opacity: 0; transform: translateX(-140px); }
  70% { opacity: .55; }
  85%, 100% { opacity: 0; transform: translateX(320px); }
}
@media (prefers-reduced-motion: reduce) { .car-illu .paint-shine { animation: none; } }

/* ============ Bezoek ons / Google Maps ============ */
.visit { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: stretch; }
.visit__info {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 30px;
}
.visit__info h3 { display: flex; align-items: center; gap: 10px; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-top: 22px; }
.visit__info h3:first-child { margin-top: 0; }
.visit__info p { margin: 6px 0 0; white-space: pre-line; }
.visit__info .btn { margin-top: 22px; }
.visit__map {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line); min-height: 380px; position: relative; background: var(--stone-2);
}
.visit__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.85); }
.visit__map-note {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: rgba(27, 26, 24, .85); color: var(--gold-soft);
  font-family: var(--font-display); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
}
@media (max-width: 900px) { .visit { grid-template-columns: 1fr; } .visit__map { min-height: 300px; } }

/* ============ Breadcrumbs ============ */
.breadcrumbs { background: transparent; border-bottom: 1px solid var(--line); }
.breadcrumbs .wrap { padding-top: 12px; padding-bottom: 12px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; font-size: .82rem; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; color: var(--text-soft); }
.breadcrumbs li:not(:last-child)::after { content: "›"; color: var(--gold-deep); margin-left: 6px; }
.breadcrumbs a { color: var(--gold-deep); font-family: var(--font-display); font-weight: 500; }
.breadcrumbs a:hover { color: var(--head); }
.breadcrumbs [aria-current="page"] { color: var(--text-soft); }

/* ============ Info-kolommen (zekerheid + links) ============ */
.info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-col {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
}
.info-col h3 { font-size: 1.05rem; color: var(--head); }
.info-col p { margin: 0; color: var(--text-soft); font-size: .95rem; }
.info-col a { font-weight: 600; }
@media (max-width: 900px) { .info-cols { grid-template-columns: 1fr; } }

/* ============ Reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ Standaard content / pagina's ============ */
.page-hero { background: linear-gradient(180deg, #17181b, #202227); color: #ddd8cf; }
.page-hero .wrap { padding-top: 56px; padding-bottom: 56px; }
.page-hero h1 { color: #f6f1e7; margin: 0; }
.entry-content { max-width: 75ch; }
.entry-content img { border-radius: var(--radius); }
article.hentry { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 48px); box-shadow: var(--shadow); }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination .page-numbers {
  padding: 10px 16px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--paper); color: var(--head); font-family: var(--font-display); font-weight: 600; font-size: .9rem;
}
.pagination .current { background: var(--gold); border-color: var(--gold); color: #fff; }

.empty-state { text-align: center; padding: 60px 20px; background: var(--paper); border: 1px dashed var(--line); border-radius: var(--radius); color: var(--text-soft); }

/* ============ Footer ============ */
.site-footer { background: linear-gradient(180deg, #141518, #0e0f11); color: #a9a49a; }
.site-footer a { color: #cfc9be; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer .wrap { padding-top: 60px; padding-bottom: 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
.footer-grid h3 { color: var(--gold-soft); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { padding: 5px 0; font-size: .93rem; }
.footer-brand__slogan { font-family: var(--font-display); letter-spacing: .1em; font-size: .8rem; text-transform: uppercase; color: var(--gold); margin-top: 10px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: .82rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* WordPress kern-klassen */
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }
.alignwide { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }
.wp-caption { max-width: 100%; }
.sticky { display: block; }
.gallery-caption, .bypostauthor { display: block; }
