/* =========================================================================
   VERSION 2 · "De spaarkaart"
   Art direction: printed paper. Warm stock, bottle green ink, terracotta,
   an editorial serif set against a technical grotesk, hairline rules and
   ledger typography. Nothing here shares V1's poster language.
   Signature device: a real loyalty card. It punches a stamp for every
   chapter you read, and its points engine runs on ChefyChef's own rule,
   one euro is five points, against their own real rewards ladder.
   ========================================================================= */

#v2 {
  --paper: #f4ecdd;
  --paper-2: #eae0cd;
  --paper-3: #fbf7ee;
  --ink: #14231a;
  --ink-70: rgba(20, 35, 26, 0.7);
  --ink-45: rgba(20, 35, 26, 0.45);
  --bottle: #1e3d2c;
  --terra: #c24d22;
  --leaf: #199b4a;
  --gold: #b5862b;
  --rule: rgba(20, 35, 26, 0.18);

  --serif: "Fraunces", Georgia, serif;
  --grot: "Space Grotesk", system-ui, sans-serif;

  --gut: clamp(18px, 4.4vw, 72px);
  --maxw: 1280px;

  background: var(--paper);
  color: var(--ink);
  font-family: var(--grot);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

#v2 ::selection { background: var(--terra); color: var(--paper-3); }

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

.v2-label {
  display: block;
  font-family: var(--grot);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terra);
}

.v2-h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 120;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.022em;
}

.v2-h2 em {
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 120;
  color: var(--terra);
}

.v2-body { font-size: clamp(15.5px, 1.15vw, 17.5px); line-height: 1.68; color: var(--ink-70); }

.v2-rule { height: 1px; background: var(--rule); border: 0; }

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

.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 24px;
  border: 1.4px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper-3);
  font-family: var(--grot);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.v2-btn:hover { background: var(--terra); border-color: var(--terra); transform: translateY(-2px); }
.v2-btn svg { width: 15px; height: 15px; transition: transform 0.26s ease; }
.v2-btn:hover svg { transform: translateX(3px); }

.v2-btn--line { background: transparent; color: var(--ink); }
.v2-btn--line:hover { background: var(--ink); color: var(--paper-3); border-color: var(--ink); }

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

.v2-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 236, 221, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

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

.v2-nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.v2-nav__logo img { width: clamp(70px, 7.4vw, 88px); height: auto; }

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

.v2-nav__link {
  font-family: var(--grot);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-decoration: none;
  color: var(--ink-70);
  padding-block: 5px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.v2-nav__link:hover { color: var(--ink); border-color: var(--terra); }

.v2-nav__cta { padding: 12px 19px; font-size: 11.5px; }

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

.v2-burger i { display: block; width: 16px; height: 1.6px; background: var(--ink); transition: transform 0.24s ease, opacity 0.2s ease; }
.v2-nav[data-open="true"] .v2-burger i:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.v2-nav[data-open="true"] .v2-burger i:nth-child(2) { opacity: 0; }
.v2-nav[data-open="true"] .v2-burger i:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

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

/* ---------- hero · editorial cover -------------------------------------- */

.v2-hero { position: relative; padding-block: clamp(30px, 4vw, 62px) clamp(48px, 6vw, 88px); }

.v2-hero__masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--grot);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.v2-hero__masthead span:nth-child(2) { color: var(--terra); }
.v2-hero__masthead span:last-child { color: var(--ink-45); }

.v2-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(24px, 3.6vw, 56px);
  align-items: center;
  padding-top: clamp(26px, 3.4vw, 48px);
}

.v2-hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 144;
  font-size: clamp(46px, 8.6vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.032em;
}

.v2-hero__title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 80, "WONK" 1, "opsz" 144;
  color: var(--terra);
}

.v2-hero__lead { margin-top: 24px; max-width: 42ch; }

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

