/* ============================================================
   Rocco Resin - shared site styles (all pages except the
   Home scroll-video, which keeps its own inline styles).
   ============================================================ */
:root {
  --black:    #0a0a0a;
  --black-2:  #111110;
  --black-3:  #17160f;
  --ink:      #f1ece3;
  --muted:    #ffffff;   /* was grijs (#a8a294) — superwit voor leesbaarheid */
  --gold:     #c8a45c;
  --gold-2:   #e7cf97;
  --gold-deep:#8a6d33;
  --brand:    #c28e3a;
  --line:     rgba(200, 164, 92, 0.18);
  --line-soft:rgba(200, 164, 92, 0.10);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Jost", system-ui, sans-serif;
  --shell: 1240px;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { background: var(--black); -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overscroll-behavior: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 0.4vw + 14px, 17px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-y: none;   /* no pull-to-refresh reload at the top on mobile */
}
img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--black); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: 0.01em; }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.kicker { font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); display: inline-block; }

/* ---------- Background layers (starfield + fluid) ---------- */
#starfield { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: -2; pointer-events: none; display: block; }
/* Fluid sits BEHIND the content (above the starfield, below the text). */
#fluid-cursor { position: fixed !important; inset: 0 !important; width: 100vw !important; height: 100vh !important; z-index: -1 !important; pointer-events: none !important; }
#fluid-cursor canvas { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; display: block; }

/* ---------- Legibility over the animated background ---------- */
/* Display headings in gold (not plain white) + a soft glow for contrast. */
.page-hero h1, .section__head h2, .cta h2 {
  color: var(--gold-2);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65), 0 1px 2px rgba(0, 0, 0, 0.5);
}
/* Body copy stays light but gets a subtle dark halo so it reads over the stars. */
.page-hero p, .section__head p, .prose p, .prose p.lead, .cta p,
.faq__q, .faq__a > div, .info-list li, .field label, .field__help,
.foot-tag, .foot-col a, .foot-col address, .foot-bottom, .post__body p, .card p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
/* A soft dark scrim directly behind the heaviest text blocks for readability,
   without hiding the cosmic background elsewhere. */
/* See-through black reading panels: text stays crisp and the fluid never
   disturbs it, while the cosmic background still glimmers faintly through. */
.page-hero .shell,
.section__head,
.prose,
.faq,
.cta .shell,
.detail-info,
.contact-grid > form,
.contact-grid > div {
  background: rgba(10, 10, 10, 0.68);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.page-hero .shell { max-width: 900px; margin-inline: auto; }
.cta .shell { max-width: 760px; margin-inline: auto; }
/* Footer band gets its own translucent black so its text reads too. */
footer.site-footer { background: rgba(8, 8, 8, 0.55); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 1rem 1.9rem; cursor: pointer; white-space: nowrap;
  border: 1px solid var(--gold); color: var(--gold); background: transparent; border-radius: 2px;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--solid { background: var(--gold); color: var(--black); }
.btn--solid:hover { background: var(--gold-2); border-color: var(--gold-2); }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--gold-2); transition: gap 0.25s var(--ease); }
.link-arrow:hover { gap: 0.85rem; }

/* ---------- Nav ---------- */
header.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: 76px;
  background: color-mix(in srgb, var(--black) 78%, transparent);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft);
}
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: flex-start; gap: 1.2rem; }
.nav__inner .brand { margin-right: auto; }

/* Language switcher (top-right) */
.lang-switch { display: flex; align-items: center; gap: 0.45rem; }
.lang-switch button { width: 28px; height: 20px; padding: 0; border: 1px solid var(--line-soft); border-radius: 3px; overflow: hidden; cursor: pointer; background: none; opacity: 0.55; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease); }
.lang-switch button:hover { opacity: 1; transform: translateY(-1px); }
.lang-switch button.is-active { opacity: 1; border-color: var(--gold); }
.lang-switch img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) { .lang-switch button { width: 24px; height: 17px; } }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: 0.16em; }
.brand__logo { height: 46px; width: auto; max-width: none; display: block; flex: none; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); transition: color 0.3s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--gold); }
.nav__links .btn { padding: 0.7rem 1.3rem; color: var(--gold); }
.nav__links .btn:hover { color: var(--black); }
.nav__burger { display: none; background: none; border: 0; color: var(--ink); font-size: 1.6rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; gap: 0.25rem; padding: 1rem clamp(1.25rem,4vw,2.5rem) 1.5rem; background: var(--black); border-bottom: 1px solid var(--line-soft); }
.mobile-menu.open { display: flex; position: fixed; top: 76px; left: 0; right: 0; z-index: 49; max-height: calc(100vh - 76px); overflow-y: auto; }
.mobile-menu a { padding: 0.75rem 0; color: var(--muted); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid var(--line-soft); }
.mobile-menu a:last-of-type { border: none; }
.mobile-menu .btn { margin-top: 0.75rem; }

