/* ==========================================================================
   Photobooth Den Bosch — design system
   Vertaald uit het Claude Design-ontwerp "Photobooth Den Bosch redesign".
   Donker, elegant thema met goud-accent. Display: Cormorant Garamond,
   tekst: Hanken Grotesk.
   ========================================================================== */

:root {
  --bg: #0a0a0b;
  --bg2: #111114;
  --surface: #171719;
  --line: rgba(255, 255, 255, .10);
  --line2: rgba(255, 255, 255, .18);
  --text: #f5f3ee;
  --muted: #a6a09a;
  --accent: #d8b15a;
  --accent2: #ecd28a;
  --glow: rgba(216, 177, 90, .30);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --nav-h: 92px;
}

/* --- reset / base --- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #0a0a0b; }

img { max-width: 100%; height: auto; }

/* hidden-attribuut moet altijd winnen (ook van componenten met display:flex/grid). */
[hidden] { display: none !important; }

/* ==========================================================================
   Toegankelijkheid (WCAG)
   ========================================================================== */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -120px; left: 12px; z-index: 200;
  background: var(--accent); color: #0a0a0b;
  padding: 12px 18px; border-radius: 0 0 12px 12px;
  font: 700 14px/1 var(--sans); text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }
/* Zichtbare toetsenbordfocus op alle interactieve elementen (fallback waar geen
   component-specifieke focus-stijl bestaat). */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 2px;
}

/* --- generieke helpers --- */
.wrap { max-width: 1100px; margin: 0 auto; }
.wrap-wide { max-width: 1240px; margin: 0 auto; }

.eyebrow {
  font: 600 12.5px/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}

.link-underline {
  color: var(--accent2);
  text-decoration: none;
  font: 600 15px/1 var(--sans);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}

/* --- knoppen --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0a0a0b;
  text-decoration: none;
  font: 700 15px/1 var(--sans);
  padding: 16px 28px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 10px 30px -12px var(--glow);
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -14px var(--glow); }

.btn--sm {
  font-size: 14.5px;
  padding: 12px 20px;
  box-shadow: 0 6px 22px -8px var(--glow);
}

/* ==========================================================================
   Navigatie
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-nav__logo { display: flex; align-items: center; text-decoration: none; flex: none; }
.site-nav__logo img { height: 44px; width: auto; display: block; }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  flex-wrap: wrap;
  justify-content: center;
  font: 600 14.5px/1 var(--sans);
}
.site-nav__links a { color: var(--text); text-decoration: none; opacity: .85; transition: opacity .2s ease, color .2s ease; }
.site-nav__links a:hover { opacity: 1; }
.site-nav__links a.is-active { color: var(--accent); opacity: 1; }

.site-nav__actions { display: flex; align-items: center; gap: 14px; flex: none; }
.site-nav__phone {
  color: var(--text);
  text-decoration: none;
  font: 600 14.5px/1 var(--sans);
  opacity: .85;
  white-space: nowrap;
}
.site-nav__phone:hover { opacity: 1; }

/* --- Mobiel off-canvas menu --- */
.nav-drawer { display: contents; }                 /* desktop: wrapper doet niets; inhoud staat in de balk */
.site-nav__panel { display: contents; }            /* desktop: links + acties gewoon in de balk */
.site-nav__toggle {
  display: none;                                    /* desktop: verborgen */
  position: relative; z-index: 90;
  width: 44px; height: 44px; flex: none; padding: 0;
  align-items: center; justify-content: center;
  border: 1px solid var(--line2); border-radius: 12px;
  background: var(--surface); color: var(--text); cursor: pointer;
}
.site-nav__toggle:focus-visible { outline: 2px solid var(--accent2); outline-offset: 2px; }
.site-nav__bars { position: relative; display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: background .2s ease; }
.site-nav__bars::before, .site-nav__bars::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s ease; }
.site-nav__bars::before { top: -6px; }
.site-nav__bars::after { top: 6px; }
.site-nav.is-open .site-nav__bars { background: transparent; }
.site-nav.is-open .site-nav__bars::before { transform: translateY(6px) rotate(45deg); }
.site-nav.is-open .site-nav__bars::after { transform: translateY(-6px) rotate(-45deg); }
.site-nav__backdrop { display: none; }
body.nav-open { overflow: hidden; }

