:root {

  --paper:      #FBFAF8;
  --paper-2:    #F3F2EC;
  --white:      #FFFFFF;
  --ink:        #20241F;
  --green:      #47573F;
  --green-800:  #3B4634;
  --green-900:  #2E382A;
  --green-600:  #586155;
  --sage:       #8A9A82;
  --gold:       #5F6E56;
  --gold-deep:  #46543F;
  --muted:      #6B6F64;
  --line:       #E8E6DF;
  --line-2:     #DBD8D0;

  --container:  1180px;
  --narrow:     760px;
  --radius:     12px;
  --radius-lg:  24px;

  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", system-ui, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

html { font-size: 100%; }
html[data-textsize="large"]  { font-size: 112.5%; }
html[data-textsize="xlarge"] { font-size: 125%; }

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, picture { max-width: 100%; display: block; }

h1, h2, h3, h4 { margin: 0 0 .5em; color: var(--green-800); font-weight: 600; }
h1, h2, .display {
  font-family: var(--font-display);
  font-weight: 600; line-height: 1.07; letter-spacing: -.022em;
}
h1 { font-size: clamp(2.6rem, 1.9rem + 3.1vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 1.45rem + 1.7vw, 2.6rem); }
h3 { font-family: var(--font-body); font-size: 1.12rem; font-weight: 600; line-height: 1.35; letter-spacing: -.012em; }
h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1.15em; max-width: 66ch; }
.lead { font-size: 1.12rem; line-height: 1.7; color: var(--green-600); }
a { color: var(--green); text-underline-offset: 3px; }
a:hover { color: var(--gold-deep); }
strong { color: var(--green-800); font-weight: 600; }

:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 3px; border-radius: 6px; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--green); color: var(--paper); padding: .7rem 1.2rem; border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 14px; color: var(--paper); }

.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
.narrow    { width: min(100% - 2.6rem, var(--narrow)); margin-inline: auto; }
.section   { padding: clamp(4.75rem, 3.5rem + 4.2vw, 8.5rem) 0; }
.section--tight { padding: clamp(2.4rem, 1.8rem + 3vw, 4rem) 0; }
[hidden] { display: none !important; }
.section--screen { min-height: 72vh; display: flex; flex-direction: column; justify-content: center; }
.bg-paper2 { background: var(--paper-2); }
.bg-white  { background: var(--white); }
.bg-green  { background: var(--green); color: rgba(251,250,247,.92); }
.bg-green h1,.bg-green h2,.bg-green h3,.bg-green h4 { color: var(--paper); }
.text-center { text-align: center; }
.maxw { max-width: 64ch; } .text-center .maxw { margin-inline: auto; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}

.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: .22em;
  font-size: .76rem; color: var(--gold-deep); margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); }
