/* ============================================================
   WILLY'S MOUSTACHE — styles.css
   Editorial & restrained reproduction stylesheet
   Signature idea: "THE SPOTLIGHT" — warm duotone video hero,
   film-grain texture, oversized serif display with a hairline
   accent rule that echoes the moustache mark.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

/* ------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* palette */
  --ink: #14100E;
  --ink-soft: #2A2521;
  --cream: #F4EFE7;
  --cream-deep: #E7DFD3;
  --accent: #C08A3E;
  --accent-deep: #7A5218;      /* darker gold — meets 4.5:1 on cream */
  --accent-ink: #7A5218;       /* gold for text on light backgrounds */
  --line: rgba(20, 16, 14, .14);
  --line-light: rgba(244, 239, 231, .18);

  /* type */
  --font-display: "Playfair Display", "EB Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* modular type scale (rem) */
  --step--1: 0.8125rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: 1.5rem;
  --step-3: 2rem;
  --step-4: 2.75rem;
  --step-5: 3.75rem;
  --step-6: 5rem;
  --step-7: 6.75rem;

  /* 8pt spacing rhythm */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  /* layout */
  --container: 1240px;
  --gutter: 24px;
  --nav-h: 88px;

  /* elevation (hard-edged, editorial — no soft blur blobs) */
  --elev-1: 0 1px 0 rgba(20, 16, 14, .10), 0 10px 26px -18px rgba(20, 16, 14, .45);
  --elev-2: 0 2px 0 rgba(20, 16, 14, .12), 0 26px 60px -34px rgba(20, 16, 14, .60);
  --elev-glow: 0 0 0 1px rgba(192, 138, 62, .45), 0 18px 40px -24px rgba(192, 138, 62, .55);

  /* signature tokens */
  --spotlight: radial-gradient(72% 62% at 24% 32%, rgba(192, 138, 62, .34) 0%, rgba(192, 138, 62, 0) 62%),
               radial-gradient(90% 80% at 82% 78%, rgba(20, 16, 14, .78) 0%, rgba(20, 16, 14, 0) 70%),
               linear-gradient(180deg, rgba(20, 16, 14, .74) 0%, rgba(20, 16, 14, .34) 38%, rgba(20, 16, 14, .88) 100%);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  --hairline-accent: linear-gradient(90deg, var(--accent) 0%, var(--accent) 56px, transparent 56px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p { margin: 0 0 var(--s-3); }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.012em;
}

button,
input {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: 56px;
}

section[id] { scroll-margin-top: var(--s-6); }

/* section head: overline rule + display heading */
.section__head {
  position: relative;
  max-width: 62ch;
  margin-bottom: var(--s-5);
  padding-top: var(--s-4);
}

.section__head::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 72px;
  height: 2px;
  background: var(--accent);
}

.section__head .eyebrow { margin-bottom: var(--s-2); }

/* ------------------------------------------------------------
   4. TYPOGRAPHY UTILITIES
   ------------------------------------------------------------ */
.display-1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.022em;
}

.display-2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.display-3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.14;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);   /* darker gold — readable on cream */
}

/* on dark surfaces the brighter accent stays AA-compliant */
.hero .eyebrow,
.gallery-section .eyebrow,
.invite .eyebrow {
  color: var(--accent);
}

.lede {
  font-size: clamp(1.0625rem, 1.35vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}

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

/* signature hairline under headings */
.display-1::after,
.display-2::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: var(--s-3);
  background: var(--accent);
  transform-origin: left center;
}

/* ------------------------------------------------------------
   5. SKIP LINK
   ------------------------------------------------------------ */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--cream);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-120%);
  transition: transform .22s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ------------------------------------------------------------
   6. HEADER / NAVIGATION
   ------------------------------------------------------------ */
.site-header {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 60;
  color: var(--cream);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: var(--nav-h);
  min-width: 0;
  flex-wrap: wrap;
  padding-block: var(--s-3);
  position: relative;
}