.v2-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-top: clamp(28px, 3.4vw, 44px);
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--grot);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.v2-hero__meta b { color: var(--ink); font-weight: 700; }

.v2-hero__plate {
  position: relative;
  aspect-ratio: 1 / 1.06;
  display: grid;
  place-items: center;
}

.v2-plate__disc {
  position: absolute;
  inset: 6% 4%;
  border-radius: 50%;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  box-shadow: 0 30px 70px rgba(20, 35, 26, 0.14) inset, 0 20px 50px rgba(20, 35, 26, 0.1);
}

.v2-plate__ring {
  position: absolute;
  inset: 10.5% 8.5%;
  border-radius: 50%;
  border: 1px dashed rgba(20, 35, 26, 0.22);
}

.v2-plate__spin { position: absolute; inset: 3% 1%; }
.v2-plate__spin svg { width: 100%; height: 100%; }
.v2-plate__spin text { fill: var(--ink-45); font-family: "Space Grotesk", sans-serif; font-size: 6.1px; font-weight: 700; letter-spacing: 0.42em; text-transform: uppercase; }

.v2-plate__dish {
  position: relative;
  z-index: 2;
  width: 54%;
  filter: drop-shadow(0 24px 34px rgba(20, 35, 26, 0.28));
}

.v2-plate__badge {
  position: absolute;
  right: 2%;
  top: 6%;
  width: clamp(78px, 11vw, 118px);
  height: clamp(78px, 11vw, 118px);
  border-radius: 50%;
  background: var(--terra);
  color: var(--paper-3);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 2px;
  transform: rotate(-9deg);
  box-shadow: 0 14px 26px rgba(194, 77, 34, 0.34);
}

.v2-plate__badge b { font-family: var(--serif); font-size: clamp(19px, 2.4vw, 27px); line-height: 1; font-weight: 700; }
.v2-plate__badge span { font-size: 8.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.86; }

@media (max-width: 900px) {
  .v2-hero__grid { grid-template-columns: 1fr; }
  .v2-hero__plate { order: -1; aspect-ratio: 1 / 0.9; max-width: 460px; margin-inline: auto; width: 100%; }
}

/* ---------- index van de kaart ------------------------------------------ */

.v2-index {
  position: relative;
  padding-block: clamp(60px, 7vw, 116px);
  background: var(--paper-3);
  border-block: 1px solid var(--rule);
}

.v2-index__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.v2-index__head .v2-h2 { margin-top: 12px; }

.v2-index__list { border-top: 1px solid var(--ink); }

.v2-row {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
  padding: clamp(14px, 1.8vw, 22px) 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: color 0.24s ease;
}

.v2-row::before {
  content: "";
  position: absolute;
  left: calc(var(--gut) * -1);
  right: calc(var(--gut) * -1);
  top: 0;
  bottom: 0;
  background: var(--paper-2);
  opacity: 0;
  transition: opacity 0.26s ease;
  z-index: 0;
}

.v2-row:hover::before,
.v2-row:focus-visible::before { opacity: 1; }

.v2-row > * { position: relative; z-index: 1; }

.v2-row__n {
  font-family: var(--grot);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-45);
}

.v2-row__name {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "opsz" 90;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-row:hover .v2-row__name { transform: translateX(10px); color: var(--terra); }

.v2-row__thumb { width: 62px; height: 46px; object-fit: contain; }

.v2-row__go {
  font-family: var(--grot);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-45);
  white-space: nowrap;
}

.v2-row:hover .v2-row__go { color: var(--terra); }

.v2-peek {
  position: fixed;
  z-index: 40;
  width: 250px;
  height: 250px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.86);
  transition: opacity 0.24s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  display: grid;
  place-items: center;
}

.v2-peek img { max-width: 100%; max-height: 100%; filter: drop-shadow(0 24px 34px rgba(20, 35, 26, 0.3)); }
.v2-peek[data-on="true"] { opacity: 1; transform: translate3d(-50%, -50%, 0) scale(1); }