.text-center .eyebrow { justify-content: center; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.divider { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.divider::before, .divider::after { content: ""; height: 1px; width: min(26vw, 200px); background: var(--line-2); }
.divider i { width: 8px; height: 8px; transform: rotate(45deg); border: 1px solid var(--gold); display: block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem; line-height: 1.2;
  padding: .72rem 1.4rem; min-height: 48px;
  border-radius: var(--radius); border: 1.5px solid transparent;
  background: var(--green); color: var(--paper); text-decoration: none; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { background: var(--green-900); color: var(--paper); }
.btn-lg { font-size: 1rem; padding: .9rem 1.7rem; min-height: 52px; }

.btn-primary { background: var(--green); color: var(--paper); }
.btn-line { background: transparent; color: var(--green); border-color: rgba(61,74,56,.35); }
.btn-line:hover { background: var(--green); color: var(--paper); border-color: var(--green); }
.btn-gold { background: var(--gold); color: #2b2414; }
.btn-gold:hover { background: var(--gold-deep); color: var(--paper); }
.btn-on-green { background: var(--paper); color: var(--green-900); }
.btn-on-green:hover { background: var(--white); color: var(--green-900); }
.btn-line-light { background: transparent; color: var(--paper); border-color: rgba(251,250,247,.45); }
.btn-line-light:hover { background: rgba(251,250,247,.12); color: var(--paper); border-color: var(--paper); }

.a11y-bar { background: var(--green-900); color: rgba(236,239,231,.72); font-size: 13px; position: relative; z-index: 1; margin-bottom: -26px; }
.a11y-bar .container { display: flex; align-items: center; gap: 14px; padding: 8px 0 33px; flex-wrap: wrap; }
.a11y-bar a { color: rgba(236,239,231,.92); text-underline-offset: 2px; }

.textsize { display: inline-flex; align-items: center; gap: 8px; }
.ts-label { color: rgba(236,239,231,.6); }
.ts-step { display: inline-flex; align-items: center; gap: 7px; background: rgba(0,0,0,.22); border: 1px solid rgba(236,239,231,.14); border-radius: 999px; padding: 4px 8px; }
.ts-step button { width: 30px; height: 30px; border-radius: 50%; border: 0; background: rgba(236,239,231,.1); color: #fff; font-size: 16px; line-height: 1; cursor: pointer; display: grid; place-items: center; font-family: var(--font-body); transition: background .15s var(--ease); }
.ts-step button:hover:not(:disabled) { background: rgba(236,239,231,.24); }
.ts-step button:disabled { opacity: .32; cursor: default; }
.ts-prev { color: #fff; min-width: 22px; text-align: center; font-weight: 600; font-family: var(--font-display); font-size: 14px; line-height: 1; }
.ts-dots { display: inline-flex; gap: 5px; align-items: center; }
.ts-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(236,239,231,.25); transition: background .2s var(--ease); }
.ts-dots i.on { background: var(--sage); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,247,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  border-top-left-radius: 26px; border-top-right-radius: 26px;
  transition: border-radius .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled {
  border-top-left-radius: 0; border-top-right-radius: 0;
  box-shadow: 0 6px 22px -16px rgba(32,40,31,.32);
}
@media (prefers-reduced-motion: reduce) { .site-header { transition: none; } }
.nav { display: flex; align-items: center; gap: 1.25rem; padding: 1rem 0; flex-wrap: nowrap; }
.site-header .container, .a11y-bar .container { width: min(100% - 32px, 1280px); }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--green-800); flex: none; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand-logo { height: clamp(60px, 46px + 1.8vw, 80px); width: auto; flex: none; display: block; opacity: .96; }
.brand .name { display: flex; flex-direction: column; line-height: 1.05; }
.brand .name b { font-family: var(--font-display); font-size: 1.34rem; font-weight: 600; letter-spacing: -.015em; }
.brand .name span { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.nav-links { position: relative; display: flex; flex: 0 1 auto; align-items: center; justify-content: flex-start; gap: clamp(.4rem, .2rem + .8vw, 1.4rem); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  position: relative; display: inline-block; padding: .5rem .4rem .58rem; white-space: nowrap;
  text-decoration: none; color: var(--green-800); font-weight: 500; font-size: .94rem;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--green-900); }
.nav-links a[aria-current="page"] { color: var(--green-900); font-weight: 600; }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: .4rem; right: .4rem; bottom: .2rem; height: 2px; border-radius: 2px; background: var(--green-600);
}
.nav-links.has-indicator a[aria-current="page"]::after { display: none; }
.nav-indicator {
  position: absolute; bottom: .2rem; height: 2px; border-radius: 2px; background: var(--green-600);
  width: 0; left: 0; opacity: 0; pointer-events: none;
  transition: left .34s var(--ease), width .34s var(--ease), opacity .3s var(--ease);
}
@media (prefers-reduced-motion: reduce) { .nav-indicator { transition: opacity .2s linear; } }
.nav-cta { margin-left: 0; flex: none; padding: .6rem 1.05rem; min-height: 42px; font-size: .9rem; }
.nav-call { display: inline-flex; align-items: center; gap: .45rem; margin-left: auto; color: var(--green); font-weight: 600; font-size: .95rem; text-decoration: none; flex: none; white-space: nowrap; }
.nav-call svg { width: 1.1em; height: 1.1em; }
.nav-call:hover { color: var(--green-900); }

.nav-toggle {
  display: none; align-items: center; gap: .5rem;
  background: var(--green); color: var(--paper); border: none; border-radius: var(--radius);
  padding: .6rem .9rem; font-family: var(--font-body); font-weight: 600; font-size: 1rem; cursor: pointer; min-height: 48px;
}
.nav-toggle svg { width: 22px; height: 22px; }

.hero { background: var(--paper); border-bottom: 1px solid var(--line); }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center; padding: clamp(2.8rem, 1.8rem + 5vw, 6rem) 0;
}
.hero h1 { margin-bottom: .3em; }
.hero .lead { max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-assure { margin: 1.6rem 0 0; font-size: .96rem; color: var(--muted); display: flex; align-items: flex-start; gap: .55rem; max-width: 46ch; }
.hero-assure svg { width: 1.2em; height: 1.2em; color: var(--gold-deep); flex: none; margin-top: .2rem; }
.hero-figure {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--white); overflow: hidden; aspect-ratio: 4 / 3.4;
  display: grid; place-items: center; padding: clamp(1rem, .4rem + 1.6vw, 2.2rem);
}
.hero-figure img { width: 100%; height: 100%; object-fit: contain; }
.hero-figure figcaption {
  position: absolute; left: 1.2rem; bottom: 1.1rem; right: 1.2rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--green-800);
}

.statement { text-align: center; }
.statement .big {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 1.15rem + 1.7vw, 2.4rem);
  line-height: 1.25; letter-spacing: -.02em; color: var(--green-800); max-width: 24ch; margin: 0 auto;
}
.statement p { margin-inline: auto; }

.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 1rem + 2vw, 3rem); counter-reset: step; }
.process-step { border-top: 2px solid var(--gold); padding-top: 1.3rem; }
.process-step .num {
  counter-increment: step; font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-deep); line-height: 1; display: block; margin-bottom: .5rem;
}
.process-step .num::before { content: "0" counter(step); }
.process-step h3 { margin-bottom: .35em; }
.process-step p { margin: 0; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.service {
  padding: 1.8rem 1.6rem; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
}
.service:nth-child(odd) { border-right: 1px solid var(--line); }
.service .ico { display: block; width: 34px; height: 34px; color: var(--gold-deep); flex: none; }
.service .ico svg { width: 100%; height: 100%; display: block; }
.service h3 { margin: 0 0 .2em; }
.service p { margin: 0; color: var(--muted); font-size: .98rem; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.card { background: #F0F5EE; border: 1px solid #DFE9DB; border-radius: var(--radius-lg); padding: 1.7rem; }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card .ico { display: block; width: 34px; height: 34px; color: var(--gold-deep); margin-bottom: 1.1rem; }
.card .ico svg { width: 100%; height: 100%; display: block; }
a.card { text-decoration: none; color: inherit; display: block; transition: border-color .2s var(--ease), transform .2s var(--ease); }
a.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card .more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; color: var(--green); font-weight: 600; }
.card .more svg { width: 1.05em; height: 1.05em; }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 1.6rem + 4vw, 6rem); align-items: center; }
.feature + .feature { margin-top: clamp(2.5rem,2rem + 3vw,4.5rem); }
.feature.reverse .feature-media { order: 2; }
.feature-media {
  aspect-ratio: 5 / 4; border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: var(--paper-2); border: 1px solid var(--line);
  display: grid; place-items: center;
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-media .ph-note { color: var(--muted); font-size: .9rem; padding: 1rem 1.2rem; text-align: center; }

.checklist { list-style: none; padding: 0; margin: 1.3rem 0; display: grid; gap: .8rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist li::before {
  content: ""; flex: none; width: 9px; height: 9px; margin-top: .55rem;
  transform: rotate(45deg); border: 1.5px solid var(--gold);
}

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: stretch; }
.price-card {
  position: relative; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.3rem 1.9rem 2rem; display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(32,40,31,.05);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px -20px rgba(32,40,31,.30); border-color: var(--line-2); }
.price-card h3 { margin: 0 0 .15em; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--green-800); }
.price-card .from { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; }
.price-card .amount {
  font-family: var(--font-display); font-weight: 600; font-size: 2.7rem; color: var(--green-800);
  line-height: 1.04; letter-spacing: -.02em; margin: .35rem 0 1.3rem;
  padding-bottom: 1.3rem; border-bottom: 1px solid var(--line);
}
.price-card ul { list-style: none; padding: 0; margin: 0 0 .4rem; display: grid; gap: .7rem; font-size: .98rem; color: var(--ink); }
.price-card ul li { display: flex; gap: .65rem; align-items: flex-start; line-height: 1.45; }
.price-card ul li::before {
  content: ""; flex: none; width: 19px; height: 19px; margin-top: .12rem; border-radius: 50%;
  background-color: rgba(60,75,58,.10);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233C4B3A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px 11px;
}
.price-card .btn { margin-top: auto; }
.price-card.feature-price {
  border: 1.5px solid var(--green);
  background: linear-gradient(180deg, var(--white), #F5F8F3);
  box-shadow: 0 20px 48px -22px rgba(43,52,42,.40);
}
.price-card.feature-price::before {
  content: "Meest gekozen"; position: absolute; top: -.8rem; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--paper);
  font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .38rem 1rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 16px -6px rgba(43,52,42,.5);
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.team-member .photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--paper-2); display: grid; place-items: center; color: var(--muted); margin-bottom: 1rem; font-size: .85rem;
}
.team-member .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-member h3 { margin: 0 0 .1em; }
.team-member p { margin: 0; color: var(--muted); font-size: .96rem; }

.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.quote { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 1.8rem; }
.quote p { font-family: var(--font-display); font-weight: 500; font-size: 1.22rem; line-height: 1.5; letter-spacing: -.012em; color: var(--green-800); margin: 0 0 1rem; }
.quote .by { font-family: var(--font-body); font-style: normal; font-size: .92rem; color: var(--muted); }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.2rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; font-size: 1.08rem; color: var(--green-800);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { width: 22px; height: 22px; flex: none; position: relative; }
.faq-item summary .pm::before, .faq-item summary .pm::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform .2s var(--ease); }
.faq-item summary .pm::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq-item summary .pm::after { left: 10px; top: 2px; bottom: 2px; width: 2px; }
.faq-item[open] summary .pm::after { transform: scaleY(0); }
.faq-item .answer { padding: 0 0 1.3rem; color: var(--muted); max-width: 72ch; }
.faq-item .answer p { margin: 0; }

.cta-band { background: var(--green); color: var(--paper); }
.cta-band .inner { display: grid; grid-template-columns: 1.4fr auto; gap: 2.8rem; align-items: center; padding: clamp(4.2rem,3.2rem + 3.6vw,7rem) 0; }
.cta-band h2 { color: var(--paper); margin-bottom: .35em; }
.cta-band p { color: rgba(251,250,247,.82); margin: 0; max-width: 52ch; line-height: 1.75; }
.cta-band .actions { display: flex; gap: .9rem; flex-wrap: wrap; }

