/* ============================================================
   Devi Hairfashion — stylesheet
   Palette: ink (near-black) + goud + warm crème
   ============================================================ */

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --ink:      #12100E;
  --ink-2:    #1D1A16;
  --ink-3:    #2B2620;
  --body:     #33302B;
  --muted:    #5E574E;
  --line:     #E4DDD2;
  --line-dk:  #38322A;

  --cream:    #FBF7EF;
  --cream-2:  #F5EDDD;
  --white:    #FFFFFF;

  --gold:     #C9A227;   /* accent op donker + knopvlak */
  --gold-lt:  #E2C56B;
  --gold-pale:#F3E4B8;
  --gold-dk:  #8A6D12;   /* goud dat AA haalt op licht */
  --gold-grad: linear-gradient(135deg, #E2C56B 0%, #C9A227 45%, #A9871B 100%);

  --radius:   14px;
  --radius-lg:22px;
  --shadow:   0 1px 2px rgba(18,16,14,.05), 0 8px 24px -12px rgba(18,16,14,.18);
  --shadow-lg:0 2px 4px rgba(18,16,14,.06), 0 24px 60px -24px rgba(18,16,14,.35);

  --wrap:     1180px;
  --gutter:   clamp(1.15rem, 4vw, 2.5rem);
  --sp:       clamp(3.5rem, 8vw, 7rem);

  --serif:    "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --header-h: 72px;
}

/* ── 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(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ── Typografie ───────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h1 em { font-style: italic; color: var(--gold-lt); }

p { text-wrap: pretty; }

.eyebrow {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: .85rem;
}
.eyebrow::after {
  content: ""; flex: 1 1 auto; max-width: 4.5rem; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* Anker-doelen niet onder de sticky header laten vallen */
:target, section[id], [id^="tab-"], #top { scroll-margin-top: calc(var(--header-h) + 1.25rem); }

/* ── Hulpklassen ──────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.sr-only, .visually-h3 {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.i { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

.fineprint { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ── Focus (zichtbaar en consistent) ──────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--dark :focus-visible,
.hero :focus-visible,
.site-footer :focus-visible { outline-color: var(--gold-lt); }

/* ── Skip link ────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -110%);
  z-index: 200;
  background: var(--ink); color: var(--white);
  padding: .8rem 1.4rem; border-radius: 0 0 10px 10px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ── Knoppen ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .78rem 1.4rem;
  border: 1.5px solid transparent; border-radius: 100px;
  font-size: .94rem; font-weight: 600; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold  { background: var(--gold-grad); color: var(--ink); border-color: transparent; box-shadow: 0 2px 10px -2px rgba(169,135,27,.5); }
.btn--gold:hover  { background: linear-gradient(135deg, #EFD588 0%, #D8B133 45%, #B8951F 100%); box-shadow: 0 6px 18px -4px rgba(169,135,27,.6); }

.btn--dark  { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--dark:hover  { background: var(--ink-3); border-color: var(--ink-3); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: .87rem; }

@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ── Utility bar ──────────────────────────────────────────── */
.utilbar {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: .84rem;
}
.utilbar__in { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; align-items: center; justify-content: space-between; min-height: 40px; padding-block: .4rem; }
.utilbar__status { display: flex; align-items: center; gap: .5rem; }
.utilbar__status .dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--gold-lt); flex: none; }
.utilbar__status.is-open  .dot { background: #4ADE80; box-shadow: 0 0 0 3px rgba(74,222,128,.22); }
.utilbar__status.is-closed .dot { background: #F87171; }
.utilbar__links { display: flex; gap: 1.35rem; }
.utilbar__links a { display: inline-flex; align-items: center; gap: .45rem; text-decoration: none; }
.utilbar__links a:hover { color: var(--gold-lt); text-decoration: underline; }
@media (max-width: 640px) { .utilbar__links a:last-child { display: none; } }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.site-header.is-stuck { box-shadow: var(--shadow); }
.site-header__in { position: relative; display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; text-decoration: none; margin-right: auto; }
.brand img {
  width: auto; height: 46px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(201,162,39,.35);
}
@media (max-width: 420px) { .brand img { height: 38px; } }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.6rem; }
.nav__list a {
  position: relative;
  font-size: .93rem; font-weight: 500; text-decoration: none;
  color: var(--body); padding-block: .4rem;
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .22s;
}
.nav__list a:hover { color: var(--ink); }
.nav__list a:hover::after,
.nav__list a[aria-current="true"]::after { transform: scaleX(1); }
.nav__list a[aria-current="true"] { color: var(--ink); font-weight: 600; }

.navtoggle {
  display: none; align-items: center; gap: .55rem;
  background: none; border: 1.5px solid var(--line); border-radius: 100px;
  padding: .6rem 1rem; min-height: 44px;
  font-size: .88rem; font-weight: 600; cursor: pointer;
  -webkit-user-select: none; user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.navtoggle__bars { display: grid; gap: 4px; width: 18px; }
.navtoggle__bars i { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .22s, opacity .22s; }
.navtoggle[aria-expanded="true"] .navtoggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navtoggle[aria-expanded="true"] .navtoggle__bars i:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] .navtoggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .navtoggle { display: inline-flex; }
  /* Panel hangt onder de header, ook als de pagina gescrold is */
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
    padding: .5rem var(--gutter) 1.6rem;
    max-height: calc(100dvh - var(--header-h) - 1rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav[hidden] { display: none; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list a { display: block; padding: 1rem .25rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__list a::after { display: none; }
  .nav__cta { margin-top: 1.2rem; width: 100%; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero { position: relative; background: var(--ink); color: rgba(255,255,255,.86); isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(18,16,14,.94) 0%, rgba(18,16,14,.78) 45%, rgba(18,16,14,.5) 100%),
    linear-gradient(to top, rgba(18,16,14,.95) 0%, rgba(18,16,14,0) 55%);
}
.hero__in { padding-block: clamp(4rem, 11vw, 8rem) 0; }
.hero__copy { max-width: 42rem; }
.hero h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero .eyebrow { color: var(--gold-lt); }
.hero__lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 36rem; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.1rem; }
.hero__note { font-size: .87rem; color: rgba(255,255,255,.62); }

.usps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: clamp(3rem, 7vw, 5rem);
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.usps li { background: var(--ink); padding: 1.5rem 1.4rem; display: flex; flex-direction: column; gap: .25rem; }
.usps b { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-lt); font-weight: 600; }
.usps span { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.4; }
@media (max-width: 780px) { .usps { grid-template-columns: repeat(2, 1fr); } }

/* ── Secties ──────────────────────────────────────────────── */
.section { padding-block: var(--sp); }
.section--alt  { background: var(--cream); border-block: 1px solid var(--gold-pale); }
.section--dark {
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(201,162,39,.18) 0%, rgba(201,162,39,0) 55%),
    var(--ink-2);
  color: rgba(255,255,255,.78);
  border-block: 1px solid rgba(201,162,39,.28);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--gold-lt); }