/* scrim guaranteeing nav contrast over the video without a solid bar */
.site-header__inner::before {
  content: "";
  position: absolute;
  inset-inline: -100vw;
  inset-block: -24px 0;
  background: linear-gradient(180deg, rgba(20, 16, 14, .62) 0%, rgba(20, 16, 14, .22) 62%, rgba(20, 16, 14, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

.site-header__logo {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 52px;
  max-width: 100%;
  filter: drop-shadow(0 2px 14px rgba(20, 16, 14, .55));
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.site-header__logo:hover {
  transform: translateY(-2px);
  opacity: .92;
}

/* --- mobile toggle --- */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 48px;
  min-height: 48px;
  padding: 12px 18px;
  background: rgba(20, 16, 14, .42);
  border: 1px solid var(--line-light);
  border-radius: 2px;
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.nav-toggle::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

/* --- primary nav --- */
.primary-nav {
  display: none;
  min-width: 0;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--s-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__item { position: relative; }

.primary-nav__link {
  position: relative;
  display: inline-block;
  padding-block: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow: 0 1px 12px rgba(20, 16, 14, .6);
  transition: color .25s var(--ease);
}

.primary-nav__link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .32s var(--ease);
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible {
  color: var(--accent);
}

.primary-nav__link:hover::after,
.primary-nav__link:focus-visible::after {
  transform: scaleX(1);
}

/* last nav item = Tickets → treated as an outlined action */
.primary-nav__item:last-child .primary-nav__link {
  padding: 12px 16px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: var(--step--1);
}

.primary-nav__item:last-child .primary-nav__link::after { display: none; }

.primary-nav__item:last-child .primary-nav__link:hover {
  background: var(--accent);
  color: var(--ink);
}

/* mobile open state */
@media (max-width: 1099px) {
  .primary-nav { display: none; }

  .nav-toggle[aria-expanded="true"] + .primary-nav,
  .primary-nav.is-open {
    display: block;
    position: absolute;
    inset-block-start: 100%;
    inset-inline: 0;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: var(--s-3);
    background: var(--ink);
    border-top: 1px solid var(--line-light);
    box-shadow: var(--elev-2);
  }

  .primary-nav.is-open .primary-nav__list,
  .nav-toggle[aria-expanded="true"] + .primary-nav .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
  }

  .primary-nav.is-open .primary-nav__item,
  .nav-toggle[aria-expanded="true"] + .primary-nav .primary-nav__item {
    border-bottom: 1px solid var(--line-light);
  }

  .primary-nav.is-open .primary-nav__link,
  .nav-toggle[aria-expanded="true"] + .primary-nav .primary-nav__link {
    display: block;
    padding: 16px 4px;
    min-height: 48px;
    font-size: var(--step-1);
    text-shadow: none;
  }

  .primary-nav.is-open .primary-nav__link::after,
  .nav-toggle[aria-expanded="true"] + .primary-nav .primary-nav__link::after { display: none; }

  .primary-nav__item:last-child { border-bottom: 0; margin-top: var(--s-2); }

  .primary-nav__item:last-child .primary-nav__link {
    text-align: center;
    padding: 16px 20px;
  }
}

@media (min-width: 1100px) {
  .primary-nav { display: block; }
  .nav-toggle { display: none; }
  .site-header__logo { height: 72px; }
  .site-header__inner { min-height: 112px; }
  .primary-nav__list { gap: var(--s-3); }
  .primary-nav__link { font-size: 0.875rem; }
}

/* ------------------------------------------------------------
   7. HERO — "THE SPOTLIGHT"
   ------------------------------------------------------------ */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 640px;
  height: 100svh;
  max-height: 1000px;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-image: url("/assets/img-d3e1f1efa547.jpg");
  background-size: cover;
  background-position: center;
}

.hero__poster,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__poster { z-index: 1; }

.hero__video {
  z-index: 2;
  opacity: 0;
  animation: heroFade 1.6s var(--ease) .2s forwards;
}

@keyframes heroFade {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

/* duotone scrim + spotlight + grain */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--spotlight);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero__scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 220px 220px;
  opacity: .14;
  mix-blend-mode: overlay;
}

/* clears the absolute header / logo card so the H1 is never covered */
.hero__inner {
  position: relative;
  z-index: 40;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: calc(var(--nav-h) + var(--s-7)) var(--gutter) var(--s-7);
}

.hero__title {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  margin-bottom: var(--s-3);
  color: var(--cream);
  text-shadow: 0 18px 50px rgba(20, 16, 14, .75), 0 2px 10px rgba(20, 16, 14, .6);
}

.hero__title::after {
  width: 88px;
  background: var(--accent);
  animation: ruleIn 1s var(--ease) .5s both;
}

@keyframes ruleIn {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero__lede {
  max-width: 46ch;
  color: rgba(244, 239, 231, .94);
  text-shadow: 0 2px 18px rgba(20, 16, 14, .8);
  margin-bottom: var(--s-4);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

/* --- buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .28s var(--ease),
              color .28s var(--ease),
              border-color .28s var(--ease),
              box-shadow .28s var(--ease),
              transform .28s var(--ease);
}

.btn::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}

.btn:hover::after { width: 28px; }

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
  box-shadow: var(--elev-glow);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(20, 16, 14, .45);
  border-color: rgba(244, 239, 231, .5);
  color: var(--cream);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}

/* --- hero strip: next event bar --- */
.hero__strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line-light);
  background: rgba(20, 16, 14, .62);
  backdrop-filter: blur(14px) saturate(120%);
}

.hero__strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--s-3) var(--gutter);
}

