/* ==========================================================================
   Grand Café Restaurant De Vriend — Leiden
   Stylesheet. Mobile-first, één bestand.
   ========================================================================== */

/* ---- Basis & tokens ---------------------------------------------------- */
:root {
  /* Huisstijl: het olijf/sage-groen van het logo, op gebroken wit */
  --green: #4b5444;        /* knoppen, koppen-accent, links */
  --green-deep: #333a2f;   /* footer, hover */
  --green-soft: #67705d;   /* eyebrows, secundaire tekst */
  --sage: #7f8a79;         /* logo-kleur, lijnen, ornamenten */
  --sage-soft: #b7bfae;    /* accenten op donkere ondergrond */
  --leaf: #2f6b45;         /* bio / vegan / duurzaam-markeringen */
  --cream: #f4f1ea;
  --cream-2: #ebe7dc;
  --cream-3: #dcd8ca;
  --ink: #23261f;
  --ink-soft: #565b4f;
  --ink-mute: #848a7b;
  --line: rgba(35, 38, 31, 0.16);
  --line-light: rgba(244, 241, 234, 0.22);

  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --measure: 62ch;
  --gutter: 1.25rem;
  --container: 1180px;

  --ease: cubic-bezier(.25,.1,.25,1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--green); }

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

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--ink); color: var(--cream);
  padding: .6rem 1rem; z-index: 100; font-size: .9rem;
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Typografie -------------------------------------------------------- */
h1, h2, h3, h4, .display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 .6em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.2vw, 4.4rem); font-weight: 300; letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.15rem; }
h1 em, h2 em, .display em { font-style: italic; font-weight: 300; color: var(--green); }

p { margin: 0 0 1.2em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.lede { font-size: 1.2rem; line-height: 1.6; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1rem;
  font-weight: 500;
}

.small { font-size: .9rem; color: var(--ink-soft); }

/* ---- Layout helpers ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 48em) { :root { --gutter: 2.5rem; } }
@media (min-width: 64em) { :root { --gutter: 3rem; } }

.section { padding-block: clamp(3.5rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--cream2 { background: var(--cream-2); }
.section--green { background: var(--green); color: var(--cream); }
.section--green h2, .section--green h3, .section--green h1 { color: var(--cream); }
.section--green h2 em, .section--green h1 em { color: var(--sage-soft); }
.section--green .eyebrow { color: var(--sage-soft); }
.section--green a:hover { color: var(--sage-soft); }
.section--green .small { color: rgba(244,241,234,.7); }

/* Ornament: dunne lijn met een klein ruitje in het midden */
.ornament {
  display: flex; align-items: center; gap: 1rem;
  margin: clamp(2.5rem, 6vw, 4rem) auto;
  max-width: 22rem;
  color: var(--sage);
}
.ornament::before, .ornament::after {
  content: ""; flex: 1; height: 1px; background: currentColor; opacity: .7;
}
.ornament span {
  display: block; width: .45rem; height: .45rem;
  background: currentColor; transform: rotate(45deg);
}

hr.rule {
  border: 0; height: 1px; background: var(--line); margin: 2rem 0;
}

/* ---- Knoppen ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans);
  font-size: .95rem; font-weight: 500;
  padding: .9rem 1.5rem;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--cream);
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  line-height: 1.2;
}
.btn:hover { background: var(--green-deep); border-color: var(--green-deep); color: var(--cream); }
.btn--ghost { background: transparent; color: var(--green); }
.btn--ghost:hover { background: var(--green); color: var(--cream); }
.btn--light { background: transparent; color: var(--cream); border-color: rgba(244,241,234,.6); }
.btn--light:hover { background: var(--cream); color: var(--green); border-color: var(--cream); }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem; margin-top: 1.75rem; }

.arrow-link {
  display: inline-flex; align-items: baseline; gap: .4rem;
  font-weight: 500; text-decoration: none;
  border-bottom: 1px solid var(--sage);
  padding-bottom: .1rem;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.arrow-link::after { content: "→"; font-family: var(--serif); transition: transform .25s var(--ease); display: inline-block; }
.arrow-link:hover { border-color: var(--green); }
.arrow-link:hover::after { transform: translateX(3px); }

/* ---- Foto-placeholders ------------------------------------------------ */
/* Vervang straks <div class="photo ..."> door <img> met dezelfde class; de
   aspect-ratio en object-fit blijven dan werken. */
.photo {
  position: relative;
  background: var(--cream-3);
  background-image:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(36,26,28,.045) 14px 15px);
  border: 1px solid var(--line);
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}
.photo--3x2 { aspect-ratio: 3 / 2; }
.photo--4x5 { aspect-ratio: 4 / 5; }
.photo--1x1 { aspect-ratio: 1 / 1; }
.photo--16x9 { aspect-ratio: 16 / 9; }
.photo--3x4 { aspect-ratio: 3 / 4; }
.photo--21x9 { aspect-ratio: 21 / 9; }
.photo--hero { aspect-ratio: 4 / 3; }
@media (min-width: 48em) { .photo--hero { aspect-ratio: 4 / 5; } }