/* ---------- Social rail (fixed left) ---------- */
.social-rail { position: fixed; left: clamp(8px,1.4vw,20px); top: 50%; transform: translateY(-50%); z-index: 46; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.social-rail a { display: inline-flex; opacity: 0.9; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), filter 0.3s var(--ease); }
.social-rail a:hover { transform: translateX(4px) scale(1.08); opacity: 1; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.55)); }
.social-rail img { height: 56px; width: auto; max-width: none; display: block; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; z-index: 2; padding: clamp(8rem, 16vh, 12rem) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 7vw, 5rem); text-align: center; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: -0.02em; margin-top: 1rem; }
.page-hero p { color: #d7d0c2; margin: 1.25rem auto 0; max-width: 60ch; font-size: 1.08rem; }

/* ---------- Sections / content ---------- */
.section { position: relative; z-index: 2; padding-block: clamp(3.5rem, 8vw, 6rem); }
.section__head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-top: 0.9rem; }
.section__head p { color: #ffffff; margin-top: 1rem; max-width: 52ch; }
.prose { max-width: 70ch; }
.prose p { color: var(--ink); margin-bottom: 1.2rem; }
.prose p.lead { color: var(--gold-2); font-size: 1.2rem; }

/* ---------- Cards (services / projects / blog) ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative; padding: 2rem 1.8rem; min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: color-mix(in srgb, var(--black-2) 75%, transparent);
  border: 1px solid var(--line); border-radius: 3px; overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background-color 0.5s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: var(--gold); background: color-mix(in srgb, var(--black-3) 85%, transparent); }
.card__no { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1.1rem; margin-bottom: auto; }
.card h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Gallery tiles ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery--looks { grid-template-columns: repeat(2, 1fr); }
.gallery--looks .tile { aspect-ratio: 16 / 10; }
.tile { position: relative; aspect-ratio: 7/8; border-radius: 3px; overflow: hidden; border: 1px solid var(--line); }
.tile__art { position: absolute; inset: 0; transition: transform 0.7s var(--ease); }
.tile:hover .tile__art { transform: scale(1.06); }
.art-marble { background: radial-gradient(140% 120% at 20% 20%, #efe4c4, #b9923f 45%, #2b2310 100%); }
.art-ocean  { background: radial-gradient(140% 120% at 25% 25%, #bfe3ec, #2a6f8f 45%, #07151c 100%); }
.art-metal  { background: radial-gradient(140% 120% at 30% 20%, #d9b86a, #5a4a1f 45%, #0a0a0a 100%); }
.art-copper { background: radial-gradient(140% 120% at 25% 25%, #e7a36a, #8a4a25 45%, #1c0f08 100%); }
.art-sage   { background: radial-gradient(140% 120% at 25% 20%, #cfe3c4, #5a7a4a 45%, #10160e 100%); }
.art-ink    { background: radial-gradient(140% 120% at 30% 25%, #9aa0b0, #2a2f3a 45%, #07080c 100%); }
.tile__label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem 1.25rem 1.1rem; display: flex; justify-content: space-between; align-items: flex-end; background: linear-gradient(180deg, transparent, rgba(10,10,10,0.85)); }
.tile__label h3 { font-size: 1.4rem; } .tile__label span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.tile__tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-2); background: rgba(10,10,10,0.55); border: 1px solid var(--line); padding: 0.3rem 0.6rem; border-radius: 2px; }

/* ---------- Blog cards ---------- */
.post { display: flex; flex-direction: column; background: color-mix(in srgb, var(--black-2) 70%, transparent); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; transition: transform 0.5s var(--ease), border-color 0.5s var(--ease); }
.post:hover { transform: translateY(-6px); border-color: var(--gold); }
.post__art { aspect-ratio: 16/10; }
.post__body { padding: 1.5rem 1.4rem 1.8rem; }
.post__meta { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.post__body h3 { font-size: 1.45rem; margin: 0.6rem 0 0.6rem; }
.post__body p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4rem); align-items: start; }
.field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.25rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink); background: color-mix(in srgb, var(--black-2) 80%, transparent);
  border: 1px solid var(--line); border-radius: 2px; padding: 0.85rem 0.95rem; resize: vertical;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-2); }
.field__help { font-size: 0.8rem; color: var(--muted); }
.form-status { font-size: 0.9rem; color: var(--gold-2); min-height: 1.2em; margin-top: 0.5rem; }
.info-list { list-style: none; padding: 0; }
.info-list li { padding: 0.9rem 0; border-bottom: 1px solid var(--line-soft); }
.info-list .lbl { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.info-list a { color: var(--gold-2); }
.map-embed { margin-top: 1.5rem; border-radius: 3px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/9; background: color-mix(in srgb, var(--black-2) 70%, transparent); }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05); }