.help-bar { display: none; }

.search-bar { display: flex; gap: .7rem; align-items: center; background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius); padding: .4rem .5rem .4rem 1.2rem; width: min(620px, 100%); }
.search-bar svg { width: 22px; height: 22px; color: var(--green-600); flex: none; }
.search-bar input { flex: 1; border: none; background: transparent; font-family: var(--font-body); font-size: 1.05rem; color: var(--ink); padding: .6rem 0; min-width: 0; }
.search-bar input:focus { outline: none; }
.tag { display: inline-block; background: var(--paper-2); color: var(--green-800); border: 1px solid var(--line); border-radius: var(--radius); padding: .3rem .8rem; font-size: .85rem; font-weight: 600; }

.notice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.9rem; }
.notice { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: border-color .2s var(--ease), transform .2s var(--ease); }
.notice:hover { border-color: var(--gold); transform: translateY(-3px); color: inherit; }
.notice.notice-stil { cursor: default; }
.notice.notice-stil:hover { border-color: var(--line); transform: none; }
.notice-stil .portrait svg { width: 46px; height: 46px; color: var(--sage); opacity: .85; }
.notice-stil .stil-uitleg { margin: 0; font-size: .9rem; line-height: 1.6; color: var(--muted); max-width: none; }
.notice-stil .stil-uitleg a { color: var(--green); font-weight: 600; }
.notice .portrait { aspect-ratio: 4/3; background: var(--paper-2); position: relative; display: grid; place-items: center; color: var(--muted); font-size: .82rem; overflow: hidden; }
.notice .portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.notice .ribbon { position: absolute; top: .8rem; left: .8rem; z-index: 2; background: rgba(61,74,56,.9); color: var(--paper); font-size: .74rem; letter-spacing: .04em; padding: .25rem .6rem; border-radius: 6px; }
.notice .body { padding: 1.2rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.notice .body h3 { margin: 0 0 .15em; }
.notice .dates { color: var(--muted); margin: 0 0 .8rem; font-size: .95rem; line-height: 1.6; }
.notice .place { color: var(--green); font-size: .92rem; margin-top: auto; display: flex; align-items: center; gap: .4rem; }
.notice .place svg { width: 1.05em; height: 1.05em; }

.infobox { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem; }
.infobox h3 { display: flex; align-items: center; gap: .6rem; }
.infobox h3 svg { width: 1.25em; height: 1.25em; color: var(--gold-deep); }
.infolist { list-style: none; padding: 0; margin: .4rem 0 0; display: grid; gap: .75rem; }
.infolist li { display: flex; gap: .7rem; align-items: flex-start; }
.infolist svg { width: 1.2em; height: 1.2em; color: var(--gold-deep); flex: none; margin-top: .25rem; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; max-width: 860px; margin-inline: auto; counter-reset: s; }
.steps .step {
  position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem 1.7rem 1.6rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.steps .step:hover { border-color: var(--line-2); box-shadow: 0 14px 34px -20px rgba(32,40,31,.26); transform: translateY(-3px); }
.steps .step .num {
  counter-increment: s; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: var(--paper);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  margin-bottom: 1.05rem;
}
.steps .step .num::before { content: counter(s, decimal-leading-zero); }
.steps .step h3 { margin: 0 0 .4rem; }
.steps .step p { margin: 0; color: var(--muted); }

.hscroll { position: relative; background: var(--paper); }
.hscroll-sticky { position: sticky; top: 0; height: 100vh; min-height: 560px; overflow: hidden; display: flex; flex-direction: column; justify-content: center; gap: clamp(1.6rem, 4vh, 3rem); }
.hscroll-head { max-width: 760px; }
.hscroll-viewport { position: relative; width: 100%; overflow: hidden; }
.hscroll-viewport::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--line-2); transform: translateY(-50%); z-index: 0; }
.hscroll-track { position: relative; z-index: 1; display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3.2rem); width: max-content; height: 460px; padding-inline: clamp(2rem, 8vw, 11rem); will-change: transform; }
.hstep { position: relative; flex: 0 0 clamp(300px, 30vw, 380px); height: 100%; }
.hstep .tl-node { position: absolute; left: 7px; top: 50%; transform: translate(-50%, -50%); width: 16px; height: 16px; border-radius: 50%; background: var(--paper); border: 2px solid rgba(107,111,100,.4); z-index: 2; }
.hstep::after { content: ""; position: absolute; left: 7px; width: 1px; background: var(--line-2); transform: translateX(-50%); }
.hstep:nth-child(odd)::after { top: 50%; height: 38px; }
.hstep:nth-child(even)::after { bottom: 50%; height: 38px; }
.hstep .tl-body { position: absolute; left: 7px; width: calc(100% - 28px); }
.hstep:nth-child(odd) .tl-body { top: calc(50% + 38px); }
.hstep:nth-child(even) .tl-body { bottom: calc(50% + 38px); }
.hstep .tl-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .12em; color: var(--muted); margin-bottom: .5rem; }
.hstep h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.1; margin: 0 0 .5rem; }
.hstep p { margin: 0; color: var(--muted); max-width: 34ch; }
.hscroll-progress { height: 3px; background: var(--line); border-radius: 999px; margin-inline: clamp(1.3rem, 8vw, 11rem); overflow: hidden; }
.hscroll-progress span { display: block; height: 100%; width: 0; background: var(--green); border-radius: 999px; }

.hscroll.hscroll-native { height: auto !important; }
.hscroll.hscroll-native .hscroll-sticky { position: static; height: auto; min-height: 0; padding: clamp(2.6rem, 1.8rem + 3vw, 4.5rem) 0; }
.hscroll.hscroll-native .hscroll-viewport { overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.hscroll.hscroll-native .hscroll-track { transform: none !important; }
.hscroll.hscroll-native .hstep { scroll-snap-align: center; }
.hscroll.hscroll-native .hscroll-progress { display: none; }

.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem,1.6rem + 2vw,3.2rem); color: var(--green-800); line-height: 1; }
.stat .lbl { color: var(--muted); margin-top: .4rem; }

.client-note { border: 1px dashed var(--gold); background: rgba(176,141,87,.07); color: var(--gold-deep); border-radius: var(--radius); padding: .8rem 1.1rem; font-size: .92rem; display: flex; gap: .6rem; align-items: flex-start; }
.client-note svg { width: 1.2em; height: 1.2em; flex: none; margin-top: .15rem; }
.client-note b { color: var(--gold-deep); }

.callout { background: var(--green); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(2.4rem,2rem + 1.6vw,3.6rem) clamp(2rem,1.5rem + 3vw,3.4rem); text-align: center; }
.callout h2 { color: var(--paper); } .callout p { color: rgba(251,250,247,.85); margin-inline: auto; margin-bottom: 2rem; }

