:root{
  /* Eén basis voor pagina + doorzichtige kaarten (geen verticale “banden”) */
  --bg:#fcfbfe;
  --bg2:#fcfbfe;
  --card:#ffffff;
  --text:#181818;
  --muted:#515151;
  --line:rgba(21,21,27,.12);
  /* gold/black/white taken from goudsmid010.nl */
  --gold:#ad9271;
  --gold2:#c4aa86;
  --shadow: 0 14px 40px rgba(18,18,24,.10);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --hero-bg:url("");
  --hero-dark: rgba(0,0,0,.62);
  /* Referentie: gedempt brons; iets feller dan voorheen voor contrast op donkere hero */
  --hero-brand-mute: #c4ae96;
  /* Eén slanke sans door de hele site (contact, gegevens, secties) */
  --font-sans: Montserrat, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-body: 0.95rem;
  --fs-body-sm: 0.9rem;
  --fs-label: 0.72rem;
  --fs-title: clamp(1.28rem, 2.4vw, 1.48rem);
  --fw-body: 400;
  --fw-strong: 600;
  --fw-heading: 700;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: var(--fw-body);
  -webkit-font-smoothing: antialiased;
  color:var(--text);
  background: var(--bg);
  letter-spacing: 0.01em;
}

button, input, textarea, select{
  font-family: inherit;
}
input::placeholder,
textarea::placeholder{
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  opacity: 0.65;
}

a{color:inherit}
.container{max-width:var(--container); margin:0 auto; padding:0 20px}
.muted{color:var(--muted)}
.h3{
  margin:0 0 10px;
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2vw, 1.35rem);
  font-weight: var(--fw-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.h4{
  margin:0 0 10px;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.06rem);
  font-weight: var(--fw-heading);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.skip-link{
  position:absolute; left:-999px; top:12px;
  background:var(--card); border:1px solid var(--line); color:var(--text);
  padding:10px 12px; border-radius:10px; z-index:10;
}
.skip-link:focus{left:12px}

/* Anker vóór header: hoogte 0, wel echte offsetTop 0 voor hash + scrollTo-fallback */
.pagina-boven{
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  scroll-margin-top: 0;
}

.sticky-wrap{
  position:sticky;
  top:0;
  z-index:60;
}

.topinfo{
  backdrop-filter: blur(10px);
  background: rgba(24,24,24,.88);
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topinfo-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:10px 18px;
  padding:10px 0;
  font-weight:650;
  font-size:.95rem;
}
.topinfo-left{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:12px;
  min-width:0;
  flex:1 1 220px;
}
.topbar-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
  margin-left:auto;
}
.topinfo-item{
  display:flex;
  gap:8px;
  align-items:baseline;
  text-decoration:none;
  color:inherit;
  min-width:0;
}
a.topinfo-item:hover{text-decoration:underline}
.topinfo-contact{min-width:0}
.topinfo-phone-row{
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  flex-wrap:wrap;
  min-width:0;
}
.topinfo-phone-num{
  color:inherit;
  font-weight:750;
  text-decoration:none;
}
.topinfo-phone-num:hover{text-decoration:underline}
.topinfo-label{color: rgba(255,255,255,.68); font-weight:800; font-size:.82rem}
.topinfo-sep{color: rgba(255,255,255,.35)}
#topinfoHours,#topinfoPhoneText{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 48ch;
}