@media (max-width: 880px) {
  .site-nav__toggle { display: inline-flex; }
  /* Fixed clip-wrapper: vult exact de viewport en clipt het off-screen paneel
     (zonder overflow op html/body → sticky nav blijft werken). */
  .nav-drawer { display: block; position: fixed; inset: 0; z-index: 65; overflow: hidden; pointer-events: none; }
  .site-nav__panel {
    position: absolute; top: 0; right: 0; z-index: 2;
    height: 100%; width: min(84vw, 320px);
    display: flex; flex-direction: column; gap: 6px;
    padding: clamp(76px, 13vh, 104px) 26px 32px;
    background: var(--bg2);
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px -30px rgba(0, 0, 0, .9);
    transform: translateX(100%);
    visibility: hidden;                       /* dicht: links niet focusbaar / niet voor screenreaders */
    transition: transform .32s cubic-bezier(.4, 0, .2, 1), visibility 0s linear .32s;
    overflow-y: auto;
    pointer-events: auto;
  }
  .site-nav.is-open .site-nav__panel { transform: translateX(0); visibility: visible; transition: transform .32s cubic-bezier(.4, 0, .2, 1); }
  .site-nav__links { flex-direction: column; align-items: stretch; gap: 0; flex-wrap: nowrap; justify-content: flex-start; font-size: 17px; }
  .site-nav__links a { opacity: 1; padding: 15px 2px; border-bottom: 1px solid var(--line); }
  .site-nav__links a.is-active { color: var(--accent); }
  .site-nav__actions { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 24px; }
  .site-nav__phone { font-size: 16px; padding: 4px 2px; opacity: 1; }
  .site-nav__actions .btn { justify-content: center; font-size: 15.5px; padding: 14px 20px; }
  .site-nav__backdrop {
    display: block; position: absolute; inset: 0; z-index: 1;
    background: rgba(8, 8, 10, .55);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
    pointer-events: auto;
  }
  .site-nav.is-open .site-nav__backdrop { opacity: 1; visibility: visible; }
}

/* ==========================================================================
   Pagina-hero
   ========================================================================== */
.page-hero {
  position: relative;
  overflow-x: clip;
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 64px) clamp(32px, 4vw, 48px);
  text-align: center;
}
.page-hero__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.page-hero__inner { max-width: 820px; margin: 0 auto; position: relative; }
.page-hero .eyebrow { letter-spacing: .18em; margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.03;
  letter-spacing: -.01em;
  margin: 0 0 20px;
}
.page-hero h1 em { font-style: italic; color: var(--accent2); }

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line2);
  border-radius: 100px;
  padding: 12px 22px;
}
.rating-pill__stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; }
.rating-pill__score { font: 700 15px/1 var(--sans); }
.rating-pill__note { color: var(--muted); font: 400 14px/1 var(--sans); }

/* ==========================================================================
   Trust-stats
   ========================================================================== */
.stats { padding: clamp(20px, 3vw, 40px) clamp(18px, 5vw, 64px) clamp(32px, 4vw, 48px); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.stat {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: var(--surface);
  text-align: center;
}
.stat__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: var(--accent2);
}
.stat__label { font: 500 13.5px/1.4 var(--sans); color: var(--muted); margin-top: 8px; }

/* ==========================================================================
   Reviews-grid
   ========================================================================== */
.reviews { padding: clamp(24px, 3vw, 40px) clamp(18px, 5vw, 64px) clamp(40px, 5vw, 64px); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 18px;
}
.review {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 30px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review__stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.review__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  color: var(--text);
}
.review__meta { margin-top: auto; }
.review__name { font: 700 15px/1.3 var(--sans); }
.review__event { font: 400 13.5px/1.3 var(--sans); color: var(--muted); }

.reviews__more { margin: 24px auto 0; text-align: center; }

/* ==========================================================================
   Over / waarom kiezen
   ========================================================================== */
.about {
  padding: clamp(40px, 5vw, 72px) clamp(18px, 5vw, 64px);
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.about__media { position: relative; }
.about__media::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 24px;
  background: linear-gradient(140deg, var(--glow), transparent 55%);
  filter: blur(8px);
}
.about__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line2);
  box-shadow: 0 36px 80px -40px rgba(0, 0, 0, .8);
}
.about__body .eyebrow { margin-bottom: 14px; }
.about__body h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.about__body p { font: 400 16px/1.65 var(--sans); color: var(--muted); margin: 0 0 16px; }
.about__body p:last-of-type { margin-bottom: 24px; }

