/* =========================================================================
   VERSION 1 · "Aan de toonbank"
   Art direction: ChefyChef's own promo poster language blown up to page
   scale. Ink green, cream, flame orange, heavy condensed uppercase display.
   Signature device: a live 24 hour dial that knows whether the lunchroom in
   Middelburg is open right now and how long it stays open.
   Every token is scoped to #v1 so it cannot reach V2.
   ========================================================================= */

#v1 {
  --ink: #0e1b11;
  --ink-2: #142519;
  --forest: #1c3a2a;
  --cream: #fff3e1;
  --paper: #fbf6ea;
  --flame: #f64111;
  --flame-dim: #c2360f;
  --mustard: #e9b838;
  --leaf: #199b4a;
  --muted: rgba(255, 243, 225, 0.6);
  --line: rgba(255, 243, 225, 0.16);

  --display: "Anton", "Archivo", system-ui, sans-serif;
  --ui: "Archivo", system-ui, sans-serif;

  --gut: clamp(18px, 4.4vw, 64px);
  --maxw: 1360px;

  background: var(--ink);
  color: var(--cream);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

#v1 ::selection { background: var(--flame); color: var(--cream); }

.v1-shell {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gut);
}

.v1-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
}

.v1-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--flame);
}

.v1-h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 7.2vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.v1-lead {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
  color: rgba(255, 243, 225, 0.78);
  max-width: 56ch;
}

/* ---------- buttons ----------------------------------------------------- */

.v1-btn {
  --btn-bg: var(--flame);
  --btn-fg: var(--cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.v1-btn span { position: relative; z-index: 1; }

.v1-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.v1-btn:hover { transform: translateY(-2px); }
.v1-btn:hover::after { opacity: 0.12; }

.v1-btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  box-shadow: inset 0 0 0 1.5px var(--line);
}

.v1-btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cream); }

.v1-btn__arrow {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  flex: none;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.v1-btn:hover .v1-btn__arrow { transform: translateX(4px); }

/* ---------- navigation -------------------------------------------------- */

.v1-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(14, 27, 17, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.v1-nav__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
  min-height: 68px;
  padding-block: 10px;
}

.v1-nav__logo { flex: none; display: block; }
.v1-nav__logo img { width: clamp(74px, 8vw, 96px); height: auto; }

.v1-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
  margin-left: auto;
}

.v1-nav__link {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 243, 225, 0.72);
  padding-block: 6px;
  transition: color 0.2s ease;
}

.v1-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--flame);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.v1-nav__link:hover { color: var(--cream); }
.v1-nav__link:hover::after { transform: scaleX(1); }

.v1-nav__cta { padding: 12px 20px; font-size: 11px; }

.v1-nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--cream);
}

.v1-nav__phone svg { width: 15px; height: 15px; }

.v1-burger {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.v1-burger i {
  display: block;
  width: 16px;
  height: 1.8px;
  background: var(--cream);
  transition: transform 0.24s ease, opacity 0.2s ease;
}

.v1-nav[data-open="true"] .v1-burger i:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.v1-nav[data-open="true"] .v1-burger i:nth-child(2) { opacity: 0; }
.v1-nav[data-open="true"] .v1-burger i:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

@media (max-width: 1040px) {
  .v1-burger { display: flex; }
  .v1-nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gut) 22px;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.36s;
  }
  .v1-nav[data-open="true"] .v1-nav__links {
    max-height: 78vh;
    visibility: visible;
    overflow-y: auto;
  }
  .v1-nav__link {
    padding: 15px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }
  .v1-nav__link::after { display: none; }
  .v1-nav__phone { padding: 15px 0; }
  .v1-nav__cta { margin-top: 16px; justify-content: center; }
}

/* ---------- live status ticker ------------------------------------------ */

.v1-statusbar {
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
}

.v1-statusbar__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  padding-block: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v1-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 0 rgba(25, 155, 74, 0.6);
  animation: v1-pulse 2.6s ease-out infinite;
}

.v1-statusbar[data-open="false"] .v1-dot {
  background: var(--flame);
  animation: none;
}