.hero__strip-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__strip-date {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 400;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

.hero__strip-title {
  font-size: var(--step-0);
  font-weight: 500;
  color: rgba(244, 239, 231, .94);
  letter-spacing: 0.01em;
}

.hero__strip-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding-block: 10px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.hero__strip-link::after {
  content: "→";
  transition: transform .3s var(--ease);
}

.hero__strip-link:hover {
  color: var(--cream);
  border-bottom-color: var(--accent);
}

.hero__strip-link:hover::after { transform: translateX(5px); }

@media (min-width: 900px) {
  .hero__strip-inner {
    grid-template-columns: auto auto 1fr auto;
    gap: var(--s-5);
  }
  .hero__strip-link { justify-self: end; }
  .hero__inner {
    padding-top: calc(var(--nav-h) + var(--s-7));
    padding-bottom: var(--s-8);
  }
}

/* ------------------------------------------------------------
   8. PROOF SECTION (statistics + facts)
   ------------------------------------------------------------ */
.proof {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: start;
  min-width: 0;
}

.proof__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--cream-deep);
}

.proof__figure img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(.94) contrast(1.04);
  transition: transform 1.2s var(--ease);
}

.proof__figure:hover img { transform: scale(1.035); }

.proof__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 14, .10) 0%, rgba(20, 16, 14, .48) 100%);
  pointer-events: none;
}

.proof__caption {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 2;
  padding: var(--s-4);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

.proof__body { max-width: 56ch; min-width: 0; }

.stat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-4) var(--s-3);
  margin: var(--s-5) 0 0;
  padding: var(--s-4) 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  min-width: 0;
}

.stat {
  min-width: 0;
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  overflow-wrap: break-word;
  min-width: 0;
}

.stat__label {
  display: block;
  margin-top: var(--s-1);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

.fact-list {
  display: grid;
  gap: var(--s-3);
  margin: var(--s-5) 0 0;
  padding: 0;
  list-style: none;
}

.fact {
  position: relative;
  padding-inline-start: var(--s-3);
  border-left: 1px solid var(--line);
}

.fact::before {
  content: "";
  position: absolute;
  inset-inline-start: -1px;
  inset-block-start: 6px;
  width: 1px;
  height: 22px;
  background: var(--accent);
}

.fact__title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}

.fact__text {
  font-size: var(--step-0);
  color: var(--ink-soft);
  margin: 0;
}

@media (min-width: 900px) {
  .proof__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--s-7); }
  .stat-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ------------------------------------------------------------
   9. FORMULES (promo cards — staggered editorial grid)
   ------------------------------------------------------------ */
.formules {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
}

