/* ============================================================
   SMEUG — SHARED STYLESHEET
   Vending-machine fresh meals · Zottegem, België
   ------------------------------------------------------------
   All theme values live in :root below. Swap these to
   re-skin the entire site from your own design system.
   ============================================================ */

:root {
  /* --- Colors ------------------------------------------------ */
  --color-terracotta:   #C15B3C;  /* primary / wordmark warm  */
  --color-terracotta-d: #A64A2E;  /* hover                    */
  --color-terracotta-dd:#8A3B23;  /* pressed                  */
  --color-olive:        #6E7A38;  /* secondary / the bowl     */
  --color-olive-d:      #5C662E;
  --color-yellow:       #F3C81D;  /* accent / the steam       */
  --color-yellow-100:   #FCEEB4;  /* lichte gele tint         */
  --color-yellow-d:     #D9AE0C;
  --color-cream:        #F6EEDC;  /* page background          */
  --color-cream-soft:   #FCFAF3;
  --color-cream-warm:   #EFE4CC;
  --color-cream-line:   #E4D5B6;
  --color-sand:         #C9B896;
  --color-white:        #FFFFFF;
  --color-ink:          #34302A;  /* warm near-black text     */
  --color-ink-soft:     #55503F;
  --color-ink-subtle:   #9A8E74;

  /* Semantic aliases */
  --bg:            var(--color-cream);
  --surface:       var(--color-white);
  --text:          var(--color-ink);
  --text-muted:    var(--color-ink-soft);
  --text-subtle:   var(--color-ink-subtle);
  --primary:       var(--color-terracotta);
  --primary-hover: var(--color-terracotta-d);
  --primary-press: var(--color-terracotta-dd);
  --secondary:     var(--color-olive);
  --accent:        var(--color-yellow);
  --border:        var(--color-cream-line);
  --border-strong: var(--color-sand);
  --focus-ring:    var(--color-terracotta);

  /* --- Typography ------------------------------------------- */
  --font-display: 'Chewy', system-ui, cursive;
  --font-sans:    'Fredoka', system-ui, -apple-system, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, monospace;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.375rem;
  --text-xl:   1.75rem;
  --text-2xl:  2.25rem;
  --text-3xl:  3rem;
  --text-4xl:  clamp(2.75rem, 6vw, 4rem);
  --text-display: clamp(3rem, 9vw, 5.5rem);

  --tracking-label: 0.18em;

  /* --- Spacing (4px grid) ----------------------------------- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 6rem;

  /* --- Radius ----------------------------------------------- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* --- Borders ---------------------------------------------- */
  --border-thin: 1px;
  --border-1: 2px;
  --border-chunky: 3px;

  /* --- Shadows (warm ink-tinted) ---------------------------- */
  --shadow-sm: 0 2px 6px rgba(52,48,42,0.08);
  --shadow-md: 0 6px 18px rgba(52,48,42,0.10);
  --shadow-lg: 0 14px 34px rgba(52,48,42,0.14);
  --shadow-sticker: 4px 4px 0 var(--color-ink);
  --shadow-sticker-press: 2px 2px 0 var(--color-ink);

  /* --- Motion ----------------------------------------------- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;

  /* --- Layout ----------------------------------------------- */
  --container: 1200px;
  --container-wide: 1360px;
  --container-narrow: 720px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }

h1, h2, h3, h4 { line-height: 1.1; font-weight: var(--fw-semibold); text-wrap: balance; }
p { text-wrap: pretty; }

ul { list-style: none; padding: 0; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  background: var(--color-ink);
  color: var(--color-cream);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-pill);
  z-index: 200;
  font-weight: var(--fw-semibold);
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: var(--space-4); color: var(--color-cream); }

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

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-5); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-9); }
.section--tight { padding-block: var(--space-8); }

@media (min-width: 768px) {
  .section { padding-block: var(--space-10); }
  .section--tight { padding-block: var(--space-8); }
}

.stack > * + * { margin-top: var(--space-4); }
.stack-lg > * + * { margin-top: var(--space-6); }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-terracotta-dd);
}
.eyebrow--olive { color: var(--color-olive-d); }
.eyebrow--cream { color: var(--color-white); }

.display {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  line-height: 1.02;
  letter-spacing: 0.005em;
}