/* ---------- Colour-group menu cards ---------- */
.group-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
/* Ronde categorie-tegels: zwarte plaat én foto zijn cirkels, tekst gecentreerd erin. */
.group-card {
  border: 1px solid var(--line); border-radius: 50%; overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: clamp(0.8rem, 2vw, 1.4rem);
  background: color-mix(in srgb, var(--black-2) 70%, transparent);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.group-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45); }
.group-card__art {
  display: block; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: 50%;
  width: 52%; margin: 0 auto 0.7rem;
  border: 1px solid var(--line);
  flex: none;
}
.group-card__art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease), opacity 0.25s ease; }
.group-card:hover .group-card__art img { transform: scale(1.06); }
.group-card__cap { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; padding: 0 0.9rem; }
.group-card__cap h3 { font-size: clamp(1.05rem, 1.6vw, 1.3rem); margin: 0; line-height: 1.15; }
.group-card__cap span { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
@media (max-width: 1024px) { .group-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) {
  .group-grid { grid-template-columns: repeat(2, 1fr); }
  /* Kleine cirkels: tekst mag wrappen en wordt iets kleiner zodat alles past. */
  .group-card__cap h3 { font-size: 0.92rem; }
  .group-card__cap span { white-space: normal; font-size: 0.54rem; line-height: 1.3; }
  .group-card__art { width: 44%; margin-bottom: 0.45rem; }
}

/* ---------- Colour detail: image slider ---------- */
.detail-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 860px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-info .kicker { display: block; }
.detail-info h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0.5rem 0 1rem; }
.detail-info p { color: var(--muted); margin-bottom: 1.5rem; max-width: 46ch; }
.slider { position: relative; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.slider__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.slider__track::-webkit-scrollbar { display: none; }
.slider__track img { flex: 0 0 100%; width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #fff; scroll-snap-align: center; display: block; }
.slider__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line); background: rgba(10, 10, 10, 0.5); color: var(--gold); font-size: 1.5rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.slider__nav:hover { background: var(--gold); color: var(--black); }
.slider__nav--prev { left: 12px; } .slider__nav--next { right: 12px; }
.slider__dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.slider__dots button { width: 9px; height: 9px; border-radius: 999px; border: 1px solid rgba(0,0,0,0.25); background: rgba(0,0,0,0.25); cursor: pointer; padding: 0; }
.slider__dots button.is-active { background: var(--gold); border-color: var(--gold); }
.slider[data-single] .slider__nav, .slider[data-single] .slider__dots { display: none; }

/* ---------- Colour swatches (pigments) ---------- */
.swatches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.swatch {
  display: block; margin: 0;
  border: 1px solid var(--line); border-radius: 5px; overflow: hidden;
  background: color-mix(in srgb, var(--black-2) 70%, transparent);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.swatch:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45); }
.swatch__chip { aspect-ratio: 1 / 1; width: 100%; display: block; object-fit: cover; transition: opacity 0.25s ease; }
.swatch__meta { padding: 0.7rem 0.85rem 0.85rem; }
.swatch__meta h3 { font-size: 1.05rem; margin: 0; }
.swatch__meta span { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.swatch-note { color: var(--muted); font-size: 0.85rem; margin-top: 1.5rem; max-width: 60ch; font-style: italic; }
@media (max-width: 1024px) { .swatches { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .swatches { grid-template-columns: repeat(2, 1fr); } }
/* Solid colour tile (RAL) — used as a <span> instead of <img> */
.swatch__chip--solid { display: block; }
/* RAL live search */
.ral-search { margin-top: 1.6rem; }
.ral-search input { width: 100%; max-width: 540px; padding: 0.85rem 1.1rem; background: var(--black-2); border: 1px solid rgba(200,164,92,0.28); border-radius: 10px; color: var(--ink); font-family: inherit; font-size: 1rem; }
.ral-search input::placeholder { color: var(--muted); }
.ral-search input:focus { outline: none; border-color: var(--gold); }
.ral-results { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.6rem; }
.ral-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0.6rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 9px; text-decoration: none; color: var(--ink); background: var(--black-2); transition: border-color 0.2s; }
.ral-item:hover { border-color: var(--gold); }
.ral-item__chip { width: 36px; height: 36px; border-radius: 6px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,0.18); }
.ral-item__txt { display: flex; flex-direction: column; line-height: 1.25; }
.ral-item__txt b { font-size: 0.95rem; font-weight: 500; }
.ral-item__txt span { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.08em; }
.color-block { width: 100%; aspect-ratio: 4 / 3; border-radius: 10px; border: 1px solid rgba(200, 164, 92, 0.22); box-shadow: inset 0 0 60px rgba(0,0,0,0.18); }
.color-block__code { display: inline-block; margin-top: 0.9rem; font-family: monospace; font-size: 0.95rem; color: var(--gold); letter-spacing: 0.08em; }