.sechead { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.sechead__lead { font-size: 1.06rem; color: var(--muted); margin-top: 1.1rem; }
.sechead--light .sechead__lead { color: rgba(255,255,255,.72); }

/* ── Dienstenkaarten ──────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 1.25rem; }
.card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: .6rem;
  padding: 2rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left; transition: transform .28s;
}
.card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.card:hover::before, .card:focus-within::before { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }
.card__ico {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 12px; margin-bottom: .5rem;
  background: var(--gold-pale);
  box-shadow: inset 0 0 0 1px rgba(169,135,27,.3);
}
.card__ico svg { width: 24px; height: 24px; fill: var(--ink); }
.card__ico svg[stroke] { fill: none; stroke: var(--ink); }
.card p { color: var(--muted); font-size: .95rem; }
.card__meta { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink) !important; margin-top: auto; padding-top: .6rem; }
.card__link { font-size: .9rem; font-weight: 600; color: var(--gold-dk); text-decoration: none; border-bottom: 1.5px solid currentColor; align-self: flex-start; padding-bottom: 1px; }
.card__link:hover { color: var(--ink); }

/* ── Tabs + prijslijst ────────────────────────────────────── */
.tabs__bar {
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding-bottom: 1.6rem; margin-bottom: 0;
}
.tabs__bar [role="tab"] {
  padding: .68rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-size: .92rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.tabs__bar [role="tab"]:hover { border-color: var(--gold); color: var(--ink); background: var(--gold-pale); }
.tabs__bar [role="tab"][aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--gold-lt); }

.tabs__panel {
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}
.tabs__panel::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--gold-grad); }
.tabs__panel[hidden] { display: none; }
/* Zonder JS: alle panelen zichtbaar */
.tabs:not(.js) .tabs__bar { display: none; }
.tabs:not(.js) .tabs__panel { margin-bottom: 1.25rem; }
.tabs.js .tabs__h { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.tabs__h { margin-bottom: 1.2rem; }

.price li {
  display: flex; flex-wrap: wrap; gap: .35rem 1.5rem; align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--line);
}
.price li:last-child { border-bottom: 0; }
.price__n { flex: 1 1 16rem; font-weight: 500; color: var(--ink); }
.price__n em { display: block; font-style: normal; font-size: .85rem; font-weight: 400; color: var(--muted); margin-top: .1rem; }
.price__p { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--gold-dk); white-space: nowrap; }

