/* Scootershop Den Haag — one stylesheet for every page.
   Light, warm paper, one green. Archivo only: expanded and heavy for
   headlines, normal for body, slightly condensed for prices and times. */

:root {
  --paper: oklch(97.5% 0.008 85);
  --paper-2: oklch(94.5% 0.012 85);
  --ink: oklch(21% 0.012 60);
  --ink-2: oklch(42% 0.012 60);
  --ink-3: oklch(60% 0.01 60);
  --line: oklch(86% 0.012 85);
  --green: oklch(50% 0.155 150);
  --green-deep: oklch(41% 0.13 150);
  --green-bright: oklch(64% 0.19 150);
  --green-tint: oklch(93% 0.05 150);
  --on-green: oklch(98% 0.01 150);
  --on-ink: oklch(95% 0.008 85);
  --on-ink-2: oklch(72% 0.01 85);

  --font: 'Archivo', 'Arial Narrow', Arial, sans-serif;
  --t-hero: clamp(3rem, 1.2rem + 5.6vw, 6rem);
  --t-1: clamp(2.125rem, 1.3rem + 3.4vw, 3.75rem);
  --t-2: clamp(1.625rem, 1.3rem + 1.3vw, 2.25rem);
  --t-3: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --t-body: 1.0625rem;
  --t-small: 0.875rem;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px; --s-6: 32px;
  --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;
  --gutter: 20px;
  --wrap: 1200px;
  --nav-h: 68px;
  --radius: 6px;

  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  color-scheme: light;
}
@media (min-width: 720px) { :root { --t-body: 1.125rem; --t-small: 0.9375rem; } }
@media (min-width: 900px) { :root { --gutter: 40px; --nav-h: 76px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font); font-size: var(--t-body); line-height: 1.5;
  font-optical-sizing: auto; font-kerning: normal; -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; text-wrap: balance; }
h1, h2 { font-stretch: 118%; line-height: 0.96; }
h3 { font-stretch: 108%; line-height: 1.08; }
p { margin: 0; text-wrap: pretty; }
p + p { margin-top: 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--green-tint); color: var(--green-deep); }