@media (hover: hover) and (min-width: 901px) { .v2-row__thumb { display: none; } }
@media (hover: none), (max-width: 900px) { .v2-peek { display: none; } }

@media (max-width: 620px) {
  .v2-row { grid-template-columns: 34px minmax(0, 1fr) auto; }
  .v2-row__go { display: none; }
  .v2-row__thumb { width: 48px; height: 38px; }
}

/* ---------- verhaal · editorial spread ---------------------------------- */

.v2-story { padding-block: clamp(64px, 8vw, 122px); }

.v2-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 4vw, 70px);
  align-items: start;
}

.v2-story__aside { position: sticky; top: 120px; }
.v2-story__aside .v2-h2 { margin-top: 12px; }

.v2-story__stamp {
  margin-top: 26px;
  display: inline-grid;
  place-items: center;
  gap: 2px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 2px solid var(--bottle);
  color: var(--bottle);
  transform: rotate(-7deg);
  text-align: center;
}

.v2-story__stamp b { font-family: var(--serif); font-size: 27px; line-height: 1; font-weight: 700; }
.v2-story__stamp span { font-size: 8.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }

.v2-story__text { columns: 2; column-gap: clamp(24px, 3vw, 46px); font-size: clamp(15.5px, 1.1vw, 17px); line-height: 1.72; color: var(--ink-70); }
.v2-story__text p { break-inside: avoid; }
.v2-story__text p + p { margin-top: 1.15em; }

.v2-story__text p:first-child::first-letter {
  float: left;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 4.05em;
  line-height: 0.78;
  padding: 0.06em 0.1em 0 0;
  color: var(--terra);
}

.v2-story__strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 20px);
  margin-top: clamp(30px, 4vw, 52px);
}

.v2-story__strip figure {
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 18px 14px 14px;
  text-align: center;
}

.v2-story__strip img { height: clamp(96px, 11vw, 148px); width: auto; margin: 0 auto 12px; object-fit: contain; }

.v2-story__strip figcaption {
  font-family: var(--grot);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-45);
}

@media (max-width: 900px) {
  .v2-story__grid { grid-template-columns: 1fr; }
  .v2-story__aside { position: static; }
  .v2-story__text { columns: 1; }
}

/* ---------- spaarkaart · rekenmachine ----------------------------------- */

.v2-loyal {
  background: var(--bottle);
  color: var(--paper-3);
  padding-block: clamp(64px, 8vw, 124px);
  position: relative;
  overflow: hidden;
}

.v2-loyal .v2-label { color: #f0c96a; }
.v2-loyal .v2-h2 { margin-top: 12px; }
.v2-loyal .v2-h2 em { color: #f0c96a; }
.v2-loyal .v2-body { color: rgba(251, 247, 238, 0.74); }

.v2-loyal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 66px);
  align-items: start;
  margin-top: clamp(30px, 4vw, 50px);
}

.v2-calc {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  background: rgba(251, 247, 238, 0.06);
  border: 1px solid rgba(251, 247, 238, 0.16);
}

.v2-calc__top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.v2-calc__lab { font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(251, 247, 238, 0.6); }

.v2-calc__euro { font-family: var(--serif); font-size: clamp(38px, 5vw, 58px); line-height: 1; font-weight: 700; }

.v2-calc__range { margin-top: 22px; }

.v2-calc__range input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(251, 247, 238, 0.24);
  outline-offset: 8px;
  cursor: pointer;
}

.v2-calc__range input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f0c96a;
  border: 4px solid var(--bottle);
  box-shadow: 0 0 0 1px #f0c96a;
  cursor: grab;
}

.v2-calc__range input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f0c96a;
  border: 4px solid var(--bottle);
  box-shadow: 0 0 0 1px #f0c96a;
  cursor: grab;
}