.h1 { font-size: var(--text-4xl); }
.h2 { font-size: var(--text-3xl); }
.h3 { font-size: var(--text-xl); }
.lead { font-size: var(--text-lg); color: var(--text-muted); line-height: 1.55; }
.muted { color: var(--text-muted); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxch { max-width: 56ch; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: var(--text-base);
  line-height: 1;
  padding: var(--space-3) var(--space-6);
  min-height: 48px;
  border: none;
  border-radius: var(--radius-pill);
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  text-align: center;
}
.btn svg { width: 20px; height: 20px; }

.btn--primary { background: var(--primary); color: var(--color-cream); }
.btn--primary:hover { background: var(--primary-hover); color: var(--color-cream); }
.btn--primary:active { background: var(--primary-press); transform: scale(0.98); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: var(--border-1) solid var(--border-strong);
}
.btn--ghost:hover { background: var(--color-cream-warm); color: var(--text); }

/* Sticker button — chunky ink outline + offset shadow */
.btn--sticker {
  background: var(--accent);
  color: var(--color-ink);
  border: var(--border-chunky) solid var(--color-ink);
  box-shadow: var(--shadow-sticker);
  border-radius: var(--radius-pill);
}
.btn--sticker:hover { background: var(--color-yellow-d); color: var(--color-ink); transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--color-ink); }
.btn--sticker:active { transform: translate(2px,2px); box-shadow: var(--shadow-sticker-press); }
.btn--sticker.btn--on-primary { background: var(--color-cream); }

.btn--lg { min-height: 56px; padding: var(--space-4) var(--space-7); font-size: var(--text-md); }
.btn--block { display: flex; width: 100%; }

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,238,220,0.85);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-thin) solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: 76px;
}
.nav__brand { display: inline-flex; align-items: center; gap: var(--space-3); }
.nav__brand img { height: 44px; width: auto; }
.nav__wordmark {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--primary);
  line-height: 1;
}

/* Hamburger toggle via checkbox — no JS */
.nav__toggle { display: none; }
.nav__toggle-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  border: var(--border-1) solid var(--border-strong);
  background: var(--surface);
}
.nav__toggle-label svg { width: 24px; height: 24px; color: var(--text); }
.nav__toggle-label .icon-close { display: none; }
.nav__toggle:checked ~ .nav__toggle-label .icon-open { display: none; }
.nav__toggle:checked ~ .nav__toggle-label .icon-close { display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.nav__link {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  min-height: 44px;
  border-radius: var(--radius-pill);
  color: var(--text);
  font-weight: var(--fw-medium);
  transition: background-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.nav__link:hover { background: var(--color-cream-warm); color: var(--text); }
.nav__link[aria-current="page"] { color: var(--primary); font-weight: var(--fw-semibold); background: var(--color-cream-warm); }
.nav__cta { margin-left: var(--space-2); }

@media (max-width: 900px) {
  .nav__cta { display: none; }
}

@media (max-width: 768px) {
  .nav__links {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
    padding: var(--space-4);
    background: var(--color-cream);
    border-bottom: var(--border-thin) solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
  }
  .nav__toggle:checked ~ .nav__links {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link { min-height: 52px; }
  .nav__cta { display: inline-flex; margin: var(--space-2) 0 0; }
}
@media (min-width: 769px) {
  .nav__toggle-label { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
  padding-block: var(--space-9);
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; padding-block: var(--space-10); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-display);
  line-height: 1.0;
  color: var(--primary);
  margin-bottom: var(--space-4);
}
.hero__title .ink { color: var(--color-ink); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); }

.hero__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border-chunky) solid var(--color-ink);
  box-shadow: var(--shadow-sticker);
  aspect-ratio: 4 / 5;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Pure-CSS crossfade slideshow — 6 slides × 5s = 30s cycle */
.slideshow { position: absolute; inset: 0; }
.slideshow__slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 30s infinite;
}
.slideshow__slide:nth-child(1) { animation-delay: 0s; }
.slideshow__slide:nth-child(2) { animation-delay: 5s; }
.slideshow__slide:nth-child(3) { animation-delay: 10s; }
.slideshow__slide:nth-child(4) { animation-delay: 15s; }
.slideshow__slide:nth-child(5) { animation-delay: 20s; }
.slideshow__slide:nth-child(6) { animation-delay: 25s; }
@keyframes heroFade {
  0%    { opacity: 0; }
  2%    { opacity: 1; }
  16.6% { opacity: 1; }
  18.6% { opacity: 0; }
  100%  { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .slideshow__slide { animation: none; opacity: 0; }
  .slideshow__slide:nth-child(1) { opacity: 1; }
}

.hero__badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  box-shadow: var(--shadow-md);
}
.hero__badge .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--secondary); flex: none; box-shadow: 0 0 0 4px rgba(110,122,56,0.18); }