/* ==========================================================================
   CTA — review schrijven
   ========================================================================== */
.cta { padding: clamp(56px, 7vw, 100px) clamp(18px, 5vw, 64px); }
.cta__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.cta__inner h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.06;
  margin: 0 0 14px;
}
.cta__inner p {
  font: 400 16px/1.6 var(--sans);
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 28px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: clamp(56px, 7vw, 100px) clamp(18px, 5vw, 64px) 40px;
  font-family: var(--sans);
}
.site-footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.site-footer__brand { max-width: 340px; }
.site-footer__brand img { height: 54px; width: auto; display: block; margin-bottom: 22px; }
.site-footer__brand p { font: 400 15px/1.65 var(--sans); color: var(--muted); margin: 0; }
.site-footer__h {
  font: 700 13px/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 18px;
}
.site-footer__contact { display: grid; gap: 14px; }
.site-footer__contact a { color: var(--text); text-decoration: none; font: 500 15px/1.3 var(--sans); }
.site-footer__contact a:hover { color: var(--accent2); }
.site-footer__contact span { color: var(--muted); font: 400 14px/1.5 var(--sans); }
.site-footer__links { display: grid; gap: 12px; }
.site-footer__links a { color: var(--muted); text-decoration: none; font: 500 15px/1 var(--sans); }
.site-footer__links a:hover { color: var(--text); }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding-top: 26px;
  font: 400 12.5px/1.5 var(--sans);
  color: var(--muted);
}
.site-footer__credit-line { text-align: center; margin: 18px 0 0; font: 400 12.5px/1.5 var(--sans); }
.site-footer__credit { color: var(--muted); text-decoration: none; }
.site-footer__credit:hover { color: var(--accent2); text-decoration: underline; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
[data-reveal].is-pre {
  opacity: 0;
  transform: translateY(28px);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1),
              transform .8s cubic-bezier(.2, .7, .2, 1);
}

/* ==========================================================================
   Knop-varianten (home)
   ========================================================================== */
.btn--lg { font-size: 16px; padding: 17px 30px; box-shadow: 0 10px 34px -10px var(--glow); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--line2); box-shadow: none; }
.btn--ghost:hover { box-shadow: none; border-color: var(--text); }
.btn--block { width: 100%; justify-content: center; font-size: 16.5px; padding: 18px; border-radius: 14px; box-shadow: 0 12px 34px -12px var(--glow); }

.eyebrow--row { display: inline-flex; align-items: center; gap: 8px; }
.eyebrow--row .pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent);
  color: #0a0a0b;
  letter-spacing: .06em;
}

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero { position: relative; overflow-x: clip; padding: clamp(56px, 7vw, 104px) clamp(18px, 5vw, 64px) clamp(40px, 5vw, 72px); }
.hero__glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  animation: pbPulse 7s ease-in-out infinite;
}
.hero__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px;
  border: 1px solid var(--line2);
  border-radius: 100px;
  font: 600 12.5px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 26px;
}
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin: 0 0 24px;
}
.hero h1 em { font-style: italic; color: var(--accent2); }
.hero__lead { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.65; color: var(--muted); max-width: 520px; margin: 0 0 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(22px, 4vw, 52px); }
.hero__stat-num { font-family: var(--serif); font-weight: 700; font-size: 38px; line-height: 1; color: var(--text); }
.hero__stat-num.is-gold { color: var(--accent2); }
.hero__stat-label { font: 500 13.5px/1.3 var(--sans); color: var(--muted); margin-top: 6px; }
.hero__divider { width: 1px; background: var(--line); align-self: stretch; }

.hero__media { position: relative; }
.hero__media::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 28px;
  background: linear-gradient(140deg, var(--glow), transparent 55%);
  filter: blur(8px);
}
.hero__slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line2);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .8);
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__ss-toggle {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line2);
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: var(--text); cursor: pointer;
}
.hero__ss-toggle svg { width: 15px; height: 15px; fill: currentColor; }
.hero__chip {
  position: absolute;
  left: -14px;
  bottom: 24px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line2);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .7);
}
.hero__chip-mark { color: var(--accent); font-size: 20px; line-height: 1; flex: none; }
.hero__chip-label { font: 600 13px/1.35 var(--sans); color: var(--text); }