/* ---------- Intake info cards (why we ask) ---------- */
.intake {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.4rem; min-height: 0;
  background: color-mix(in srgb, var(--black-2) 70%, transparent);
  border: 1px solid var(--line); border-radius: 4px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.intake:hover { transform: translateY(-4px); border-color: var(--gold); }
.intake__no { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1.5rem; line-height: 1.1; flex: none; min-width: 1.7rem; }
.intake h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.intake p { color: var(--muted); font-size: 0.95rem; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: var(--gold-2); font-family: var(--font-display); font-size: 1.3rem; padding: 1.3rem 2.5rem 1.3rem 0; position: relative; }
.faq__q::after { content: "+"; position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%); color: var(--gold); font-family: var(--font-body); font-size: 1.4rem; transition: transform 0.3s var(--ease); }
.faq__item.open .faq__q::after { content: "\2212"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a > div { padding: 0 0 1.3rem; color: #ffffff; max-width: 65ch; }
.faq__item.open .faq__a { max-height: 600px; }

/* ---------- CTA band ---------- */
.cta { position: relative; z-index: 2; text-align: center; padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 4vw, 2.5rem); border-top: 1px solid var(--line-soft); background: linear-gradient(160deg, color-mix(in srgb, var(--gold) 12%, transparent), transparent 60%); }
.cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 18ch; margin: 0 auto; }
.cta p { color: var(--muted); margin: 1.25rem auto 2rem; max-width: 46ch; }

/* ---------- Footer ---------- */
footer.site-footer { position: relative; z-index: 2; border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; margin-top: clamp(3rem, 8vw, 6rem); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.foot-grid .brand { font-size: 1.1rem; }
.foot-tag { color: var(--muted); margin-top: 1rem; max-width: 30ch; font-size: 0.95rem; }
.foot-col h4 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.foot-col a, .foot-col address { display: block; color: var(--muted); font-style: normal; padding: 0.3rem 0; transition: color 0.2s var(--ease); }
.foot-col a:hover { color: var(--gold); }
.foot-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: 0.85rem; }

/* reveal on scroll */
.rise { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rise { opacity: 1; transform: none; transition: none; } }

/* Cinematic heading reveal — 3D tilt-up + letter-spacing settle + gold glint */
.split-reveal { display: block; letter-spacing: -0.04em; transition: letter-spacing 1s var(--ease); }
.split-reveal.in { letter-spacing: 0.01em; }
.split-word { display: inline-block; vertical-align: top; white-space: nowrap; }   /* word group: never breaks mid-letter */
.split-char { display: inline-block; vertical-align: top; }
.split-char__in {
  display: inline-block; opacity: 0;
  transform: perspective(700px) translateY(0.5em) rotateX(-75deg); transform-origin: 50% 100%;
  transition: transform 0.55s var(--ease), opacity 0.45s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: transform, opacity;
}
.split-reveal.in .split-char__in {
  opacity: 1; transform: perspective(700px) translateY(0) rotateX(0deg);
  animation: gold-glint 0.6s ease both; animation-delay: calc(var(--d, 0s) + 0.35s);
}
@keyframes gold-glint {
  0%, 100% { filter: brightness(1); }
  45% { filter: brightness(1.85) drop-shadow(0 0 7px rgba(255, 224, 150, 0.45)); }
}
@media (prefers-reduced-motion: reduce) {
  .split-reveal { letter-spacing: 0.01em; transition: none; }
  .split-char__in { opacity: 1; transform: none; transition: none; animation: none; }
}

/* Sub-text under a heading — word-by-word rise (lighter than the heading) */
.rw-word { display: inline-block; }
.rw-word__in {
  display: inline-block; opacity: 0; transform: translateY(0.6em);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: transform, opacity;
}
.rw-reveal.in .rw-word__in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rw-word__in { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  /* Collapse the horizontal menu to the burger early enough that the logo +
     language flags always fit (and the logo never gets pushed off-screen). */
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .lang-switch { gap: 0.35rem; }
  .lang-switch button { width: 24px; height: 17px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4, .gallery { grid-template-columns: 1fr; }
  .contact-grid, .foot-grid { grid-template-columns: 1fr; }
  /* Phones: horizontal social bar pinned to the bottom-centre (stays visible). */
  .social-rail {
    flex-direction: row;
    top: auto; bottom: 14px; left: 50%; right: auto;
    transform: translateX(-50%);
    gap: 0.7rem; padding: 0.35rem 0.75rem;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
  }
  .social-rail a:hover { transform: translateY(-2px) scale(1.08); }
  .social-rail img { height: 46px; }
  /* Reserveer ruimte zodat de fixed social-pil de footer-onderkant niet bedekt. */
  footer.site-footer { padding-bottom: 110px; }
}
