/* ==========================================================
   Liberty × Harbor — style.css
   Mobile-first. Twee identiteiten, één huis.
   ========================================================== */

:root {
  --font-body: "Instrument Sans", system-ui, -apple-system, sans-serif;
  --font-liberty: "Fraunces", Georgia, serif;
  --font-harbor: "Space Grotesk", system-ui, sans-serif;

  --header-h: 64px;
  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --ease-swing: cubic-bezier(.77, 0, .18, 1);

  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

/* ---------- Reset & basis ---------- */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  background: #11161b;
  color: #2c2620;
}

body[data-view="landing"] { overflow: hidden; }

img { display: block; max-width: 100%; }
figure { margin: 0; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; }
address { font-style: normal; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

/* knoppen: currentColor valt weg tegen de achtergrond — accent + ring werkt op licht én donker */
.btn:focus-visible,
.pill:focus-visible,
.gallery__item:focus-visible {
  outline: 2px solid var(--accent, #b4552d);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--bg, #fff) 75%, transparent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

::selection { background: #b4552d; color: #fff; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.kicker {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 14px;
}

/* ---------- Reveal-animaties ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ==========================================================
   LANDING — de keuze
   ========================================================== */

.landing {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: #0b0d10;
}

.landing[hidden] { display: none; }

.landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: .06;
  pointer-events: none;
  z-index: 5;
}

.panel {
  position: relative;
  flex: 1 1 50%;
  min-height: 0;
  overflow: hidden;
  display: flex;
  text-decoration: none;
  color: #fff;
  transition: flex-basis .9s var(--ease-swing), opacity .7s ease;
}

/* één doorlopende foto achter beide panelen — zelfde plek, twee sferen */
.landing__photo,
.landing__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing__photo img {
  object-fit: cover;
  object-position: 50% 45%;
  transform: scale(1.03);
  transition: transform 1.6s var(--ease-out);
}

/* living photo op de landing — zelfde laagvolgorde: foto → video → panelen */
.landing__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.landing__video.is-playing { opacity: 1; }

.panel__scrim {
  position: absolute;
  inset: 0;
  transition: background .6s ease;
}

/* Liberty-kant: warm en zonnig — de brasserie op een namiddag */
.panel--liberty .panel__scrim {
  background: linear-gradient(to top, rgba(58, 28, 8, .78) 0%, rgba(58, 28, 8, .24) 52%, rgba(28, 16, 8, .10) 100%);
}

/* Harbor-kant: dezelfde plek, maar in avondmodus */
.panel--harbor {
  backdrop-filter: brightness(.56) saturate(.55);
  -webkit-backdrop-filter: brightness(.56) saturate(.55);
}

.panel--harbor .panel__scrim {
  background: linear-gradient(to top, rgba(8, 15, 30, .8) 0%, rgba(10, 17, 33, .34) 52%, rgba(8, 13, 26, .2) 100%);
}

.panel__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  padding: clamp(22px, 5vw, 56px);
  padding-bottom: clamp(30px, 6vh, 72px);
  transition: opacity .45s ease, transform .45s ease;
}

.panel__rule {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.panel--liberty .panel__rule { background: #e8763d; }
.panel--harbor .panel__rule { background: #dfa44e; }

.panel__kicker {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .85;
}

.panel__title {
  font-size: clamp(3.2rem, 11vw, 6.5rem);
  line-height: 1;
  letter-spacing: -.01em;
}

.panel--liberty .panel__title {
  font-family: var(--font-liberty);
  font-weight: 450;
}

.panel--harbor .panel__title {
  font-family: var(--font-harbor);
  font-weight: 500;
}

.panel__sub {
  font-size: .95rem;
  max-width: 34ch;
  opacity: .9;
  line-height: 1.5;
}

.panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}

.panel__cta svg {
  width: 16px;
  height: 16px;
  transition: transform .35s var(--ease-out);
}

/* hover (alleen op apparaten met muis) */
@media (hover: hover) and (pointer: fine) {
  .landing:not(.landing--commit):has(.panel:hover) .landing__photo img { transform: scale(1.06); }
  .panel--harbor:hover {
    backdrop-filter: brightness(.5) saturate(.5);
    -webkit-backdrop-filter: brightness(.5) saturate(.5);
  }
  .panel:hover .panel__cta { background: #fff; color: #14161a; border-color: #fff; }
  .panel:hover .panel__cta svg { transform: translateX(4px); }
  .landing:not(.landing--commit) .panel:hover { flex-basis: 58%; }
}

.landing__seam {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-liberty);
  font-size: 1.35rem;
  font-style: italic;
  background: rgba(10, 12, 15, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}

.landing__foot {
  position: absolute;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  z-index: 4;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, .65);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity .4s ease;
}

/* korte adresregel op smalle schermen — geen lelijke regelafbreking */
.landing__foot-short { display: none; }

@media (max-width: 759px) {
  .landing__foot-long { display: none; }
  .landing__foot-short { display: inline; }

  /* seam compacter + meer ademruimte tussen Liberty-CTA en het midden */
  .landing__seam {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }

  .panel__content { padding-bottom: clamp(46px, 8.5vh, 84px); }
}

@media (max-height: 700px) {
  .landing__foot { display: none; }
}

/* de keuze-animatie */
.landing--commit .panel { pointer-events: none; }
.landing--commit .landing__seam,
.landing--commit .landing__foot { opacity: 0; }
.landing--commit .panel .panel__content { opacity: 0; transform: translateY(14px); }

.landing--to-liberty .panel--liberty,
.landing--to-harbor .panel--harbor { flex-basis: 100%; }

.landing--commit .landing__photo img { transform: scale(1.09); }

.landing--to-liberty .panel--harbor,
.landing--to-harbor .panel--liberty { flex-basis: 0%; opacity: 0; }

.landing--leave { opacity: 0; transition: opacity .45s ease .1s; }

/* ---------- Cinematische overgang (tide wipe) ---------- */

.wash {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  background: var(--wash-grad, linear-gradient(to top, #0b0d10, #171e25));
  transform: translateY(100%);
  pointer-events: none;
  visibility: hidden;
  will-change: transform;
}

.wash__mark {
  font-family: var(--font-liberty);
  font-size: clamp(2rem, 7vw, 3.4rem);
  letter-spacing: .02em;
  color: var(--wash-ink, #e9dfcf);
  opacity: 0;
  transform: translateY(14px) scale(.96);
}

.wash__mark i {
  font-style: italic;
  opacity: .6;
  padding-inline: .12em;
}

/* fase 1: de vloed komt op van onder en bedekt het scherm */
.wash--cover {
  visibility: visible;
  transform: translateY(0);
  transition: transform .58s cubic-bezier(.7, 0, .2, 1);
}

.wash--cover .wash__mark {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease .12s, transform .6s var(--ease-out) .12s;
}

/* fase 2: de vloed trekt verder weg langs boven, en onthult de hero */
.wash--reveal {
  visibility: visible;
  transform: translateY(-100%);
  transition: transform .66s cubic-bezier(.6, 0, .25, 1);
}

.wash--reveal .wash__mark {
  opacity: 0;
  transform: translateY(-12px) scale(.98);
  transition: opacity .34s ease, transform .5s var(--ease-out);
}

/* terugkeren naar de keuze */
.landing--enter .panel { animation: panelIn .8s var(--ease-out) both; }
.landing--enter .panel--harbor { animation-delay: .08s; }

@keyframes panelIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: none; }
}

@media (min-width: 760px) {
  .landing { flex-direction: row; }
  .panel__content { padding-bottom: clamp(40px, 10vh, 96px); }
  .panel__sub { font-size: 1.05rem; }
}

/* ==========================================================
   SITES — gedeeld skelet, eigen kleuren
   ========================================================== */

.site {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
}

.site--liberty {
  --bg: #f7f2e9;
  --bg-soft: #efe7d6;
  --ink: #2c2620;
  --muted: #71665a;
  --accent: #b4552d;
  --accent-text: #9c4a26; /* donkerder dan --accent: haalt AA-contrast als tekstkleur op cream */
  --accent-ink: #fff;
  --line: rgba(44, 38, 32, .15);
  --header-bg: rgba(247, 242, 233, .88);
  --display: var(--font-liberty);
  --display-weight: 480;
}

.site--harbor {
  --bg: #11161b;
  --bg-soft: #171e25;
  --ink: #ebe5d8;
  --muted: #99a2a8;
  --accent: #dfa44e;
  --accent-text: #dfa44e;
  --accent-ink: #191410;
  --line: rgba(235, 229, 216, .15);
  --header-bg: rgba(17, 22, 27, .82);
  --display: var(--font-harbor);
  --display-weight: 500;
}

.site--harbor::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  opacity: .05;
  pointer-events: none;
  z-index: 3;
}

.site h1, .site h2, .site h3 {
  font-family: var(--display);
  font-weight: var(--display-weight);
  line-height: 1.08;
  letter-spacing: -.015em;
}

.site h2 { font-size: clamp(1.9rem, 5.5vw, 3rem); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  height: var(--header-h);
  padding-inline: clamp(14px, 3vw, 32px);
  color: #fff;
  transition: background .4s ease, color .4s ease, box-shadow .4s ease;
}

.site-header.scrolled {
  background: var(--header-bg);
  color: var(--ink);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header__switch {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  text-decoration: none;
  flex-shrink: 0;
  opacity: .9;
  transition: opacity .3s ease, transform .3s ease;
}

.site-header__switch:hover { opacity: 1; transform: rotate(-8deg); }

.site-header__mono {
  font-family: var(--font-liberty);
  font-size: .72rem;
  letter-spacing: .04em;
}

.site-header__mono i {
  font-style: italic;
  opacity: .7;
  padding-inline: 1px;
}

.site-header__brand {
  font-family: var(--display);
  font-weight: var(--display-weight);
  font-size: 1.3rem;
  text-decoration: none;
  letter-spacing: -.01em;
  margin-right: auto;
}

.site-header__nav {
  display: flex;
  gap: clamp(12px, 2.5vw, 26px);
}

.site-header__nav a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: .85;
  transition: opacity .25s ease;
}

.site-header__nav a:hover { opacity: 1; }

@media (max-width: 599px) {
  .site-header__nav { display: none; }
}

/* ---------- Knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  background: none; /* ook voor <button>-varianten */
  border: 1px solid transparent;
  transition: transform .3s var(--ease-out), background .3s ease, color .3s ease, border-color .3s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid { background: var(--accent, #b4552d); color: var(--accent-ink, #fff); }
.btn--ghost { border-color: rgba(255, 255, 255, .6); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.btn--light { background: #fff; color: #1c1a17; }
.btn--small { position: relative; padding: 9px 16px; font-size: .66rem; }

.btn--small::after {
  content: "";
  position: absolute;
  inset: -5px 0;
}

/* ---------- Hero ---------- */

.site--entering {
  animation: siteIn .55s ease both;
}

@keyframes siteIn {
  from { opacity: 0; }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero__media, .hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* trage Ken Burns-drift — de foto leeft, ook zonder video */
.hero__media img {
  object-fit: cover;
  transform-origin: 60% 50%;
  animation: kenburns 30s ease-in-out infinite alternate;
}

.hero--harbor .hero__media img {
  object-position: 45% 50%;
  transform-origin: 40% 45%;
  animation-name: kenburnsAlt;
}

@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.13) translate3d(-2%, -1.4%, 0); }
}

@keyframes kenburnsAlt {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.15) translate3d(2%, -1.6%, 0); }
}

/* brand-getinte leesgradient — Liberty warm, Harbor koel — bindt de set samen */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: var(--scrim-grad);
}

.hero--liberty .hero__scrim {
  --scrim-grad:
    radial-gradient(120% 80% at 50% 8%, transparent 38%, rgba(28, 12, 4, .52) 100%),
    linear-gradient(to top, rgba(38, 16, 5, .9) 0%, rgba(40, 17, 5, .34) 50%, rgba(24, 12, 6, .44) 100%);
}

.hero--harbor .hero__scrim {
  --scrim-grad:
    radial-gradient(120% 80% at 50% 8%, transparent 40%, rgba(6, 10, 18, .55) 100%),
    linear-gradient(to top, rgba(7, 12, 22, .9) 0%, rgba(8, 13, 24, .26) 46%, rgba(8, 13, 24, .46) 100%);
}

/* cinemagraph-laag: living photo bovenop de foto, faadt in zodra-ie speelt */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.hero__video.is-playing { opacity: 1; }

.hero--harbor .hero__video { object-position: 45% 50%; }

/* fijne filmgrain over de hero — unificeert verschillende foto's */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--noise);
  background-size: 200px;
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(80px, 14vh, 140px);
  text-shadow: 0 1px 28px rgba(0, 0, 0, .3);
}