/* ==========================================================================
   Value-strip
   ========================================================================== */
.value-strip {
  padding: clamp(20px, 3vw, 40px) clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}
.value-strip__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.value { display: flex; gap: 14px; align-items: flex-start; }
.value__icon { flex: none; color: var(--accent); margin-top: 2px; }
.value__title { font: 700 16px/1.3 var(--sans); margin-bottom: 5px; }
.value__body { font: 400 14px/1.55 var(--sans); color: var(--muted); }

/* ==========================================================================
   Booths-koppen + booth-secties (Light Ring / Love)
   ========================================================================== */
.booths-head { padding: clamp(64px, 8vw, 120px) clamp(18px, 5vw, 64px) clamp(20px, 3vw, 40px); text-align: center; }
.booths-head .eyebrow { letter-spacing: .18em; margin-bottom: 18px; }
.booths-head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(36px, 4.6vw, 60px); line-height: 1.05; margin: 0 auto; max-width: 760px; }

.booth { padding: clamp(28px, 4vw, 56px) clamp(18px, 5vw, 64px); }
.booth--love { padding: clamp(40px, 5vw, 72px) clamp(18px, 5vw, 64px) clamp(28px, 4vw, 56px); }
.booth__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.booth__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booth__gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); }
.booth__body .eyebrow { margin-bottom: 14px; }
.booth__body h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 4vw, 52px); line-height: 1.03; margin: 0 0 18px; }
.booth__body p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 18px; }
.booth__list { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 12px; }
.booth__list li { display: flex; gap: 12px; align-items: flex-start; font: 500 15px/1.45 var(--sans); }
.booth__list li svg { color: var(--accent); flex: none; }
.booth__hint { font: 400 13px/1.4 var(--sans); color: var(--muted); margin-top: 14px; }

.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.price-card { border: 1px solid var(--line2); border-radius: 18px; padding: 20px; background: var(--surface); }
.price-card__label { font: 600 12px/1 var(--sans); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 8px; }
.price-card__amount { font-family: var(--serif); font-weight: 700; font-size: 40px; line-height: 1; color: var(--accent2); }
.price-card__note { font: 400 13px/1.4 var(--sans); color: var(--muted); margin-top: 8px; }

.love-price { display: flex; flex-wrap: wrap; gap: 18px; align-items: flex-end; }
.price-card--feature {
  border: 1px solid var(--accent);
  padding: 22px 26px;
  background: linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--accent) 12%, var(--surface)));
  box-shadow: 0 18px 50px -24px var(--glow);
}
.price-card--feature .price-card__amount { font-size: 46px; }
.price-card--feature .price-card__note { max-width: 240px; }

/* ==========================================================================
   Functies
   ========================================================================== */
.features {
  padding: clamp(64px, 8vw, 120px) clamp(18px, 5vw, 64px);
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features__head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.features__head .eyebrow { letter-spacing: .18em; margin-bottom: 16px; }
.features__head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.05; margin: 0 auto; max-width: 680px; }
.features__grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.feature { border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; background: var(--surface); transition: border-color .25s; }
.feature:hover { border-color: var(--accent); }
.feature__icon { color: var(--accent); margin-bottom: 16px; line-height: 0; }
.feature__title { font: 700 17px/1.3 var(--sans); margin-bottom: 8px; }
.feature__body { font: 400 14px/1.55 var(--sans); color: var(--muted); }

/* ==========================================================================
   Reviews (home-teaser)
   ========================================================================== */
.home-reviews { padding: clamp(64px, 8vw, 120px) clamp(18px, 5vw, 64px); }
.home-reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(36px, 4vw, 52px);
}
.home-reviews__head .eyebrow { letter-spacing: .18em; margin-bottom: 16px; }
.home-reviews__head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.05; margin: 0; max-width: 560px; }
.home-reviews__rating { font: 500 15px/1.4 var(--sans); color: var(--muted); }
.home-reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.home-reviews .review { padding: 30px 28px; }
.home-reviews .review__quote { font-size: 21px; }