.acute-call {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: clamp(1.4rem, 1rem + 1.6vw, 2.4rem); align-items: center;
  background: #EDF1EC;
  border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(1.9rem, 1.4rem + 1.6vw, 2.8rem) clamp(1.8rem, 1.3rem + 2.2vw, 3rem);
  box-shadow: 0 1px 2px rgba(32,40,31,.03), 0 16px 38px -28px rgba(32,40,31,.3);
}
.acute-call .acute-icon {
  width: clamp(54px, 2.4rem + 1.6vw, 66px); height: clamp(54px, 2.4rem + 1.6vw, 66px);
  border-radius: 50%; background: var(--green); color: var(--paper);
  display: grid; place-items: center; flex: none;
  box-shadow: 0 8px 18px -8px rgba(71,87,63,.5);
}
.acute-call .acute-icon svg { width: 44%; height: 44%; }
.acute-call .acute-body { min-width: 240px; }
.acute-call .acute-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: .17em;
  font-size: .72rem; color: var(--gold-deep); margin: 0 0 .55rem;
}
.acute-call .acute-eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(71,87,63,.16);
}
.acute-call .acute-body h2 { font-size: clamp(1.45rem, 1.2rem + 1vw, 1.9rem); margin: 0 0 .25em; color: var(--green-800); }
.acute-call .acute-body p { margin: 0; color: var(--green-600); max-width: 46ch; }
.acute-call .acute-action { display: flex; flex-direction: column; align-items: flex-end; gap: .55rem; flex: none; }
.acute-call .acute-sub { font-size: .85rem; color: var(--muted); }
@media (max-width: 720px) {
  .acute-call { grid-template-columns: auto 1fr; row-gap: 1.3rem; }
  .acute-call .acute-action { grid-column: 1 / -1; align-items: stretch; }
  .acute-call .acute-action .btn { width: 100%; }
  .acute-call .acute-sub { text-align: center; }
}

.page-head { background: var(--paper); border-bottom: 1px solid var(--line); padding: clamp(3.2rem,2.4rem + 3.4vw,5.4rem) 0 clamp(2.4rem,1.8rem + 2vw,3.6rem); }
.page-head .crumbs { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.page-head .crumbs a { color: var(--green-600); }
.page-head h1 { margin-bottom: .25em; }
.page-head .lead { max-width: 60ch; }

.edge-host { position: relative; overflow: hidden; }
.edge-host > .container, .edge-host > .narrow { position: relative; z-index: 1; }
.edge-orchid { display: none; position: absolute; z-index: 0; pointer-events: none; user-select: none; width: 480px; max-width: 56vw; opacity: .4; }
.edge-orchid.right { right: 0; top: 50%; transform: translate(34%, -50%); }
.edge-orchid.left  { left: 0;  top: 50%; transform: translate(-34%, -50%); }
.edge-orchid.high { top: 26%; } .edge-orchid.low { top: 76%; }
@media (max-width: 760px){ .edge-orchid { opacity: .26; width: 300px; } }

.site-footer { background: var(--paper-2); border-top: 1px solid var(--line); color: var(--muted); overflow: hidden; }
.site-footer .container { padding: clamp(2.75rem,2.2rem + 1.6vw,3.9rem) 1.3rem 1.4rem; }
.foot-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.25fr; gap: 3rem 2.6rem; align-items: start; }
.foot-word { display: block; font-size: clamp(2rem, 1.5rem + 1.7vw, 3rem); font-weight: 600; letter-spacing: -.025em; color: var(--green-800); line-height: 1; }
.foot-brand p { margin: 1.1rem 0 0; color: var(--muted); max-width: 36ch; line-height: 1.7; font-size: .95rem; }
.site-footer h4 { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--green-800); margin: .4rem 0 1.1rem; }
.foot-col { display: flex; flex-direction: column; gap: .75rem; }
.foot-col a { color: var(--muted); text-decoration: none; font-size: .94rem; }
.foot-col a:hover { color: var(--green-800); }
.foot-contact { color: var(--muted); font-size: .92rem; line-height: 1.5; }
.foot-contact a { color: var(--muted); text-decoration: none; }
.foot-contact a:hover { color: var(--green-800); }
.foot-bottom { border-top: 1px solid var(--line); margin-top: 1.6rem; padding-top: 1.7rem; display: flex; flex-direction: column; align-items: center; gap: .9rem; text-align: center; font-size: .84rem; color: var(--muted); }

.foot-signature { margin-top: clamp(2.6rem, 2rem + 2vw, 4.2rem); text-align: center; line-height: .85; }
.foot-signature span { font-family: var(--font-display); font-weight: 600; font-size: clamp(3.4rem, 11vw, 9.5rem); letter-spacing: -.03em; color: rgba(43,52,42,.10); display: block; white-space: nowrap; }
@media (max-width: 760px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-top { grid-template-columns: 1fr; } }