.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.hero-in > *, .two > *, .svc > *, .about > *, .contact > *, .beurt > *, .foot-in > *, .sec-hd > * { min-width: 0; }
.num { font-stretch: 88%; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.eyebrow {
  display: inline-block; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: var(--s-4);
}
.lede { font-size: var(--t-3); line-height: 1.4; color: var(--ink-2); max-width: 34ch; }
.skip { position: absolute; left: 12px; top: -60px; background: var(--ink); color: var(--on-ink); padding: 10px 14px; z-index: 100; border-radius: var(--radius); }
.skip:focus { top: 12px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 10px 22px; border-radius: var(--radius); max-width: 100%;
  font-weight: 600; font-size: 1rem; line-height: 1.25; text-align: center; text-decoration: none;
  border: 2px solid transparent; transition: background-color .15s var(--ease-out), border-color .15s var(--ease-out), transform .15s var(--ease-out);
}
.btn.green { background: var(--green); color: var(--on-green); border-color: var(--green); }
.btn.green:hover { background: var(--green-deep); border-color: var(--green-deep); }
.btn.line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn.line:hover { background: var(--ink); color: var(--on-ink); }
.btn.paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn.paper:hover { background: var(--on-green); }
.btn:active { transform: translateY(1px); }
.btn.sm { min-height: 42px; padding: 8px 16px; font-size: 0.9375rem; white-space: nowrap; }
.btn .ic { width: 18px; height: 18px; flex: none; }
.btn .ic svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.btn .wa { width: 20px; height: 20px; flex: none; }
.btn .wa svg { width: 100%; height: 100%; fill: currentColor; }

/* ── nav ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 40; background: var(--paper);
  border-bottom: 1px solid transparent; transition: border-color .2s var(--ease-out);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-in { display: flex; align-items: center; gap: var(--s-5); height: var(--nav-h); }
.nav-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; font-stretch: 112%; font-size: 1.125rem; letter-spacing: -0.02em; line-height: 1; white-space: nowrap; }
.nav-logo img { width: 34px; height: 42px; }
.nav-logo span { display: none; }
.nav-links { display: none; gap: var(--s-6); margin-inline: auto; }
.nav-links a { text-decoration: none; font-weight: 500; padding: 8px 0; color: var(--ink-2); white-space: nowrap; }
.nav-links a:hover, .nav-links a.on { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: var(--s-3); margin-left: auto; }
.nav-cta .tel, .nav-cta .lang { display: none; }
.lang { display: inline-flex; padding: 3px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper-2); }
.lang button { min-width: 40px; height: 30px; padding: 0 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; color: var(--ink-3); transition: background-color .2s var(--ease-out), color .2s var(--ease-out); }
.lang button.on { background: var(--ink); color: var(--on-ink); }
.lang button:not(.on):hover { color: var(--ink); }
.nav-burger { position: relative; width: 44px; height: 44px; border-radius: var(--radius); }
.nav-burger i, .nav-burger i::before, .nav-burger i::after { position: absolute; left: 12px; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease-out), opacity .2s; }
.nav-burger i { top: 21px; }
.nav-burger i::before { content: ''; left: 0; top: -6px; }
.nav-burger i::after { content: ''; left: 0; top: 6px; }
.nav.open .nav-burger i { background: transparent; }
.nav.open .nav-burger i::before { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-burger i::after { transform: translateY(-6px) rotate(-45deg); }
.menu {
  position: fixed; inset: calc(var(--nav-h) + var(--wk-demo, 0px)) 0 0 0; z-index: 39; background: var(--paper);
  padding: var(--s-6) var(--gutter); display: none; flex-direction: column; overflow: auto;
}
.menu.open { display: flex; }
.menu nav { display: flex; flex-direction: column; }
.menu nav a { font-size: var(--t-2); font-weight: 800; font-stretch: 112%; letter-spacing: -0.02em; text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--line); }
.menu nav a.on { color: var(--green); }
.menu-foot { margin-top: auto; padding-top: var(--s-6); display: grid; gap: var(--s-3); }
.menu-row { display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); margin-bottom: var(--s-2); }
.menu-foot .btn { width: 100%; }
@media (min-width: 900px) {
  .nav-links { display: flex; gap: var(--s-5); }
  .nav-cta .lang { display: inline-flex; }
  .nav-burger, .menu { display: none !important; }
}
@media (min-width: 1100px) {
  .nav-logo span { display: inline; }
  .nav-links { gap: var(--s-6); }
}
@media (min-width: 1300px) { .nav-cta .tel { display: inline-flex; } }

/* ── open-now pill ───────────────────────────────────────────────── */
.openstate { display: inline-flex; align-items: center; gap: 8px; font-size: var(--t-small); font-weight: 500; color: var(--ink-2); }
.openstate i { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-3); flex: none; }
.openstate.on i { background: var(--green-bright); box-shadow: 0 0 0 4px var(--green-tint); }
.openstate .num { font-size: 1em; }

/* ── hero ────────────────────────────────────────────────────────── */
.hero { padding: clamp(32px, 6vw, 72px) 0 0; }
.hero-in { display: grid; gap: var(--s-7); align-items: end; }
.hero h1 { font-size: var(--t-hero); font-weight: 900; font-stretch: 112%; margin: var(--s-4) 0 var(--s-5); max-width: 14ch; }
.hero h1 .q { display: block; font-size: .5em; letter-spacing: -0.01em; margin-bottom: .15em; }
.hero h1 .acc { color: var(--green); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3) var(--s-6); margin-top: var(--s-5); font-size: var(--t-small); color: var(--ink-2); }
.hero-meta b { color: var(--ink); font-weight: 600; }
.stars { color: var(--green); letter-spacing: 0.05em; font-size: 0.95em; }
@media (min-width: 900px) { .hero-in { grid-template-columns: 7fr 5fr; gap: var(--s-7); } }
@media (min-width: 1100px) { .hero-in { gap: var(--s-9); } }