@keyframes v1-pulse {
  0% { box-shadow: 0 0 0 0 rgba(25, 155, 74, 0.55); }
  70% { box-shadow: 0 0 0 11px rgba(25, 155, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(25, 155, 74, 0); }
}

.v1-statusbar__sep { color: rgba(255, 243, 225, 0.3); }
.v1-statusbar__loc { color: var(--muted); }
.v1-statusbar__right { margin-left: auto; color: var(--mustard); white-space: nowrap; }

@media (max-width: 720px) {
  .v1-statusbar__loc { display: none; }
  .v1-statusbar__inner { font-size: 10.5px; letter-spacing: 0.1em; gap: 10px; }
}

/* ---------- hero -------------------------------------------------------- */

.v1-hero {
  position: relative;
  padding-block: clamp(44px, 6vw, 92px) clamp(52px, 6vw, 96px);
  overflow: hidden;
}

.v1-hero::before {
  content: "";
  position: absolute;
  width: min(720px, 92vw);
  aspect-ratio: 1;
  right: -14%;
  top: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 65, 17, 0.2), transparent 66%);
  pointer-events: none;
}

.v1-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
}

.v1-hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(46px, 8.4vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  margin-top: 18px;
}

.v1-hero__title em {
  font-style: normal;
  display: block;
  color: var(--flame);
}

.v1-hero__lead { margin-top: 22px; }

.v1-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.v1-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 46px);
  margin-top: clamp(30px, 4vw, 50px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.v1-fact__n {
  display: block;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  color: var(--cream);
}

.v1-fact__l {
  display: block;
  margin-top: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* hero stage: the dial plus the cutout dishes */

.v1-stage {
  position: relative;
  aspect-ratio: 1 / 1.02;
  display: grid;
  place-items: center;
}

/* The dial sits on top of the food, with its own vignette so the ring and
   the status in the middle stay readable over any dish behind it. */
.v1-dial {
  position: relative;
  z-index: 3;
  width: min(94%, 430px);
  height: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(10, 20, 12, 0.9) 0%,
    rgba(10, 20, 12, 0.82) 46%,
    rgba(10, 20, 12, 0.34) 60%,
    transparent 70%);
}

.v1-dial__track { fill: none; stroke: rgba(255, 243, 225, 0.16); stroke-width: 9; }
.v1-dial__open {
  fill: none;
  stroke: var(--mustard);
  stroke-width: 9;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(233, 184, 56, 0.5));
}
.v1-dial__hand { stroke: var(--flame); stroke-width: 3; stroke-linecap: round; }
.v1-dial__tick { stroke: rgba(255, 243, 225, 0.34); stroke-width: 1.4; }
.v1-dial__num {
  fill: rgba(255, 243, 225, 0.5);
  font-family: "Archivo", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.v1-dial__center { text-anchor: middle; }
.v1-dial__state {
  fill: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.v1-dial__time {
  fill: var(--mustard);
  font-family: "Archivo", sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* Dishes orbit the dial and stay inside the stage box at every width, so
   they can never crawl over the headline column on a narrow screen. */
.v1-stage__dish {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.55));
  will-change: transform;
}

.v1-stage__dish--a { width: 64%; left: -7%; top: 1%; }
.v1-stage__dish--b { width: 44%; right: -7%; top: 33%; }
.v1-stage__dish--c { width: 58%; left: 2%; bottom: 1%; }

@media (max-width: 940px) {
  .v1-hero__grid { grid-template-columns: 1fr; }
  .v1-stage { aspect-ratio: 1 / 0.86; order: -1; max-width: 520px; width: 100%; margin-inline: auto; }
  .v1-dial { width: min(62%, 290px); }
  .v1-stage__dish--a { width: 58%; left: -5%; }
  .v1-stage__dish--b { width: 40%; right: -5%; }
  .v1-stage__dish--c { width: 52%; }
}

@media (max-width: 520px) {
  .v1-hero__actions .v1-btn { flex: 1 1 100%; justify-content: center; }
  .v1-hero { padding-top: 26px; }
}

/* ---------- marquee ----------------------------------------------------- */

.v1-marquee {
  border-block: 1px solid var(--line);
  background: var(--forest);
  overflow: hidden;
  padding-block: 16px;
}

.v1-marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: v1-slide 34s linear infinite;
}