/* Full-bleed photo hero (used on subpages) */
.pagehead {
  position: relative;
  color: var(--color-cream);
  isolation: isolate;
}
.pagehead::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(52,48,42,0.30) 0%, rgba(52,48,42,0.72) 100%);
}
.pagehead__inner { padding-block: var(--space-10); }
.pagehead__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--color-cream);
  margin-bottom: var(--space-4);
}
.pagehead .lead { color: var(--color-cream); }
.breadcrumb { display: flex; gap: var(--space-2); font-size: var(--text-sm); color: var(--color-cream); margin-bottom: var(--space-5); font-family: var(--font-mono); }
.breadcrumb a { color: var(--color-cream); }
.breadcrumb span[aria-hidden] { color: var(--color-yellow); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border: var(--border-thin) solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card--sticker {
  border: var(--border-chunky) solid var(--color-ink);
  box-shadow: var(--shadow-sticker);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-cream-warm);
  color: var(--primary);
  margin-bottom: var(--space-4);
}
.card__icon svg { width: 28px; height: 28px; }
.card__icon--olive { background: rgba(110,122,56,0.14); color: var(--secondary); }
.card__icon--yellow { background: var(--color-yellow-100); color: var(--color-yellow-d); }

.card__title { font-size: var(--text-lg); margin-bottom: var(--space-2); }

/* Grid layouts */
.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Section headers */
.section-head { max-width: 60ch; margin-bottom: var(--space-8); }
.section-head.center { margin-inline: auto; }
.section-head .h2 { margin-top: var(--space-3); }
.section-head .lead { margin-top: var(--space-4); }

/* Tag / chip */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--color-cream-warm);
  color: var(--text-muted);
  align-self: flex-start;
}
.tag--olive { background: rgba(110,122,56,0.16); color: var(--color-olive-d); }
.tag--terracotta { background: rgba(193,91,60,0.14); color: var(--color-terracotta-dd); }
.tag--yellow { background: #FCEEB4; color: var(--color-ink); }

/* Backgrounds */
.bg-cream-soft { background: var(--color-cream-soft); }
.bg-cream-warm { background: var(--color-cream-warm); }
.bg-olive { background: var(--secondary); color: var(--color-cream); }
.bg-terracotta { background: var(--primary); color: var(--color-cream); }
.bg-ink { background: var(--color-ink); color: var(--color-cream); }
.on-dark .eyebrow { color: var(--color-yellow); }
.on-dark .h2, .on-dark h2, .on-dark h3 { color: var(--color-cream); }
.on-dark .lead, .on-dark p { color: rgba(246,238,220,0.88); }

/* ============================================================
   PROCESS TIMELINE  (unique section)
   ============================================================ */
.timeline {
  display: grid;
  gap: var(--space-6);
  counter-reset: step;
}
@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
}
.timeline__step { position: relative; padding-top: var(--space-6); }
.timeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  border: var(--border-chunky) solid var(--color-ink);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-ink);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sticker-press);
}
.timeline__step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
/* connector line on desktop */
@media (min-width: 900px) {
  .timeline__step::before {
    content: "";
    position: absolute;
    top: calc(var(--space-6) + 28px);
    left: 56px; right: calc(-1 * var(--space-5));
    height: var(--border-1);
    background: repeating-linear-gradient(90deg, var(--border-strong) 0 8px, transparent 8px 16px);
    z-index: -1;
  }
  .timeline__step:last-child::before { display: none; }
}

/* ============================================================
   FAQ ACCORDION  (unique section — details/summary)
   ============================================================ */
.faq { display: grid; gap: var(--space-3); }
.faq details {
  background: var(--surface);
  border: var(--border-1) solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}
.faq details[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  font-weight: var(--fw-semibold);
  font-size: var(--text-md);
  min-height: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-cream-warm);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--dur-base) var(--ease-spring), background-color var(--dur-base) var(--ease-out);
}
.faq summary .chev svg { width: 20px; height: 20px; color: var(--primary); }
.faq details[open] summary .chev { transform: rotate(45deg); background: var(--accent); }
.faq details[open] summary .chev svg { color: var(--color-ink); }
.faq__answer { padding: 0 var(--space-5) var(--space-5); color: var(--text-muted); }

/* ============================================================
   MENU LIST
   ============================================================ */