.tlink { display: inline-flex; align-items: center; gap: .45rem; color: var(--green); font-weight: 600; font-size: 1rem; text-decoration: none; }
.tlink::after { content: "\2192"; transition: transform .2s var(--ease); }
.tlink:hover { color: var(--green-900); }
.tlink:hover::after { transform: translateX(4px); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

.media {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; position: relative; display: grid; place-items: center;
}
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media .ph { display: flex; flex-direction: column; align-items: center; gap: .55rem; color: var(--muted); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; padding: 1.4rem; text-align: center; }
.media .ph svg { width: 30px; height: 30px; opacity: .5; }

.hero-v2 .grid { display: grid; grid-template-columns: 1fr 1.12fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center; padding: clamp(3rem, 2.2rem + 3vw, 5.5rem) 0; }
.hero-v2 h1 { margin: 0 0 .3em; }
.hero-v2 .lead { max-width: 42ch; }
.hero-v2 .hero-cta { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; margin-top: 2.2rem; }
.hero-v2 .media { aspect-ratio: 4 / 4.6; border-radius: var(--radius-lg); }
.hero-v2 .hero-art { display: flex; align-items: center; justify-content: center; }
.hero-v2 .hero-art img { width: 100%; max-width: 720px; height: auto; display: block; }
.media picture, .feature-media picture { display: block; width: 100%; height: 100%; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery .media { aspect-ratio: 4 / 3; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }
.hero-v2 .assure { margin: 1.8rem 0 0; font-size: .94rem; color: var(--muted); display: flex; align-items: flex-start; gap: .55rem; max-width: 44ch; }
.hero-v2 .assure svg { width: 1.2em; height: 1.2em; color: var(--gold-deep); flex: none; margin-top: .2rem; }

.factbar { background: var(--paper); }
.factbar .row { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 820px; margin-inline: auto; }
.factbar .fact { padding: 2.3rem 1.4rem; text-align: center; border-right: 1px solid var(--line); }
.factbar .fact:last-child { border-right: none; }
.factbar .fact b { display: block; font-size: 1.05rem; color: var(--green-800); font-weight: 600; letter-spacing: -.01em; }
.factbar .fact span { font-size: .9rem; color: var(--muted); }

.timeline { position: relative; margin-top: 3.5rem; }
.timeline::before { content: ""; position: absolute; top: 34px; left: 16%; right: 16%; height: 1px; background: var(--line-2); }
.timeline .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; position: relative; z-index: 1; }
.timeline .step { text-align: center; padding: 0 1rem; }
.timeline .ring { width: 68px; height: 68px; border-radius: 50%; border: 1px solid var(--gold); background: var(--paper); display: grid; place-items: center; margin: 0 auto 1.5rem; font-size: 1.5rem; color: var(--gold-deep); font-family: var(--font-display); font-weight: 600; }
.timeline .step h3 { margin: 0 0 .4em; }
.timeline .step p { margin: 0; color: var(--muted); }

.pullquote { max-width: 40ch; margin: 0 auto; text-align: center; }
.pullquote p { font-weight: 500; font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem); line-height: 1.4; letter-spacing: -.015em; color: var(--green-800); margin: 0; }
.pullquote .by { margin-top: 1.4rem; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.rv-wissel { position: relative; overflow: hidden; transition: height .55s var(--ease); }
.rv-wissel .testimonial { position: absolute; top: 0; left: 0; right: 0; margin-inline: auto; opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); pointer-events: none; }
.rv-wissel .testimonial.aan { opacity: 1; transform: none; pointer-events: auto; }
.rv-wissel .testimonial.weg { opacity: 0; transform: translateY(-20px); }
@media (prefers-reduced-motion: reduce) { .rv-wissel { transition: none; } .rv-wissel .testimonial { transition: opacity .4s linear; transform: none; } }
.rv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: start; max-width: 1020px; margin: 0 auto; }
.rv-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.1rem 1.8rem 1.5rem; box-shadow: 0 1px 2px rgba(32,40,31,.04), 0 14px 32px -26px rgba(32,40,31,.3); }
.rv-card::before { content: "\201C"; position: absolute; top: .45rem; left: 1.2rem; font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--gold); opacity: .32; pointer-events: none; }
.rv-card p { margin: 0; font-size: 1.02rem; line-height: 1.75; color: var(--green-800); white-space: pre-line; max-width: none; }
.rv-card .by { margin-top: 1.15rem; padding-top: .85rem; border-top: 1px solid var(--line); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.testimonial { max-width: 56ch; margin: 0 auto; text-align: center; }
.testimonial p { white-space: pre-line; }
.testimonial p { font-size: clamp(1.15rem, 1rem + .55vw, 1.45rem); line-height: 1.55; font-weight: 500; color: var(--green-800); margin: 0; }
.testimonial .by { margin-top: 1.1rem; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.team-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.team-v2 .media { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); margin-bottom: 1.1rem; }
.team-v2 h3 { margin: 0 0 .1em; }
.team-v2 p { margin: 0; color: var(--muted); font-size: .95rem; }

.team-plain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.team-plain .lid { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem 1.6rem 2rem; text-align: center; }
.team-plain .mono {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 1.15rem; position: relative;
  display: grid; place-items: center; background: var(--paper-2); border: 1px solid var(--line-2);
  font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: .05em; color: var(--green-800);
}
.team-plain .mono::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid var(--gold); opacity: .45; }
.team-plain h3 { margin: 0 0 .3em; }
.team-plain .rol { margin: 0; color: var(--gold-deep); font-size: .78rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.team-plain .bio { margin: .65rem 0 0; color: var(--muted); font-size: .95rem; line-height: 1.65; }
@media (max-width: 760px) { .team-plain { grid-template-columns: 1fr; max-width: 430px; margin-inline: auto; gap: 1.1rem; } .team-plain .lid { padding: 1.7rem 1.4rem 1.6rem; } }
.team-fotos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.team-fotos .lid-foto { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0; overflow: hidden; text-align: center; }
.team-fotos .lid-foto img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.team-fotos .lid-tekst { padding: 1.5rem 1.4rem 1.8rem; }
.team-fotos h3 { margin: 0 0 .3em; }
.team-fotos .rol { margin: 0; color: var(--gold-deep); font-size: .78rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.team-fotos .bio { margin: .65rem 0 0; color: var(--muted); font-size: .95rem; line-height: 1.65; }
@media (max-width: 760px) { .team-fotos { grid-template-columns: 1fr; max-width: 430px; margin-inline: auto; gap: 1.1rem; } }

.cta-light { text-align: center; }
.cta-light .actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 1.9rem; }

@media (max-width: 940px) {
  .hero-v2 .grid { grid-template-columns: 1fr; }
  .hero-v2 .media { max-width: 480px; margin-inline: auto; width: 100%; aspect-ratio: 4/3.4; }
  .factbar .row, .timeline .row, .team-v2 { grid-template-columns: 1fr; }
  .factbar .fact { border-right: none; border-bottom: 1px solid var(--line); }
  .factbar .fact:last-child { border-bottom: none; }
  .timeline::before { display: none; }
  .timeline .row { gap: 2rem; }
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 480px; margin-inline: auto; width: 100%; }
  .feature, .feature.reverse { grid-template-columns: 1fr; }
  .feature.reverse .feature-media { order: 0; }
  .process { grid-template-columns: 1fr; gap: 1.4rem; }
  .team-grid, .price-grid, .grid-3, .notice-grid { grid-template-columns: repeat(2,1fr); }
  .cta-band .inner { grid-template-columns: 1fr; gap: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .service-grid, .grid-2, .grid-3, .quote-grid, .team-grid, .price-grid, .notice-grid { grid-template-columns: 1fr; }
  .service:nth-child(odd) { border-right: none; }
  .stat-row { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { * { animation-duration:.001ms!important; transition-duration:.001ms!important; scroll-behavior:auto!important; } }

.hero-cover { position: relative; isolation: isolate; overflow: hidden; }
.hero-cover-media { position: absolute; inset: 0; z-index: -2; display: block; }
.hero-cover-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; }
.hero-cover::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 85% at 50% 44%, rgba(251,250,247,.58), rgba(251,250,247,0) 62%),
    linear-gradient(180deg, rgba(251,250,247,.22) 0%, rgba(251,250,247,.30) 45%, rgba(251,250,247,.94) 100%);
}
.hero-cover-inner {
  position: relative; text-align: center; display: flex; flex-direction: column; align-items: center;
  min-height: clamp(640px, 88vh, 920px); justify-content: flex-end;
  padding-top: clamp(12rem, 26vh, 19rem); padding-bottom: clamp(5rem, 3.5rem + 4.5vw, 8rem);
}
.hero-cover .eyebrow { justify-content: center; color: var(--gold-deep); margin-bottom: 1.5rem; }
.hero-cover h1 { margin: 0 0 .5em; color: var(--green-900); font-size: clamp(2.7rem, 1.8rem + 4vw, 4.8rem); }
.hero-cover .lead { max-width: 48ch; margin: 0 auto; color: var(--green-800); }
.hero-cover .hero-cta { justify-content: center; margin-top: 2.8rem; }
.hero-cover .assure {
  margin: 1.9rem auto 0; max-width: 48ch; font-size: .92rem; color: var(--green-600);
  display: flex; align-items: flex-start; gap: .55rem; text-align: left;
}
.hero-cover .assure svg { width: 1.15em; height: 1.15em; color: var(--gold-deep); flex: none; margin-top: .2rem; }
@media (max-width: 640px) {
  .hero-cover-inner { min-height: 80vh; }
  .hero-cover .assure { text-align: center; }
}

.nav-item-dd { position: relative; }
.nav-dd-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  font: inherit; font-weight: 500; font-size: .94rem; color: var(--green-800);
  background: transparent; border: 0; cursor: pointer;
  padding: .5rem .4rem .58rem; white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav-dd-btn:hover { color: var(--green-900); }