.v1-marquee:hover .v1-marquee__track { animation-play-state: paused; }

.v1-marquee__group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}

.v1-marquee__word {
  font-family: var(--display);
  font-size: clamp(22px, 3.2vw, 42px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}

.v1-marquee__word--out {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 243, 225, 0.55);
}

.v1-marquee__star { color: var(--mustard); font-size: clamp(14px, 1.8vw, 22px); }

@keyframes v1-slide {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .v1-marquee__track { animation: none; }
}

/* ---------- de kaart (horizontal rail) ---------------------------------- */

.v1-kaart { padding-block: clamp(64px, 8vw, 128px) clamp(48px, 6vw, 92px); }

.v1-kaart__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.v1-railnav { display: flex; gap: 10px; }

.v1-railnav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.v1-railnav button:hover { background: var(--flame); border-color: var(--flame); }
.v1-railnav button:active { transform: scale(0.94); }
.v1-railnav svg { width: 17px; height: 17px; }

.v1-rail {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-inline: var(--gut);
  padding-block: 6px 30px;
  cursor: grab;
}

.v1-rail::-webkit-scrollbar { display: none; }
.v1-rail[data-drag="true"] { cursor: grabbing; scroll-snap-type: none; }

.v1-card {
  position: relative;
  flex: 0 0 clamp(230px, 24vw, 306px);
  scroll-snap-align: start;
  display: block;
  padding: 22px 22px 26px;
  border-radius: 22px;
  background: var(--forest);
  border: 1px solid rgba(255, 243, 225, 0.1);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), background 0.34s ease;
}

.v1-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  background-image: var(--zigzag);
  background-size: auto 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.v1-card:hover { transform: translateY(-8px); background: #214632; }
.v1-card:hover::after { opacity: 1; }

.v1-card__media {
  aspect-ratio: 1 / 0.84;
  display: grid;
  place-items: center;
}

.v1-card__media img {
  max-height: 100%;
  width: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.45));
  transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.v1-card:hover .v1-card__media img { transform: scale(1.07) rotate(-2deg); }

.v1-card__name {
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1;
  text-transform: uppercase;
}

.v1-card__go {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mustard);
}

.v1-card__go svg { width: 14px; height: 14px; }

.v1-card--deal { background: var(--flame); border-color: var(--flame); }
.v1-card--deal:hover { background: var(--flame-dim); }
.v1-card--deal .v1-card__go { color: var(--cream); }

.v1-card--deal .v1-card__media { border-radius: 14px; overflow: hidden; }
.v1-card--deal .v1-card__media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.v1-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--mustard);
  color: var(--ink);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- chefy deal (offset overlap) --------------------------------- */

.v1-deal {
  position: relative;
  padding-block: clamp(56px, 7vw, 110px);
  background: var(--paper);
  color: var(--ink);
}

.v1-deal__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
}

.v1-deal__poster {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(14, 27, 17, 0.34);
  transform: rotate(-2deg);
}

.v1-deal__poster img { width: 100%; height: auto; }

.v1-deal__copy { position: relative; }

.v1-deal .v1-eyebrow { color: var(--flame-dim); }
.v1-deal .v1-eyebrow::before { background: var(--flame); }

.v1-deal__title {
  font-family: var(--display);
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 0.87;
  text-transform: uppercase;
  margin-top: 16px;
}

.v1-deal__title span { color: var(--flame); }

.v1-deal__body {
  margin-top: 20px;
  max-width: 44ch;
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(14, 27, 17, 0.74);
}

.v1-deal__stamp {
  display: inline-block;
  margin-top: 22px;
  padding: 9px 18px;
  background: var(--mustard);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-2.4deg);
}

.v1-deal__actions { margin-top: 30px; }