/* ==========================================================================
   Boeken — formulier + configurator + samenvatting
   ========================================================================== */
.booking { padding: clamp(64px, 8vw, 120px) clamp(18px, 5vw, 64px); background: var(--bg2); border-top: 1px solid var(--line); }
.booking__inner { max-width: 1180px; margin: 0 auto; }
.booking__head { text-align: center; margin-bottom: clamp(40px, 5vw, 60px); }
.booking__head .eyebrow { letter-spacing: .18em; margin-bottom: 16px; }
.booking__head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(36px, 4.6vw, 60px); line-height: 1.04; margin: 0 0 14px; }
.booking__head p { font: 400 16px/1.6 var(--sans); color: var(--muted); max-width: 560px; margin: 0 auto; }
.booking__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(24px, 3vw, 44px); align-items: start; }

.form { display: flex; flex-direction: column; gap: 28px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }
.form__label, .field > label {
  display: block;
  font: 700 12px/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 9px;
}
.input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line2);
  background: var(--surface);
  color: var(--text);
  font: 500 15px/1.3 var(--sans);
  outline: none;
  transition: border-color .2s;
}
.input:focus { border-color: var(--accent); }
textarea.input { line-height: 1.5; resize: vertical; }
input[type="date"].input { padding: 13px 16px; color-scheme: dark; }

.seg { display: flex; gap: 10px; }
.seg input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.seg label {
  flex: 1;
  padding: 13px 12px;
  border-radius: 12px;
  border: 1px solid var(--line2);
  cursor: pointer;
  font: 700 13.5px/1.2 var(--sans);
  text-align: center;
  transition: all .2s;
  background: var(--surface);
  color: var(--muted);
}
.seg input:checked + label { background: var(--accent); color: #0a0a0b; border-color: transparent; box-shadow: 0 8px 22px -10px var(--glow); }
.seg input:focus-visible + label { outline: 2px solid var(--accent2); outline-offset: 2px; }
.seg input:disabled + label { opacity: .4; cursor: not-allowed; }
.seg-hint { font: 400 12.5px/1.4 var(--sans); color: var(--muted); margin-top: 8px; }
.form__fine { font: 400 12.5px/1.5 var(--sans); color: var(--muted); text-align: center; }
.form__error {
  border: 1px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  color: var(--text);
  border-radius: 12px;
  padding: 14px 16px;
  font: 500 14px/1.5 var(--sans);
}

.summary {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line2);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 34px);
  background: linear-gradient(165deg, var(--surface), var(--bg));
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, .8);
}
.summary__label { font: 600 12px/1 var(--sans); text-transform: uppercase; letter-spacing: .14em; color: var(--accent); margin-bottom: 20px; }
.summary__rows { display: grid; gap: 14px; margin-bottom: 24px; }
.summary__row { display: flex; justify-content: space-between; gap: 14px; }
.summary__row.is-bordered { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.summary__row .k { font: 500 14px/1.3 var(--sans); color: var(--muted); }
.summary__row .v { font: 700 14px/1.3 var(--sans); text-align: right; }
.summary__total { border-top: 1px solid var(--line2); padding-top: 20px; }
.summary__total-line { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.summary__total-label { font: 600 14px/1 var(--sans); color: var(--muted); }
.summary__price { font-family: var(--serif); font-weight: 700; font-size: 48px; line-height: 1; color: var(--accent2); }
.summary__note { font: 400 12.5px/1.5 var(--sans); color: var(--muted); margin-top: 10px; }

.success {
  border: 1px solid var(--accent);
  border-radius: 22px;
  padding: clamp(32px, 4vw, 48px);
  background: var(--surface);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.success__icon { width: 62px; height: 62px; border-radius: 50%; background: var(--accent); color: #0a0a0b; display: flex; align-items: center; justify-content: center; }
.success h3 { font-family: var(--serif); font-weight: 600; font-size: 32px; line-height: 1.1; margin: 0; }
.success p { font: 400 15.5px/1.6 var(--sans); color: var(--muted); margin: 0; max-width: 380px; }
.success__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ==========================================================================
   Pagina-hero: lead + ankerchips (Gelegenheden)
   ========================================================================== */
.page-hero__lead { font-size: clamp(16px, 1.6vw, 18px); line-height: 1.65; color: var(--muted); max-width: 620px; margin: 0 auto 26px; }
.page-hero__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip-link {
  border: 1px solid var(--line2);
  color: var(--text);
  text-decoration: none;
  font: 600 14px/1 var(--sans);
  padding: 11px 20px;
  border-radius: 100px;
  transition: border-color .2s, color .2s;
}
.chip-link:hover { border-color: var(--accent); color: var(--accent2); }

/* ==========================================================================
   Gelegenheden — split-secties
   ========================================================================== */
.occasion { padding: clamp(40px, 5vw, 72px) clamp(18px, 5vw, 64px); }
.occasion--band { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.occasion--last { padding-bottom: clamp(56px, 7vw, 96px); }
.occasion__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.occasion__media { position: relative; }
.occasion__media::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 24px;
  background: linear-gradient(140deg, var(--glow), transparent 55%);
  filter: blur(8px);
}
.occasion__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line2);
  box-shadow: 0 36px 80px -40px rgba(0, 0, 0, .8);
}
.occasion__body .eyebrow { margin-bottom: 14px; }
.occasion__body h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 4vw, 52px); line-height: 1.04; margin: 0 0 18px; }
.occasion__body > p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 24px; }
.occasion__list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 13px; }
.occasion__list li { display: flex; gap: 12px; align-items: flex-start; font: 500 15px/1.45 var(--sans); }
.occasion__list li svg { color: var(--accent); flex: none; }
.occasion__cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.occasion__price { font-family: var(--serif); font-weight: 700; font-size: 32px; line-height: 1; color: var(--accent2); }