.hero h1 {
  font-size: clamp(2.7rem, 9.5vw, 5.6rem);
  max-width: 14ch;
  text-wrap: balance;
}

.hero__lead {
  max-width: 46ch;
  margin-top: 18px;
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  opacity: .92;
}

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

.hero__content [data-reveal]:nth-child(2) { transition-delay: .08s; }
.hero__content [data-reveal]:nth-child(3) { transition-delay: .16s; }
.hero__content [data-reveal]:nth-child(4) { transition-delay: .24s; }

.hero__scrollcue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 44px;
  overflow: hidden;
}

.hero__scrollcue span {
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, .8);
  animation: cue 2.2s var(--ease-swing) infinite;
}

@keyframes cue {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------- Intro (tekst + collage) ---------- */

.intro {
  display: grid;
  gap: clamp(40px, 7vw, 72px);
  padding-block: clamp(72px, 12vw, 140px);
}

.intro__text h2 { margin-bottom: 22px; }

.intro__text p + p { margin-top: 16px; }

.intro__text p { color: var(--muted); max-width: 56ch; }

.intro__text p:first-of-type { color: var(--ink); }

.features {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.features li { display: grid; gap: 2px; }

.features strong {
  font-weight: 650;
  font-size: .95rem;
}

.features span {
  color: var(--muted);
  font-size: .85rem;
}

.intro__collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
  align-items: start;
}

.intro__img {
  border-radius: 14px;
  overflow: hidden;
}

.intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__img--tall { aspect-ratio: 3 / 4.4; }

.intro__img--offset {
  aspect-ratio: 3 / 4;
  margin-top: clamp(36px, 8vw, 80px);
}

@media (min-width: 900px) {
  .intro { grid-template-columns: 1.05fr 1fr; align-items: center; }
  .features { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ---------- Menu (Liberty) ---------- */

.menu { padding-block: clamp(64px, 10vw, 120px) clamp(72px, 11vw, 130px); background: var(--bg-soft); }

.menu h2 { margin-bottom: 10px; }

.menu__note { color: var(--muted); max-width: 52ch; }

.menu__pills {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  margin-top: 34px;
  background: color-mix(in srgb, var(--bg-soft) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-block: 1px solid var(--line);
}

.menu__pills-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-block: 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.menu__pills-track::-webkit-scrollbar { display: none; }

.pill {
  position: relative;
  flex-shrink: 0;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

/* grotere hitbox (±47px) zonder het visuele design te wijzigen */
.pill::after {
  content: "";
  position: absolute;
  inset: -6px 0;
}

.pill:hover { color: var(--ink); border-color: var(--ink); }

.pill.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.menu__body { padding-top: clamp(36px, 6vw, 64px); }

.menu__cat { scroll-margin-top: calc(var(--header-h) + 64px); }

.menu__cat + .menu__cat { margin-top: clamp(48px, 8vw, 80px); }

.menu__cat h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.badge {
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-text, var(--accent));
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 4px 10px;
  transform: translateY(-2px);
}

.dishes {
  display: grid;
  gap: 18px;
}

.dish {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.dish__name { font-weight: 650; }

.dish__dots {
  flex: 1;
  min-width: 24px;
  border-bottom: 1px dotted color-mix(in srgb, var(--ink) 35%, transparent);
  transform: translateY(-4px);
}

.dish__price {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--accent-text, var(--accent));
  white-space: nowrap;
}

.dish__desc {
  margin-top: 4px;
  color: var(--muted);
  font-size: .88rem;
  max-width: 52ch;
}

@media (min-width: 900px) {
  .dishes { grid-template-columns: 1fr 1fr; column-gap: clamp(40px, 5vw, 72px); align-items: start; }
}

/* ---------- Quote-band ---------- */

.band {
  position: relative;
  min-height: 56svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.band__media, .band__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.band__media img { object-fit: cover; }

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 16, .55);
  z-index: 1;
}

.band__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: clamp(64px, 10vw, 110px);
}

.band__content p {
  font-family: var(--display);
  font-size: clamp(1.7rem, 5.5vw, 3.2rem);
  line-height: 1.2;
  font-style: italic;
  text-wrap: balance;
}

.site--harbor .band__content p { font-style: normal; }

/* social proof onder de quote — echte gastentaal, klein en rustig */
.band__credit {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .8;
}

.band__content p.band__credit {
  font-family: var(--font-body);
  font-size: .72rem;
  font-style: normal;
  line-height: 1.6;
}

/* ---------- Occasions (Harbor) ---------- */

.occasions { padding-block: clamp(64px, 10vw, 120px); }

.occasions h2 { margin-bottom: clamp(28px, 5vw, 48px); }

.occasions__grid {
  display: grid;
  gap: clamp(28px, 5vw, 36px);
}

.occasion figure {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
}

.occasion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}

.occasion:hover img { transform: scale(1.05); }

.occasion h3 { font-size: 1.35rem; margin-bottom: 8px; }

.occasion p { color: var(--muted); font-size: .94rem; max-width: 44ch; }

.occasions__grid [data-reveal]:nth-child(2) { transition-delay: .1s; }
.occasions__grid [data-reveal]:nth-child(3) { transition-delay: .2s; }

@media (min-width: 760px) {
  .occasions__grid { grid-template-columns: repeat(3, 1fr); }
  .occasion figure { aspect-ratio: 3 / 4; }
}

/* ---------- Catering-blok (Harbor) ---------- */

.cater { padding-block: clamp(64px, 10vw, 120px); }

.cater__inner {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(32px, 6vw, 64px);
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

/* amber accentlijntje — echoot de panel__rule van de landing */
.cater__inner::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  margin: 0 auto 18px;
}

.cater__inner h2 { margin-bottom: 16px; }

.cater__inner p {
  color: var(--muted);
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: 28px;
}

.site--harbor .btn--ghost { border-color: var(--line); color: var(--ink); }
.site--harbor .btn--ghost:hover { background: rgba(235, 229, 216, .08); }

/* ---------- Galerij ---------- */

.gallery { padding-block: clamp(64px, 10vw, 120px); }

.gallery h2 { margin-bottom: clamp(28px, 5vw, 44px); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 36vw;
  grid-auto-flow: dense;
  gap: 10px;
}

.gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

@media (min-width: 760px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 15vw;
    gap: 14px;
  }
}