.menu-cat + .menu-cat { margin-top: var(--space-8); }
.menu-cat__head { display: flex; align-items: baseline; gap: var(--space-4); margin-bottom: var(--space-5); flex-wrap: wrap; }
.menu-cat__head h3 { font-size: var(--text-xl); }
.menu-cat__rule { flex: 1; height: 2px; background: repeating-linear-gradient(90deg,var(--border-strong) 0 6px,transparent 6px 12px); min-width: 40px; }
.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2) var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: var(--border-thin) solid var(--border);
  align-items: start;
}
.dish:last-child { border-bottom: none; }
.dish__name { font-weight: var(--fw-semibold); font-size: var(--text-md); }
.dish__desc { grid-column: 1 / -1; color: var(--text-muted); font-size: var(--text-base); max-width: 60ch; }
.dish__tags { grid-column: 1 / -1; display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-1); }

/* ============================================================
   LOCATION CARDS
   ============================================================ */
.loc-card__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
.loc-meta { display: flex; align-items: center; gap: var(--space-2); color: var(--text-muted); font-size: var(--text-base); }
.loc-meta svg { width: 18px; height: 18px; color: var(--secondary); flex: none; }

/* ============================================================
   FORMS
   ============================================================ */
.form { display: grid; gap: var(--space-5); }
.field { display: grid; gap: var(--space-2); }
.field label { font-weight: var(--fw-semibold); font-size: var(--text-base); }
.field .req { color: var(--primary); }
.field .hint { font-size: var(--text-sm); color: var(--text-subtle); }
.input, .textarea, .select {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  color: var(--text);
  background: var(--surface);
  border: var(--border-1) solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  min-height: 52px;
  width: 100%;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193,91,60,0.22);
}
.input::placeholder, .textarea::placeholder { color: var(--text-subtle); }
.field-row { display: grid; gap: var(--space-5); }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.checkbox { display: flex; align-items: flex-start; gap: var(--space-3); }
.checkbox input { width: 22px; height: 22px; margin-top: 3px; accent-color: var(--primary); flex: none; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  border-radius: var(--radius-xl);
  padding: var(--space-9) var(--space-6);
  text-align: center;
  background: var(--color-terracotta-d);
  color: var(--color-cream);
  border: var(--border-chunky) solid var(--color-ink);
  box-shadow: var(--shadow-sticker);
}
.cta-banner .h2 { color: var(--color-cream); font-family: var(--font-display); }
.cta-banner p { color: var(--color-cream); max-width: 48ch; margin-inline: auto; margin-top: var(--space-3); }
.cta-banner .hero__actions { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--color-ink); color: var(--color-cream); padding-block: var(--space-9) var(--space-6); }
.footer__grid { display: grid; gap: var(--space-8); }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer__brand .nav__wordmark { color: var(--color-yellow); font-size: var(--text-2xl); }
.footer__brand p { color: rgba(246,238,220,0.72); margin-top: var(--space-3); max-width: 34ch; }
.site-footer h4 { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--color-yellow); margin-bottom: var(--space-4); }
.footer__links { display: grid; gap: var(--space-2); }
.footer__links a { color: rgba(246,238,220,0.82); }
.footer__links a:hover { color: var(--color-cream); }
.footer__contact { display: grid; gap: var(--space-3); }
.footer__contact a { color: rgba(246,238,220,0.82); display: inline-flex; align-items: center; gap: var(--space-2); }
.footer__contact a:hover { color: var(--color-cream); }
.footer__contact svg { width: 18px; height: 18px; color: var(--color-yellow); flex: none; }
.socials { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.social {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(246,238,220,0.10);
  color: var(--color-cream);
  transition: background-color var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.social:hover { background: var(--color-yellow); color: var(--color-ink); transform: translateY(-2px); }
.social svg { width: 22px; height: 22px; }
.footer__bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: var(--border-thin) solid rgba(246,238,220,0.16);
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  color: rgba(246,238,220,0.6);
}
.footer__bottom .badge { font-family: var(--font-mono); }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.split { display: grid; gap: var(--space-8); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--wide-left { grid-template-columns: 1.15fr 0.85fr; } }
.media-round { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.media-round img { width: 100%; height: 100%; object-fit: cover; }
.media-sticker { border: var(--border-chunky) solid var(--color-ink); box-shadow: var(--shadow-sticker); }
.partners { display: grid; gap: var(--space-5); }
.partners .card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.partners .card img { margin-inline: auto; }
.partner-socials { display: flex; gap: var(--space-2); margin-top: var(--space-4); justify-content: center; }
.partner-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-cream-warm);
  color: var(--secondary);
  transition: background-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.partner-socials a:hover { background: var(--secondary); color: var(--color-cream); transform: translateY(-2px); }
.partner-socials svg { width: 20px; height: 20px; }
@media (min-width: 640px) { .partners { grid-template-columns: 1fr 1fr; } }