.photo > span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: .75rem 1rem;
  font-family: var(--serif); font-style: italic; font-size: .9rem;
  color: var(--ink-soft);
  background: linear-gradient(to top, rgba(244,241,234,.95), rgba(244,241,234,0));
}
.photo > span::before { content: "foto: "; font-style: normal; color: var(--green-soft); }

figure { margin: 0; }
figcaption { font-size: .85rem; color: var(--ink-mute); margin-top: .6rem; font-style: italic; font-family: var(--serif); }

/* ---- Header ------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,241,234,.94);
  backdrop-filter: saturate(1.1) blur(6px);
  -webkit-backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.25rem;
}
.brand {
  text-decoration: none; display: flex; align-items: center; gap: .8rem; line-height: 1.05;
  flex-shrink: 0;
}
.brand__logo { height: 3.1rem; width: auto; display: block; }
.brand__text { display: flex; flex-direction: column; gap: .2rem; }
.brand .brand__sub { margin-top: 0; font-size: .64rem; }
@media (min-width: 64em) { .brand__logo { height: 3.5rem; } .brand .brand__sub { font-size: .68rem; } }
.brand .brand__sub { white-space: nowrap; }
.brand__name {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 1.55rem; color: var(--green);
  font-variation-settings: "opsz" 72;
}
.brand__sub {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: .25rem; font-weight: 500;
}
.brand:hover .brand__name { color: var(--green-deep); }

.nav-toggle {
  appearance: none; background: none; border: 1px solid var(--line);
  width: 2.75rem; height: 2.75rem; border-radius: 2px; cursor: pointer;
  display: grid; place-items: center; color: var(--ink);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 1.25rem; height: 1.5px; background: currentColor;
  position: relative; transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--cream); border-bottom: 1px solid var(--line);
  padding: 1rem var(--gutter) 1.5rem;
}
.site-nav.is-open { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.site-nav a {
  display: block; padding: .8rem 0; text-decoration: none;
  font-size: 1.05rem; border-bottom: 1px solid var(--line);
}
.site-nav li:last-child a { border-bottom: 0; }
.site-nav a[aria-current="page"] { color: var(--green); font-weight: 500; }
.site-nav .nav-cta a[aria-current="page"] { color: var(--cream); }
.site-nav .nav-cta { margin-top: 1rem; }
.site-nav .nav-cta a { border: 0; padding: 0; }
.site-nav .nav-cta .btn { padding: .8rem 1.3rem; }

@media (min-width: 64em) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block; position: static; background: none; border: 0; padding: 0;
  }
  .site-nav ul { flex-direction: row; align-items: center; gap: 1.5rem; }
  .site-nav a {
    padding: .25rem 0; border: 0; font-size: .95rem; white-space: nowrap;
    border-bottom: 1px solid transparent; transition: border-color .25s var(--ease), color .25s var(--ease);
  }
  .site-nav a:hover { border-bottom-color: var(--sage); }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--green); }
  .site-nav .nav-cta { margin: 0 0 0 .5rem; }
  .site-nav .nav-cta a { border: 1px solid var(--green); padding: .7rem 1.2rem; font-size: .9rem; }
  .site-nav .nav-cta a:hover { border-color: var(--green-deep); }
  .site-nav .nav-cta a[aria-current="page"] { color: var(--cream); background: var(--green-deep); border-color: var(--green-deep); }
}

/* ---- Hero (home) ------------------------------------------------------- */
.hero { padding-top: clamp(1.5rem, 4vw, 3rem); }
.hero__grid { display: grid; gap: 2rem; }
.hero__text { max-width: 38rem; }
.hero__text h1 { margin-bottom: 1.2rem; }
@media (min-width: 56em) {
  .hero__grid {
    grid-template-columns: 6fr 6fr;
    align-items: end;
    gap: clamp(2rem, 5vw, 5rem);
  }
  .hero__photo { grid-column: 1; grid-row: 1; }
  .hero__text { grid-column: 2; grid-row: 1; padding-bottom: 2rem; }
}
/* de foto loopt links iets buiten de container, voor wat lucht en asymmetrie */
@media (min-width: 72em) {
  .hero__photo { margin-left: calc(-1 * var(--gutter)); }
}