.v1-deal .v1-btn--ghost {
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(14, 27, 17, 0.24);
}

.v1-deal .v1-btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

@media (max-width: 880px) {
  .v1-deal__grid { grid-template-columns: 1fr; }
  .v1-deal__poster { max-width: 420px; margin-inline: auto; }
}

/* ---------- combodeals (bento) ------------------------------------------ */

.v1-combos {
  background: var(--paper);
  color: var(--ink);
  padding-bottom: clamp(64px, 8vw, 120px);
}

.v1-combos__head { margin-bottom: clamp(26px, 3.4vw, 48px); }
.v1-combos .v1-eyebrow { color: var(--flame-dim); }
.v1-combos .v1-eyebrow::before { background: var(--flame); }
.v1-combos .v1-h2 { color: var(--ink); margin-top: 14px; }

.v1-combos__note {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(14, 27, 17, 0.6);
  max-width: 46ch;
}

.v1-bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.v1-combo {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.v1-combo:hover { transform: translateY(-6px); }

.v1-combo__img { overflow: hidden; }

.v1-combo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.v1-combo:hover .v1-combo__img img { transform: scale(1.05); }

.v1-combo__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 22px;
  flex: 1;
}

.v1-combo__name {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1;
  text-transform: uppercase;
}

.v1-combo__desc { font-size: 13px; color: var(--muted); line-height: 1.45; }

.v1-combo__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.v1-combo__was {
  font-size: 13px;
  color: rgba(255, 243, 225, 0.42);
  text-decoration: line-through;
}

.v1-combo__now {
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 32px);
  color: var(--mustard);
  line-height: 1;
}

.v1-combo--wide { grid-column: span 3; }
.v1-combo--wide .v1-combo__img { aspect-ratio: 16 / 8.4; }
.v1-combo--third { grid-column: span 2; }
.v1-combo--third .v1-combo__img { aspect-ratio: 16 / 10.4; }

/* The XL platter closes the grid as one full width banner rather than
   sitting alone on a half empty row. */
.v1-combo--full {
  grid-column: span 6;
  flex-direction: row;
  align-items: stretch;
  background: var(--forest);
}

.v1-combo--full .v1-combo__img { flex: 0 0 46%; }
.v1-combo--full .v1-combo__img img { aspect-ratio: 16 / 8; }
.v1-combo--full .v1-combo__body { justify-content: center; padding: clamp(20px, 3vw, 40px); }
.v1-combo--full .v1-combo__name { font-size: clamp(26px, 3.4vw, 46px); }
.v1-combo--full .v1-combo__desc { font-size: 15px; max-width: 42ch; }
.v1-combo--full .v1-combo__price { margin-top: 18px; padding-top: 0; }
.v1-combo--full .v1-combo__now { font-size: clamp(30px, 3.2vw, 44px); }

@media (max-width: 900px) {
  .v1-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v1-combo--wide,
  .v1-combo--third { grid-column: span 1; }
  .v1-combo--full { grid-column: span 2; flex-direction: column; }
  .v1-combo--full .v1-combo__img { flex: none; }
  .v1-combo__img { aspect-ratio: 16 / 10 !important; }
  .v1-combo--full .v1-combo__img img { aspect-ratio: auto; }
}

@media (max-width: 520px) {
  .v1-bento { grid-template-columns: 1fr; }
  .v1-combo--full { grid-column: span 1; }
}

/* ---------- zo bestel je (pinned steps) --------------------------------- */

.v1-steps {
  background: var(--forest);
  padding-block: clamp(64px, 8vw, 124px);
  position: relative;
}

.v1-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  background-image: var(--zigzag);
  background-size: auto 18px;
}

.v1-steps__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 4vw, 72px);
  align-items: start;
}

.v1-steps__sticky { position: sticky; top: 132px; }
.v1-steps__sticky .v1-h2 { margin-top: 16px; }
.v1-steps__sticky p { margin-top: 18px; }

.v1-steps__list { display: flex; flex-direction: column; }

.v1-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 34px);
  padding-block: clamp(26px, 3vw, 40px);
  border-top: 1px solid var(--line);
}