.nav-dd-btn svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.nav-item-dd.open .nav-dd-btn svg, .nav-item-dd:hover .nav-dd-btn svg { transform: rotate(180deg); }
.nav-dd-btn.is-current { color: var(--green-900); font-weight: 600; position: relative; }
.nav-dd-btn.is-current::after {
  content: ""; position: absolute; left: .4rem; right: .4rem; bottom: .2rem;
  height: 2px; border-radius: 2px; background: var(--green-600);
}
.nav-links.has-indicator .nav-dd-btn.is-current::after { display: none; }
.nav-dd {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 320px; margin: 0; padding: .5rem; list-style: none;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 28px 60px -28px rgba(32,40,31,.45);
  opacity: 0; visibility: hidden; z-index: 60;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav-dd::before {
  content: ""; position: absolute; top: -6px; left: 50%;
  width: 11px; height: 11px; transform: translateX(-50%) rotate(45deg);
  background: var(--white); border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.nav-dd::after { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-item-dd:hover .nav-dd, .nav-item-dd:focus-within .nav-dd, .nav-item-dd.open .nav-dd {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dd li { margin: 0; position: relative; }
.nav-dd a {
  display: flex; flex-direction: column; gap: .12rem;
  padding: .72rem .9rem !important; border-radius: 13px; text-decoration: none;
  white-space: normal !important; line-height: 1.4;
  transition: background .14s var(--ease);
}
.nav-dd a b { font-weight: 600; color: var(--green-800); font-size: .95rem; }
.nav-dd a span { font-size: .8rem; color: var(--muted); font-weight: 400; }
.nav-dd a:hover { background: var(--paper-2); }
.nav-dd a:hover b { color: var(--green-900); }
.nav-dd a[aria-current="page"] { background: var(--info-bg, #EDF0EA); }
.nav-dd a[aria-current="page"] b { color: var(--green-900); }

.a11y-portal {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--paper) !important; text-decoration: none; font-weight: 600;
  background: var(--green); border: 1px solid rgba(236,239,231,.3);
  border-radius: 999px; padding: .42rem 1.05rem; white-space: nowrap;
  box-shadow: 0 4px 14px -6px rgba(0,0,0,.45);
  transition: transform .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease);
}
.a11y-portal:hover { background: var(--green-600); border-color: rgba(236,239,231,.5); color: var(--paper) !important; transform: translateY(-1px); }
.a11y-portal:active { transform: translateY(0) scale(.97); }
.a11y-portal svg { width: 15px; height: 15px; flex: none; }

.foot-contact--card {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem; box-shadow: 0 10px 30px -22px rgba(32,40,31,.35);
}
.foot-contact--card h4 { margin-top: 0; }
.foot-contact--card .foot-tel {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 1.05rem; font-weight: 600; letter-spacing: .01em;
  color: var(--green-800) !important; text-decoration: none; margin: .1rem 0 .3rem;
}
.foot-contact--card .foot-tel svg { width: 1em; height: 1em; color: var(--gold-deep); }
.foot-contact--card .foot-tel:hover { color: var(--green-900) !important; }
.foot-contact--card .foot-gsm {
  display: flex; align-items: center; gap: .5rem; width: fit-content;
  font-size: 1.05rem; font-weight: 600; letter-spacing: .01em;
  color: var(--green-800) !important; text-decoration: none; margin: 0 0 .55rem;
}
.foot-contact--card .foot-gsm svg { width: 1em; height: 1em; color: var(--gold-deep); }
.foot-contact--card .foot-gsm:hover { color: var(--green-900) !important; }
.foot-contact--card .foot-247 {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .76rem; font-weight: 600; letter-spacing: .01em; line-height: 1.4;
  color: var(--ok, #3E6B4A); background: var(--ok-bg, #EAF2EC);
  border-radius: 12px; padding: .5rem .85rem; margin-top: .6rem;
}
.foot-contact--card .foot-247::before {
  content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok, #3E6B4A); box-shadow: 0 0 0 3px rgba(62,107,74,.16);
}

.shop-person {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  background: #EEF1EC; border: 1px solid var(--line);
  border-radius: 18px; padding: 1.2rem 1.5rem; margin-bottom: 2.4rem;
  box-shadow: 0 1px 2px rgba(32,40,31,.03), 0 12px 28px -22px rgba(32,40,31,.32);
}
.shop-person .portrait {
  width: 60px; height: 60px; border-radius: 14px; object-fit: cover;
  border: 1px solid rgba(0,0,0,.06); background: var(--paper-2); flex: none;
  box-shadow: 0 3px 10px rgba(32,40,31,.16);
}
.shop-person .portrait.ph { display: grid; place-items: center; color: var(--muted); font-size: .7rem; }
.shop-person h2 { margin: 0; font-size: 1.2rem; color: var(--green-800); letter-spacing: -.01em; }
.shop-person p { margin: .12rem 0 0; color: var(--green-600); font-size: .92rem; }
.shop-person .change { margin-left: auto; flex: none; }

.shop-cats { display: flex; gap: .6rem; flex-wrap: wrap; margin: 0 0 1.8rem; }
.shop-cats button {
  font: inherit; font-weight: 600; font-size: .92rem; cursor: pointer;
  background: var(--white); color: var(--green-800);
  border: 1.5px solid var(--line-2); border-radius: 999px; padding: .5rem 1.15rem; min-height: 44px;
  transition: all .15s var(--ease);
}
.shop-cats button:hover { border-color: var(--green); }
.shop-cats button.active { background: var(--green); border-color: var(--green); color: var(--paper); }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 940px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .prod-grid { grid-template-columns: 1fr; } }
.prod-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.prod-card:hover { border-color: var(--gold); box-shadow: 0 16px 38px -24px rgba(32,40,31,.3); }
.prod-card .prod-img { position: relative; aspect-ratio: 1/1; background: var(--paper-2); display: grid; place-items: center; overflow: hidden; }
.prod-card .prod-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-card .prod-img svg { width: 54px; height: 54px; color: var(--sage); opacity: .8; }
.prod-card .bd { padding: 1.2rem 1.3rem 1.3rem; flex: 1; display: flex; flex-direction: column; gap: .35rem; }
.prod-card h3 { margin: 0; }
.prod-card .desc { margin: 0; color: var(--muted); font-size: .92rem; flex: 1; }
.prod-card .price { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--green-800); }
.prod-card .row { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-top: .6rem; }

.qty-step { display: inline-flex; align-items: center; gap: .15rem; background: var(--paper-2); border: 1px solid var(--line-2); border-radius: 999px; padding: 3px; }
.qty-step button {
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--white); color: var(--green-800); font-size: 1.15rem; font-weight: 600; line-height: 1;
  display: grid; place-items: center; box-shadow: 0 1px 2px rgba(32,40,31,.12);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.qty-step button:hover { background: var(--green); color: var(--paper); }
.qty-step button:disabled { opacity: .35; cursor: default; box-shadow: none; }
.qty-step .qty { min-width: 2em; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }

.cart-bar {
  position: sticky; bottom: 1rem; z-index: 40;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: var(--green-900); color: var(--paper);
  border-radius: 18px; padding: 1rem 1.4rem; margin-top: 2.4rem;
  box-shadow: 0 24px 54px -18px rgba(32,40,31,.55);
}
.cart-bar .sum { font-size: 1rem; }
.cart-bar .sum b { font-family: var(--font-display); font-size: 1.25rem; }
.cart-bar .btn { margin-left: auto; }
@media (max-width: 560px) { .cart-bar { flex-direction: column; align-items: stretch; text-align: center; } .cart-bar .btn { margin-left: 0; } }

.gift-cta {
  display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap;
  background: linear-gradient(180deg, var(--white), #F5F8F3);
  border: 1.5px solid var(--green); border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
}
.gift-cta .ico {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: var(--paper); display: grid; place-items: center;
}
.gift-cta .ico svg { width: 24px; height: 24px; }
.gift-cta .bd { flex: 1; min-width: 230px; }
.gift-cta h2, .gift-cta h3 { margin: 0 0 .15em; font-size: 1.2rem; }
.gift-cta p { margin: 0; color: var(--muted); font-size: .95rem; max-width: 52ch; }
.gift-cta .btn { flex: none; }

.order-list { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.order-list .ol-row { display: flex; justify-content: space-between; gap: 1rem; padding: .75rem 1.1rem; border-bottom: 1px solid var(--line); background: var(--white); font-size: .95rem; }
.order-list .ol-row:last-child { border-bottom: 0; }
.order-list .ol-row.total { background: var(--paper-2); font-weight: 700; }

.hero-slogan {
  font-family: "Great Vibes", "Snell Roundhand", "Segoe Script", cursive;
  font-weight: 400; letter-spacing: .01em;
  font-size: clamp(2.2rem, 1.7rem + 2.4vw, 3.6rem);
  line-height: 1.25; color: var(--green-800);
  margin: 0 auto; max-width: none;
  text-shadow: 0 2px 30px rgba(251,250,247,.9), 0 0 2px rgba(251,250,247,.55);
}

.hero-div { margin: 1.5rem 0 .4rem; opacity: .8; }
.hero-div::before, .hero-div::after { width: clamp(42px, 6vw, 64px); }

.hero-cover .container { width: min(100% - 32px, 1280px); }
.hero-cover h1.hero-brand {
  position: absolute; top: clamp(1.6rem, 3vw, 2.6rem); right: 0;
  font-family: var(--font-body); font-size: .72rem; line-height: 1.4;
  font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--green-600); margin: 0; opacity: .75; text-align: right;
}
.hero-cover h1.hero-brand::after {
  content: ""; display: block; width: 34px; height: 1px;
  background: var(--gold); margin: .5rem 0 0 auto; opacity: .8;
}

.hero-tag {
  margin: 2.4rem 0 0; font-size: .68rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .26em; color: var(--green-600); opacity: .75;
}
@media (max-width: 640px) {
  .hero-cover h1.hero-brand { position: static; margin-bottom: 1.2rem; letter-spacing: .22em; text-align: center; }
  .hero-cover h1.hero-brand::after { margin: .5rem auto 0; }
  .hero-tag { letter-spacing: .16em; }
}

.service-cards { gap: 1.5rem; }
.service-cards .card {
  padding: 2rem 1.9rem; border-radius: 20px;
  box-shadow: 0 1px 2px rgba(32,40,31,.03), 0 14px 34px -26px rgba(32,40,31,.28);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.service-cards .card:hover {
  transform: translateY(-5px); border-color: var(--line-2);
  box-shadow: 0 26px 52px -30px rgba(32,40,31,.42);
}
.service-cards .card .ico {
  width: 56px; height: 56px; margin-bottom: 1.3rem;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--green); color: var(--paper);
  box-shadow: 0 8px 18px -8px rgba(60,75,58,.55);
}
.service-cards .card .ico svg { width: 26px; height: 26px; }
.service-cards .card h3 { margin-bottom: .35em; font-size: 1.18rem; }
.service-cards .card p { color: var(--muted); margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { .service-cards .card { transition: none; } }

.svc-group + .svc-group { margin-top: clamp(2.6rem, 2rem + 2.4vw, 4.4rem); }
.svc-group-head { max-width: 640px; margin: 0 0 1.7rem; }
.svc-group-title { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.9rem); margin: 0 0 .3em; color: var(--green-800); }
.svc-group-intro { margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.6; }

.portal-fab {
  position: fixed; right: clamp(1rem, 2.5vw, 1.8rem); bottom: clamp(1rem, 2.5vw, 1.8rem); z-index: 95;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--green-900); color: var(--paper); text-decoration: none;
  font-weight: 600; font-size: .92rem; padding: .8rem 1.3rem; border-radius: 999px;
  box-shadow: 0 12px 32px -10px rgba(32,40,31,.5);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(16px) scale(.55);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .25s ease, visibility 0s linear .5s;
}
.portal-fab svg { width: 17px; height: 17px; flex: none; }
.portal-fab.show {
  opacity: 1; visibility: visible; pointer-events: auto; transform: none;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
}
.portal-fab:hover { background: var(--green); color: var(--paper); transform: translateY(-2px); }
.portal-fab:active { transform: translateY(0) scale(.97); }

.portal-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; opacity: 0;
}
.portal-fab.show::after { animation: fab-ping .9s ease-out .25s 1; }
@keyframes fab-ping {
  0%   { opacity: 1; box-shadow: 0 0 0 0 rgba(60,75,58,.35); }
  100% { opacity: 0; box-shadow: 0 0 0 20px rgba(60,75,58,0); }
}
@media (max-width: 640px) { .portal-fab { font-size: .88rem; padding: .72rem 1.15rem; } }
@media (prefers-reduced-motion: reduce) {
  .portal-fab { transform: none; transition: opacity .2s; }
  .portal-fab.show::after { animation: none; }
}

@media (max-width: 760px) {
  .textsize { display: none; }
  .a11y-bar .container { padding: 10px 0 36px; }
}

html, body { overflow-x: hidden; overflow-x: clip; }
body { overflow-wrap: break-word; }

html[data-textsize="large"] .hscroll-track { height: 560px; }
html[data-textsize="xlarge"] .hscroll-track { height: 640px; }
html[data-textsize] .hstep { flex-basis: clamp(320px, 34vw, 440px); }
html[data-textsize] .hstep p { max-width: none; }

@media (max-width: 1290px) {
  html[data-textsize="large"] .nav-links, html[data-textsize="large"] .nav-call { display: none; }
  html[data-textsize="large"] .nav-toggle { display: inline-flex; }
  html[data-textsize="large"] .site-header, html[data-textsize="large"] .nav { position: relative; }
  html[data-textsize="large"] .site-header.open .nav-links {
    display: flex; flex: initial; flex-direction: column; align-items: stretch; justify-content: flex-start;
    position: absolute; left: 0; right: 0; top: 100%; margin: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: .8rem 1.3rem 1.2rem; gap: .15rem;
  }
  html[data-textsize="large"] .site-header.open .nav-links a { padding: .9rem 1rem; font-size: 1.06rem; }
  html[data-textsize="large"] .site-header.open .nav-call { display: inline-flex; margin: .8rem 1.3rem 0; }
  html[data-textsize="large"] .nav-item-dd { position: static; }
  html[data-textsize="large"] .nav-dd-btn { display: flex; width: 100%; padding: .9rem 1rem .3rem; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); cursor: default; }
  html[data-textsize="large"] .nav-dd-btn svg { display: none; }
  html[data-textsize="large"] .nav-dd-btn.is-current::after { display: none; }
  html[data-textsize="large"] .nav-dd { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; padding: 0 0 .3rem; border: 0; box-shadow: none; background: transparent; }
  html[data-textsize="large"] .nav-dd a { padding: .7rem 1rem .7rem 1.6rem !important; }
}
@media (max-width: 1440px) {
  html[data-textsize="xlarge"] .nav-links, html[data-textsize="xlarge"] .nav-call { display: none; }
  html[data-textsize="xlarge"] .nav-toggle { display: inline-flex; }
  html[data-textsize="xlarge"] .site-header, html[data-textsize="xlarge"] .nav { position: relative; }
  html[data-textsize="xlarge"] .site-header.open .nav-links {
    display: flex; flex: initial; flex-direction: column; align-items: stretch; justify-content: flex-start;
    position: absolute; left: 0; right: 0; top: 100%; margin: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: .8rem 1.3rem 1.2rem; gap: .15rem;
  }
  html[data-textsize="xlarge"] .site-header.open .nav-links a { padding: .9rem 1rem; font-size: 1.06rem; }
  html[data-textsize="xlarge"] .site-header.open .nav-call { display: inline-flex; margin: .8rem 1.3rem 0; }
  html[data-textsize="xlarge"] .nav-item-dd { position: static; }
  html[data-textsize="xlarge"] .nav-dd-btn { display: flex; width: 100%; padding: .9rem 1rem .3rem; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); cursor: default; }
  html[data-textsize="xlarge"] .nav-dd-btn svg { display: none; }
  html[data-textsize="xlarge"] .nav-dd-btn.is-current::after { display: none; }
  html[data-textsize="xlarge"] .nav-dd { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; padding: 0 0 .3rem; border: 0; box-shadow: none; background: transparent; }
  html[data-textsize="xlarge"] .nav-dd a { padding: .7rem 1rem .7rem 1.6rem !important; }
}