/* the receipt */
.ticket-wrap { position: relative; }
.ticket {
  position: relative; background: var(--green); color: var(--on-green);
  padding: var(--s-6) var(--s-5) var(--s-5); max-width: 420px; overflow-wrap: anywhere;
  filter: drop-shadow(0 18px 30px oklch(50% 0.1 150 / .22));
  transform: rotate(-1.2deg);
}
.ticket::before, .ticket::after {
  content: ''; position: absolute; left: 0; right: 0; height: 12px;
  background: linear-gradient(-45deg, transparent 8.5px, var(--green) 0) 0 0 / 16px 100%,
              linear-gradient(45deg, transparent 8.5px, var(--green) 0) 8px 0 / 16px 100%;
  background-repeat: repeat-x;
}
.ticket::before { top: -11px; }
.ticket::after { bottom: -11px; transform: scaleY(-1); }
.ticket-hd { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 4px var(--s-3); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: .85; }
@media (min-width: 400px) { .ticket-hd { font-size: 0.8125rem; letter-spacing: 0.1em; } }
.ticket-row { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s-4); padding: 14px 0; border-bottom: 2px dashed oklch(98% 0.01 150 / .35); }
.ticket-row:last-of-type { border-bottom: 0; }
.ticket-row > div { display: grid; gap: 2px; min-width: 0; }
.ticket-row .k { font-weight: 700; }
.ticket-row .sub { font-size: var(--t-small); opacity: .85; line-height: 1.3; }
.ticket-row .v { flex: none; font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2.25rem); font-stretch: 88%; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; white-space: nowrap; }
.ticket-row .was { font-size: 0.6em; opacity: .7; text-decoration: line-through; margin-right: 8px; font-weight: 600; }
.ticket-day { margin-top: var(--s-4); }
.ticket-day .rail { position: relative; height: 4px; background: oklch(98% 0.01 150 / .3); border-radius: 2px; margin: 10px 0 8px; overflow: hidden; }
.ticket-day .rail i { position: absolute; inset: 0; background: var(--on-green); transform-origin: left; transform: scaleX(0); }
.ticket-day .ends { display: flex; justify-content: space-between; font-size: var(--t-small); font-weight: 600; font-variant-numeric: tabular-nums; }
.ticket-day .ends b { font-weight: 800; }
.ticket-day .ends .klaar { opacity: 0; }
.ticket.go .rail i { animation: fill 1.2s var(--ease-out-quint) .5s forwards; }
.ticket.go .ends .klaar { animation: fadein .5s var(--ease-out) 1.5s forwards; }
@keyframes fill { to { transform: scaleX(1); } }
@keyframes fadein { to { opacity: 1; } }
.ticket-foot { margin-top: var(--s-5); font-size: var(--t-small); opacity: .85; }
.ticket-foot a { color: inherit; }

/* hero photo band */
.hero-photo { margin-top: clamp(40px, 7vw, 88px); position: relative; }
.hero-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 20%; }
@media (min-width: 720px) { .hero-photo img { aspect-ratio: 2 / 1; object-position: center 8%; } }
.hero-photo figcaption { position: absolute; left: var(--gutter); bottom: var(--s-4); background: var(--paper); padding: 6px 10px; font-size: var(--t-small); font-weight: 500; color: var(--ink-2); }

/* brands */
.brands { padding: var(--s-6) 0; border-bottom: 1px solid var(--line); }
.brands ul { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); align-items: baseline; }
.brands li { font-weight: 800; font-stretch: 112%; letter-spacing: 0.02em; text-transform: uppercase; font-size: 0.9375rem; color: var(--ink-3); }
.brands li.lbl { font-weight: 500; font-stretch: 100%; text-transform: none; letter-spacing: 0; color: var(--ink-2); }

/* ── sections ────────────────────────────────────────────────────── */
.sec { padding: clamp(64px, 9vw, 112px) 0; }
.sec-hd { display: grid; gap: var(--s-4); margin-bottom: clamp(32px, 5vw, 56px); }
.sec-hd h2 { font-size: var(--t-1); max-width: 14ch; }
.sec-hd .lede { max-width: 42ch; }
@media (min-width: 900px) {
  .sec-hd { grid-template-columns: 7fr 5fr; align-items: end; gap: var(--s-8); }
}