/* ---------- Reserveren (Zenchef) ----------
   De SDK injecteert een zwevende knop rechtsonder (iframe + evt. popup);
   die hoort alleen bij de brasserie, niet op de landing of bij Harbor. */

body:not([data-view="liberty"]) iframe[src*="zenchef"],
body:not([data-view="liberty"]) [class*="ZC_sdk"],
body.is-washing iframe[src*="zenchef"],
body.is-washing [class*="ZC_sdk"] {
  display: none !important;
}

/* ---------- Praktisch ---------- */

.practical {
  padding-block: clamp(64px, 10vw, 130px);
  background: var(--bg-soft);
}

.practical--harbor { background: var(--bg); }

.practical__grid {
  display: grid;
  gap: clamp(44px, 8vw, 80px);
}

.practical h2 { margin-bottom: 24px; }

.practical__intro { color: var(--muted); max-width: 50ch; margin-bottom: 28px; }

.hours { width: 100%; border-collapse: collapse; max-width: 420px; }

.hours th, .hours td {
  text-align: left;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}

.hours td { text-align: right; font-variant-numeric: tabular-nums; }

.hours tr.today th, .hours tr.today td {
  font-weight: 700;
  color: var(--accent-text, var(--accent));
}

.hours tr.today th::after {
  content: "· vandaag";
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-left: 8px;
  opacity: .8;
}