.tabs__note { margin-top: 1.5rem; padding: 1rem 1.25rem; background: var(--cream-2); border-radius: var(--radius); font-size: .92rem; color: var(--body); }
.tabs__foot { margin-top: 1.75rem; }

.pricenote { margin-top: 1.5rem; font-size: .95rem; color: var(--muted); text-align: center; }

/* ── Promos ───────────────────────────────────────────────── */
.promos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.promo {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.promo--wide { grid-row: span 2; }
.promo img { width: 100%; height: 240px; object-fit: cover; }
.promo--wide img { height: 300px; }
.promo__logo { height: auto !important; max-height: 150px; object-fit: contain; background: var(--white); padding: 1.4rem 1.6rem; }
.promo__body { padding: 1.8rem; display: flex; flex-direction: column; gap: .8rem; }
.promo__tag { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lt); }
.promo p { font-size: .95rem; }
.promo b { color: var(--gold-lt); }
.promo s { color: rgba(255,255,255,.66); }
.promo__kicker { font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--gold-lt); }
@media (max-width: 820px) {
  .promos { grid-template-columns: 1fr; }
  .promo--wide { grid-row: auto; }
}

/* ── Split (beeld + tekst) ────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media::before {
  content: ""; position: absolute; inset: auto -14px -14px auto;
  width: 55%; height: 55%; border: 2px solid var(--gold); border-radius: var(--radius-lg);
  z-index: -1;
}
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.split--rev .split__media img { aspect-ratio: 1; }
.split__copy > * + * { margin-top: 1.1rem; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split--rev .split__media img { aspect-ratio: 3/2; }
}

.treatments { display: grid; gap: 1.1rem; margin-block: 1.6rem; }
.treatments div { padding-left: 1.15rem; border-left: 2px solid var(--gold); }
.treatments dt { font-weight: 600; color: var(--ink); }
.treatments dd { margin: .2rem 0 0; font-size: .93rem; color: var(--muted); }

.quote { padding: 1.4rem 1.6rem; background: var(--cream); border-radius: var(--radius); }
.quote p { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--ink); line-height: 1.4; }
.quote footer { margin-top: .55rem; font-size: .88rem; color: var(--muted); }

.tagcloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.tagcloud span { padding: .35rem .85rem; background: var(--cream-2); border-radius: 100px; font-size: .84rem; font-weight: 500; color: var(--body); }

/* ── Merken ───────────────────────────────────────────────── */
.brands { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.1rem; }
.brands li { padding: 1.6rem; background: var(--white); border: 1px solid var(--gold-pale); border-left: 3px solid var(--gold); border-radius: var(--radius); }
.brands b { display: block; font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin-bottom: .35rem; }
.brands span { font-size: .92rem; color: var(--muted); }

.certs { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; margin-top: 2.5rem; }
.certs img { width: auto; height: 84px; object-fit: contain; }

.pull {
  position: relative; overflow: hidden;
  margin-top: 3rem; padding: 2.4rem clamp(1.5rem, 5vw, 3.5rem);
  background: radial-gradient(120% 100% at 50% 0%, rgba(201,162,39,.22) 0%, rgba(201,162,39,0) 60%), var(--ink);
  border: 1px solid rgba(201,162,39,.35);
  border-radius: var(--radius-lg);
}
.pull::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--gold-grad); }
.pull p { font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.7rem); font-style: italic; line-height: 1.4; color: var(--white); text-align: center; }

/* ── Team ─────────────────────────────────────────────────── */
.team-h { margin-block: clamp(3rem, 6vw, 4.5rem) 1.75rem; }
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.1rem; }
.team li { padding: 1.75rem; background: var(--cream); border: 1px solid var(--gold-pale); border-top: 3px solid var(--gold); border-radius: var(--radius); }
.team__name { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--ink); }
.team__role { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: .7rem; }
.team li p:last-child { font-size: .93rem; color: var(--muted); }

