/* ==================================================================
   Rosa Luppes Tattoo — Zutphen
   Design system + components. Dark, warm, editorial.
   Author note: one stylesheet for the whole site. Sections are
   ordered: tokens → reset → base → layout → components → sections
   → footer → utilities → responsive → motion.
   ================================================================== */

@import url('fonts.css');

/* ---------- 1. Design tokens ---------------------------------- */
:root {
  /* Warm dark palette */
  --bg:            #100e0d;
  --bg-2:          #17130f;
  --surface:       #1b1712;
  --surface-2:     #241f19;
  --line:          rgba(244, 237, 228, 0.10);
  --line-strong:   rgba(244, 237, 228, 0.20);

  --ink:           #f4ede3;   /* primary — warm ivory */
  --ink-soft:      #ddd2c4;
  --muted:         #a99c8d;   /* warm taupe */
  --muted-2:       #7d7264;

  --rose:          #cf9a8d;   /* dusty rose — the single accent */
  --rose-soft:     #e7c0b5;
  --rose-deep:     #a86d61;

  /* Roles */
  --accent:        var(--rose);
  --focus:         #e7c0b5;

  /* Type */
  --font-display:  'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:     'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Fluid type scale */
  --fs-kicker:  0.75rem;
  --fs-sm:      0.875rem;
  --fs-base:    1.0625rem;
  --fs-lg:      clamp(1.15rem, 0.9rem + 0.9vw, 1.4rem);
  --fs-xl:      clamp(1.5rem, 1.1rem + 1.6vw, 2.15rem);
  --fs-2xl:     clamp(2rem, 1.3rem + 3vw, 3.35rem);
  --fs-3xl:     clamp(2.6rem, 1.4rem + 5vw, 5rem);
  --fs-hero:    clamp(3rem, 1.2rem + 7.5vw, 7.25rem);

  /* Spacing */
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --container:     1240px;
  --container-narrow: 820px;
  --gutter:        clamp(1.25rem, 0.6rem + 3vw, 3rem);
  --radius:        4px;
  --radius-lg:     10px;

  /* Effects */
  --shadow:        0 24px 60px -30px rgba(0, 0, 0, 0.85);
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --dur:           0.6s;
}

/* ---------- 2. Reset ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--rose); color: #1a1512; }

/* ---------- 3. Base typography -------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; }
strong { color: var(--ink); font-weight: 500; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-body);
  font-size: var(--fs-kicker);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
}
.kicker::before {
  content: "";
  width: 1.8em; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.kicker--center::after {
  content: "";
  width: 1.8em; height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.lead { font-size: var(--fs-lg); color: var(--ink-soft); line-height: 1.55; }
.muted { color: var(--muted); }

/* ---------- 4. Layout ----------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-2xl); margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; }

.grid { display: grid; gap: var(--gutter); }
.eyebrow-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}

/* ---------- 5. Buttons ---------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #17120f;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6em;
  padding: 1rem 1.7rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bg);
  border-radius: 100px;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), background-color 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn:hover { background: var(--rose-soft); border-color: var(--rose-soft); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .btn__ico { width: 1.05em; height: 1.05em; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  --btn-fg: var(--ink);
  background: rgba(244, 237, 228, 0.06);
  border-color: var(--ink);
}
.btn--sm { padding: 0.7rem 1.15rem; font-size: 0.8rem; }
.btn--block { width: 100%; }

.link-more {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: var(--fs-sm); font-weight: 500; letter-spacing: 0.02em;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.3s, border-color 0.3s, gap 0.3s var(--ease);
}
.link-more:hover { color: var(--rose-soft); border-color: var(--rose); gap: 0.9em; }
.link-more .btn__ico { width: 0.95em; height: 0.95em; }

/* ---------- 6. Header / nav ----------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.15rem;
  transition: background-color 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(16, 14, 13, 0.55), transparent);
  pointer-events: none; opacity: 1; transition: opacity 0.4s;
}
.site-header.is-scrolled {
  background: rgba(16, 14, 13, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
  padding-block: 0.7rem;
}
.site-header.is-scrolled::before { opacity: 0; }
.nav {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 40px; height: 40px; flex: none; color: var(--ink); }
.brand__mark .ring { transition: stroke 0.3s; }
.brand:hover .brand__mark { color: var(--rose-soft); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
  letter-spacing: 0; color: var(--ink);
}
.brand__sub {
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--muted);
  margin-top: 0.35em;
}

/* Desktop nav links */
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  position: relative; font-size: 0.9rem; font-weight: 450; color: var(--ink-soft);
  padding-block: 0.4rem; transition: color 0.3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--rose); transition: width 0.4s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--ink); }