.v2-calc__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: rgba(251, 247, 238, 0.44);
}

.v2-calc__out {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(251, 247, 238, 0.18);
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.v2-calc__pts { font-family: var(--serif); font-size: clamp(40px, 6vw, 68px); line-height: 0.94; font-weight: 700; color: #f0c96a; }
.v2-calc__ptslab { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(251, 247, 238, 0.6); }
.v2-calc__msg { margin-top: 14px; font-size: 14.5px; color: rgba(251, 247, 238, 0.8); min-height: 3em; }
.v2-calc__msg b { color: #f0c96a; }

.v2-ladder { border-top: 1px solid rgba(251, 247, 238, 0.2); }

.v2-ladder__group {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px dashed rgba(251, 247, 238, 0.18);
}

.v2-ladder__group:first-child { border-top: 0; margin-top: 0; }

.v2-ladder__gname {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(194, 77, 34, 0.16);
  display: inline-block;
  padding: 3px 9px;
  border-radius: 3px;
}

.v2-ladder__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  font-size: 15px;
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.v2-ladder__item i { flex: 1; height: 1px; border-bottom: 1px dotted rgba(251, 247, 238, 0.3); transform: translateY(-4px); }
.v2-ladder__item b { font-family: var(--serif); font-weight: 700; font-size: 16px; white-space: nowrap; }

.v2-ladder__item[data-unlocked="true"] { opacity: 1; color: #f0c96a; }
.v2-ladder__item[data-unlocked="true"] i { border-bottom-color: rgba(240, 201, 106, 0.5); }

.v2-loyal__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.v2-loyal .v2-btn { background: #f0c96a; border-color: #f0c96a; color: var(--bottle); }
.v2-loyal .v2-btn:hover { background: var(--paper-3); border-color: var(--paper-3); }
.v2-loyal .v2-btn--line { background: transparent; color: var(--paper-3); border-color: rgba(251, 247, 238, 0.4); }
.v2-loyal .v2-btn--line:hover { background: var(--paper-3); color: var(--bottle); }

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

/* ---------- deals · card stack ------------------------------------------ */

.v2-deals { padding-block: clamp(64px, 8vw, 120px); }

.v2-deals__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(26px, 3.4vw, 46px); }
.v2-deals__head .v2-h2 { margin-top: 12px; }

.v2-deals__nav { display: flex; gap: 9px; }

.v2-deals__nav button {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  border: 1.4px solid var(--rule);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.v2-deals__nav button:hover { background: var(--ink); color: var(--paper-3); border-color: var(--ink); }
.v2-deals__nav svg { width: 16px; height: 16px; }

.v2-deck {
  display: flex;
  gap: clamp(14px, 1.8vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-inline: var(--gut);
  padding-block: 4px 26px;
}

.v2-deck::-webkit-scrollbar { display: none; }

.v2-ticket {
  position: relative;
  flex: 0 0 clamp(264px, 30vw, 372px);
  scroll-snap-align: center;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.34s ease;
}

.v2-ticket:hover { transform: translateY(-7px); box-shadow: 0 26px 48px rgba(20, 35, 26, 0.16); }

.v2-ticket__img { aspect-ratio: 16 / 10.6; overflow: hidden; background: var(--paper-2); }
.v2-ticket__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.v2-ticket:hover .v2-ticket__img img { transform: scale(1.05); }

.v2-ticket__perf {
  position: relative;
  height: 18px;
  background:
    radial-gradient(circle at 0 50%, var(--paper) 8px, transparent 8px),
    radial-gradient(circle at 100% 50%, var(--paper) 8px, transparent 8px);
  border-bottom: 1px dashed var(--rule);
}

.v2-ticket__body { padding: 16px 20px 20px; display: flex; flex-direction: column; gap: 7px; flex: 1; }

.v2-ticket__group { font-size: 9.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra); }

.v2-ticket__name {
  font-family: var(--serif);
  font-weight: 600;
  font-variation-settings: "SOFT" 30, "opsz" 60;
  font-size: clamp(21px, 2.1vw, 27px);
  line-height: 1.05;
  letter-spacing: -0.014em;
}

.v2-ticket__desc { font-size: 13.5px; line-height: 1.5; color: var(--ink-45); }

.v2-ticket__price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--rule); }
.v2-ticket__was { font-size: 13px; color: var(--ink-45); text-decoration: line-through; }
.v2-ticket__now { font-family: var(--serif); font-weight: 700; font-size: clamp(23px, 2.2vw, 30px); line-height: 1; color: var(--terra); }

/* ---------- torta band --------------------------------------------------- */

.v2-band {
  position: relative;
  background: var(--ink);
  color: var(--paper-3);
  overflow: hidden;
}

.v2-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding-block: clamp(48px, 6vw, 96px);
}

.v2-band .v2-label { color: #f0c96a; }
.v2-band .v2-h2 { margin-top: 14px; }
.v2-band .v2-h2 em { color: var(--terra); }
.v2-band .v2-body { color: rgba(251, 247, 238, 0.72); margin-top: 18px; max-width: 40ch; }

.v2-band__note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(251, 247, 238, 0.28);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.v2-band__note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--terra); }

.v2-band__actions { margin-top: 28px; }
.v2-band .v2-btn { background: var(--terra); border-color: var(--terra); color: var(--paper-3); }
.v2-band .v2-btn:hover { background: var(--paper-3); border-color: var(--paper-3); color: var(--ink); }

.v2-band__poster { position: relative; }
.v2-band__poster img { width: 100%; height: auto; border-radius: 6px; box-shadow: 0 34px 64px rgba(0, 0, 0, 0.44); }

@media (max-width: 880px) {
  .v2-band__inner { grid-template-columns: 1fr; }
  .v2-band__poster { max-width: 380px; }
}

/* ---------- reviews · single quote --------------------------------------- */

.v2-say { padding-block: clamp(64px, 8vw, 120px); background: var(--paper-3); border-block: 1px solid var(--rule); }

.v2-say__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(26px, 4vw, 62px);
  align-items: center;
}