/* ── Reviews ──────────────────────────────────────────────── */
.reviews { text-align: center; }
.reviews .sechead { margin-inline: auto; margin-bottom: 2rem; }
.reviews__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ── Duo (stoelverhuur / opleiding) ───────────────────────── */
.duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.25rem; }
.duo__card { padding: clamp(1.8rem, 4vw, 2.5rem); background: var(--cream); border: 1px solid var(--gold-pale); border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 1.1rem; }
.duo__card p { font-size: .96rem; }
.rates { display: grid; gap: .6rem; }
.rates li { display: flex; flex-wrap: wrap; gap: .3rem 1rem; justify-content: space-between; align-items: baseline; padding: .85rem 1.1rem; background: var(--white); border: 1px solid var(--gold-pale); border-radius: 10px; }
.rates span { font-size: .93rem; }
.rates em { display: block; font-style: normal; font-size: .82rem; color: var(--muted); }
.rates b { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--gold-dk); white-space: nowrap; }
.duo__card > p:last-child { margin-top: auto; }

/* ── Contact ──────────────────────────────────────────────── */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }

.infolist { display: grid; gap: 1.35rem; }
.infolist li { display: flex; gap: .95rem; }
.infolist__ico { display: grid; place-items: center; width: 38px; height: 38px; flex: none; border-radius: 10px; background: var(--gold-pale); border: 1px solid rgba(169,135,27,.3); }
.infolist__ico svg { width: 19px; height: 19px; fill: var(--ink); }
.infolist b { color: var(--ink); }
.infolist a { color: var(--gold-dk); font-weight: 500; }

.hours-h { margin-block: 2.5rem 1rem; }
.hours th, .hours td { padding: .72rem .2rem; border-bottom: 1px solid var(--line); text-align: left; font-size: .95rem; }
.hours th { font-weight: 500; color: var(--ink); }
.hours td { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--ink); font-weight: 700; }
.hours tr.is-today th::after { content: " · vandaag"; font-weight: 500; color: var(--gold-dk); font-size: .82em; }

.contact__form {
  position: relative; overflow: hidden;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background: var(--white); border: 1px solid var(--gold-pale);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.contact__form::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--gold-grad); }
.form__intro { margin-block: .8rem 1.6rem; font-size: .93rem; color: var(--muted); }
.form__intro a { color: var(--gold-dk); font-weight: 600; }

.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.field .req { color: #B4231F; }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .78rem .95rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color .2s, background-color .2s;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--white); border-color: var(--ink); }
.field [aria-invalid="true"] { border-color: #B4231F; background: #FDF3F2; }
.err { margin-top: .38rem; font-size: .85rem; font-weight: 500; color: #B4231F; }
.form__actions { margin-block: 1.4rem 1rem; }
.form__status { min-height: 1.4rem; font-size: .9rem; font-weight: 600; color: #15703F; margin-bottom: .6rem; }

.mapcard { margin-top: clamp(2rem, 5vw, 3rem); }
.mapcard a {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.4rem 1.6rem;
  background: var(--ink); color: var(--white);
  border-radius: var(--radius-lg); text-decoration: none;
  transition: background-color .2s;
}
.mapcard a:hover { background: var(--ink-3); }
.mapcard__pin { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--gold); }
.mapcard__pin svg { width: 22px; height: 22px; fill: var(--ink); }
.mapcard b { display: block; font-size: 1.05rem; }
.mapcard span span { font-size: .87rem; color: rgba(255,255,255,.65); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.68); padding-top: clamp(3rem, 6vw, 4.5rem); }
.site-footer__in { display: grid; grid-template-columns: 1.1fr 2fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 3rem; }
@media (max-width: 880px) { .site-footer__in { grid-template-columns: 1fr; } }

.brand--footer { width: auto; height: 52px; border-radius: 8px; box-shadow: 0 0 0 1px rgba(201,162,39,.4); }
.site-footer__brand p { margin-top: 1.1rem; font-size: .92rem; max-width: 24rem; }

.social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; transition: background-color .2s, border-color .2s; }
.social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.social .i { width: 18px; height: 18px; }

.site-footer__nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; }
.site-footer__nav h2 { font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1rem; }
.site-footer__nav ul { display: grid; gap: .6rem; }
.site-footer__nav li, .site-footer__nav a { font-size: .92rem; }
.site-footer__nav a { text-decoration: none; }
.site-footer__nav a:hover { color: var(--white); text-decoration: underline; }

.site-footer__base {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: .85rem;
}
.site-footer__base a { color: rgba(255,255,255,.8); }