.v1-step:last-child { border-bottom: 1px solid var(--line); }

.v1-step__n {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(255, 243, 225, 0.42);
  transition: color 0.4s ease, -webkit-text-stroke-color 0.4s ease;
}

.v1-step:hover .v1-step__n,
.v1-step:focus-within .v1-step__n {
  color: var(--mustard);
  -webkit-text-stroke-color: var(--mustard);
}

.v1-step h3 {
  font-family: var(--display);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.02;
  text-transform: uppercase;
}

.v1-step p { margin-top: 10px; color: var(--muted); font-size: 15px; max-width: 46ch; }

@media (max-width: 880px) {
  .v1-steps__grid { grid-template-columns: 1fr; }
  .v1-steps__sticky { position: static; }
}

/* ---------- reviews (quote wall) ---------------------------------------- */

.v1-reviews { padding-block: clamp(64px, 8vw, 124px); }

.v1-reviews__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 54px);
}

.v1-score {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--ink-2);
}

.v1-score__n {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  color: var(--mustard);
}

.v1-score__t {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

.v1-wall {
  columns: 3;
  column-gap: clamp(14px, 1.6vw, 22px);
}

.v1-quote {
  break-inside: avoid;
  margin-bottom: clamp(14px, 1.6vw, 22px);
  padding: 24px 24px 22px;
  border-radius: 20px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}

.v1-quote:nth-child(3n + 1) { background: var(--forest); }
.v1-quote:nth-child(4n) { border-color: rgba(233, 184, 56, 0.4); }

.v1-quote__stars { display: flex; gap: 3px; color: var(--mustard); }
.v1-quote__stars svg { width: 14px; height: 14px; }

.v1-quote p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255, 243, 225, 0.9);
}

.v1-quote footer {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v1-quote cite { font-style: normal; font-weight: 800; }
.v1-quote time { color: rgba(255, 243, 225, 0.42); }

@media (max-width: 1000px) { .v1-wall { columns: 2; } }
@media (max-width: 640px) {
  .v1-wall { columns: 1; }
  .v1-reviews__head { grid-template-columns: 1fr; }
}

/* ---------- spaar & smul (diptych) -------------------------------------- */

.v1-spaar {
  background: var(--cream);
  color: var(--ink);
  padding-block: clamp(60px, 7vw, 116px);
}

.v1-spaar__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 66px);
  align-items: center;
}

.v1-spaar .v1-eyebrow { color: var(--flame-dim); }
.v1-spaar .v1-eyebrow::before { background: var(--flame); }
.v1-spaar .v1-h2 { margin-top: 14px; }

.v1-spaar__rule {
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.05;
  text-transform: uppercase;
  display: inline-block;
}

.v1-spaar__rule b { color: var(--mustard); font-weight: inherit; }

.v1-spaar__sub { margin-top: 16px; font-size: 15px; color: rgba(14, 27, 17, 0.7); max-width: 44ch; }

.v1-ladder {
  margin-top: 26px;
  border-top: 1.5px solid rgba(14, 27, 17, 0.16);
}

.v1-ladder li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(14, 27, 17, 0.12);
  font-size: 15px;
}

.v1-ladder li span:first-child { font-weight: 600; }

.v1-ladder li i {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted rgba(14, 27, 17, 0.34);
  transform: translateY(-4px);
}

.v1-ladder li span:last-child {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--flame-dim);
  white-space: nowrap;
}

.v1-spaar__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.v1-spaar__apps { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }

.v1-appbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.v1-appbtn:hover { transform: translateY(-2px); }
.v1-appbtn svg { width: 20px; height: 20px; flex: none; }
.v1-appbtn span { display: block; font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; }
.v1-appbtn strong { display: block; font-size: 13.5px; letter-spacing: 0.02em; }

.v1-spaar__media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(14, 27, 17, 0.28);
}

.v1-spaar__media img { width: 100%; height: auto; }

@media (max-width: 900px) {
  .v1-spaar__grid { grid-template-columns: 1fr; }
}