.formules__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  min-height: 0;
}

/* graceful collapse if the formule loop renders nothing */
.formules__grid:empty { display: none; }
.formules:has(.formules__grid:empty) { padding-block: var(--s-5); }

.formule-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}

.formule-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 138, 62, .6);
  box-shadow: var(--elev-2);
}

.formule-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}

.formule-card__media img,
.formule-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter .6s var(--ease);
  filter: saturate(.92);
}

.formule-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 14, 0) 42%, rgba(20, 16, 14, .58) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.formule-card:hover .formule-card__media img,
.formule-card:hover .formule-card__media video {
  transform: scale(1.06);
  filter: saturate(1.04);
}

.formule-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-4);
  flex: 1;
}

.formule-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
}

.formule-card__text {
  font-size: var(--step-0);
  color: var(--ink-soft);
  margin: 0;
}

.formule-card__link {
  margin-top: auto;
  padding-top: var(--s-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--line);
  transition: color .28s var(--ease);
}

.formule-card__link::after {
  content: "→";
  color: var(--accent-deep);
  transition: transform .3s var(--ease);
}

.formule-card__link:hover { color: var(--accent-deep); }
.formule-card__link:hover::after { transform: translateX(6px); }

@media (min-width: 760px) {
  .formules__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1000px) {
  .formules__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: var(--s-6);
  }
  .formule-card:nth-child(2) { transform: translateY(40px); }
  .formule-card:nth-child(2):hover { transform: translateY(34px); }
  .formule-card:nth-child(3) { transform: translateY(80px); }
  .formule-card:nth-child(3):hover { transform: translateY(74px); }
}

/* ------------------------------------------------------------
   10. EVENTS OVERVIEW
   ------------------------------------------------------------ */
.events-overview {
  background: var(--cream);
}

.events-overview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: start;
}

.event-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

/* empty-state fallback so the section is never a blank void */
.event-list:empty::after {
  content: "Geen evenementen gepland op dit moment — kom binnenkort terug voor de volgende data.";
  display: block;
  padding: var(--s-5) 0;
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  max-width: 52ch;
}

.events-overview:has(.event-list:empty) { padding-block: var(--s-5); }

.event {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "badge body"
    "badge link";
  gap: 4px var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
  transition: background-color .35s var(--ease), padding-inline .35s var(--ease);
}

.event::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .4s var(--ease);
}

.event:hover { background: rgba(231, 223, 211, .45); padding-inline: var(--s-2); }
.event:hover::before { transform: scaleY(1); }

.event__badge {
  grid-area: badge;
  align-self: start;
  display: grid;
  place-items: center;
  min-width: 60px;
  padding: 10px 8px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}

.event:hover .event__badge {
  background: var(--accent);
  color: var(--ink);
}

.event__body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event__cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.event__date {
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.event__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 600;
  line-height: 1.16;
  margin: 2px 0 0;
}

.event__link {
  grid-area: link;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding-block: 6px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .28s var(--ease);
}

.event__link::after {
  content: "→";
  color: var(--accent-deep);
  transition: transform .3s var(--ease);
}

.event__link:hover { color: var(--accent-deep); }
.event__link:hover::after { transform: translateX(6px); }

/* event side figure */
.events-overview__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.events-overview__figure img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(.94) contrast(1.04);
  transition: transform 1.4s var(--ease);
}

.events-overview__figure:hover img { transform: scale(1.04); }

.events-overview__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 14, .06) 0%, rgba(20, 16, 14, .62) 100%);
  pointer-events: none;
}

.events-overview__caption {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 2;
  padding: var(--s-4);
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--cream);
  letter-spacing: 0.01em;
}

.events-overview__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}

.events-overview__more a,
.events-overview__more button,
.events-overview__more span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.events-overview__more > *:hover {
  border-color: var(--accent-deep);
  color: var(--accent-deep);
}

.events-overview__more .is-active,
.events-overview__more [aria-current="page"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

@media (min-width: 1000px) {
  .events-overview__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: var(--s-7);
  }
  .events-overview__figure { position: sticky; top: var(--s-5); }
  .event {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "badge body link";
    align-items: center;
    padding-block: var(--s-4);
  }
  .event__link { justify-self: end; }
}