@media (max-width: 640px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.42rem; }
  h3 { font-size: 1.06rem; }
  .lead { font-size: .99rem; }
  .eyebrow { font-size: .7rem; margin-bottom: .85rem; }
  .brand-logo { height: 54px; }

  .section { padding: 3.2rem 0; }
  .section--tight { padding: 2.2rem 0; }
  .page-head { padding: 2.3rem 0 1.7rem; }
  main > .section + .section, main > .section + div > .section:first-child { border-top: 1px solid var(--line); }

  .factbar { background: var(--paper-2); border-block: 1px solid var(--line); }
  .factbar .fact { padding: 1.35rem 1rem; border-right: none; border-bottom: 1px solid var(--line); }
  .factbar .fact:last-child { border-bottom: none; }
  .factbar .fact b { font-size: .98rem; }
  .factbar .fact span { font-size: .86rem; }

  .pullquote::before { content: ""; display: block; width: 30px; height: 1px; background: var(--gold); margin: 0 auto 1.4rem; }
  .pullquote p { font-size: 1.32rem; line-height: 1.5; }
  .pullquote .by { margin-top: 1.1rem; font-size: .72rem; }

  .testimonial p { font-size: 1.12rem; }
  .stat .num { font-size: 1.7rem; }
  .timeline .ring, .steps .ring { width: 56px; height: 56px; font-size: 1.25rem; }

  .hero-cover-inner { min-height: 66vh; padding-top: 6rem; padding-bottom: 3rem; }
  .hero-slogan { font-size: 1.72rem; }
  .hero-div { margin: 1rem 0 .2rem; }
  .hero-cta { margin-top: 1.8rem; }

  .btn-lg { font-size: .95rem; padding: .8rem 1.3rem; min-height: 48px; }
  .infobox { padding: 1.25rem 1.1rem; }
  .gift-cta { flex-direction: column; align-items: stretch; text-align: left; padding: 1.2rem; gap: .9rem; }
  .gift-cta .ico { width: 44px; height: 44px; }
  .gift-cta .btn { width: 100%; }

  .site-footer .container { padding-top: 2.2rem; }
  .foot-top { gap: 1.8rem 1.6rem; }
  .foot-contact--card { padding: 1.1rem 1.2rem; }
}