.nav{display:flex; gap:18px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
.nav a{color:rgba(255,255,255,.78); text-decoration:none; font-weight:650}
.nav a:hover{color:rgba(255,255,255,.95)}
.nav--bar{gap:16px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;
  font: inherit;
  font-weight:650;
  line-height:1;
  background: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 2px rgba(18, 18, 24, 0.06);
  transition: filter 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.btn-primary{
  color: var(--text);
  border-color: rgba(154, 118, 72, 0.42);
  background: linear-gradient(180deg, rgba(184, 139, 42, 0.11), rgba(184, 139, 42, 0.2));
  box-shadow:
    inset 0 2px 6px rgba(48, 42, 36, 0.12),
    inset 0 -1px 0 rgba(255, 252, 247, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn-ghost{
  color: var(--text);
  background: rgba(21, 21, 27, 0.04);
  box-shadow:
    inset 0 2px 5px rgba(18, 18, 24, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn:hover{
  filter: brightness(1.04);
}
.btn:active{
  filter: brightness(0.96);
  box-shadow:
    inset 0 3px 8px rgba(18, 18, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary:active{
  box-shadow:
    inset 0 4px 10px rgba(48, 42, 36, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.header-cta{display:flex; gap:10px; align-items:center}

.nav-toggle{
  display:none;
  flex-wrap:nowrap;
  white-space:nowrap;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:44px;
  min-width:0;
  padding:6px 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  border-top:2px solid rgba(214,179,92,.5);
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.9);
  cursor:pointer;
  font-family:var(--font-sans);
  font-size:.72rem;
  font-weight:650;
  letter-spacing:.05em;
  text-transform:uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 2px 10px rgba(0,0,0,.14);
  transition:border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.nav-toggle:hover{
  background:rgba(255,255,255,.13);
  border-color:rgba(255,255,255,.3);
}
.nav-toggle:focus-visible{
  outline:2px solid rgba(214,179,92,.9);
  outline-offset:3px;
}
.nav-toggle__icon{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:4px;
  width:18px;
  flex-shrink:0;
}
.nav-toggle__icon span{
  display:block;
  height:2px;
  width:100%;
  background:rgba(255,255,255,.88);
  border-radius:99px;
}
.nav-toggle__label{
  line-height:1;
}
.nav-toggle[aria-expanded="true"]{
  background:rgba(214,179,92,.16);
  border-color:rgba(214,179,92,.35);
}
.mobile-nav{
  border-top:1px solid rgba(255,255,255,.12);
  padding:14px 18px 18px;
  display:grid;
  gap:4px;
  background: rgba(14,14,18,.92);
}
.mobile-nav[hidden]{display:none !important}
.mobile-nav a{
  color:rgba(255,255,255,.88);
  text-decoration:none;
  font-weight:650;
  font-size:1rem;
  padding:14px 14px;
  border-radius:12px;
  min-height:48px;
  display:flex;
  align-items:center;
  border:1px solid transparent;
  transition:background .15s ease, border-color .15s ease;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.12);
}
.mobile-nav a:focus-visible{
  outline:2px solid rgba(214,179,92,.85);
  outline-offset:0;
}
.mobile-cta{display:flex; gap:10px}

.hero{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:flex-start;
  /* Frosted blok dichter boven Diensten; ondermarge compacter zodat het meer “zweeft” op de overgang */
  min-height: clamp(420px, 56vh, 720px);
  padding: clamp(28px, 6.5vh, 76px) 0 clamp(10px, 1.15cm, 24px);
}
.hero-body-spacer{
  flex: 1 1 auto;
  min-height: clamp(18px, 3vh, 44px);
  width: 100%;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity:1;
  filter: saturate(1.02) contrast(1.05) blur(0.4px);
  transform: scale(1.02) translate3d(0, var(--hero-bg-parallax-y, 0px), 0);
  pointer-events:none;
}
@media (prefers-reduced-motion: reduce){
  .hero::before{transform: scale(1.02)}
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(720px 480px at 50% 30%, rgba(0,0,0,.1), rgba(0,0,0,.4)),
    linear-gradient(180deg, rgba(0,0,0,.26), rgba(0,0,0,.58));
  pointer-events:none;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1fr;
  gap:20px;
  align-items:center;
  justify-items:center;
  position:relative;
  z-index:1;
  width:100%;
  flex:0 0 auto;
}
/* Merknaam: basis + 10 varianten; --hero-parallax-y zet JS voor scroll-meeloop */
.hero-brand-title{
  margin:0 auto;
  text-align:center;
  display:inline-flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:0.32em;
  max-width: 26ch;
  text-transform: uppercase;
  filter: none;
  position: relative;
  z-index: 2;
  transform: translate3d(0, calc(-14px + var(--hero-parallax-y, 0px)), 0);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce){
  .hero-brand-title{
    transform: translate3d(0, -8px, 0);
    will-change: auto;
  }
}
.hero-brand-part{
  display:inline-block;
  color: inherit;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.hero-brand-title .hero-brand-digits{
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}
/* 1 — Montserrat gedempt brons (huidige referentie) */
.hero-brand-title.hero-brand--1{
  font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.16em;
  color: var(--hero-brand-mute);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(232, 210, 180, 0.22);
}
.hero-brand-title.hero-brand--1 .hero-brand-digits{ font-weight: 600; letter-spacing: 0.2em; }
/* 2 — Montserrat zacht ivoor, lichter */
.hero-brand-title.hero-brand--2{
  font-family: Montserrat, ui-sans-serif, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.14em;
  color: rgba(248, 242, 232, 0.95);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}
.hero-brand-title.hero-brand--2 .hero-brand-digits{ font-weight: 500; letter-spacing: 0.18em; }
/* 3 — Raleway: breed, mode-luxe */
.hero-brand-title.hero-brand--3{
  font-family: Raleway, ui-sans-serif, sans-serif;
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.28em;
  color: #c9c0b4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.42);
}
.hero-brand-title.hero-brand--3 .hero-brand-digits{ letter-spacing: 0.32em; font-weight: 600; }
/* 4 — Playfair Display: serif, warm goud */
.hero-brand-title.hero-brand--4{
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: clamp(2rem, 4.6vw, 2.85rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.08em;
  color: #c4a882;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}
.hero-brand-title.hero-brand--4 .hero-brand-digits{ letter-spacing: 0.12em; font-weight: 600; }
/* 5 — Cinzel: inscription / juwelenetiket */
.hero-brand-title.hero-brand--5{
  font-family: Cinzel, ui-serif, serif;
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.2em;
  color: #b5a699;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-brand-title.hero-brand--5 .hero-brand-digits{ letter-spacing: 0.24em; }
/* 6 — DM Sans: strak modern, bijna wit */
.hero-brand-title.hero-brand--6{
  font-family: "DM Sans", ui-sans-serif, sans-serif;
  font-size: clamp(1.7rem, 3.9vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.07em;
  color: rgba(250, 248, 244, 0.96);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
.hero-brand-title.hero-brand--6 .hero-brand-digits{ letter-spacing: 0.1em; font-weight: 600; }
/* 7 — Georgia: klassiek atelier */
.hero-brand-title.hero-brand--7{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.9rem, 4.1vw, 2.55rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.1em;
  color: #e8dfd0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero-brand-title.hero-brand--7 .hero-brand-digits{ letter-spacing: 0.14em; }
/* 8 — Montserrat bold compact: krachtig nieuws */
.hero-brand-title.hero-brand--8{
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.95rem, 4.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: #dcd4c8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.hero-brand-title.hero-brand--8 .hero-brand-digits{ letter-spacing: 0.1em; }
/* 9 — Montserrat licht + contour (diepte zonder metallic) */
.hero-brand-title.hero-brand--9{
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.7rem, 3.85vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.18em;
  color: rgba(210, 200, 186, 0.95);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.55),
    0 0 1px rgba(0, 0, 0, 0.6),
    0 8px 24px rgba(0, 0, 0, 0.35);
}
.hero-brand-title.hero-brand--9 .hero-brand-digits{ letter-spacing: 0.22em; }
/* 10 — System mono: technisch strak */
.hero-brand-title.hero-brand--10{
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", Menlo, Consolas, monospace;
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.14em;
  color: #b8b0a4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-brand-title.hero-brand--10 .hero-brand-digits{ letter-spacing: 0.18em; }
.hero-lower-block{
  position:relative;
  z-index:1;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  flex: 0 0 auto;
  margin-top: clamp(26px, 5vh, 64px);
  padding: clamp(6px, 1.5vh, 12px) 20px 0;
}
.hero-lower-message{
  max-width: 520px;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
}
.hero-lower-message .pill{margin:0}
.hero-lower-message .hero-tagline{margin:0}
.hero-lower-message .hero-actions{
  margin: 6px 0 0;
  justify-content:center;
}
.hero-copy{
  color: rgba(255,255,255,.88);
  text-align:center;
  max-width: 520px;
  margin: 0 auto;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(8,8,10,.14);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 44px rgba(0,0,0,.12);
}
/* Na .hero-copy: overschrijft schaduw — iets lager + zweeft dichter boven Diensten */
.hero .hero-copy.hero-lower-message{
  position: relative;
  transform: translateY(clamp(6px, 1.2vh, 14px));
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.06);
}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  font-family: var(--font-sans);
  font-weight:600;
  color:rgba(255,255,255,.72);
  border:1px solid rgba(215,179,90,.20);
  background: rgba(0,0,0,.12);
  padding:6px 11px; border-radius:999px;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:.68rem;
}
.hero .hero-tagline{
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 1.85vw, 1.45rem);
  font-weight: 500;
  line-height:1.35;
  margin:0;
  letter-spacing:0.06em;
  max-width: 26ch;
  color: rgba(228, 218, 204, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.hero .lead{
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  color:rgba(255,255,255,.62);
  max-width:40ch;
  margin: 8px auto 0;
  line-height:1.5;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 8px; justify-content:center}
.hero .btn-primary{
  color: rgba(255,255,255,.92);
  font-weight:600;
  border-color: rgba(140, 118, 88, 0.55);
  background: linear-gradient(180deg, rgba(173, 146, 113, 0.18), rgba(120, 98, 72, 0.28));
  box-shadow:
    inset 0 2px 10px rgba(0, 0, 0, 0.38),
    inset 0 -1px 0 rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.hero .btn-primary:hover{
  filter: brightness(1.06);
}
.hero .btn-primary:active{
  filter: brightness(0.94);
  box-shadow:
    inset 0 3px 14px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero-meta{
  display:grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin:10px 0 0; padding:0;
}
.hero-meta{display:none}
.hero-meta div{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.34);
  border-radius: var(--radius-sm);
  padding:12px;
}
.hero-meta dt{color:rgba(255,255,255,.70); font-size:.85rem}
.hero-meta dd{margin:4px 0 0; font-weight:800; color:rgba(255,255,255,.92)}
.hero-meta a{color:rgba(255,255,255,.92); text-decoration:none}
.hero-meta a:hover{text-decoration:underline}

.hero-card{
  border-radius: var(--radius);
  border:1px solid rgba(184,139,42,.18);
  background:
    radial-gradient(420px 240px at 30% 20%, rgba(184,139,42,.14), transparent 60%),
    rgba(10,10,12,.55);
  box-shadow: var(--shadow);
  align-self:start;
}
.hero-card-inner{padding:18px}
.eyebrow{color:rgba(255,255,255,.72); font-weight:900; letter-spacing:.18em; text-transform:uppercase; font-size:.72rem; margin:0 0 12px}
.link{color:var(--gold2); text-decoration:none; font-weight:750}
.link:hover{text-decoration:underline}

.hero-card .h3{
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.6vw, 1.15rem);
  font-weight: var(--fw-heading);
  letter-spacing: -0.015em;
}
.hero-card p{margin:0 0 10px}

.section{padding:44px 0}
.section-alt{background: transparent}
.section-head{display:flex; align-items:baseline; justify-content:space-between; gap:16px; margin-bottom:14px}
.section-head h2{
  margin:0;
  font-family: var(--font-sans);
  font-size: var(--fs-title);
  font-weight: var(--fw-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-head p{margin:0; max-width:70ch}
.section-quote{
  position:relative;
  padding-left:14px;
  border-left:3px solid rgba(173,146,113,.55);
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(0.875rem, 1.4vw, 0.94rem);
  letter-spacing: 0.02em;
  color: var(--muted);
  line-height: 1.45;
}

.grid{display:grid; gap:18px}
.cards{grid-template-columns: repeat(3, minmax(0, 1fr))}
.card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.70);
  border-radius: var(--radius);
  padding:16px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(184,139,42,.25);
  background:rgba(255,255,255,.86);
}
.card h3{
  margin:0 0 8px;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.6vw, 1.06rem);
  font-weight: var(--fw-heading);
  line-height:1.15;
  min-height: 2.3em; /* align titles across cards (2 lines) */
  letter-spacing: -0.015em;
}
.card p{
  margin:0;
  font-size: var(--fs-body-sm);
  font-weight: 500;
  color:var(--muted);
  line-height:1.45;
  flex:1; /* push CTA to bottom */
} 
.tag{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  font-family: var(--font-sans);
  font-weight:600;
  font-size: var(--fs-body-sm);
}

/* Card CTA alignment */
.card .link{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

/* Services: compact icon cards */
.service{
  align-items:center;
  text-align:center;
  padding:14px 12px 12px;
  box-shadow: 0 10px 26px rgba(18,18,24,.08);
}
.service h3{
  margin:0;
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.4vw, 1.04rem);
  font-weight: var(--fw-heading);
  letter-spacing: -0.012em;
}
.service p{max-width:none; font-size:.9rem; line-height:1.42}
.service-icon{
  width:52px;
  height:52px;
  border-radius:999px;
  display:grid;
  place-items:center;
  line-height:0;
  color: rgba(21,21,27,.88);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.98), rgba(255,255,255,.78));
  border: 6px solid rgba(21,21,27,.82);
  box-shadow: 0 8px 22px rgba(18,18,24,.10);
  margin: 0 auto 8px;
}
.service-icon svg{
  width:22px;
  height:22px;
  display:block;
}
.service-dark{
  background: rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
}
.service-dark p{color: rgba(255,255,255,.72)}
.service-dark .link{color: var(--gold2)}
.service-dark .service-icon{
  border-color: rgba(255,255,255,.92);
  color: rgba(21,21,27,.92);
}

#diensten.section{padding:clamp(14px, 2.2vw, 22px) 0 28px}
#diensten .section-head{margin-bottom:10px; gap:12px}
#diensten .section-head .section-quote{padding-left:12px}
#diensten .cards{gap:12px}
#diensten .card.service{gap:6px}
#diensten .service h3{
  min-height: auto;
  line-height:1.2;
  margin-bottom:4px;
}

.filters{
  display:flex;
  gap:10px;
  flex-wrap:nowrap;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 6px;
  margin: 6px 0 12px;
}
.filters::-webkit-scrollbar{height:10px}
.filters::-webkit-scrollbar-thumb{
  background: rgba(21,21,27,.12);
  border-radius: 999px;
}
.chip{
  padding:7px 11px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:var(--muted);
  font-weight:750;
  cursor:pointer;
}
.chip[aria-pressed="true"]{
  color:var(--text);
  border-color: rgba(214,179,92,.38);
  background: rgba(214,179,92,.16);
}

.carousel{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
}
.carousel-viewport-outer{
  position: relative;
  flex: 1;
  min-width: 0;
}
/* Randvervaging: hint dat er horizontaal meer content is (sync met JS-klassen) */
.carousel-viewport-outer::before,
.carousel-viewport-outer::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 8px;
  width: min(36px, 10vw);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.carousel-viewport-outer::before{
  left: 0;
  background: linear-gradient(
    to right,
    rgba(252, 251, 254, 0.78) 0%,
    rgba(252, 251, 254, 0.28) 55%,
    rgba(252, 251, 254, 0) 100%
  );
}
.carousel-viewport-outer::after{
  right: 0;
  background: linear-gradient(
    to left,
    rgba(252, 251, 254, 0.78) 0%,
    rgba(252, 251, 254, 0.28) 55%,
    rgba(252, 251, 254, 0) 100%
  );
}
.carousel-viewport-outer--fade-left::before{
  opacity: 0.92;
}
.carousel-viewport-outer--fade-right::after{
  opacity: 0.92;
}
.carousel-viewport{
  overflow-x:auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  flex:1;
  width: 100%;
  min-width: 0;
  padding: 2px 2px 6px;
  border-radius: 22px;
  scrollbar-width: none; /* Firefox */
}
.carousel-viewport::-webkit-scrollbar{height:0px}
.carousel-viewport::-webkit-scrollbar-thumb{
  background: rgba(21,21,27,.12);
  border-radius: 999px;
}
.carousel-scroll-hint{
  display: none;
  margin: 10px 0 0;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}
.carousel-scroll-hint__arrows{
  display: inline-block;
  font-size: 1rem;
  opacity: 0.75;
  letter-spacing: 0;
}
@media (max-width: 920px){
  .carousel-scroll-hint{
    display: flex;
  }
  .carousel-scroll-hint[hidden]{
    display: none !important;
  }
  #portfolio .carousel-viewport{
    padding-right: 18px;
    scroll-padding-inline: 8px;
  }
}
.carousel-nav{
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.80);
  font-size:18px;
  font-weight:900;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(18,18,24,.10);
}
.carousel-nav:hover{transform: translateY(-1px)}
.carousel-nav:active{transform:none}

.portfolio{
  display:flex;
  gap:14px;
  align-items:stretch;
}
.proj{
  padding:0;
  overflow:hidden;
  display:flex; flex-direction:column;
  cursor:pointer;
  scroll-snap-align: start;
  flex: 0 0 min(360px, 86vw);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold2);
  background: rgba(255,255,255,.86);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(18,18,24,.08);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.proj:hover{
  transform: translateY(-2px);
  border: 1px solid rgba(184,139,42,.25);
  border-top: 3px solid var(--gold2);
  box-shadow: 0 14px 34px rgba(18,18,24,.1);
}
.proj-img{
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(600px 300px at 30% 20%, rgba(184,139,42,.16), transparent 62%),
    rgba(255,255,255,.70);
  border-bottom:1px solid var(--line);
}
.proj-body{padding:14px 16px 16px}
.proj h3{
  margin:0 0 6px;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  font-weight: var(--fw-heading);
  letter-spacing: -0.015em;
}
.proj .meta{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.proj .meta span{color:var(--muted); font-weight:600; font-size: var(--fs-body-sm)}

/* Reduce “busy” feel between sections */
#portfolio.section{padding-bottom:26px}
#over.section{padding-top:18px; padding-bottom:28px}

#portfolio .portfolio-block{
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(18,18,24,.08);
}
#portfolio .portfolio-block .section-head{margin-bottom:12px}

#over .over-block{
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold2);
  background: rgba(255,255,255,.70);
  border-radius: 18px;
  padding: clamp(20px, 3.2vw, 38px);
  box-shadow: 0 12px 32px rgba(18,18,24,.06);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
#over .over-block.over-has-portrait-bg{
  min-height: min(340px, 52vw);
}
/* Alleen werkplek-foto (geen portret in JSON) */
#over .over-block.over-has-backdrop:not(.over-has-portrait-bg)::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(196, 170, 134, 0.28);
  background-image:
    linear-gradient(
      105deg,
      rgba(252, 251, 248, 0.94) 0%,
      rgba(246, 243, 238, 0.72) 38%,
      rgba(246, 243, 238, 0.28) 72%,
      rgba(246, 243, 238, 0.12) 100%
    ),
    var(--over-backdrop-img);
  background-size: cover, cover;
  background-position: center, 48% 38%;
  pointer-events: none;
  z-index: 0;
}
/* Portret → licht: langere, zachte opacity-ramp (meer stops) zodat foto en achtergrond natuurlijker mengen */
#over .over-block.over-has-portrait-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  /* Subtiel goud/brons kader over het portret (binnen de foto) */
  box-shadow:
    inset 0 0 0 1px rgba(196, 170, 134, 0.38),
    inset 0 0 48px rgba(246, 243, 238, 0.12);
  background-image:
    linear-gradient(
      100deg,
      rgba(246, 243, 238, 0) 0%,
      rgba(246, 243, 238, 0) 26%,
      rgba(247, 244, 239, 0.07) 36%,
      rgba(249, 246, 242, 0.2) 44%,
      rgba(250, 248, 244, 0.42) 52%,
      rgba(251, 249, 246, 0.68) 62%,
      rgba(252, 251, 249, 0.88) 74%,
      rgba(252, 252, 253, 0.97) 88%,
      rgba(252, 252, 253, 0.995) 100%
    ),
    var(--over-portrait-img);
  /* Iets uitgezoomd; horizontaal naar links (0% = linkerrand foto op linkerrand kader) */
  background-size: cover, 66% auto;
  background-position: center, var(--over-portrait-bg-pos, 0% 30%);
  background-repeat: no-repeat;
}
#over .over-layout{
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  position: relative;
  z-index: 1;
}
#over .over-panel{
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  align-self: start;
  justify-self: start;
  box-sizing: border-box;
  width: auto;
  max-width: min(400px, max(40vw, 300px), 96%);
  margin: 0;
  padding: clamp(16px, 2.4vw, 22px);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold2);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(18, 18, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0;
}
#over .over-layout:not(.over-no-photo) .over-panel{
  justify-self: end;
  margin-left: auto;
  margin-top: 0;
  max-width: min(380px, max(38vw, 280px), 94%);
  /* Iets doorzichtiger + meer blur: zachtere overgang met portret/gradient erachter */
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold2);
  box-shadow:
    0 14px 40px rgba(18, 18, 24, 0.07),
    -12px 0 36px rgba(246, 243, 238, 0.35);
}
/* Geen portret in JSON: geen overlap-layout (class gezet vanuit app.js) */
#over .over-layout.over-no-photo{
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
#over .over-layout.over-no-photo .over-panel{
  grid-column: 1;
  align-self: stretch;
  justify-self: stretch;
  width: auto;
  max-width: none;
  margin: 0;
}
#over .over-portrait-sign{
  margin: 14px 0 0;
  padding: 0;
  text-align: left;
  font-family: "Great Vibes", cursive;
  font-style: normal;
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  font-weight: 400;
  color: var(--hero-brand-mute);
  line-height: 1.15;
  letter-spacing: 0.02em;
  max-width: 16em;
  text-shadow:
    0 1px 0 rgba(255, 252, 247, 0.55),
    0 1px 2px rgba(61, 48, 36, 0.14),
    0 0 28px rgba(196, 174, 150, 0.35);
}

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
.split > div:first-child{min-width:0}
.split > div:last-child{min-width:0}