/* openingstijden-strook op home */
.hours-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 1.5rem;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}
.hours-strip .container {
  display: grid; gap: 1.25rem;
}
@media (min-width: 48em) {
  .hours-strip .container { grid-template-columns: 1fr 2fr; align-items: baseline; }
}
.hours-strip h2 { font-size: 1.35rem; margin: 0; }

/* ---- Openingstijden-lijst -------------------------------------------- */
.hours {
  margin: 0; padding: 0;
  display: grid; grid-template-columns: auto 1fr; gap: .3rem 1.25rem;
  font-variant-numeric: tabular-nums;
}
.hours dt { color: var(--ink-soft); }
.hours dd { margin: 0; }
.hours dd.closed { color: var(--ink-mute); font-style: italic; font-family: var(--serif); }
.hours--inline {
  display: flex; flex-wrap: wrap; gap: .5rem 2rem;
}
.hours--inline div { display: flex; gap: .6rem; }
.hours--inline dt { color: var(--ink-mute); }
.hours-note { font-size: .85rem; color: var(--ink-mute); margin-top: .75rem; }

/* ---- Split (tekst + foto) -------------------------------------------- */
.split {
  display: grid; gap: 2rem;
  align-items: center;
}
.split__text { max-width: 36rem; }
@media (min-width: 56em) {
  .split { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); }
  .split--photo-right .split__photo { order: 2; }     /* foto staat eerst in de HTML, toch rechts */
  .split--narrow-photo { grid-template-columns: 7fr 5fr; }  /* foto rechts en smaller */
  .split--photo-left { grid-template-columns: 5fr 7fr; }    /* foto links (eerst in HTML) en smaller */
  .split--offset .split__photo { margin-top: 3rem; }
}

/* ---- Dagdelen (lunch/borrel/diner) ----------------------------------- */
.dayparts { list-style: none; margin: 0; padding: 0; }
.dayparts li {
  padding: 1.5rem 0; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr; gap: .4rem 1.5rem;
}
.dayparts li:last-child { border-bottom: 1px solid var(--line); }
.dayparts h3 { margin: 0; font-size: 1.4rem; }
.dayparts .when { font-size: .85rem; color: var(--ink-mute); letter-spacing: .08em; text-transform: uppercase; }
.dayparts p { margin: 0; color: var(--ink-soft); }
@media (min-width: 40em) {
  .dayparts li { grid-template-columns: 10rem 1fr; grid-template-rows: auto 1fr; align-items: start; row-gap: .2rem; }
  .dayparts h3 { grid-column: 1; grid-row: 1; }
  .dayparts .when { grid-column: 1; grid-row: 2; }
  .dayparts p { grid-column: 2; grid-row: 1 / span 2; }
}

/* ---- Full-bleed foto met bijschrift ---------------------------------- */
.bleed { position: relative; }
.bleed .photo { border-left: 0; border-right: 0; }
.bleed .photo > span { bottom: auto; top: 0; background: linear-gradient(to bottom, rgba(244,241,234,.95), rgba(244,241,234,0)); }
.bleed__caption {
  background: var(--cream);
  padding: 1.25rem var(--gutter);
  max-width: 32rem;
  margin-top: -3.5rem; position: relative;
  margin-left: var(--gutter);
}
.bleed__caption h2 { font-size: 1.7rem; margin-bottom: .4rem; }
.bleed__caption p { color: var(--ink-soft); margin-bottom: .8rem; }
@media (min-width: 56em) {
  .bleed__caption { margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))); margin-top: -6rem; padding: 2rem 2.5rem; }
}