.v2-say__meta .v2-h2 { margin-top: 12px; }

.v2-say__count {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-70);
}

.v2-say__count b { font-family: var(--serif); font-size: 30px; font-weight: 700; display: block; line-height: 1.1; }

.v2-say__stage { position: relative; }

.v2-say__quote { min-height: 250px; display: grid; align-content: center; }

.v2-say__mark { font-family: var(--serif); font-size: 78px; line-height: 0.6; color: var(--terra); font-weight: 700; }

.v2-say__text {
  margin-top: 16px;
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40, "opsz" 100;
  font-size: clamp(21px, 2.6vw, 33px);
  line-height: 1.28;
  letter-spacing: -0.016em;
}

.v2-say__who { margin-top: 22px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-45); }
.v2-say__who cite { font-style: normal; font-weight: 700; color: var(--ink); }

.v2-say__ctrl { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--rule); }

.v2-say__ctrl button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.4px solid var(--rule);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.v2-say__ctrl button:hover { background: var(--ink); color: var(--paper-3); border-color: var(--ink); }
.v2-say__ctrl svg { width: 16px; height: 16px; }
.v2-say__ctrl span { font-family: var(--grot); font-size: 12px; letter-spacing: 0.14em; color: var(--ink-45); }
.v2-say__ctrl a { margin-left: auto; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); }

@media (max-width: 860px) { .v2-say__grid { grid-template-columns: 1fr; } }

/* ---------- bezoek · receipt --------------------------------------------- */

.v2-visit { padding-block: clamp(64px, 8vw, 120px); }

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

.v2-visit__copy .v2-h2 { margin-top: 12px; }
.v2-visit__copy .v2-body { margin-top: 18px; max-width: 40ch; }