/* ==========================================================================
   Regio — plaatsen
   ========================================================================== */
.regio-places { padding: clamp(20px, 3vw, 40px) clamp(18px, 5vw, 64px) clamp(40px, 5vw, 64px); }
.regio-places__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.place-card { border: 1px solid var(--line); border-radius: 18px; padding: 28px; background: var(--surface); }
.place-card h3 { font-family: var(--serif); font-weight: 600; font-size: 26px; line-height: 1.1; margin: 0 0 10px; }
.place-card p { font: 400 14.5px/1.6 var(--sans); color: var(--muted); margin: 0; }
.place-card--home {
  grid-column: 1 / -1;
  border: 1px solid var(--accent);
  border-radius: 22px;
  padding: clamp(28px, 3.4vw, 40px);
  background: linear-gradient(155deg, var(--surface), color-mix(in srgb, var(--accent) 8%, var(--bg)));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}
.place-card--home .eyebrow { font-size: 12px; letter-spacing: .14em; margin-bottom: 12px; }
.place-card--home h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.05; margin: 0 0 14px; }
.place-card--home p { font: 400 15.5px/1.65 var(--sans); color: var(--muted); margin: 0; }
.place-card--home .btn { justify-self: start; }

/* ==========================================================================
   Regio — op locatie + bezorging
   ========================================================================== */
.regio-band {
  padding: clamp(40px, 5vw, 72px) clamp(18px, 5vw, 64px);
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.regio-band__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.regio-band .eyebrow { margin-bottom: 14px; }
.regio-band__intro h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; margin: 0 0 16px; }
.regio-band__intro p { font: 400 16px/1.65 var(--sans); color: var(--muted); margin: 0; }
.delivery-card { border: 1px solid var(--line2); border-radius: 20px; padding: clamp(26px, 3vw, 34px); background: var(--surface); }
.delivery-card__h { font: 700 13px/1 var(--sans); text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 18px; }
.delivery-card__rows { display: grid; gap: 16px; }
.delivery-row { border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.delivery-row:last-child { border-bottom: 0; padding-bottom: 0; }
.delivery-row__t { font: 700 15px/1.3 var(--sans); margin-bottom: 4px; }
.delivery-row__d { font: 400 14px/1.55 var(--sans); color: var(--muted); }

/* ==========================================================================
   Regio — CTA (hergebruikt .cta met overrides)
   ========================================================================== */
.cta--regio .cta__inner { max-width: 980px; }
.cta--regio .cta__inner h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; }
.cta--regio .cta__inner p { max-width: 520px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ==========================================================================
   FAQ — accordeon (native <details name>, exclusief openklappen)
   ========================================================================== */
.faq { padding: clamp(20px, 3vw, 40px) clamp(18px, 5vw, 64px) clamp(48px, 6vw, 80px); }
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); overflow: hidden; }
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  color: var(--text);
  font: 600 clamp(16px, 1.7vw, 18px)/1.4 var(--sans);
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:focus-visible { outline: 2px solid var(--accent2); outline-offset: -2px; }
.faq-item__sign { color: var(--accent); font-size: 26px; line-height: 1; flex: none; font-weight: 300; }
.faq-item__sign::before { content: "+"; }
.faq-item[open] .faq-item__sign::before { content: "–"; }
.faq-item__a { padding: 0 24px 24px; font: 400 15.5px/1.7 var(--sans); color: var(--muted); }