/* ---- Pagina-koppen ---------------------------------------------------- */
.page-head { padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.page-head h1 { margin-bottom: 1rem; }
.page-head .lede { max-width: 40rem; }
.page-head--split { display: grid; gap: 2rem; }
@media (min-width: 56em) {
  .page-head--split { grid-template-columns: 7fr 5fr; align-items: end; gap: 4rem; }
}

/* ---- Menukaart --------------------------------------------------------- */
.tabs { border-bottom: 1px solid var(--line); margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.tabs__list {
  display: flex; gap: 0; list-style: none; margin: 0; padding: 0;
  overflow-x: auto; scrollbar-width: none;
}
.tabs__list::-webkit-scrollbar { display: none; }
.tab {
  appearance: none; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-size: 1.35rem; color: var(--ink-mute);
  padding: .85rem 0; margin-right: 2rem; margin-bottom: -1px;
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: color .25s var(--ease), border-color .25s var(--ease);
  font-variation-settings: "opsz" 48;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { color: var(--green); border-bottom-color: var(--green); }
.tab small { display: block; font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-top: .15rem; }

.menu-panel[hidden] { display: none; }
.menu-panel + .menu-panel { margin-top: 4rem; }
.js .menu-panel + .menu-panel { margin-top: 0; }

.menu-intro { max-width: 40rem; color: var(--ink-soft); margin-bottom: 2.5rem; }

.menu-grid { display: grid; gap: 3rem; }
@media (min-width: 56em) {
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 3rem clamp(3rem, 6vw, 6rem); }
  .menu-grid--single { grid-template-columns: minmax(0, 40rem); }
}
.menu-group h3 {
  font-size: 1.5rem; margin-bottom: .25rem;
}
.menu-group .group-note { font-size: .85rem; color: var(--ink-mute); margin-bottom: 1.25rem; font-style: italic; font-family: var(--serif); }
.menu-group h3 + ul { margin-top: 1.25rem; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item {
  display: grid; grid-template-columns: 1fr auto; column-gap: 1rem;
  padding: .85rem 0; border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: 0; }
.menu-item__name { font-family: var(--serif); font-size: 1.15rem; font-variation-settings: "opsz" 48; }
.menu-item__desc { grid-column: 1; font-size: .92rem; color: var(--ink-soft); margin: .15rem 0 0; max-width: 34rem; }
.menu-item__price {
  grid-column: 2; grid-row: 1;
  font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap;
  color: var(--ink);
}
.menu-item__price--mute { color: var(--ink-mute); font-style: italic; font-family: var(--serif); }
.tag {
  display: inline-block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--leaf); margin-left: .5rem; vertical-align: middle; font-family: var(--sans);
}

.menu-note {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: 1.5rem 0 0; border-top: 1px solid var(--line);
  display: grid; gap: 1rem;
  max-width: 44rem;
}
.menu-note p { font-size: .95rem; color: var(--ink-soft); }

/* ---- Over ons: verhaal --------------------------------------------- */
.story { display: grid; gap: 2.5rem; }
.story__body { max-width: 36rem; }
.story__body p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 3.6em; float: left; line-height: .85;
  padding: .08em .12em 0 0; color: var(--green); font-weight: 300;
}
.story__aside { display: grid; gap: 2rem; align-content: start; }
@media (min-width: 56em) {
  .story { grid-template-columns: 7fr 5fr; gap: clamp(3rem, 7vw, 7rem); }
  .story__aside { padding-top: 4rem; }
}
.facts { margin: 0; padding: 0; display: grid; gap: .9rem; }
.facts div { display: grid; grid-template-columns: 6.5rem 1fr; gap: 1rem; border-top: 1px solid var(--line); padding-top: .9rem; }
.facts dt { color: var(--ink-mute); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; padding-top: .15rem; }
.facts dd { margin: 0; }

.quote {
  margin: 0; padding-left: 1.5rem; border-left: 2px solid var(--sage);
  font-family: var(--serif); font-size: 1.35rem; line-height: 1.45; font-style: italic;
  color: var(--ink-soft); max-width: 30rem;
}
.quote cite { display: block; font-style: normal; font-family: var(--sans); font-size: .85rem; color: var(--ink-mute); margin-top: .75rem; }

/* foto-rij met verspringende maten (over ons) */
.photo-row { display: grid; gap: 1rem; }
@media (min-width: 40em) {
  .photo-row { grid-template-columns: 3fr 2fr; align-items: end; }
  .photo-row .photo:first-child { margin-bottom: 3rem; }
}
@media (min-width: 56em) {
  .photo-row { grid-template-columns: 5fr 4fr 3fr; }
  .photo-row .photo:first-child { margin-bottom: 0; }
  .photo-row .photo:nth-child(2) { margin-bottom: 2.5rem; }
  .photo-row .photo:nth-child(3) { margin-bottom: 5.5rem; }
}

/* ---- Formulier --------------------------------------------------------- */
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 40em) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .span-2 { grid-column: 1 / -1; }
}
.field label {
  display: block; font-size: .85rem; font-weight: 500; margin-bottom: .4rem;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8rem .9rem;
  background: #fbf8f1;
  border: 1px solid var(--line); border-radius: 2px;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(75,84,68,.14);
}
.field textarea { min-height: 7rem; resize: vertical; }
.field .hint { font-size: .82rem; color: var(--ink-mute); margin-top: .35rem; }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%); background-position: calc(100% - 1.15rem) 50%, calc(100% - .8rem) 50%; background-size: .35rem .35rem; background-repeat: no-repeat; padding-right: 2.25rem; }
.form-actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.form-status { margin-top: 1.25rem; font-size: .95rem; color: var(--green); }
.form-status:empty { display: none; }