.nav__actions { display: flex; align-items: center; gap: 1.1rem; }
.nav__ig { color: var(--ink-soft); transition: color 0.3s, transform 0.3s var(--ease); }
.nav__ig:hover { color: var(--rose-soft); transform: translateY(-1px); }
.nav__ig svg { width: 22px; height: 22px; }

/* Burger */
.nav__toggle {
  display: none; width: 44px; height: 44px; background: none; border: 0;
  cursor: pointer; padding: 0; position: relative;
}
.nav__toggle span {
  position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 7. Media slots (photo/video placeholders) --------- */
.media {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(207, 154, 141, 0.10), transparent 55%),
    linear-gradient(135deg, #221d18 0%, #17130f 55%, #201a15 100%);
  border-radius: var(--radius);
}
.media::after { /* faint film grain / hatch */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.014) 0 2px, transparent 2px 7px);
  opacity: 0.6;
}
.media img, .media video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 2;
  transition: transform 1.1s var(--ease), opacity 0.8s;
}
.media__ph {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.9rem; text-align: center; padding: 1.5rem;
  color: var(--muted-2);
}
.media__ph svg { width: 30px; height: 30px; opacity: 0.55; color: var(--rose-deep); }
.media__ph span {
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
}
.media__ph small {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-2); opacity: 0.7;
}
/* hover zoom where interactive */
a.tile:hover .media img, .tile--zoom:hover .media img { transform: scale(1.05); }

/* Aspect helpers */
.ar-square  { aspect-ratio: 1 / 1; }
.ar-portrait{ aspect-ratio: 4 / 5; }
.ar-tall    { aspect-ratio: 3 / 4; }
.ar-land    { aspect-ratio: 4 / 3; }
.ar-wide    { aspect-ratio: 16 / 10; }

/* ---------- 8. Hero ------------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-top: 6rem;
  padding-bottom: clamp(3rem, 8vh, 7rem);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(140% 120% at 70% 10%, rgba(207,154,141,0.12), transparent 50%),
    linear-gradient(160deg, #221c17 0%, #14100d 60%, #0d0b09 100%);
}
.hero__media img, .hero__media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(13,11,9,0.92) 0%, rgba(13,11,9,0.35) 45%, rgba(13,11,9,0.55) 100%);
}
.hero__ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(207,154,141,0.25);
}
.hero__ph svg { width: clamp(70px, 12vw, 130px); height: auto; }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero h1 {
  font-size: var(--fs-hero); font-weight: 400; letter-spacing: -0.035em;
  margin-top: 1.4rem; max-width: 16ch;
}
.hero h1 em { font-style: italic; color: var(--rose-soft); }
.hero__sub {
  margin-top: 1.8rem; max-width: 42ch; font-size: var(--fs-lg);
  color: var(--ink-soft);
}
.hero__cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: absolute; bottom: 1.6rem; right: var(--gutter); z-index: 2;
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
  writing-mode: vertical-rl;
}
.hero__scroll .line { width: 1px; height: 46px; background: linear-gradient(var(--rose), transparent); }

/* ---------- 9. Marquee / trust strip -------------------------- */
.trust {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}
.trust__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding-block: 1.6rem;
}
.trust__item {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.trust__item svg { width: 17px; height: 17px; color: var(--rose); flex: none; }
.trust__sep { width: 5px; height: 5px; border-radius: 50%; background: var(--muted-2); }

/* ---------- 10. Intro split ----------------------------------- */
.intro-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
@media (min-width: 900px) { .intro-grid { grid-template-columns: 1.1fr 0.9fr; } }
.intro__title { font-size: var(--fs-2xl); }
.intro__title em { font-style: italic; color: var(--rose-soft); }
.intro__text { margin-top: 1.5rem; }
.intro__text p + p { margin-top: 1rem; }
.signature {
  margin-top: 2rem; font-family: var(--font-display); font-style: italic;
  font-size: 1.5rem; color: var(--rose-soft);
}

/* ---------- 11. Style cards ----------------------------------- */
.styles-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 720px) { .styles-grid { grid-template-columns: repeat(3, 1fr); } }
.style-card {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface);
  transition: border-color 0.4s, transform var(--dur) var(--ease);
}
.style-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.style-card .media { border-radius: 0; aspect-ratio: 4 / 5; }
.style-card__body { padding: 1.6rem 1.5rem 1.8rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.style-card__num {
  font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--rose); font-weight: 500;
}
.style-card h3 { font-size: var(--fs-xl); }
.style-card p { font-size: var(--fs-sm); color: var(--muted); }
.style-card .link-more { margin-top: 0.8rem; align-self: flex-start; }

