/* =========================================================
   Helpman's Pasta's — Combineer. Mix. Geniet.
   Display: Anton · Accent: Permanent Marker · Body: Poppins
   ========================================================= */

:root {
  /* Brand palette (client-specified) */
  --green:        #b5cf4a;   /* Pasta Green */
  --lime:         #a5d02c;   /* Lime Accent */
  --lime-hover:   #96bc1e;
  --black:        #0c0c0a;
  --true-black:   #000000;
  --cream:        #f8efe0;
  --white:        #ffffff;
  --ink:          #141310;   /* body text on cream */
  --muted:        #5a5a52;

  /* Surfaces */
  --bg:           var(--cream);
  --surface:      #fffaf2;

  /* Type */
  --display: "Anton", system-ui, sans-serif;
  --hand:    "Permanent Marker", "Comic Sans MS", cursive;
  --body:    "Poppins", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --radius: 18px;
  --radius-lg: 30px;

  /* Torn edge mask */
  --torn: url("../images/torn-mask.svg");

  /* Easing */
  --ease: cubic-bezier(.22,.61,.36,1);          /* ease-out-quart-ish */
  --ease-expo: cubic-bezier(.16,1,.3,1);

  /* z-scale */
  --z-sticky: 100;
  --z-nav: 200;
  --z-overlay: 300;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

[hidden] { display: none !important; }
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

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

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--lime); color: var(--ink); font-weight: 600;
  padding: .7rem 1.3rem; border-radius: 0 0 12px 12px; z-index: var(--z-overlay);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Type helpers ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .005em;
  line-height: .92;
  text-transform: uppercase;
}
.hand { font-family: var(--hand); font-weight: 400; }

.section-title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: .95;
  text-align: center;
  letter-spacing: .01em;
  text-wrap: balance;
}
.section-title--light { color: var(--cream); }
.section-lead {
  text-align: center; max-width: 46ch; margin: .9rem auto 0;
  color: var(--muted); font-size: 1.05rem;
}
.section-lead--light { color: #d8d2c4; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--lime); --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .85rem 1.5rem; border: 2px solid transparent; border-radius: 999px;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

.btn--lime { background: var(--lime); color: var(--ink); box-shadow: 0 8px 22px -10px rgba(165,208,44,.9); }
.btn--lime:hover { background: var(--lime-hover); box-shadow: 0 12px 26px -10px rgba(165,208,44,.9); }

.btn--dark { background: var(--black); color: var(--cream); }
.btn--dark:hover { background: #000; color: var(--green); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn--ghost-dark { background: transparent; color: var(--cream); border-color: rgba(248,239,224,.45); }
.btn--ghost-dark:hover { border-color: var(--lime); color: var(--lime); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--true-black);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: .7rem var(--gutter);
  display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand__mark { width: 46px; height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { color: var(--white); font-weight: 700; font-size: 1.02rem; letter-spacing: .01em; }
.brand__tag  { color: var(--green); font-family: var(--hand); font-size: .82rem; }

.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a {
  color: #e9e6df; font-weight: 500; font-size: .98rem; padding: .35rem 0;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 3px; width: 100%;
  background: var(--lime); border-radius: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--white); }

.nav__actions { display: flex; align-items: center; gap: .8rem; }

.open-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(181,207,74,.14); color: var(--green);
  border: 1px solid rgba(181,207,74,.4);
  padding: .4rem .8rem; border-radius: 999px; font-size: .82rem; font-weight: 600;
}
.open-pill__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 0 rgba(165,208,44,.7); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(165,208,44,.6); }
  70% { box-shadow: 0 0 0 7px rgba(165,208,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(165,208,44,0); }
}

.nav__toggle { display: none; background: none; border: 0; padding: .4rem; }
.nav__toggle span {
  display: block; width: 26px; height: 3px; background: var(--white);
  border-radius: 3px; transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span + span { margin-top: 5px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  background: var(--true-black); border-top: 1px solid rgba(255,255,255,.08);
  padding: .6rem var(--gutter) 1.4rem; display: flex; flex-direction: column; gap: .25rem;
}
.mobile-nav a { color: #e9e6df; padding: .85rem .2rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-nav .btn { margin-top: .8rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--true-black);
  color: var(--cream);
  /* Full-bleed black background; content stays centred within 1500px. */
  padding-block: clamp(2rem,5vw,3.5rem) clamp(4.5rem,8vw,6.5rem);
  padding-inline: max(var(--gutter), calc((100% - 1500px) / 2));
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0,0.92fr) minmax(0,1.05fr) minmax(0,0.92fr);
  align-items: center;
  overflow: hidden;
}