/* ------------------------------------------------------------
   11. GALLERY — "Say Cheese!"
   ------------------------------------------------------------ */
.gallery-section {
  background: var(--ink);
  color: var(--cream);
  padding-block: 56px;
}

.gallery-section .section__head::before { background: var(--accent); }
.gallery-section .display-2 { color: var(--cream); }
.gallery-section .display-2::after { background: var(--accent); }
.gallery-section .lede { color: rgba(244, 239, 231, .84); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  aspect-ratio: 1 / 1;
  clip-path: inset(0 0 0 0);
}

.gallery__item:nth-child(3n + 1) { grid-column: span 2; aspect-ratio: 16 / 10; }

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.06);
  transition: transform 1.4s var(--ease), filter .6s var(--ease), opacity .6s var(--ease);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 14, 0) 52%, rgba(20, 16, 14, .52) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.06);
  filter: saturate(1.02) contrast(1.04);
}

.gallery__item:hover::after { opacity: 1; }

.gallery-section__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: var(--s-5);
  padding: 14px 26px;
  border: 1px solid rgba(244, 239, 231, .45);
  border-radius: 2px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.gallery-section__more::after {
  content: "→";
  color: var(--accent);
  transition: transform .3s var(--ease);
}

.gallery-section__more:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.gallery-section__more:hover::after { transform: translateX(6px); }

@media (min-width: 760px) {
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
  .gallery__item:nth-child(3n + 1) { grid-column: span 2; aspect-ratio: 1 / 1; }
  .gallery__item:nth-child(1) { grid-row: span 2; aspect-ratio: 1 / 2; }
  .gallery__item:nth-child(4) { grid-column: span 2; aspect-ratio: 2 / 1; }
}

@media (min-width: 1100px) {
  .gallery-section { padding-block: var(--s-8); }
}

/* ------------------------------------------------------------
   12. REASSURE
   ------------------------------------------------------------ */
.reassure {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.reassure__head {
  max-width: 60ch;
  margin-bottom: var(--s-6);
}

.reassure__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.reassure__item {
  position: relative;
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line);
}

.reassure__item::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .6s var(--ease);
}

.reassure__item:hover::before { width: 100%; }

.reassure__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 600;
  margin: 0 0 var(--s-2);
}

.reassure__text {
  font-size: var(--step-0);
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0;
}

@media (min-width: 860px) {
  .reassure__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 var(--s-6); }
  .reassure__item { border-bottom: 0; padding-block: var(--s-5) 0; }
  .reassure__item::after {
    content: "";
    position: absolute;
    inset-block: 0;
    inset-inline-start: calc(var(--s-6) / -2);
    width: 1px;
    background: var(--line);
  }
  .reassure__item:first-child::after { display: none; }
}

/* ------------------------------------------------------------
   13. INVITE (dark band) + NEWSLETTER
   ------------------------------------------------------------ */
.invite {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.invite::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 88% 18%, rgba(192, 138, 62, .22) 0%, rgba(192, 138, 62, 0) 62%),
    radial-gradient(70% 80% at 8% 88%, rgba(192, 138, 62, .12) 0%, rgba(192, 138, 62, 0) 60%);
  pointer-events: none;
}

.invite__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
}

.invite__body { max-width: 56ch; }

.invite__body .display-3 { color: var(--cream); }

.invite__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

.invite__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
}

.invite__figure img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
  transition: transform 1.4s var(--ease);
}

.invite__figure:hover img { transform: scale(1.04); }

/* newsletter */
.newsletter {
  position: relative;
  z-index: 1;
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-light);
  max-width: 620px;
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 var(--s-3);
}

.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: stretch;
}

.newsletter__input {
  flex: 1 1 260px;
  min-height: 52px;
  padding: 0 18px;
  background: rgba(244, 239, 231, .06);
  border: 1px solid rgba(244, 239, 231, .28);
  border-radius: 2px;
  color: var(--cream);
  font-size: var(--step-0);
  letter-spacing: 0.01em;
  transition: border-color .28s var(--ease), background-color .28s var(--ease);
}