/* services as alternating rows */
.svc { display: grid; gap: var(--s-5); padding: clamp(32px, 5vw, 56px) 0; border-top: 1px solid var(--line); }
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.svc-body { display: flex; flex-direction: column; gap: var(--s-4); }
.svc .idx { font-stretch: 88%; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--green); font-size: var(--t-small); letter-spacing: 0.06em; }
.svc h3 { font-size: var(--t-2); }
.svc p { color: var(--ink-2); max-width: 48ch; }
.svc .price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: var(--s-2); }
.svc .price .num { font-size: var(--t-2); }
.svc .price .from { font-size: var(--t-small); color: var(--ink-3); font-weight: 500; }
.svc .price .was { font-size: var(--t-3); color: var(--ink-3); text-decoration: line-through; font-weight: 500; }
.svc .actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-2); }
.svc ul.tick { display: grid; gap: 6px; color: var(--ink-2); }
.svc ul.tick li { padding-left: 22px; position: relative; }
.svc ul.tick li b { color: var(--ink); font-weight: 700; }
.svc ul.tick li .num { color: var(--ink); font-size: 1.1em; }
.svc ul.tick li .was { color: var(--ink-3); text-decoration: line-through; }
.svc ul.tick li::before { content: ''; position: absolute; left: 0; top: .55em; width: 12px; height: 7px; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg); }
@media (min-width: 900px) {
  .svc { grid-template-columns: 5fr 7fr; gap: var(--s-8); align-items: center; }
  .svc:nth-child(odd) .svc-media { order: 2; }
  .svc-media img { aspect-ratio: 5 / 4; }
}

/* price rows */
.plist { display: grid; }
.plist-row { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s-4); padding: 16px 0; border-top: 1px solid var(--line); }
.plist-row:last-child { border-bottom: 1px solid var(--line); }
.plist-row .name { font-weight: 500; }
.plist-row .note { display: block; font-size: var(--t-small); color: var(--ink-3); margin-top: 2px; }
.plist-row .val { display: flex; align-items: baseline; justify-content: flex-end; gap: 8px; text-align: right; flex-wrap: wrap; }
.plist-row .val .num { white-space: nowrap; }
.plist-row .val .num { font-size: var(--t-3); }
.plist-row .val .from { font-size: var(--t-small); color: var(--ink-3); }
.plist-row .val .was { font-size: var(--t-small); color: var(--ink-3); text-decoration: line-through; }
.plist-row.big .name { font-size: var(--t-3); font-weight: 700; }
.plist-row.big .val .num { font-size: var(--t-1); line-height: 1; }

/* the two service packages */
.pkgs { display: grid; gap: var(--s-4); margin-bottom: var(--s-8); }
.pkg { display: flex; flex-direction: column; gap: var(--s-3); background: var(--paper-2); padding: clamp(24px, 4vw, 40px); container-type: inline-size; }
.pkg.hi { background: var(--green-tint); }
.pkg h3 { font-size: var(--t-2); }
.pkg .big { display: flex; align-items: baseline; gap: var(--s-3); flex-wrap: wrap; }
.pkg .big .num { font-size: clamp(3rem, 2rem + 4vw, 4.5rem); line-height: .9; }
.pkg.hi .big .num { color: var(--green-deep); }
.pkg .big .was { font-size: var(--t-3); color: var(--ink-3); text-decoration: line-through; font-weight: 500; }
.pkg .big .actie { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); background: var(--paper); padding: 4px 8px; align-self: center; }
.pkg .sum { font-size: var(--t-3); line-height: 1.35; font-weight: 500; }
.pkg .note { color: var(--ink-2); }
.pkg details { border-top: 1px solid oklch(80% 0.02 85); margin-top: var(--s-2); }
.pkg.hi details { border-top-color: oklch(80% 0.06 150); }
.pkg summary { cursor: pointer; padding: 14px 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); }
.pkg summary::-webkit-details-marker { display: none; }
.pkg summary .cnt { font-weight: 500; color: var(--ink-3); margin-right: auto; }
.pkg summary::after { content: ''; width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .25s var(--ease-out); margin-right: 4px; flex: none; }
.pkg details[open] summary::after { transform: rotate(-135deg); }
.pkg .check { display: grid; gap: 8px 24px; padding: var(--s-2) 0 var(--s-4); color: var(--ink-2); }
.pkg .check li { padding-left: 22px; position: relative; }
.pkg .check li::before { content: ''; position: absolute; left: 0; top: .55em; width: 12px; height: 7px; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg); }
.pkg .btn { margin-top: auto; align-self: flex-start; }
.pkgs-note { color: var(--ink-3); font-size: var(--t-small); margin: calc(var(--s-8) * -1 + var(--s-4)) 0 var(--s-9); max-width: 70ch; }
@container (min-width: 480px) { .pkg .check { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .pkgs { grid-template-columns: 1fr 1fr; gap: var(--s-5); align-items: start; } }

/* ── promise band ────────────────────────────────────────────────── */
.promise { background: var(--green); color: var(--on-green); padding: clamp(72px, 10vw, 128px) 0; text-align: center; }
.promise h2 { font-size: var(--t-hero); font-weight: 900; max-width: 14ch; margin-inline: auto; }
.promise p { margin: var(--s-5) auto 0; max-width: 40ch; font-size: var(--t-3); line-height: 1.4; opacity: .92; }
.promise .btn { margin-top: var(--s-6); }
.promise .day { display: flex; justify-content: center; align-items: center; gap: var(--s-4); margin-top: var(--s-7); font-variant-numeric: tabular-nums; font-size: var(--t-3); font-weight: 600; flex-wrap: wrap; }
.promise .day .num { font-size: 1.15em; }
.promise .day span { display: inline-flex; align-items: center; gap: 8px; }
.promise .day i { width: 40px; height: 2px; background: var(--on-green); opacity: .5; }
.promise .days { display: block; margin-top: var(--s-3); font-size: var(--t-small); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: .8; }

/* ── about ───────────────────────────────────────────────────────── */
.about { display: grid; gap: var(--s-6); }
.about h2 { font-size: var(--t-1); max-width: 16ch; margin-bottom: var(--s-5); }
.about .txt { display: grid; gap: var(--s-4); color: var(--ink-2); max-width: 56ch; }
.about .txt p:first-child { color: var(--ink); font-size: var(--t-3); line-height: 1.4; }
.about figure { margin: 0; }
.about img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about figcaption { font-size: var(--t-small); color: var(--ink-3); margin-top: 8px; }
.facts { display: grid; grid-template-columns: repeat(3, auto); gap: var(--s-5); margin-top: var(--s-4); justify-content: start; }
.facts b { display: block; font-size: var(--t-2); font-stretch: 88%; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--ink); line-height: 1; }
.facts > div > span { font-size: var(--t-small); color: var(--ink-3); }
@media (min-width: 900px) {
  .about { grid-template-columns: 5fr 7fr; gap: var(--s-9); align-items: start; }
  .about figure { order: -1; }
  .about img { aspect-ratio: 4 / 5; }
}