.reserve-layout { display: grid; gap: 3rem; }
@media (min-width: 56em) {
  .reserve-layout { grid-template-columns: 7fr 4fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
}
.aside-block { border-top: 2px solid var(--green); padding-top: 1.25rem; }
.aside-block + .aside-block { margin-top: 2rem; }
.aside-block h2, .aside-block h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.aside-block p { font-size: .95rem; color: var(--ink-soft); }
.phone-big {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-decoration: none; color: var(--green); display: inline-block; margin: .25rem 0 .5rem;
  font-variation-settings: "opsz" 72;
}
.phone-big:hover { color: var(--green-deep); }

/* ---- Groepen: opties-lijst ------------------------------------------ */
.options { list-style: none; margin: 0; padding: 0; max-width: 44rem; }
.options li {
  padding: 1.75rem 0; border-top: 1px solid var(--line);
  display: grid; gap: .5rem 2rem;
}
.options li:last-child { border-bottom: 1px solid var(--line); }
.options h3 { margin: 0; font-size: 1.4rem; }
.options .price { font-variant-numeric: tabular-nums; color: var(--ink-soft); white-space: nowrap; }
.options p { color: var(--ink-soft); margin: 0; }
@media (min-width: 40em) {
  .options li { grid-template-columns: 1fr auto; }
  .options p { grid-column: 1 / -1; }
}

/* ---- Contact ----------------------------------------------------------- */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 56em) {
  .contact-grid { grid-template-columns: 5fr 7fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
}
.contact-list { margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.contact-list dt { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .3rem; }
.contact-list dd { margin: 0; }
.contact-list dd a { text-decoration: none; border-bottom: 1px solid var(--sage); }
.contact-list .hours { margin-top: .25rem; }
.contact-list .hours dt { font-size: inherit; letter-spacing: 0; text-transform: none; color: var(--ink-soft); margin: 0; }
.contact-list dd a:hover { border-color: var(--green); }
address { font-style: normal; }

.map {
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3; width: 100%; background: var(--cream-2);
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) sepia(.12) contrast(.95); }
@media (min-width: 56em) { .map { aspect-ratio: 16 / 11; } }

/* ---- Reveal (rustige fade bij scrollen) ------------------------------ */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ---- Footer ------------------------------------------------------------ */
.site-footer {
  background: var(--green-deep); color: rgba(244,241,234,.82);
  padding-top: clamp(3rem, 7vw, 5rem);
  font-size: .95rem;
}
.site-footer a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(207,178,131,.45); transition: border-color .25s var(--ease); }
.site-footer a:hover { border-bottom-color: var(--sage-soft); color: var(--cream); }
.footer-grid {
  display: grid; gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
@media (min-width: 40em) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64em) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr .8fr; gap: 3rem; } }
.footer-brand .brand__logo { height: 4.5rem; margin-bottom: 1rem; }
.footer-brand .brand__name { color: var(--cream); font-size: 1.9rem; }
.footer-brand .brand__sub { color: var(--sage-soft); }
.footer-brand p { margin-top: 1.25rem; max-width: 24rem; color: rgba(244,241,234,.7); }
.site-footer h2 {
  font-family: var(--sans); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sage-soft); margin: 0 0 1rem; font-weight: 500;
}
.site-footer .hours dd.closed { color: rgba(244,241,234,.5); font-style: italic; font-family: var(--serif); }
.site-footer .hours dt { color: rgba(244,241,234,.6); }
.site-footer .hours-note { color: rgba(244,241,234,.5); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-block: 1.5rem;
  font-size: .8rem; color: rgba(244,241,234,.55);
  display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between;
}
.footer-bottom p { margin: 0; max-width: none; }
.footer-bottom a { color: inherit; border-bottom-color: transparent; }
.footer-credit {
  margin: 0;
  padding-bottom: 1.5rem;
  font-size: .72rem;
  letter-spacing: .06em;
  color: rgba(244,241,234,.35);
}
@media (max-width: 40em) { .footer-credit { padding-bottom: 4.5rem; } }
.footer-bottom a:hover { color: var(--cream); }
.ig-link { display: inline-flex; align-items: center; gap: .5rem; }
.ig-link svg { width: 1.1rem; height: 1.1rem; }