.newsletter__input::placeholder {
  color: rgba(244, 239, 231, .58);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(244, 239, 231, .1);
}

.newsletter__form .btn--primary { flex: 0 0 auto; }

.newsletter__note {
  margin-top: var(--s-2);
  font-size: var(--step--1);
  color: rgba(244, 239, 231, .72);
  max-width: 52ch;
}

@media (min-width: 900px) {
  .invite__inner { grid-template-columns: 7fr 5fr; gap: var(--s-7); }
}

/* ------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--line-light);
  padding-block: var(--s-6) var(--s-4);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--line-light);
}

.footer-brand { max-width: 34ch; }

.footer-brand__logo {
  height: 64px;
  width: auto;
  margin-bottom: var(--s-3);
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, .5));
}

.footer-brand__text {
  font-size: var(--step--1);
  line-height: 1.75;
  color: rgba(244, 239, 231, .78);
  margin: 0;
}

.contact-list {
  display: grid;
  gap: var(--s-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  font-size: var(--step-0);
  color: rgba(244, 239, 231, .9);
}

.contact-list a {
  display: inline-block;
  min-height: 32px;
  padding-block: 4px;
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.contact-list a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer-col__title {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--s-3);
}

.footer-nav {
  display: grid;
  gap: var(--s-1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  display: inline-block;
  min-height: 36px;
  padding-block: 6px;
  font-size: var(--step-0);
  color: rgba(244, 239, 231, .88);
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.footer-nav a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin: 0 0 var(--s-4);
  padding: 0;
  list-style: none;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 2px;
  color: var(--cream);
  transition: background-color .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.social-link__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cookie-update {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(244, 239, 231, .82);
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.cookie-update:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-4);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(244, 239, 231, .66);
}

.site-footer__legal a {
  color: rgba(244, 239, 231, .78);
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.site-footer__legal a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (min-width: 760px) {
  .site-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1080px) {
  .site-footer__inner {
    grid-template-columns: 5fr 3fr 2fr 2fr;
    gap: var(--s-6);
  }
  .site-footer { padding-block: var(--s-8) var(--s-4); }
}

/* ------------------------------------------------------------
   15. COOKIE BANNER
   ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  z-index: 300;
  inset-inline: var(--s-2);
  inset-block-end: var(--s-2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  max-width: 920px;
  margin-inline: auto;
  padding: var(--s-3) var(--s-4);
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--line-light);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
  box-shadow: var(--elev-2);
  animation: cookieIn .5s var(--ease) both;
}

@keyframes cookieIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-banner__text {
  flex: 1 1 280px;
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.6;
  color: rgba(244, 239, 231, .88);
}

.cookie-banner__text a {
  color: var(--accent);
  border-bottom: 1px solid rgba(192, 138, 62, .5);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}

.cookie-banner__text a:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
}

.cookie-banner__actions .btn {
  min-height: 44px;
  padding: 12px 22px;
  font-size: 0.75rem;
}

@media (min-width: 760px) {
  .cookie-banner { inset-inline: var(--s-4); inset-block-end: var(--s-4); padding: var(--s-4) var(--s-5); }
}

/* ------------------------------------------------------------
   16. SCROLL REVEAL (progressive enhancement, CSS-only)
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .event,
    .formule-card,
    .gallery__item,
    .reassure__item,
    .proof__figure,
    .events-overview__figure {
      animation: revealUp linear both;
      animation-timeline: view();
      animation-range: entry 6% cover 26%;
    }
  }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__video { opacity: 1; }
}

/* ------------------------------------------------------------
   17. LARGER BREAKPOINT GLOBAL RHYTHM
   ------------------------------------------------------------ */
@media (min-width: 760px) {
  :root { --gutter: 40px; }
  .section { padding-block: 80px; }
}

@media (min-width: 1100px) {
  :root { --gutter: 48px; }
  .section { padding-block: 112px; }
  .section__head { margin-bottom: var(--s-6); }
}