/* ---------- openingstijden en locatie ----------------------------------- */

.v1-hours {
  padding-block: clamp(64px, 8vw, 120px);
  background: var(--ink-2);
}

.v1-hours__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: center;
}

.v1-hours__dial { display: grid; place-items: center; }
.v1-hours__dial svg { width: min(100%, 380px); }

.v1-days { margin-top: clamp(22px, 3vw, 34px); }

.v1-day {
  display: grid;
  grid-template-columns: minmax(90px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: default;
  transition: background 0.24s ease, border-color 0.24s ease;
}

.v1-day + .v1-day { margin-top: 2px; }

.v1-day__name {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v1-day__bar {
  position: relative;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 243, 225, 0.1);
  overflow: hidden;
}

.v1-day__bar i {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 999px;
  background: var(--mustard);
  opacity: 0.7;
}

.v1-day__t { font-size: 13px; color: var(--muted); white-space: nowrap; }

.v1-day:hover,
.v1-day:focus-visible,
.v1-day[data-today="true"] {
  background: rgba(255, 243, 225, 0.06);
  border-color: var(--line);
}

.v1-day[data-today="true"] .v1-day__name { color: var(--mustard); }
.v1-day[data-today="true"] .v1-day__bar i { opacity: 1; background: var(--flame); }

.v1-visit {
  margin-top: clamp(26px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.v1-visit h3 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.v1-visit p, .v1-visit a {
  margin-top: 8px;
  display: block;
  font-size: 16px;
  text-decoration: none;
  line-height: 1.45;
}

.v1-visit a:hover { color: var(--mustard); }

@media (max-width: 880px) {
  .v1-hours__grid { grid-template-columns: 1fr; }
  .v1-hours__dial { order: -1; }
}

@media (max-width: 420px) {
  .v1-day { grid-template-columns: minmax(72px, auto) minmax(0, 1fr); row-gap: 6px; }
  .v1-day__t { grid-column: 1 / -1; }
}

/* ---------- footer ------------------------------------------------------ */

.v1-cta {
  position: relative;
  padding-block: clamp(70px, 9vw, 140px);
  background: var(--flame);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}

.v1-cta__title {
  font-family: var(--display);
  font-size: clamp(42px, 9vw, 130px);
  line-height: 0.85;
  text-transform: uppercase;
}

.v1-cta__sub { margin: 20px auto 0; max-width: 46ch; color: rgba(255, 243, 225, 0.86); }
.v1-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }

.v1-cta .v1-btn { --btn-bg: var(--ink); }
.v1-cta .v1-btn--ghost { --btn-bg: transparent; box-shadow: inset 0 0 0 1.5px rgba(255, 243, 225, 0.5); }
.v1-cta .v1-btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cream); }

.v1-foot { background: var(--ink); padding-block: clamp(40px, 5vw, 62px) 30px; }

/* Explicit tracks, not auto-fit: an auto-fit repeat sitting next to a fixed
   first track keeps generating columns that no longer fit on a phone, and
   the link lists end up stacked on top of the brand block. */
.v1-foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

@media (max-width: 900px) {
  .v1-foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .v1-foot__grid { grid-template-columns: 1fr; gap: 28px; }
}

.v1-foot__logo img { width: 132px; height: auto; }
.v1-foot__tag { margin-top: 16px; font-size: 14px; color: var(--muted); max-width: 34ch; }

.v1-foot h4 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 14px;
}

.v1-foot li + li { margin-top: 9px; }
.v1-foot a { font-size: 14.5px; text-decoration: none; color: rgba(255, 243, 225, 0.76); transition: color 0.2s ease; }
.v1-foot a:hover { color: var(--cream); }

.v1-foot__bottom {
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 243, 225, 0.44);
}

/* ---------- entrance animation defaults --------------------------------- */
/* Elements stay visible unless JS confirms GSAP is live, so a blocked CDN
   or a reduced motion preference can never leave the page blank. */

html.gsap-ready:not(.reduce-motion) #v1 [data-v1-rise] { opacity: 0; }