.contact-list { display: grid; gap: 14px; }

.contact-list p {
  display: grid;
  gap: 1px;
}

.contact-list span {
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list a {
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 550;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}

.contact-list a:hover { border-color: var(--accent); }

.practical__cta { margin-top: 30px; }

.practical__cta-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .85rem;
  max-width: 40ch;
}

.notes { display: grid; gap: 16px; max-width: 52ch; }

.notes li {
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  font-size: .95rem;
}

.notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.notes strong { color: var(--ink); font-weight: 650; }

@media (min-width: 880px) {
  .practical__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Crosspromo ---------- */

.crosspromo {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72svh;
  overflow: hidden;
  color: #fff;
}

.crosspromo__media, .crosspromo__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.crosspromo__media img { object-fit: cover; }

.crosspromo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10, 11, 14, .85), rgba(10, 11, 14, .45));
}

.crosspromo__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: clamp(72px, 11vw, 120px);
  display: grid;
  justify-items: center;
  gap: 14px;
}

.crosspromo__content h2 {
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  max-width: 22ch;
  text-wrap: balance;
}

.crosspromo__content p:not(.kicker) {
  max-width: 52ch;
  opacity: .9;
}

.crosspromo__content .btn { margin-top: 12px; }

.crosspromo--harbor .crosspromo__content h2 { font-family: var(--font-harbor); font-weight: 500; }
.crosspromo--liberty .crosspromo__content h2 { font-family: var(--font-liberty); font-weight: 450; }

/* ---------- Footer ---------- */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 8vw, 80px) 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}

.footer__grid > div:first-child { grid-column: 1 / -1; }

.footer__brand {
  font-family: var(--display);
  font-weight: var(--display-weight);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.footer__label {
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer p { font-size: .92rem; color: var(--muted); }

.footer a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}

.footer a:hover { border-color: var(--accent); }

.footer__legal {
  font-size: .74rem;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (min-width: 880px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__grid > div:first-child { grid-column: auto; }
}

/* ---------- Lightbox ---------- */

.lightbox[hidden] { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 9, 11, .93);
  animation: lbIn .3s ease both;
}

@keyframes lbIn { from { opacity: 0; } }

.lightbox__img {
  max-width: min(92vw, 1400px);
  max-height: 86svh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  background: rgba(20, 22, 26, .5);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  transition: background .25s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, .18); }

.lightbox__close { top: max(16px, env(safe-area-inset-top)); right: 16px; }
.lightbox__nav--prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 12px; top: 50%; transform: translateY(-50%); }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] { opacity: 1; transform: none; }
}