/* ── reviews ─────────────────────────────────────────────────────── */
.reviews-hd { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--s-3) var(--s-6); margin-bottom: clamp(32px, 5vw, 56px); }
.reviews-hd h2 { font-size: var(--t-1); }
.reviews-hd .score { display: inline-flex; align-items: baseline; gap: 10px; font-size: var(--t-3); }
.reviews-hd .score .num { font-size: var(--t-2); }
.reviews-hd .score small { font-size: var(--t-small); color: var(--ink-2); }
.reviews { columns: 1; column-gap: var(--s-6); }
.review { break-inside: avoid; padding: var(--s-5) 0; border-top: 1px solid var(--line); }
.review .stars { display: block; margin-bottom: 10px; }
.review blockquote { margin: 0; font-size: var(--t-3); line-height: 1.35; font-weight: 500; }
.review blockquote::before { content: '\201C'; }
.review blockquote::after { content: '\201D'; }
.review footer { margin-top: var(--s-3); font-size: var(--t-small); color: var(--ink-2); display: flex; gap: 8px; flex-wrap: wrap; }
.review footer b { color: var(--ink); font-weight: 600; }
.reviews-more { margin-top: var(--s-6); }
@media (min-width: 720px) { .reviews { columns: 2; } }
@media (min-width: 1040px) { .reviews { columns: 3; } .review:nth-child(2) { margin-top: var(--s-7); } }

/* ── contact / location ──────────────────────────────────────────── */
.contact { display: grid; gap: var(--s-7); }
.contact h2 { font-size: var(--t-1); max-width: 12ch; }
.contact .addr { font-size: var(--t-3); font-style: normal; line-height: 1.4; margin-top: var(--s-4); }
.contact .addr a { text-decoration: none; }
.contact .addr a:hover { text-decoration: underline; }
.contact .ways { display: grid; gap: var(--s-3); margin-top: var(--s-6); max-width: 360px; }
.hours { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours th { text-align: left; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); padding-bottom: var(--s-3); }
.hours td { padding: 10px 0; border-top: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-weight: 600; font-stretch: 92%; }
.hours tr.today td { color: var(--green-deep); font-weight: 700; }
.hours tr.closed td:last-child { color: var(--ink-3); font-weight: 500; }
.contact .note { font-size: var(--t-small); color: var(--ink-3); margin-top: var(--s-4); }
@media (min-width: 900px) { .contact { grid-template-columns: 6fr 1fr 5fr; } .contact > :nth-child(2) { grid-column: 3; } }