.hero__media { position: relative; }
.hero__couple {
  width: 100%; aspect-ratio: 4/4.4; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8);
}

.hero__content { padding: .5rem 0; }
.hero__title {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  margin-bottom: 1.1rem;
}
.hero__title .line { display: block; }
.hero__title .line--accent {
  position: relative; color: var(--lime); font-size: 1.18em;
  width: max-content;
}
.scribble {
  position: absolute; left: -4%; bottom: -.32em; width: 112%; height: .55em;
  color: var(--green); pointer-events: none;
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem); color: #e7e2d6;
  max-width: 34ch; margin-bottom: 1.6rem; text-wrap: pretty;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.6rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: .5rem .9rem;
  font-size: .86rem; color: #cfcabb;
}
.hero__trust li { position: relative; padding-left: 1.4rem; }
.hero__trust li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--lime); font-weight: 700;
}

/* Bowl + callout + stamp */
.hero__bowl { position: relative; justify-self: center; width: 100%; max-width: 360px; }
.bowl {
  aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 6px solid rgba(248,239,224,.12);
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.9), inset 0 0 0 2px rgba(165,208,44,.25);
}
.bowl img { width: 100%; height: 100%; object-fit: cover; }
.bowl__callout {
  position: absolute; right: -.5rem; bottom: 7%;
  font-family: var(--hand); color: var(--green); font-size: .92rem; line-height: 1.25;
  text-align: left; background: rgba(12,12,10,.7); padding: .5rem .7rem; border-radius: 12px;
  backdrop-filter: blur(2px);
}

/* Rotating circular stamp */
.stamp {
  position: absolute; left: -14px; top: -14px; width: 104px; height: 104px;
  display: grid; place-items: center;
}
.stamp svg { width: 100%; height: 100%; animation: spin 18s linear infinite; }
.stamp text { fill: var(--cream); font-family: var(--body); font-size: 9.3px; font-weight: 600; letter-spacing: .5px; }
.stamp__mark { position: absolute; width: 38px; height: 38px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   TORN EDGES
   ========================================================= */
.torn {
  position: absolute; left: 0; right: 0; height: 52px; pointer-events: none; z-index: 2;
  -webkit-mask: var(--torn) center/100% 100% no-repeat;
          mask: var(--torn) center/100% 100% no-repeat;
}
.torn--down { bottom: -1px; background: var(--true-black); }
.torn--up   { top: -1px; transform: scaleY(-1); background: var(--cream); }
.torn--up-dark   { background: #1a1916; }
.torn--down-dark { bottom: -1px; background: #1a1916; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--lime); color: var(--ink);
  overflow: hidden; white-space: nowrap; padding: .55rem 0;
  border-bottom: 3px solid var(--black);
}
.marquee__track { display: inline-flex; will-change: transform; animation: marquee 26s linear infinite; }
.marquee__track span {
  font-family: var(--display); text-transform: uppercase; font-size: 1.1rem;
  letter-spacing: .04em; padding-right: 1rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   ITALIAANS CONCEPT
   ========================================================= */
.concept {
  max-width: var(--maxw); margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr 1.2fr auto; align-items: center;
}
.concept__head h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.05; }
.concept__head em { color: var(--lime); font-style: normal; }
.concept__body p { font-size: 1.06rem; color: #3a3832; }
.concept__body p + p { margin-top: .9rem; }
.concept__body strong { color: var(--ink); }
.concept__block {
  position: relative; background: var(--green); color: var(--ink);
  border-radius: var(--radius); padding: 1.6rem 1.7rem; align-self: stretch;
  display: grid; place-content: center; text-align: center; min-width: 210px;
  box-shadow: 0 18px 40px -22px rgba(150,188,30,.9);
}
.concept__block .display { font-size: clamp(1.3rem,2vw,1.7rem); }
.heart { position: absolute; width: 42px; height: 38px; color: var(--ink); }
.concept__block .heart { right: 14px; top: 12px; opacity: .55; }

/* =========================================================
   GARANTIES
   ========================================================= */
.garanties { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) var(--section-y); }
.garanties__grid {
  margin-top: clamp(2rem,4vw,3.2rem);
  display: grid; gap: clamp(1.4rem, 3vw, 2.6rem);
  grid-template-columns: repeat(4, 1fr);
}
.garantie { text-align: center; padding: 0 .4rem; position: relative; }
.garantie + .garantie::before {
  content: ""; position: absolute; left: 0; top: 8%; height: 84%; width: 1px;
  background: linear-gradient(rgba(20,19,16,0), rgba(20,19,16,.14), rgba(20,19,16,0));
}
.garantie__icon {
  width: 64px; height: 64px; margin: 0 auto 1rem; display: grid; place-items: center;
  background: var(--green); color: var(--ink); border-radius: 50%;
}
.garantie__icon svg { width: 32px; height: 32px; }
.garantie h3 { font-size: 1.18rem; margin-bottom: .5rem; letter-spacing: .005em; }
.garantie p { font-size: .95rem; color: var(--muted); text-wrap: pretty; }

/* =========================================================
   MODES (Afhalen / Bezorgen / Craving)
   ========================================================= */
.modes {
  position: relative; background: #1a1916; color: var(--cream);
  padding: clamp(4rem,7vw,6rem) var(--gutter) clamp(4.5rem,8vw,7rem);
}
.modes__grid {
  max-width: var(--maxw); margin: clamp(2rem,4vw,3rem) auto 0;
  display: grid; gap: 1.3rem; grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.mode {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end;
  box-shadow: 0 26px 50px -28px rgba(0,0,0,.85);
}
.mode--tall { transform: translateY(-22px); min-height: 420px; }
.mode__img { position: absolute; inset: 0; }
.mode__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.mode::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,6,.92) 8%, rgba(8,8,6,.45) 45%, rgba(8,8,6,.1) 75%);
}
.mode:hover .mode__img img { transform: scale(1.06); }
.mode__body { position: relative; z-index: 1; padding: 1.6rem; width: 100%; }
.mode__body h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.9rem; letter-spacing: .015em; }
.mode__body p { font-size: .96rem; color: #e4e0d4; margin: .4rem 0 1rem; max-width: 30ch; }
.mode__body strong { color: var(--lime); }

/* Rotating CTA stamp */
.cta-stamp {
  position: absolute; right: clamp(1rem,5vw,4rem); bottom: clamp(1.4rem,4vw,3rem);
  width: 132px; height: 132px; display: grid; place-items: center; z-index: 3;
  color: var(--ink);
}
.cta-stamp::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--lime); box-shadow: 0 14px 30px -10px rgba(165,208,44,.7);
  transition: transform .3s var(--ease);
}
.cta-stamp:hover::before { transform: scale(1.06); }
.cta-stamp svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
.cta-stamp text { fill: var(--ink); font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: .4px; }
.cta-stamp__core {
  position: relative; font-family: var(--display); text-transform: uppercase;
  font-size: 1.15rem; line-height: .9; text-align: center; color: var(--ink);
}