/* Over section alignment */
#over h2{
  margin:0 0 6px;
  font-family: var(--font-sans);
  font-size: var(--fs-title);
  font-weight: var(--fw-heading);
  letter-spacing: -0.02em;
  line-height:1.15;
}
#over #aboutBody{
  margin:0;
  padding:0;
  max-width:48ch;
  font-family: var(--font-sans);
  line-height:1.45;
  font-size: var(--fs-body);
  font-weight: var(--fw-body);
}
#over .bullets{margin:6px 0 0}
.bullets{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.bullets li{margin:7px 0}
.info-card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.70);
  border-radius: var(--radius);
  padding:16px;
}
.steps{margin:0; padding-left:18px; color:var(--muted)}
.steps li{margin:8px 0}

.contact-grid{
  display:flex;
  flex-direction:column;
  gap:18px;
  width:100%;
  align-items:stretch;
}
@media (min-width: 900px){
  .contact-grid{
    flex-direction:row;
    align-items:stretch;
    gap: clamp(18px, 2.5vw, 28px);
  }
  /* Gelijke breedte én hoogte (flex-rij betrouwbaarder dan grid hier) */
  #contact .contact-grid > .contact-card{
    flex:1 1 0;
    min-width:0;
    width:auto;
    align-self:stretch;
  }
  /* Ruimte onder de dl, notice blijft onderaan */
  #contact .contact-grid > .contact-card:not(.contact-card--form) .contact-dl{
    margin-bottom:auto;
  }
}
#contact .contact-grid > .contact-card{
  min-height:0;
  display:flex;
  flex-direction:column;
}
#contact .contact-card--form > .h4{
  margin-bottom: 8px;
}
#contact.section{
  padding: clamp(14px, 2.2vw, 22px) 0 40px;
  scroll-margin-top: 64px;
}
/* Zelfde taal als portfolio-blok + dienstenkaarten */
#contact .contact-block{
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(18,18,24,.08);
}
#contact .contact-block .section-head{
  margin-bottom: 12px;
  gap: 12px;
}
#contact .contact-card{
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold2);
  background: rgba(255,255,255,.86);
  border-radius: var(--radius);
  padding: clamp(16px, 2.2vw, 22px) clamp(16px, 3vw, 28px) clamp(16px, 2vw, 20px);
  box-shadow: 0 10px 26px rgba(18,18,24,.08);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  width:100%;
  max-width:100%;
}
#contact .contact-card:hover{
  transform: translateY(-2px);
  border-color: rgba(184,139,42,.25);
  box-shadow: 0 14px 34px rgba(18,18,24,.1);
}
#contact .contact-card .h4{
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 1.35vw, 1.08rem);
  font-weight: var(--fw-heading);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.contact-dl{
  margin:0;
  display:grid;
  gap:10px;
  grid-template-columns: 1fr;
}
.contact-dl > div{
  min-width:0;
}
.contact-dl > .contact-dl-span2{
  grid-column: 1 / -1;
}
@media (min-width: 640px){
  .contact-dl{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px clamp(22px, 4vw, 48px);
    align-items: start;
  }
}
.contact-dl dt{
  font-family: var(--font-sans);
  color: var(--muted);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-dl dd{
  margin: 3px 0 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: var(--fw-body);
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: var(--muted);
}
.contact-dl a{
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid transparent;
}
.contact-dl a:hover{
  color: var(--gold);
  border-bottom-color: rgba(173,146,113,.45);
}
.contact-address-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  max-width:100%;
}
.contact-address-link .contact-address-text{
  text-decoration: inherit;
  border-bottom: 1px solid transparent;
}
.contact-address-link:hover .contact-address-text{
  border-bottom-color: rgba(173,146,113,.45);
}
.contact-address-pin{
  flex-shrink:0;
  align-self:center;
  opacity:.95;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.12));
}
.inline-sep{margin:0 8px; color:var(--muted)}