/* ---------- 12. Gallery grid ---------------------------------- */
.gallery {
  display: grid; gap: clamp(0.6rem, 1.2vw, 1rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .gallery--4 { grid-template-columns: repeat(4, 1fr); } }
.tile { display: block; }
.tile .media { aspect-ratio: 1 / 1; }
.tile--tall .media { aspect-ratio: 3 / 4; }
.gallery--masonry .tile:nth-child(3n+1) .media { aspect-ratio: 3 / 4; }
.gallery--masonry .tile:nth-child(4n) .media { aspect-ratio: 4 / 5; }

/* Horizontal scroll rail */
.rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 30%);
  gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  scrollbar-width: thin; scrollbar-color: var(--muted-2) transparent;
}
.rail > * { scroll-snap-align: start; }
.rail .media { aspect-ratio: 4 / 5; }
@media (min-width: 800px){ .rail { grid-auto-columns: minmax(300px, 22%); } }

/* ---------- 13. Story ----------------------------------------- */
.story-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .story-grid { grid-template-columns: 0.85fr 1.15fr; } }
.story__media .media { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); }
.story h2 { font-size: var(--fs-2xl); margin-top: 1rem; }
.story__text { margin-top: 1.5rem; }
.story__text p + p { margin-top: 1rem; }
.press {
  margin-top: 2rem; padding: 1.2rem 1.4rem; border-left: 2px solid var(--rose);
  background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.press small { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); }
.press a { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--ink); }
.press a:hover { color: var(--rose-soft); }

/* ---------- 14. Reviews --------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 800px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 2rem 1.8rem; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.stars { display: inline-flex; gap: 3px; color: var(--rose); }
.stars svg { width: 16px; height: 16px; }
.review p { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.5; color: var(--ink-soft); font-weight: 400; }
.review__by { margin-top: auto; font-size: 0.8rem; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.review__src { font-size: 0.7rem; color: var(--muted-2); }

/* ---------- 15. Process --------------------------------------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; padding: 2rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), transparent);
}
.step__n {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--rose); line-height: 1;
  display: block; margin-bottom: 1rem; font-weight: 400;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { font-size: var(--fs-sm); color: var(--muted); }

/* ---------- 16. FAQ ------------------------------------------- */
.faq { max-width: 46rem; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: var(--fs-lg); color: var(--ink);
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--rose-soft); }
.faq__icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--rose); transition: transform 0.4s var(--ease);
}
.faq__icon::before { top: 50%; left: 2px; right: 2px; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after  { left: 50%; top: 2px; bottom: 2px; width: 1.5px; transform: translateX(-50%); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__answer { padding-bottom: 1.6rem; color: var(--muted); max-width: 60ch; }
.faq__answer p + p { margin-top: 0.8rem; }

/* ---------- 17. CTA band -------------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(207,154,141,0.12), transparent 55%),
    var(--surface);
}
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: 1.2fr 0.8fr; align-items: center; } }
.cta-band h2 { font-size: var(--fs-2xl); }
.cta-band h2 em { font-style: italic; color: var(--rose-soft); }
.cta-band p { margin-top: 1rem; color: var(--muted); max-width: 40ch; }
.cta-band__actions { display: flex; flex-direction: column; gap: 1rem; }
.cta-band__actions .btn { width: 100%; }

/* Contact detail list */
.contact-list { display: grid; gap: 1.4rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-row__ico {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--rose);
}
.contact-row__ico svg { width: 18px; height: 18px; }
.contact-row__label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); }
.contact-row a, .contact-row p { color: var(--ink); font-size: var(--fs-base); }
.contact-row a:hover { color: var(--rose-soft); }