/* ── Mobiele actiebalk ────────────────────────────────────── */
.actionbar { display: none; }
@media (max-width: 760px) {
  .actionbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: grid; grid-template-columns: 1fr 1fr 1.55fr; gap: .5rem;
    padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px -14px rgba(18,16,14,.4);
  }
  .actionbar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .18rem;
    padding: .55rem .3rem;
    font-size: .74rem; font-weight: 600; text-decoration: none; color: var(--body);
    border-radius: 10px; text-align: center;
  }
  .actionbar .i { width: 19px; height: 19px; }
  .actionbar__cta { flex-direction: row !important; gap: .45rem !important; background: var(--gold); color: var(--ink) !important; font-size: .87rem !important; border-radius: 100px; }
  body { padding-bottom: 4.6rem; }
}

/* ══════════════════════════════════════════════════════════
   Mobiel — telefoons tot 640px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --sp: 3.25rem; --radius-lg: 18px; }

  /* Statusregel telt hier het meest: adres/telefoon eronder */
  .utilbar { font-size: .78rem; }
  .utilbar__in { justify-content: center; text-align: center; }
  .utilbar__status { justify-content: center; }
  .utilbar__links { display: none; }

  /* Koppen die niet over de rand lopen */
  h1 { font-size: clamp(2.1rem, 10vw, 2.9rem); }
  h2 { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }
  .hero__lead, .sechead__lead { font-size: 1rem; }

  /* Hero: knoppen op volle breedte = groter raakvlak */
  .hero__in { padding-top: 2.75rem; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: .65rem; }
  .hero__actions .btn { width: 100%; }
  .btn--lg { padding: .95rem 1.4rem; font-size: .97rem; }

  /* USP's als 2×2 blokjes, compacter */
  .usps { margin-top: 2.25rem; }
  .usps li { padding: 1.1rem 1rem; }
  .usps b { font-size: 1.2rem; }
  .usps span { font-size: .78rem; }

  /* Tabbalk horizontaal scrollbaar in plaats van afgekapt */
  .tabs__bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* ruimte zodat de focusring niet wordt afgeknipt */
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-block: .25rem 1.25rem;
  }
  .tabs__bar::-webkit-scrollbar { display: none; }
  .tabs__bar [role="tab"] { flex: none; scroll-snap-align: start; }

  /* Prijsregel: naam boven, prijs eronder rechts */
  .price li { gap: .15rem; padding: .85rem 0; }
  .price__n { flex: 1 1 100%; font-size: .95rem; }
  .price__p { font-size: 1.15rem; }

  .tabs__panel { padding: 1.25rem 1.1rem; }
  .tabs__foot .btn, .duo__card .btn, .reviews__actions .btn { width: 100%; }
  .reviews__actions { flex-direction: column; }

  /* Kaarten en promo's rustiger */
  .cards { gap: .9rem; }
  .card { padding: 1.5rem 1.35rem; }
  .promo img { height: 190px; }
  .promo--wide img { height: 200px; }
  .promo__body { padding: 1.35rem; }

  .split { gap: 1.75rem; }
  .split__media::before { display: none; }
  .certs { gap: 1.25rem; }
  .certs img { height: 60px; }
  .pull { padding: 1.6rem 1.25rem; }

  .duo__card, .team li, .brands li { padding: 1.4rem; }

  /* Contactgegevens en openingstijden */
  .infolist li { gap: .8rem; }
  .hours th, .hours td { font-size: .9rem; padding: .62rem .1rem; }
  .hours tr.is-today th::after { content: " ·"; }

  /* Formuliervelden: 16px voorkomt inzoomen op iOS */
  .field input, .field select, .field textarea { font-size: 16px; padding: .82rem .9rem; }
  .form__actions .btn { width: 100%; }

  .mapcard a { padding: 1.15rem; gap: .9rem; }
  .mapcard b { font-size: .97rem; }

  .site-footer__nav { gap: 1.6rem; }
  .site-footer__base { justify-content: center; text-align: center; }
}

/* Zeer smalle toestellen */
@media (max-width: 380px) {
  .usps { grid-template-columns: 1fr; }
  .actionbar { grid-template-columns: 1fr 1fr; }
  .actionbar__cta { grid-column: 1 / -1; }
}

/* Liggende telefoon: hero niet onnodig hoog */
@media (max-height: 520px) and (orientation: landscape) {
  .hero__in { padding-top: 2rem; }
  .usps { margin-top: 1.75rem; }
}

/* ── Printen ──────────────────────────────────────────────── */
@media print {
  .site-header, .utilbar, .actionbar, .hero__media, .btn, .site-footer__nav { display: none !important; }
  .tabs__panel[hidden] { display: block !important; }
  .tabs__bar { display: none; }
  body { color: #000; }
}