/* ── footer ──────────────────────────────────────────────────────── */
.foot { background: var(--ink); color: var(--on-ink); padding: var(--s-8) 0 var(--s-6); line-height: 1.6; letter-spacing: 0.005em; }
.foot-in { display: grid; gap: var(--s-6); }
.foot .brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-stretch: 112%; font-size: 1.125rem; letter-spacing: -0.02em; }
.foot .brand img { width: 30px; }
.foot p { color: var(--on-ink-2); max-width: 36ch; margin-top: var(--s-3); font-size: var(--t-small); }
.foot h4 { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-ink-2); margin-bottom: var(--s-3); }
.foot ul { display: grid; font-size: var(--t-small); }
.foot a { color: var(--on-ink); text-decoration: none; }
.foot ul a { display: inline-block; padding: 7px 0; }
.foot a:hover { text-decoration: underline; }
.foot-bot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3); margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid oklch(35% 0.01 60); font-size: 0.8125rem; color: var(--on-ink-2); }
.foot-bot a { color: var(--on-ink-2); }
@media (min-width: 720px) { .foot-in { grid-template-columns: 1.4fr 1fr 1fr; } }

/* ── sticky phone bar ────────────────────────────────────────────── */
.bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 38; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px var(--gutter) max(10px, env(safe-area-inset-bottom)); background: var(--paper); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .3s var(--ease-out); }
.bar.show { transform: none; }
.bar .btn { min-height: 48px; }
@media (min-width: 900px) { .bar { display: none; } }
body.has-bar { padding-bottom: 76px; }
@media (min-width: 900px) { body.has-bar { padding-bottom: 0; } }

/* ── subpages ────────────────────────────────────────────────────── */
.page-hd { padding: clamp(40px, 7vw, 88px) 0 clamp(32px, 5vw, 56px); }
.page-hd h1 { font-size: clamp(1.875rem, 1.2rem + 3.4vw, 3.75rem); max-width: 14ch; margin-bottom: var(--s-5); hyphens: auto; }
.page-hd .lede { max-width: 48ch; }
.prose { max-width: 62ch; color: var(--ink-2); display: grid; gap: var(--s-4); }
.prose h2 { font-size: var(--t-2); color: var(--ink); margin-top: var(--s-5); }
.prose h3 { font-size: var(--t-3); color: var(--ink); margin-top: var(--s-3); }
.prose ul { display: grid; gap: 6px; padding-left: 22px; list-style: disc; }
.prose strong { color: var(--ink); }
.two { display: grid; gap: var(--s-7); }
@media (min-width: 900px) { .two { grid-template-columns: 7fr 5fr; gap: var(--s-9); align-items: start; } .two > aside { position: sticky; top: calc(var(--nav-h) + 24px); } }
.aside-box { background: var(--paper-2); padding: var(--s-5); display: grid; gap: var(--s-3); }
.aside-box h3 { font-size: var(--t-3); }
.aside-box p { color: var(--ink-2); font-size: var(--t-small); }
.steps { counter-reset: s; display: grid; gap: var(--s-5); }
.steps li { position: relative; padding-left: 56px; }
.steps li::before { counter-increment: s; content: counter(s, decimal-leading-zero); position: absolute; left: 0; top: -2px; font-stretch: 88%; font-weight: 800; font-size: var(--t-2); color: var(--green); font-variant-numeric: tabular-nums; }
.steps h3 { font-size: var(--t-3); margin-bottom: 6px; }
.steps p { color: var(--ink-2); max-width: 48ch; }

/* ── reveals ─────────────────────────────────────────────────────── */
[data-rv] { opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); transition-delay: calc(var(--d, 0) * 80ms); }
[data-rv].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-rv] { opacity: 1; transform: none; transition: none; }
  .ticket .rail i { transform: none; animation: none !important; }
  .ticket .ends .klaar { opacity: 1; animation: none !important; }
  .bar { transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