/* ==========================================================================
   FAQ — CTA-kaart
   ========================================================================== */
.faq-cta { padding: 0 clamp(18px, 5vw, 64px) clamp(64px, 8vw, 110px); }
.faq-cta__card {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line2);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
  background: linear-gradient(165deg, var(--surface), var(--bg));
}
.faq-cta__card h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.06; margin: 0 0 14px; }
.faq-cta__card p { font: 400 16px/1.6 var(--sans); color: var(--muted); max-width: 480px; margin: 0 auto 28px; }

/* ==========================================================================
   Offerte — configurator + prijsopbouw
   ========================================================================== */
.offerte { padding: clamp(20px, 3vw, 40px) clamp(18px, 5vw, 64px) clamp(64px, 8vw, 110px); }
.offerte__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.offerte__aside { position: sticky; top: 104px; display: grid; gap: 16px; }
.offerte__aside .summary { position: static; }
.offerte__help { border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; background: var(--surface); display: grid; gap: 10px; }
.offerte__help-link { color: var(--text); text-decoration: none; font: 600 15px/1.3 var(--sans); }
.offerte__help-link:hover { color: var(--accent2); }
@media (max-width: 920px) {
  .offerte__grid { grid-template-columns: 1fr; }
  .offerte__aside { position: static; }
}

.muted { color: var(--muted); font: 400 14px/1.5 var(--sans); }
.field-hint { font: 400 13px/1.5 var(--sans); color: var(--muted); margin: 0; }
.field-err { color: var(--accent2); font: 600 13.5px/1.4 var(--sans); margin-top: 8px; }
.input.is-invalid { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }

.step { border: 0; margin: 0; padding: 0; min-width: 0; }
/* Margin i.p.v. grid-gap: een <legend> doet niet mee aan grid-gap, waardoor de
   staptitel anders strak tegen het eerste veld plakt. Owl-selector = ruimte vóór
   elk item behalve de legend. */