.v2-visit__lines { margin-top: 28px; }

.v2-visit__lines div { padding: 14px 0; border-top: 1px solid var(--rule); display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 16px; align-items: baseline; }
.v2-visit__lines dt { font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-45); }
.v2-visit__lines dd { font-size: 16.5px; }
.v2-visit__lines a { text-decoration: none; border-bottom: 1px solid var(--rule); }
.v2-visit__lines a:hover { color: var(--terra); border-color: var(--terra); }

.v2-receipt {
  position: relative;
  background: var(--paper-3);
  padding: clamp(26px, 3vw, 40px) clamp(22px, 2.6vw, 34px) clamp(30px, 3.4vw, 42px);
  box-shadow: 0 24px 54px rgba(20, 35, 26, 0.14);
  font-family: var(--grot);
  transform: rotate(-1.1deg);
}

.v2-receipt::before,
.v2-receipt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--paper-3) 50%),
    linear-gradient(-45deg, transparent 50%, var(--paper-3) 50%);
  background-size: 16px 16px;
  background-repeat: repeat-x;
}

.v2-receipt::before { top: -11px; transform: rotate(180deg); }
.v2-receipt::after { bottom: -11px; }

.v2-receipt__head { text-align: center; padding-bottom: 16px; border-bottom: 1px dashed var(--rule); }
.v2-receipt__head img { width: 96px; height: auto; margin: 0 auto 10px; }
.v2-receipt__head p { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-45); }

.v2-receipt__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 0;
  font-size: 13.5px;
}

.v2-receipt__row i { flex: 1; height: 1px; border-bottom: 1px dotted var(--rule); transform: translateY(-4px); }
.v2-receipt__row b { font-weight: 500; white-space: nowrap; }
.v2-receipt__row[data-today="true"] { color: var(--terra); font-weight: 700; }
.v2-receipt__row[data-today="true"] b { font-weight: 700; }

.v2-receipt__foot { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--rule); text-align: center; }
.v2-receipt__foot strong { display: block; font-family: var(--serif); font-size: 20px; font-weight: 700; }
.v2-receipt__foot span { display: block; margin-top: 5px; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-45); }

.v2-receipt__code {
  margin-top: 16px;
  height: 42px;
  background-image: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 4px, var(--ink) 4px 5px, transparent 5px 9px, var(--ink) 9px 12px, transparent 12px 14px);
  opacity: 0.82;
}

@media (max-width: 860px) {
  .v2-visit__grid { grid-template-columns: 1fr; }
  .v2-receipt { max-width: 400px; margin-inline: auto; }
}

@media (max-width: 420px) {
  .v2-visit__lines div { grid-template-columns: 1fr; gap: 4px; }
}

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

.v2-foot { background: var(--ink); color: var(--paper-3); padding-block: clamp(52px, 6vw, 92px) 28px; }

.v2-foot__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding-bottom: clamp(30px, 4vw, 50px);
  border-bottom: 1px solid rgba(251, 247, 238, 0.18);
}