/* ---------- 18. Footer ---------------------------------------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-top: clamp(3.5rem, 6vw, 6rem); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand .brand { margin-bottom: 1.2rem; }
.footer__tag { color: var(--muted); max-width: 30ch; font-size: var(--fs-sm); }
.footer__social { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--ink-soft); transition: all 0.3s var(--ease);
}
.footer__social a:hover { color: var(--rose-soft); border-color: var(--rose); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__col h4 {
  font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 1.2rem; font-weight: 600;
}
.footer__col ul { display: grid; gap: 0.7rem; }
.footer__col a, .footer__col p { color: var(--ink-soft); font-size: var(--fs-sm); transition: color 0.3s; }
.footer__col a:hover { color: var(--rose-soft); }
.footer-bottom {
  margin-top: clamp(3rem, 5vw, 4.5rem); padding-block: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
}
.footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: var(--muted-2); }
.footer-bottom a:hover { color: var(--ink-soft); }
.footer-bottom__links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ---------- 19. Sticky mobile action bar ---------------------- */
.mobile-bar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: none; gap: 0.7rem; padding: 0.7rem;
  background: rgba(16,14,13,0.9); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { flex: 1; padding-block: 0.95rem; }
.mobile-bar .btn--wa { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line-strong); }

/* ---------- 20. Page hero (interior) -------------------------- */
.page-hero { position: relative; padding-top: clamp(8rem, 14vh, 11rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.page-hero__crumb { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.4rem; }
.page-hero__crumb a:hover { color: var(--rose-soft); }
.page-hero h1 { font-size: var(--fs-3xl); }
.page-hero h1 em { font-style: italic; color: var(--rose-soft); }
.page-hero p { margin-top: 1.4rem; max-width: 52ch; font-size: var(--fs-lg); color: var(--ink-soft); }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 2rem; }
.page-hero__meta div { }
.page-hero__meta dt { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); }
.page-hero__meta dd { font-size: var(--fs-base); color: var(--ink); margin-top: 0.3rem; }