/* ---- Print ------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .btn, .tabs, .nav-toggle { display: none !important; }
  .menu-panel[hidden] { display: block !important; }
  body { background: #fff; color: #000; }
  .photo { display: none; }
}

/* ---- Wijnkaart --------------------------------------------------------- */
.menu-col > .menu-group + .menu-group { margin-top: 2.75rem; }
.wine-group h3 .unit {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-mute); margin-left: .6rem; font-weight: 400; white-space: nowrap;
}
.wine {
  display: grid; grid-template-columns: 1fr auto; column-gap: 1rem;
  padding: .85rem 0; border-bottom: 1px solid var(--line);
}
.wine:last-child { border-bottom: 0; }
.wine__meta { grid-column: 1; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }
.wine__name { grid-column: 1; font-family: var(--serif); font-size: 1.1rem; font-variation-settings: "opsz" 48; line-height: 1.3; }
.wine__name small { font-family: var(--sans); font-size: .82rem; color: var(--ink-soft); }
.wine__desc { grid-column: 1; font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--ink-soft); margin-top: .1rem; }
.wine__origin { grid-column: 1; font-size: .85rem; color: var(--ink-mute); margin-top: .15rem; }
.wine__price {
  grid-column: 2; grid-row: 1 / span 4; align-self: start; margin-top: 1.1rem;
  display: grid; grid-auto-flow: column; gap: 1.25rem;
  font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap;
}
.wine__price span { min-width: 3.2rem; }
.wine-legend { margin-top: 2.5rem; font-size: .85rem; color: var(--ink-soft); }
.wine-legend .tag { margin-left: 0; }

/* tabs op smalle schermen: alle vier in beeld */
@media (max-width: 40em) {
  .tab { font-size: 1.1rem; margin-right: 1.1rem; padding: .7rem 0; }
  .tab small { font-size: .6rem; letter-spacing: .06em; }
  .tabs__list { justify-content: space-between; }
  .tab:last-child { margin-right: 0; }
}

/* ---- Echte foto's (img.photo) ---------------------------------------- */
img.photo { display: block; height: auto; object-fit: cover; background-image: none; }
.photo--pos-top { object-position: 50% 15%; }
.photo--pos-upper { object-position: 50% 35%; }
.photo--pos-mid { object-position: 50% 50%; }
.photo--pos-lower { object-position: 50% 65%; }