.step > * + * { margin-top: 18px; }
.step__title { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.1; margin: 0; padding: 0; }
.step__num { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #0a0a0b; font: 700 15px/30px var(--sans); text-align: center; }

/* Booth-keuze */
.booth-pick { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 760px) { .booth-pick { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.booth-pick__card { position: relative; display: block; cursor: pointer; }
.booth-pick__card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.booth-pick__body { display: block; height: 100%; border: 1px solid var(--line2); border-radius: 16px; overflow: hidden; background: var(--surface); transition: border-color .2s, box-shadow .2s; }
.booth-pick__card input:checked + .booth-pick__body { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 10px 30px -16px var(--glow); }
.booth-pick__card input:focus-visible + .booth-pick__body { outline: 2px solid var(--accent2); outline-offset: 2px; }
.booth-pick__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; display: block; }
.booth-pick__text { display: block; padding: 14px 16px; }
.booth-pick__name { display: block; font: 700 15px/1.3 var(--sans); }
.booth-pick__note { display: block; font: 400 12.5px/1.4 var(--sans); color: var(--muted); margin-top: 3px; }
.booth-pick__price { display: block; font-family: var(--serif); font-weight: 700; font-size: 22px; line-height: 1; color: var(--accent2); margin-top: 12px; }

/* Extra's */
.extras { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.extra { position: relative; display: flex; gap: 12px; border: 1px solid var(--line); border-radius: 14px; padding: 16px; background: var(--surface); cursor: pointer; transition: border-color .2s; }
.extra:hover { border-color: var(--line2); }
.extra:has(input:checked) { border-color: var(--accent); }
.extra input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.extra__box { flex: none; width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--line2); margin-top: 2px; position: relative; transition: background .2s, border-color .2s; }
.extra input:checked ~ .extra__box { background: var(--accent); border-color: var(--accent); }
.extra input:checked ~ .extra__box::after { content: ""; position: absolute; left: 7px; top: 3px; width: 5px; height: 10px; border: solid #0a0a0b; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.extra input:focus-visible ~ .extra__box { outline: 2px solid var(--accent2); outline-offset: 2px; }
.extra__body { display: grid; gap: 4px; min-width: 0; }
.extra__top { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.extra__name { font: 700 14.5px/1.3 var(--sans); }
.extra__badge { display: inline-block; font: 700 10px/1 var(--sans); text-transform: uppercase; letter-spacing: .08em; color: var(--accent); border: 1px solid var(--line2); border-radius: 100px; padding: 3px 7px; margin-left: 4px; }
.extra__price { flex: none; font: 700 14px/1.3 var(--sans); color: var(--accent2); white-space: nowrap; }
.extra__desc { font: 400 13px/1.5 var(--sans); color: var(--muted); }

/* Bezorging/ophalen-kaarten */
.seg-cards { display: grid; gap: 12px; }
.seg-card { position: relative; display: block; border: 1px solid var(--line2); border-radius: 14px; padding: 16px; background: var(--surface); cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.seg-card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.seg-card:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.seg-card:has(input:focus-visible) { outline: 2px solid var(--accent2); outline-offset: 2px; }
.seg-card__body { display: grid; gap: 4px; }
.seg-card__top { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.seg-card__title { font: 700 15px/1.3 var(--sans); }
.seg-card__price { font: 700 14px/1.3 var(--sans); color: var(--accent2); white-space: nowrap; }
.seg-card__desc { font: 400 13px/1.5 var(--sans); color: var(--muted); }

#km-display .ok { color: var(--text); font: 500 14px/1.6 var(--sans); }
#km-display .err { color: var(--accent2); font: 500 14px/1.6 var(--sans); }

/* Prijsopbouw */
.bd__line { display: flex; justify-content: space-between; gap: 14px; font: 500 14px/1.4 var(--sans); padding: 7px 0; }
.bd__line span:last-child { white-space: nowrap; }
.bd__line--disc { color: var(--accent2); }
.bd__divider { height: 1px; background: var(--line2); margin: 12px 0; }
.bd__total { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.bd__total > span:first-child { font: 600 14px/1 var(--sans); color: var(--muted); }
.bd__total-val { font-family: var(--serif); font-weight: 700; font-size: 36px; line-height: 1; color: var(--accent2); }
.bd__note { font: 400 12.5px/1.5 var(--sans); color: var(--muted); margin-top: 10px; }

/* ==========================================================================
   Home — boeken/offerte launchpad
   ========================================================================== */
.launch { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.launch__card {
  display: grid; gap: 6px; align-content: start;
  border: 1px solid var(--line2); border-radius: 20px; padding: 26px 28px;
  background: var(--surface); text-decoration: none; color: var(--text);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.launch__card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 18px 44px -22px var(--glow); }
.launch__name { font: 700 17px/1.3 var(--sans); }
.launch__price { font-family: var(--serif); font-weight: 700; font-size: 30px; line-height: 1; color: var(--accent2); }
.launch__cta { font: 700 14.5px/1 var(--sans); color: var(--accent); margin-top: 8px; }
.launch__foot { max-width: 760px; margin: 22px auto 0; text-align: center; display: grid; gap: 14px; justify-items: center; }
.launch__or { font: 400 14px/1.6 var(--sans); color: var(--muted); }
.launch__or a { color: var(--accent2); text-decoration: none; }
.launch__or a:hover { text-decoration: underline; }

/* ==========================================================================
   Animaties
   ========================================================================== */
@keyframes pbPulse {
  0%, 100% { opacity: .45; transform: scale(1); }
  50%      { opacity: .9;  transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal].is-pre { opacity: 1; transform: none; }
  .btn { transition: none; }
  .hero__glow { animation: none; }
}