@keyframes menu-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes menu-item-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (max-width: 1140px) {
  .nav-links, .nav-call { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; background: transparent; color: var(--green-800); border: 1px solid var(--line-2); font-size: .95rem; }
  .nav-toggle svg { width: 20px; height: 20px; }
  .site-header, .nav { position: relative; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%; margin: 0;
    background: var(--paper); border: 1px solid var(--line); border-top: 0;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 30px 50px -32px rgba(32,40,31,.45);
    padding: .7rem .85rem 1rem; gap: .1rem;
    max-height: calc(100dvh - 130px); overflow-y: auto; scrollbar-width: thin;
    animation: menu-in .26s var(--ease);
  }
  .site-header.open .nav-links > li { animation: menu-item-in .32s var(--ease) backwards; }
  .site-header.open .nav-links > li:nth-child(2) { animation-delay: .03s; }
  .site-header.open .nav-links > li:nth-child(3) { animation-delay: .06s; }
  .site-header.open .nav-links > li:nth-child(4) { animation-delay: .09s; }
  .site-header.open .nav-links > li:nth-child(5) { animation-delay: .12s; }
  .site-header.open .nav-links > li:nth-child(6) { animation-delay: .15s; }
  .site-header.open .nav-links > li > a {
    display: flex; align-items: center; padding: .85rem .95rem;
    font-size: 1.02rem; font-weight: 500; color: var(--green-800); border-radius: 13px;
  }
  .site-header.open .nav-links > li > a:hover, .site-header.open .nav-links > li > a:active { background: var(--paper-2); }
  .site-header.open .nav-links > li > a[aria-current="page"] { background: var(--info-bg, #EDF0EA); font-weight: 600; color: var(--green-900); }
  .site-header.open .nav-links > li > a[aria-current="page"]::after { display: none; }
  .nav-item-dd { position: static; }
  .nav-dd-btn {
    display: flex; width: 100%; align-items: center; justify-content: space-between;
    padding: .85rem .95rem; font-size: 1.02rem; font-weight: 500; color: var(--green-800); border-radius: 13px;
  }
  .nav-dd-btn:hover { background: var(--paper-2); }
  .nav-item-dd.open .nav-dd-btn { color: var(--green-900); font-weight: 600; }
  .nav-dd-btn svg { display: block; width: 15px; height: 15px; color: var(--gold-deep); }
  .nav-dd-btn.is-current::after { display: none; }
  .nav-dd::before, .nav-dd::after { display: none; }
  .nav-dd {
    position: static; min-width: 0; box-shadow: none; border: 0;
    background: transparent; border-radius: 0;
    border-left: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
    max-height: 0; opacity: 0; visibility: hidden; overflow: hidden;
    margin: 0 0 0 1.5rem; padding: 0 0 0 .55rem;
    transition: max-height .34s var(--ease), opacity .26s var(--ease), visibility .3s, margin .34s var(--ease);
  }
  .nav-dd, .nav-item-dd:hover .nav-dd, .nav-item-dd:focus-within .nav-dd, .nav-item-dd.open .nav-dd { transform: none; }
  .nav-item-dd.open .nav-dd { max-height: 420px; opacity: 1; visibility: visible; margin: 0 0 .6rem 1.5rem; }
  .nav-dd li { margin: 0 0 .1rem; }
  .nav-dd a { padding: .58rem .7rem !important; border-radius: 11px; }
  .nav-dd a b { font-size: .97rem; }
  .nav-dd a span { font-size: .78rem; line-height: 1.35; }
  .nav-dd a:hover, .nav-dd a:active { background: var(--paper-2); }
  @media (prefers-reduced-motion: reduce) {
    .site-header.open .nav-links, .site-header.open .nav-links > li { animation: none; }
    .nav-dd { transition: opacity .2s linear, visibility .2s; }
  }
}

.vale-credit { display: inline-flex; align-items: center; gap: .5rem; color: var(--muted); text-decoration: none; font-size: .84rem; transition: color .25s var(--ease); }
.vale-credit b { font-weight: 600; letter-spacing: .015em; color: var(--green-800); transition: color .25s var(--ease); }
.vale-credit .vale-merk { width: 24px; height: 25px; flex: none; background-color: var(--green-600); opacity: .9; -webkit-mask: url("../img/vale-merk.png") center / contain no-repeat; mask: url("../img/vale-merk.png") center / contain no-repeat; transition: background-color .25s var(--ease), opacity .25s var(--ease), transform .45s var(--ease); }
.vale-credit:hover { color: var(--green-800); }
.vale-credit:hover .vale-merk { background-color: var(--green-900); opacity: 1; transform: translateY(-2px); }