/* Style nav (between the 3 style pages) */
.style-switch { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.style-switch a {
  padding: 0.6rem 1.1rem; border: 1px solid var(--line-strong); border-radius: 100px;
  font-size: 0.82rem; color: var(--ink-soft); transition: all 0.3s;
}
.style-switch a:hover { border-color: var(--rose); color: var(--ink); }
.style-switch a[aria-current="page"] { background: var(--ink); color: #17120f; border-color: var(--ink); }

/* ---------- 21. Forms (aanvraag) ------------------------------ */
.form-wrap { max-width: 720px; }
.form-progress { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.form-progress__step {
  flex: 1; height: 3px; border-radius: 3px; background: var(--line); overflow: hidden; position: relative;
}
.form-progress__step::after {
  content: ""; position: absolute; inset: 0; background: var(--rose);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.form-progress__step.is-done::after, .form-progress__step.is-active::after { transform: scaleX(1); }
.form-progress__label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.8rem; }

/* Stap-tabs boven het formulier */
.form-tabs {
  display: flex; gap: 0.5rem; list-style: none; padding: 0;
  margin: 0 0 2.5rem;
}
.form-tabs__tab {
  flex: 1; min-width: 0;
  display: flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: 0.7rem 0.6rem;
  border: 1px solid var(--line); border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.01em;
  color: var(--muted-2); background: transparent;
  cursor: default; user-select: none;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}
.form-tabs__n {
  flex: none; display: grid; place-items: center;
  width: 1.65em; height: 1.65em; border-radius: 50%;
  border: 1px solid currentColor; font-size: 0.72rem;
  transition: all 0.3s;
}
.form-tabs__lbl { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/* Actieve stap */
.form-tabs__tab.is-active { color: var(--ink); border-color: var(--rose); }
.form-tabs__tab.is-active .form-tabs__n { background: var(--rose); border-color: var(--rose); color: #17120f; }
/* Afgeronde (klikbare) stap */
.form-tabs__tab.is-done { color: var(--ink-soft); border-color: var(--line-strong); cursor: pointer; }
.form-tabs__tab.is-done .form-tabs__n { background: var(--ink-soft); border-color: var(--ink-soft); color: #17120f; }
.form-tabs__tab.is-done:hover { border-color: var(--rose); color: var(--ink); }
.form-tabs__tab:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
@media (max-width: 460px) {
  .form-tabs__tab { font-size: 0.75rem; padding: 0.6rem 0.4rem; gap: 0.4em; }
  .form-tabs__n { width: 1.5em; height: 1.5em; }
}

.fieldset { border: 0; padding: 0; margin: 0; }
.fieldset[hidden] { display: none; }
.fieldset__legend { font-family: var(--font-display); font-size: var(--fs-xl); color: var(--ink); margin-bottom: 0.5rem; }
.fieldset__intro { color: var(--muted); margin-bottom: 2rem; font-size: var(--fs-sm); }

.field { margin-bottom: 1.5rem; }
.field > label, .field__label {
  display: block; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--ink-soft);
  margin-bottom: 0.6rem; font-weight: 500;
}
.field .req { color: var(--rose); }
.field .hint { font-size: 0.75rem; color: var(--muted-2); margin-top: 0.5rem; }
.input, .textarea, .select {
  width: 100%; padding: 0.95rem 1.1rem; background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  transition: border-color 0.3s, background-color 0.3s;
  font-size: var(--fs-base);
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--rose); background: var(--surface-2); }
.textarea { min-height: 140px; resize: vertical; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a99c8d' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.6rem; }

/* Choice chips (radio/checkbox as pills) */
.choices { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.7rem 1.15rem; border: 1px solid var(--line-strong); border-radius: 100px;
  font-size: 0.85rem; color: var(--ink-soft); cursor: pointer; transition: all 0.25s;
}
.choice input:hover + span { border-color: var(--muted); }
.choice input:checked + span { background: var(--ink); color: #17120f; border-color: var(--ink); }
.choice input:focus-visible + span { outline: 2px solid var(--focus); outline-offset: 2px; }

/* File upload */
.upload {
  border: 1px dashed var(--line-strong); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center; cursor: pointer; transition: all 0.3s;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem; color: var(--muted);
}
.upload:hover, .upload.is-drag { border-color: var(--rose); background: var(--surface); color: var(--ink-soft); }
.upload svg { width: 28px; height: 28px; color: var(--rose); }
.upload strong { color: var(--ink); font-weight: 500; }
.upload input { display: none; }
.upload__list { margin-top: 0.8rem; display: grid; gap: 0.5rem; }
.upload__file { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.8rem; color: var(--ink-soft); background: var(--surface); padding: 0.6rem 0.9rem; border-radius: var(--radius); border: 1px solid var(--line); }
.upload__file button { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 1.1rem; line-height: 1; }
.upload__file button:hover { color: var(--rose-soft); }

/* Consent */
.consent { display: flex; gap: 0.8rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--muted); }
.consent input { margin-top: 0.25rem; width: 18px; height: 18px; accent-color: var(--rose); flex: none; }
.consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.form-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; }
.form-nav .btn--ghost[hidden] { display: none; }

/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-alert { padding: 1rem 1.2rem; border-radius: var(--radius); font-size: var(--fs-sm); margin-top: 1rem; }
.form-alert--err { background: rgba(168,109,97,0.15); border: 1px solid var(--rose-deep); color: var(--rose-soft); }
.form-note { font-size: 0.8rem; color: var(--muted-2); margin-top: 1.2rem; text-align: center; }

/* ---------- 22. Prose (privacy / article) --------------------- */
.prose { max-width: 720px; }
.prose h2 { font-size: var(--fs-xl); margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { font-size: var(--fs-lg); margin-top: 1.8rem; margin-bottom: 0.7rem; color: var(--ink); }
.prose p, .prose ul { color: var(--ink-soft); }
.prose p + p { margin-top: 1rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; margin-top: 0.8rem; display: grid; gap: 0.5rem; }
.prose a { color: var(--rose-soft); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }

/* ---------- 23. Thank-you ------------------------------------- */
.thanks { min-height: 78vh; display: grid; place-items: center; text-align: center; }
.thanks__mark { width: 72px; height: 72px; margin-inline: auto; color: var(--rose); margin-bottom: 2rem; }
.thanks h1 { font-size: var(--fs-3xl); }
.thanks p { margin-top: 1.2rem; max-width: 46ch; margin-inline: auto; color: var(--muted); }
.thanks .btn { margin-top: 2.5rem; }

/* ---------- 24. Utilities ------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- 25. Scroll reveal --------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .media img { transition: none; }
  .btn, .style-card, .footer__social a { transition: none; }
}

/* ---------- 26. Responsive nav ------------------------------- */
@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 0.5rem; padding: 6rem var(--gutter) 2rem;
    background: var(--bg);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
  }
  body.nav-open .nav__links { transform: translateX(0); }
  .nav__link { font-family: var(--font-display); font-size: 2rem; color: var(--ink); padding-block: 0.6rem; }
  .nav__link::after { display: none; }
  .nav__toggle { display: block; z-index: 2; }
  .nav__ig { display: none; }
  .nav__actions .btn { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 4.5rem; }
  .footer-bottom { padding-bottom: 5rem; }
}

/* larger screens: reveal the full menu */
@media (min-width: 901px) {
  .nav__links { transform: none !important; }
}