.contact-social-combined{
  position: relative;
}
.contact-social-combined__assist{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-social-combined__dd{
  margin: 3px 0 0;
}
.contact-social-combined__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.85fr);
  gap: 10px clamp(14px, 3vw, 32px);
  align-items: stretch;
}
.contact-social-combined__grid--solo{
  grid-template-columns: 1fr;
}
.contact-social-combined__grid--solo .contact-social-combined__cell--instagram{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.contact-social-combined__grid--solo .contact-social-combined__cell--instagram .contact-instagram-block{
  align-self: flex-start;
}
.contact-social-combined__cell{
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-social-combined__cell--google{
  align-items: flex-start;
}
.contact-social-combined__cell--instagram{
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: end;
  min-height: 0;
  text-align: right;
}
.contact-social-combined__cell--instagram .contact-social-combined__label{
  align-self: end;
}
.contact-social-combined__cell--instagram .contact-instagram-block{
  align-self: center;
  justify-self: end;
}
.contact-social-combined__label{
  font-family: var(--font-sans);
  color: var(--muted);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-google-block{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  max-width: 100%;
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid transparent;
  padding: 2px 0 1px;
}
.contact-google-block:hover{
  color: var(--gold);
  border-bottom-color: rgba(173,146,113,.45);
}
.contact-google-block:hover .contact-google-cta{
  color: var(--gold);
}
.contact-google-tail{
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 6px;
  min-width: 0;
}
.contact-google-meta:not([hidden])::after{
  content: " · ";
  color: var(--muted);
  font-weight: 400;
}
.contact-google-block .google-star-svg{
  width: 15px;
  height: 15px;
}
.google-stars-row{
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.google-stars-row-inner{
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.google-star-svg{
  display: block;
  flex-shrink: 0;
}
.contact-google-meta{
  font-size: calc(var(--fs-body) * 0.92);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.35;
}
.contact-google-cta{
  font-size: calc(var(--fs-body) * 0.88);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.contact-instagram-block{
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 12px;
  max-width: 100%;
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid transparent;
  padding: 2px 0 1px;
}
.contact-instagram-block:hover{
  color: var(--gold);
  border-bottom-color: rgba(173,146,113,.45);
}
.contact-instagram-block:hover .contact-instagram-cta{
  color: var(--gold);
}
.contact-instagram-stack{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  min-width: 0;
  text-align: right;
}
.contact-social-combined__grid--solo .contact-instagram-stack{
  align-items: flex-start;
  text-align: left;
}
.contact-social-combined__grid--solo .contact-instagram-block{
  justify-content: flex-start;
}
.contact-instagram-handle{
  font-size: calc(var(--fs-body) * 0.92);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}
.contact-instagram-cta{
  font-size: calc(var(--fs-body) * 0.88);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}
.contact-instagram-icon{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: var(--text);
}
.contact-instagram-icon svg{
  display: block;
}
.contact-instagram-block:hover .contact-instagram-icon{
  color: var(--gold);
}
.contact-instagram-block:hover .contact-instagram-handle{
  color: var(--muted);
}

.footer-instagram-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.76);
}
.footer-instagram-link:hover{
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}
.footer-instagram-icon{
  flex-shrink: 0;
  display: flex;
  line-height: 0;
  opacity: 0.9;
}
.footer-instagram-label{
  letter-spacing: 0.02em;
}

.footer-google-link{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.76);
}
.footer-google-link:hover{
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}
.footer-google-stars{
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.footer-google-stars .google-stars-row-inner{
  gap: 2px;
}
.footer-google-stars .google-star-svg{
  width: 14px;
  height: 14px;
}
.footer-google-stars .google-star-svg > path:first-of-type{
  fill: rgba(255, 255, 255, 0.28);
}
.footer-google-label{
  white-space: nowrap;
}

.footer-social-wrap{
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}
.footer-social{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}
.footer-social a{
  text-decoration: none;
  font-weight: 500;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.76);
}
.footer-social a:hover{
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}
.footer-social-sep{
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.84rem;
  user-select: none;
}

/* Mini contactformulier (rechterkolom) */
.contact-hp{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-mini-form{
  position: relative;
  flex: 1 1 auto;
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height: 0;
}
.contact-form-compact{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  min-width: 0;
}
@media (min-width: 520px){
  .contact-form-compact{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    align-items: start;
  }
}
.contact-field{
  display:flex;
  flex-direction:column;
  gap:5px;
  min-width:0;
}
.contact-label{
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-input,
.contact-textarea{
  width:100%;
  margin:0;
  padding: 9px 11px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.95);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: var(--fw-body);
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-textarea{
  resize: vertical;
  min-height: 78px;
  line-height: 1.5;
}
.contact-field--files{
  gap: 6px;
}
.contact-input:focus,
.contact-textarea:focus{
  outline: none;
  border-color: rgba(184,139,42,.45);
  box-shadow: 0 0 0 3px rgba(184,139,42,.12);
}
.contact-drop-wrap{
  position: relative;
  min-height: 64px;
  border-radius: 12px;
}
.contact-dropzone--visual{
  pointer-events: none;
  position: absolute;
  inset: 0;
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:flex-start;
  gap: 10px;
  padding: 8px 10px;
  text-align:left;
  border: 1px dashed rgba(21,21,27,.22);
  border-radius: 12px;
  background: rgba(184,139,42,.05);
  color: var(--muted);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.contact-drop-wrap--drag .contact-dropzone--visual{
  border-color: rgba(184,139,42,.55);
  background: rgba(184,139,42,.1);
  box-shadow: inset 0 0 0 1px rgba(184,139,42,.12);
}
.contact-dropzone__icon{
  display:flex;
  flex-shrink: 0;
  color: rgba(173,146,113,.95);
}
.contact-dropzone__placeholder{
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  line-height: 1.4;
  font-weight: 500;
  color: var(--muted);
}
.contact-file-native{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  font-size: 0;
}
.contact-file-preview{
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-file-thumb{
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 14px rgba(18,18,24,.08);
}
.contact-file-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.contact-file-remove{
  position:absolute;
  top: 4px;
  right: 4px;
  width: 26px;
  height: 26px;
  padding: 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: rgba(18,18,24,.72);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 1;
  transition: background .12s ease;
}
.contact-file-remove:hover{
  background: rgba(18,18,24,.9);
}
.contact-form-actions{
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  justify-content: flex-start;
}
.contact-sending[hidden]{
  display: none !important;
}
.contact-sending:not([hidden]){
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  color: var(--muted);
  min-height: 38px;
}
.contact-sending__bol{
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.contact-sending__bol i{
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold2);
  animation: contact-sending-bol 0.9s infinite ease-in-out both;
}
.contact-sending__bol i:nth-child(2){
  animation-delay: 0.12s;
}
.contact-sending__bol i:nth-child(3){
  animation-delay: 0.24s;
}
@keyframes contact-sending-bol{
  0%,
  70%,
  100%{
    opacity: 0.28;
    transform: scale(0.88);
  }
  35%{
    opacity: 1;
    transform: scale(1.05);
  }
}
.contact-mini-form--sending .btn-primary{
  opacity: 0.78;
  pointer-events: none;
  filter: grayscale(0.08) brightness(0.98);
}
@media (min-width: 640px){
  .contact-form-actions{
    justify-content: center;
  }
}
.contact-form-feedback{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(184,139,42,.28);
  background: rgba(184,139,42,.08);
  color: rgba(24,24,24,.9);
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  line-height: 1.5;
  font-weight: 600;
}
.contact-form-feedback .link{
  display: inline-block;
  margin-top: 8px;
  font-weight: 650;
}
.contact-form-feedback__line{
  margin: 0 0 8px;
}
.contact-form-feedback__line:last-child{
  margin-bottom: 0;
}
.contact-form-feedback__steps{
  margin: 0 0 10px;
  padding-left: 1.35em;
  font-weight: 500;
  color: var(--muted);
}
.contact-form-feedback__steps li{
  margin: 6px 0;
  line-height: 1.45;
}

.hours-details summary{
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
  color: var(--text);
  font-weight: var(--fw-body);
  font-size: var(--fs-body);
  letter-spacing: 0.01em;
}
.hours-details summary::-webkit-details-marker{display:none}
.hours-details summary::after{
  content:"";
  display:inline-block;
  width:10px;
  height:10px;
  margin-left:10px;
  border-right:2px solid rgba(21,21,27,.35);
  border-bottom:2px solid rgba(21,21,27,.35);
  transform: rotate(45deg) translateY(-1px);
}
.hours-details[open] summary::after{transform: rotate(225deg) translateY(-1px)}
.hours-full{
  margin-top:8px;
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.55;
}
.notice{
  margin-top:14px;
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(184,139,42,.22);
  background: rgba(184,139,42,.07);
  color: rgba(24,24,24,.88);
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-body);
  line-height: 1.45;
}

/* Footer: zelfde taal als topbar — compact, blur, label + wit accent */
.site-footer{
  margin-top: 10px;
  padding: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(24, 24, 24, 0.88);
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.footer-inner{display:block}
.site-footer a{color: rgba(255,255,255,.78)}
.site-footer a:hover{color: rgba(255,255,255,.95)}
.site-footer .muted{color: rgba(255,255,255,.68)}
.footer-bar{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px 22px;
  padding: 16px 0 14px;
  font-weight: 500;
  font-size: 0.9rem;
}
.footer-brand{
  min-width: 0;
  flex: 1 1 200px;
}
.footer-title{
  font-weight: 600;
  font-size: clamp(0.88rem, 2.4vw, 0.98rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.25;
}
.footer-sub{
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.footer-dot{color: rgba(255,255,255,.35); margin: 0 5px}
.footer-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 14px;
  flex: 0 1 auto;
  margin-left: auto;
}
.footer-links{
  display: flex;
  gap: 12px 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a{
  text-decoration: none;
  font-weight: 500;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.76);
}
.footer-links a:hover{
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}
.footer-bottom{
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0 16px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-legal{
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.footer-legal-sep{color: rgba(255,255,255,.35)}

.to-top__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.92;
  line-height: 0;
}
.to-top__icon svg{display: block}
.to-top{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 10px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.to-top:hover{
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.98);
  background: rgba(255, 255, 255, 0.08);
}
.to-top:active{transform: translateY(1px)}

@media (max-width: 920px){
  .footer-actions{
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Expliciet fixed + z-index: anders blijft <dialog> na </footer> in de flow → “onder de footer” */
.modal{
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
}
.modal[open]{
  position: fixed;
  inset: 0;
  z-index: 100000;
  width: 100vw;
  height: 100vh;
  min-height: 100dvh;
  max-width: none;
  max-height: none;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  overscroll-behavior: contain;
}
.modal::backdrop{
  background: rgba(48, 42, 36, 0.52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-inner{
  position: relative;
  width: min(860px, calc(100vw - 28px));
  /* Vaste hoogte: zelfde maat bij elk project; iets ruimer zodat tekst + 2-koloms galerij meestal zonder scroll past. */
  height: min(76vh, 680px);
  max-height: min(76vh, 680px);
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow), 0 28px 80px rgba(18, 18, 24, 0.18);
  overflow: hidden;
}
.modal-inner::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--modal-bg-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.modal-inner::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 420px at 18% 0%, rgba(173, 146, 113, 0.12), transparent 58%);
  pointer-events: none;
  z-index: 1;
}
.modal-inner > *{
  position: relative;
  z-index: 2;
}
.modal-header{
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 10px 12px 0;
}
.modal-close{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold2);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  line-height: 0;
  box-shadow: 0 6px 18px rgba(18, 18, 24, 0.06);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.modal-close:hover{
  border-color: rgba(184, 139, 42, 0.35);
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 18, 24, 0.08);
}
.modal-close:focus-visible{
  outline: 2px solid var(--gold2);
  outline-offset: 2px;
}
.modal-close__icon{
  display: block;
  opacity: 0.88;
}
.modal-body{
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 8px 18px 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.modal-body::-webkit-scrollbar{
  width: 0;
  height: 0;
}
.modal-footer{
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 16px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--line);
  background: rgba(252, 251, 254, 0.65);
}
.modal-step{
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  cursor: pointer;
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(154, 118, 72, 0.38);
  border-top: 3px solid var(--gold2);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font-weight: 650;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 2px rgba(18, 18, 24, 0.05),
    0 6px 16px rgba(18, 18, 24, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.modal-step:hover{
  border-color: rgba(184, 139, 42, 0.45);
  filter: brightness(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 2px rgba(18, 18, 24, 0.05),
    0 8px 20px rgba(18, 18, 24, 0.08);
}
.modal-step:active{
  filter: brightness(0.97);
  box-shadow:
    inset 0 3px 8px rgba(18, 18, 24, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.modal-step:focus-visible{
  outline: 2px solid var(--gold2);
  outline-offset: 3px;
}
.modal-step__arrow{
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 700;
  color: var(--gold2);
  opacity: 0.92;
  transition: transform 0.18s ease, opacity 0.15s ease;
}
.modal-step:hover .modal-step__arrow{
  opacity: 1;
}
.modal-step--prev:hover .modal-step__arrow{
  transform: translateX(-2px);
}
.modal-step--next:hover .modal-step__arrow{
  transform: translateX(2px);
}
.modal-step__text{
  white-space: nowrap;
}
.modal h3{
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: var(--fw-heading);
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text);
}
.modal p{
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-body);
  line-height: 1.55;
  color: var(--muted);
}
.modal p strong{
  font-weight: var(--fw-strong);
  color: var(--text);
}

.modal-tags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.modal-gallery{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}
.modal-img{
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold2);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 26px rgba(18,18,24,.08);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.modal-img:hover{
  border: 1px solid rgba(184,139,42,.25);
  border-top: 3px solid var(--gold2);
  box-shadow: 0 14px 34px rgba(18,18,24,.1);
}
.modal-img-inner{
  aspect-ratio:4/3;
  background-size:cover;
  background-position:center;
}

.gallery{padding-top:12px}
.gallery-block{
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(18,18,24,.08);
}
.gallery .section-head{margin-bottom:12px}
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.gallery-item{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background-color: rgba(255,255,255,.70);
  box-shadow: 0 16px 40px rgba(18,18,24,.08);
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.gallery-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(18,18,24,.12);
  filter: saturate(1.07) contrast(1.08);
}

@media (max-width: 920px){
  .hero-inner{grid-template-columns: 1fr}
  .cards{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .carousel{gap:10px}
  .carousel-nav{display:none}
  .split{grid-template-columns: 1fr}
  .gallery-grid{grid-template-columns: 1fr}
  #over .over-block{overflow: visible; padding: clamp(16px, 3vw, 28px)}
  #over .over-block.over-has-portrait-bg::before{
    background-size: cover, 70% auto;
    background-position: center, var(--over-portrait-bg-pos, 0% 30%);
  }
  #over .over-layout:not(.over-no-photo) .over-panel{
    justify-self: end;
    max-width: min(340px, 88%);
    width: auto;
  }
}
@media (max-width: 720px){
  .topbar-actions .nav{display:none}
  .header-cta{display:none}
  .nav-toggle{display:inline-flex}
  .topinfo-inner{row-gap:8px}
  .topbar-actions{width:100%; justify-content:flex-end; margin-left:0; align-items:center}
  #topinfoHours,#topinfoPhoneText{max-width: 32ch}
  .hero-meta{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .carousel-nav{display:none}
  .section{padding: 36px 0}
  .section-head{
    flex-direction:column;
    align-items:flex-start;
    gap: 10px;
    margin-bottom: 16px;
  }
  .section-head h2{font-weight: 600}
  .section-head .section-quote{
    padding-left: 0;
    border-left: none;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    width: 100%;
    max-width: none;
  }
  #diensten .section-head .section-quote{padding-left: 0}
  .site-footer{margin-top: 0}
  .footer-bar{
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px 0 16px;
  }
  .footer-brand{flex: 1 1 auto}
  .footer-actions{
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    margin-left: 0;
  }
  .footer-links{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    width: 100%;
  }
  .footer-links a{
    padding: 4px 0;
    font-size: 0.82rem;
  }
  .to-top{
    justify-content: center;
    width: auto;
    min-width: 48px;
    min-height: 48px;
    align-self: center;
    padding: 10px;
  }
  .footer-bottom{padding: 14px 0 18px}
  /* Over + portret: onder elkaar — foto boven, tekst eronder (geen overlap op smal scherm) */
  #over .over-block.over-has-portrait-bg{
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }
  #over .over-block.over-has-portrait-bg::before{
    position: relative;
    z-index: 0;
    flex: 0 0 auto;
    align-self: center;
    width: calc(100% - 32px);
    max-width: min(320px, 92vw);
    height: min(220px, 48vw);
    margin: 12px auto 0;
    inset: unset;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
      0 10px 28px rgba(18, 18, 24, 0.1),
      0 2px 8px rgba(18, 18, 24, 0.06),
      inset 0 0 0 1px rgba(255, 255, 255, 0.55),
      inset 0 0 0 2px rgba(196, 170, 134, 0.32);
    /* Foto gecentreerd in strip; lichte fade onderaan naar tekst */
    background-image:
      linear-gradient(
        180deg,
        rgba(246, 243, 238, 0) 0%,
        rgba(251, 249, 246, 0.25) 58%,
        rgba(252, 252, 253, 0.82) 100%
      ),
      var(--over-portrait-img);
    background-size: cover, cover;
    background-position: center, center 35%;
    background-repeat: no-repeat;
  }
  #over .over-layout:not(.over-no-photo){
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1 1 auto;
    min-height: 0;
    padding: clamp(12px, 3vw, 18px);
    z-index: 1;
  }
  #over .over-layout:not(.over-no-photo) .over-panel{
    align-self: stretch;
    max-width: none;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 520px){
  .hero{
    min-height: clamp(360px, 52vh, 560px);
    padding: clamp(22px, 6vh, 48px) 0 clamp(10px, 1.15cm, 22px);
  }
  .hero-brand-title{ gap: 0.26em; }
  .hero-lower-block{padding-left: 14px; padding-right: 14px}
  .hero-copy{padding:14px 12px 12px; border-radius:16px; max-width: 100%}
  .pill{font-size:.64rem; padding:5px 10px; letter-spacing:.1em}
  .hero .hero-tagline{
    font-size: clamp(1.28rem, 5.4vw, 1.72rem);
    line-height:1.22;
    max-width: 20ch;
    font-weight: 480;
  }
  .hero .lead{font-size:.9rem; line-height:1.45; max-width: 34ch}
  .hero-lower-message .hero-actions{margin: 8px 0 0}
  .hero .btn{padding:9px 12px}
  #over .over-block.over-has-portrait-bg::before{
    width: calc(100% - 24px);
    max-width: min(300px, 94vw);
    height: min(200px, 46vw);
    margin-top: 10px;
    background-position: center, center 32%;
  }
  #over .over-portrait-sign{
    font-size: clamp(1.75rem, 6.2vw, 2.15rem);
  }
  .modal-inner{
    width: calc(100vw - 20px);
    height: min(84vh, 640px);
    max-height: min(84vh, 640px);
  }
  .modal-footer{
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 6px;
    padding: 10px 12px 12px;
  }
  .modal-step{
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