.v2-foot__title {
  font-family: var(--serif);
  font-weight: 600;
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 144;
  font-size: clamp(34px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.v2-foot__title em { font-style: italic; font-weight: 400; color: #f0c96a; }

.v2-foot .v2-btn { background: var(--terra); border-color: var(--terra); color: var(--paper-3); }
.v2-foot .v2-btn:hover { background: var(--paper-3); border-color: var(--paper-3); color: var(--ink); }

.v2-foot__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(22px, 3vw, 44px);
  padding-block: clamp(30px, 4vw, 48px);
}

.v2-foot__cols h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(251, 247, 238, 0.44); margin-bottom: 14px; }
.v2-foot__cols li + li { margin-top: 8px; }
.v2-foot__cols a, .v2-foot__cols p { font-size: 14.5px; text-decoration: none; color: rgba(251, 247, 238, 0.82); line-height: 1.5; }
.v2-foot__cols a:hover { color: #f0c96a; }

.v2-foot__logo { display: flex; align-items: center; gap: 14px; }
.v2-foot__logo img { width: 112px; height: auto; }

.v2-foot__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(251, 247, 238, 0.18);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(251, 247, 238, 0.42);
}

@media (max-width: 700px) { .v2-foot__top { grid-template-columns: 1fr; } }

/* =========================================================================
   SIGNATURE DEVICE · de spaarkaart
   ========================================================================= */

.v2-card {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 18px;
  width: 244px;
  padding: 14px 15px 15px;
  border-radius: 10px;
  background: var(--paper-3);
  color: var(--ink);
  border: 1px solid rgba(20, 35, 26, 0.2);
  box-shadow: 0 20px 46px rgba(20, 35, 26, 0.26);
  font-family: var(--grot);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.v2-card[data-collapsed="true"] { transform: translateY(calc(100% - 46px)); }

.v2-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 0 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.v2-card__title { font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.v2-card__count { margin-left: auto; font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--terra); }

.v2-card__chev { width: 14px; height: 14px; transition: transform 0.3s ease; color: var(--ink-45); }
.v2-card[data-collapsed="true"] .v2-card__chev { transform: rotate(180deg); }

.v2-card__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }

.v2-stamp {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(20, 35, 26, 0.32);
  display: grid;
  place-items: center;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--ink-45);
}

/* Unstamped ink sits scaled up and invisible, ready to slam down. It must
   not swallow clicks meant for the collapse button above it. */
.v2-stamp__ink {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--paper-3);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.9) rotate(-16deg);
  transition: opacity 0.001s;
}

.v2-stamp__ink svg { width: 13px; height: 13px; }

.v2-stamp[data-on="true"] .v2-stamp__ink {
  animation: v2-punch 0.42s cubic-bezier(0.2, 1.2, 0.3, 1) forwards;
}

@keyframes v2-punch {
  0% { opacity: 0; transform: scale(1.9) rotate(-16deg); }
  55% { opacity: 1; transform: scale(0.92) rotate(-7deg); }
  100% { opacity: 1; transform: scale(1) rotate(-5deg); }
}

@media (prefers-reduced-motion: reduce) {
  .v2-stamp[data-on="true"] .v2-stamp__ink { animation: none; opacity: 1; transform: scale(1) rotate(-5deg); }
}

.v2-card__foot { margin-top: 12px; font-size: 11.5px; line-height: 1.45; color: var(--ink-45); }
.v2-card__foot b { color: var(--ink); }

.v2-card__cta {
  display: none;
  margin-top: 11px;
  width: 100%;
  padding: 11px 12px;
  border-radius: 5px;
  background: var(--bottle);
  color: var(--paper-3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

.v2-card__cta:hover { background: var(--terra); }
.v2-card[data-full="true"] .v2-card__cta { display: block; }

/* On a phone the card becomes a slim bar above the version toggle: the ten
   stamp discs collapse into one row so the whole device is roughly 80px
   tall and never has to hide itself to stay out of the way. */
@media (max-width: 720px) {
  .v2-card {
    right: 10px;
    left: 10px;
    bottom: 60px;
    width: auto;
    padding: 10px 12px 12px;
  }
  .v2-card[data-collapsed="true"] { transform: translateY(calc(100% + 70px)); }
  .v2-card__head { padding-bottom: 9px; }
  .v2-card__grid { grid-template-columns: repeat(8, 1fr); gap: 5px; }
  .v2-stamp { font-size: 8px; }
  .v2-stamp__ink svg { width: 11px; height: 11px; }
  .v2-card__foot { display: none; }
  .v2-card[data-full="true"] .v2-card__foot { display: block; margin-top: 9px; font-size: 11px; }
}

/* ---------- entrance animation defaults --------------------------------- */

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