/* =========================================================
   ZO WERKT HET
   ========================================================= */
.steps { max-width: var(--maxw); margin: 0 auto; padding: var(--section-y) var(--gutter); }
.steps__row {
  margin-top: clamp(2.4rem,5vw,3.6rem);
  display: grid; align-items: start;
  grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1rem;
}
.step { text-align: center; max-width: 320px; margin: 0 auto; }
.step__media { position: relative; width: 200px; height: 200px; margin: 0 auto 1.1rem; }
.step__media img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  box-shadow: 0 22px 40px -22px rgba(0,0,0,.5);
}
.step__num {
  position: absolute; left: -6px; top: -6px; z-index: 1;
  width: 52px; height: 52px; display: grid; place-items: center;
  background: var(--black); color: var(--cream); border-radius: 50%;
  font-family: var(--display); font-size: 1.5rem; border: 3px solid var(--cream);
}
.step h3 { font-size: 1.3rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .96rem; }
.step__arrow { align-self: center; color: var(--green); padding-top: 70px; }
.step__arrow svg { width: 54px; }
.heart--inline { display: inline-block; position: static; width: 30px; height: 27px; color: var(--lime); vertical-align: middle; margin-left: .4rem; }

/* Specials */
.specials {
  margin-top: clamp(3rem,6vw,5rem); background: var(--surface);
  border: 1px solid rgba(20,19,16,.08); border-radius: var(--radius-lg);
  padding: clamp(1.6rem,3vw,2.6rem); text-align: center;
}
.specials__title { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.4rem,2.6vw,2rem); margin-bottom: 1.6rem; }
.specials__list {
  display: grid; gap: 1rem; grid-template-columns: repeat(4,1fr); margin-bottom: 1.8rem; text-align: left;
}
.special {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(20,19,16,.07); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.special:hover { transform: translateY(-4px); box-shadow: 0 18px 30px -20px rgba(0,0,0,.4); }
.special img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.special > div { padding: .8rem .9rem 1rem; }
.special__name { display: block; font-weight: 700; font-size: 1rem; }
.special__meta { display: block; font-size: .82rem; color: var(--muted); margin-top: .15rem; }
.badge-veg {
  font-family: var(--body); font-size: .64rem; font-weight: 700; text-transform: uppercase;
  background: var(--green); color: var(--ink); padding: .12rem .4rem; border-radius: 6px; vertical-align: middle;
  letter-spacing: .03em;
}
.special--viral { position: relative; background: var(--black); color: var(--cream); }
.special--viral .special__meta { color: #b9b4a7; }
.special__sticker {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  font-family: var(--hand); background: var(--lime); color: var(--ink);
  padding: .15rem .6rem; border-radius: 999px; font-size: .85rem; transform: rotate(7deg);
}
.special__noimg {
  aspect-ratio: 4/3; display: grid; place-content: center; text-align: center;
  color: var(--green); font-size: 1.5rem; line-height: .95;
  background: radial-gradient(circle at 50% 30%, #232017, #0c0c0a);
}

/* =========================================================
   FRANCHISE
   ========================================================= */
.franchise {
  position: relative; background: var(--green); color: var(--ink); overflow: hidden;
  padding: clamp(3.5rem,7vw,6rem) var(--gutter);
  display: grid; gap: clamp(1.5rem,4vw,3rem);
  grid-template-columns: auto 1.1fr auto; align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.leaf { position: absolute; font-size: 3.4rem; opacity: .8; filter: saturate(1.2) brightness(.85); pointer-events: none; }
.leaf--1 { top: 6%; left: 30%; transform: rotate(-18deg); }
.leaf--2 { bottom: 8%; left: 48%; transform: rotate(24deg); font-size: 2.6rem; }
.leaf--3 { top: 12%; left: 4%; font-size: 4rem; opacity: .25; }
.leaf--4 { bottom: 10%; right: 5%; font-size: 3rem; opacity: .25; }

.franchise__team { position: relative; text-align: center; display: grid; justify-items: center; gap: .9rem; }
.franchise__hand { font-size: 1.35rem; line-height: 1.15; transform: rotate(-6deg); }
.franchise__teamimg {
  width: 220px; height: 180px; object-fit: cover; object-position: center top;
  border-radius: var(--radius); border: 4px solid var(--black);
}
.franchise__copy h2 { font-size: clamp(2rem,4.4vw,3.4rem); margin-bottom: .9rem; }
.franchise__copy p { font-size: 1.08rem; max-width: 42ch; margin-bottom: 1.4rem; }

.franchise__polaroid {
  background: var(--white); padding: .7rem .7rem 1.3rem; border-radius: 6px;
  transform: rotate(4deg); box-shadow: 0 24px 44px -22px rgba(0,0,0,.5); width: 230px; justify-self: center;
}
.franchise__polaroid img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: 3px; }
.franchise__polaroid figcaption { font-family: var(--hand); text-align: center; margin-top: .5rem; font-size: 1rem; color: var(--ink); }

/* =========================================================
   VESTIGINGEN
   ========================================================= */
.vestigingen { background: var(--true-black); color: var(--cream); padding: var(--section-y) var(--gutter); }
.vest__photo {
  max-width: 980px; margin: clamp(2rem,4vw,3rem) auto 0;
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  border: 1px solid rgba(248,239,224,.1);
}
.vest__photo img { width: 100%; height: clamp(220px, 34vw, 380px); object-fit: cover; object-position: center 35%; }
.vest__photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: var(--hand); color: var(--cream); font-size: 1.1rem;
  padding: 1.6rem 1.4rem .9rem;
  background: linear-gradient(to top, rgba(8,8,6,.85), rgba(8,8,6,0));
}
.vest__grid {
  max-width: 980px; margin: 1.4rem auto 0;
  display: grid; gap: 1.4rem; grid-template-columns: 1fr 1fr;
}
.vest {
  background: #141310; border: 1px solid rgba(248,239,224,.1); border-radius: var(--radius-lg);
  padding: clamp(1.5rem,3vw,2.2rem);
}
.vest__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; }
.vest__head h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.8rem; letter-spacing: .02em; }
.vest__status { display: inline-flex; align-items: center; gap: .4rem; color: var(--green); font-size: .82rem; font-weight: 600; }
.vest__soon {
  font-family: var(--hand); background: var(--lime); color: var(--ink);
  padding: .1rem .7rem; border-radius: 999px; font-size: .85rem; transform: rotate(-4deg);
}
.vest__addr { color: #cdc8ba; margin-bottom: 1.1rem; }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 1.4rem; }
.hours th, .hours td { text-align: left; padding: .4rem 0; border-bottom: 1px solid rgba(248,239,224,.08); font-weight: 500; }
.hours th { color: #b9b4a7; font-weight: 500; }
.hours td { text-align: right; color: var(--cream); font-variant-numeric: tabular-nums; }
.hours--muted td { color: var(--green); }
.vest__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { position: relative; background: var(--true-black); color: var(--cream); overflow: hidden; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3rem,6vw,4.5rem) var(--gutter) 2rem;
  display: grid; gap: clamp(1.6rem,4vw,3rem);
  grid-template-columns: 1.6fr 1fr 1fr;
}
.footer__col h2 { font-size: clamp(1.3rem,2.4vw,1.8rem); margin-bottom: .8rem; line-height: 1.15; }
.footer__col h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.1rem; letter-spacing: .02em; margin-bottom: 1rem; color: var(--green); }
.footer__col--contact p { color: #c9c4b6; max-width: 42ch; }
.footer__line { margin-top: .5rem; }
.footer__line a { color: var(--green); }
.footer__line a:hover { text-decoration: underline; }
.footer__col nav, .footer__col a { display: block; }
.footer__col > a { color: #d9d5c8; padding: .3rem 0; }
.footer__col > a:hover { color: var(--lime); }
.footer__hours { margin-top: 1rem; color: #b3aea1; font-size: .85rem; }

.social { display: flex; gap: .6rem; }
.social a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(248,239,224,.25); border-radius: 50%; color: var(--cream);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.social a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; }

.footer__bar {
  border-top: 1px solid rgba(248,239,224,.1);
  padding: 1.1rem var(--gutter); display: flex; align-items: center; justify-content: center; gap: .6rem;
  color: #a8a397; font-size: .86rem;
}
.footer__bar img { width: 26px; height: 26px; }

/* =========================================================
   REVEAL MOTION
   Content is visible by default. JS adds .pre to off-screen
   blocks (the only hidden state) and the observer removes it;
   a safety timeout guarantees reveal even in headless renders.
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: opacity .7s var(--ease-expo), transform .7s var(--ease-expo); }
  .js .reveal.pre { opacity: 0; transform: translateY(26px); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero__bowl { grid-column: 1 / -1; justify-self: start; max-width: 300px; order: 3; }
  .concept { grid-template-columns: 1fr 1fr; }
  .concept__block { grid-column: 1 / -1; }
  .garanties__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .garantie:nth-child(odd)::before, .garantie + .garantie::before { display: none; }
  .specials__list { grid-template-columns: repeat(2, 1fr); }
  .franchise { grid-template-columns: 1fr 1fr; }
  .franchise__polaroid { grid-column: 1 / -1; justify-self: center; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__inner { gap: .5rem; padding-inline: .9rem; }
  .brand { gap: .5rem; min-width: 0; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__name { font-size: .92rem; }
  .brand__tag { display: none; }                 /* save width for the order CTA */
  .nav__actions { gap: .45rem; }
  .nav__cta { padding: .5rem .85rem; font-size: .85rem; }
  .open-pill .open-pill__text { display: none; }
  .open-pill { padding: .42rem; }

  .hero { grid-template-columns: 1fr; text-align: left; padding-top: 1.2rem; }
  .hero__media { order: 2; }
  .hero__couple { aspect-ratio: 16/10; }
  .hero__content { order: 1; }       /* headline + CTA in first viewport */
  .hero__bowl { order: 3; justify-self: center; max-width: 280px; }
  .hero__title .line--accent { width: auto; }
  .stamp { width: 84px; height: 84px; }

  .marquee__track span { font-size: .95rem; }

  .concept { grid-template-columns: 1fr; text-align: left; }
  .garanties__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .garanties__grid { gap: 2.4rem; }

  .modes__grid { grid-template-columns: 1fr; }
  .mode--tall { transform: none; }
  /* Keep it positioned so its absolute svg/::before stay sized to the stamp,
     not stretched to fill the section. */
  .cta-stamp { position: relative; right: auto; bottom: auto; margin: 2.5rem auto 0; }

  .steps__row { grid-template-columns: 1fr; gap: 1.5rem; }
  .step__arrow { transform: rotate(90deg); padding: 0; }
  .specials__list { grid-template-columns: 1fr; }

  .franchise { grid-template-columns: 1fr; text-align: center; }
  .franchise__copy p { margin-inline: auto; }
  .leaf--1, .leaf--2 { display: none; }

  .vest__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track, .stamp svg, .cta-stamp svg, .open-pill__dot { animation: none !important; }
  .btn:hover, .special:hover, .social a:hover { transform: none; }
}