/* ---- GoTable ----------------------------------------------------------- */
.gotable { min-height: 20rem; }
.gotable iframe { width: 100% !important; max-width: 100%; border: 0; }
.gotable__fallback { margin-top: 1.25rem; }

/* Desktop: alleen het logo in de balk, zodat het menu altijd past.
   Op mobiel blijft de ondertitel staan; daar is het menu ingeklapt. */
@media (min-width: 64em) {
  .site-header .brand__text { display: none; }
  .site-nav ul { gap: 1.4rem; }
}

/* ---- Sloep de Vriend --------------------------------------------------- */
.bleed--hero .photo--21x9 { aspect-ratio: 3 / 4; }
@media (min-width: 48em) { .bleed--hero .photo--21x9 { aspect-ratio: 3 / 2; } }
@media (min-width: 80em) { .bleed--hero .photo--21x9 { aspect-ratio: 16 / 10; } }
.bleed__caption--hero { max-width: 38rem; }
.bleed__caption--hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); margin-bottom: 1rem; }
.bleed__caption--hero p { color: var(--ink-soft); }
@media (min-width: 56em) { .bleed__caption--hero { margin-top: -8rem; padding: 2.5rem 3rem 2.5rem 2.5rem; } }

.facts-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: 1.5rem; margin-top: clamp(2rem, 5vw, 3.5rem); }
.facts-strip dl { margin: 0; display: grid; gap: 1rem 2rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 48em) { .facts-strip dl { grid-template-columns: repeat(4, 1fr); } }
.facts-strip dt { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.facts-strip dd { margin: .15rem 0 0; font-family: var(--serif); font-size: 1.15rem; font-variation-settings: "opsz" 48; }

.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head .lede { margin-top: .5rem; }
.options-grid { display: grid; gap: 0 clamp(2rem, 5vw, 5rem); }
@media (min-width: 56em) { .options-grid { grid-template-columns: 1fr 1fr; } }
.options-grid .options { max-width: none; }
@media (min-width: 56em) { .options-grid .options:first-child li:last-child { border-bottom: 1px solid var(--line); } }
@media (max-width: 55.99em) { .options-grid .options + .options li:first-child { border-top: 0; } }

.routes { display: grid; gap: 2rem; }
@media (min-width: 48em) { .routes { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); } }
.routes--stacked { grid-template-columns: 1fr; gap: 1.75rem; margin-top: 1.5rem; }
.route { border-top: 2px solid var(--green); padding-top: 1.25rem; max-width: 34rem; }
.route__time { display: block; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .5rem; }
.route h3 { margin-bottom: .5rem; }
.route p { color: var(--ink-soft); margin: 0; }

/* Overlappend tekstblok op smalle schermen: links uitgelijnd met de rand */
@media (max-width: 55.99em) {
  .bleed__caption { margin-left: 0; margin-right: var(--gutter); margin-top: -2.5rem; }
}

/* ---- Veelgestelde vragen ---------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__grid { display: grid; gap: 0 clamp(2rem, 5vw, 5rem); }
@media (min-width: 56em) { .faq__grid { grid-template-columns: 1fr 1fr; } }
.faq__item { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.faq__item h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.faq__item p { color: var(--ink-soft); font-size: .97rem; max-width: none; }

/* ---- Taalkeuze menukaart ---------------------------------------------- */
.page-head__top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem 1.5rem; margin-bottom: 1rem; }
.page-head__top .eyebrow { margin-bottom: 0; }
.lang { display: flex; gap: .15rem; font-size: .78rem; letter-spacing: .1em; }
.lang a { text-decoration: none; padding: .2rem .45rem; color: var(--ink-mute); border-bottom: 1px solid transparent; transition: color .2s var(--ease), border-color .2s var(--ease); }
.lang a:hover { color: var(--ink); }
.lang a[aria-current="page"] { color: var(--green); border-bottom-color: var(--green); font-weight: 500; }

/* Full-bleed foto's: op smalle schermen een hoger kader, anders wordt het een dun strookje */
@media (max-width: 47.99em) {
  .bleed > .photo--21x9:not(.bleed--hero *) { aspect-ratio: 16 / 10; }
}
