@charset "UTF-8";
/* ==========================================================================
   Taverne De Smidse — styles.css
   Feel: "een smidse die stil viel en een eetzaal werd."

   Two zones, and every section belongs to one of them:
     KALKMUUR  — limewashed, light. Carries the practical information.
     DE SMIDSE — forged iron with an ember glow. Carries the welcome and the story.

   The zones are implemented as inherited custom properties (--ink, --vlak, --lijn…)
   rather than as per-component overrides, so a component can be dropped into either
   zone and reads correctly without new CSS.

   Token plan documented in ../DESIGN-SYSTEM.md
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* --- Raw colour: the forge -------------------------------------------- */
  --smeedijzer:   #191C1E;   /* forged iron — cool near-black, the dark zone  */
  --smeedijzer-2: #23282B;   /* raised iron — panels inside the dark zone     */
  --roet:         #33312D;   /* soot — body text on light                     */
  --roet-zacht:   #5C574E;   /* soot, muted — secondary text on light         */
  --kalk:         #E6E3D9;   /* limewash — the page surface                   */
  --kalk-diep:    #DBD5C7;   /* deeper limewash — recessed plates and slots   */
  --kalk-hoog:    #EFEBE2;   /* raised limewash — plates on a deep band       */
  --kalkwit:      #F3EFE6;   /* lit limewash — headings on iron               */
  --vlamwit:      #FBF8F2;   /* flame white — text on ember                   */
  --messing:      #C9A052;   /* brass, lit — labels and rules on iron         */
  --messing-ink:  #6F5217;   /* brass, in shadow — links and labels on light  */
  --gloed:        #B03E14;   /* ember — the primary action                    */
  --gloed-diep:   #8E3010;   /* ember, banked — pressed state                 */
  --kaars:        #EFC178;   /* candlelight — glow and focus rings on iron    */

  /* --- Zone: KALKMUUR (default) ----------------------------------------- */
  --ink:        var(--roet);            /* body text                         */
  --ink-sterk:  var(--smeedijzer);      /* headings                          */
  --ink-zacht:  var(--roet-zacht);      /* notes, captions                   */
  --brass-ink:  var(--messing-ink);     /* links, eyebrows, small rules      */
  --lijn:       rgba(51,49,45,.16);     /* hairline separators               */
  --lijn-brass: rgba(111,82,23,.30);    /* brass separators                  */
  --rand-knop:  rgba(51,49,45,.32);     /* outline-button border             */
  --vlak:       var(--kalk-diep);       /* panel and photo-slot surface      */
  --vlak-rand:  rgba(111,82,23,.24);
  --vlak-hi:    rgba(255,255,255,.60);
  --vlak-lo:    rgba(25,28,30,.10);
  --focus:      var(--messing-ink);

  /* --- Type ------------------------------------------------------------- */
  --font-display: Vollkorn, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body:    Archivo, "Helvetica Neue", "Segoe UI", Arial, sans-serif;

  --fs-hero:  clamp(2.75rem, 1.55rem + 5.2vw, 5.25rem);
  --fs-h2:    clamp(1.9rem,  1.42rem + 2.1vw, 3rem);
  --fs-h3:    clamp(1.3rem,  1.16rem + 0.62vw, 1.65rem);
  --fs-lede:  clamp(1.16rem, 1.06rem + 0.45vw, 1.4rem);
  --fs-body:  1.0625rem;                /* 17px floor — never below 16px     */
  --fs-label: 0.875rem;                 /* 14px, uppercase, tracked          */

  --lh-tight: 1.04;
  --lh-snug:  1.28;
  --lh-body:  1.65;
  --tracking-label: 0.15em;

  /* --- Spacing ---------------------------------------------------------- */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 3rem;     --sp-8: 4rem;
  --sp-9: 6rem;

  --band-pad:  clamp(3.5rem, 2rem + 6vw, 7rem);
  --wrap:      70rem;                   /* 1120px */
  --gutter:    clamp(1.1rem, 0.7rem + 2.2vw, 2.5rem);
  --measure:   62ch;

  /* --- Form ------------------------------------------------------------- */
  --r:      4px;                        /* forged, not soft */
  --r-lg:   8px;
  --hair:   1px;

  --sh-1: 0 1px 2px rgba(25,28,30,.07), 0 8px 22px -14px rgba(25,28,30,.35);
  --sh-2: 0 2px 4px rgba(25,28,30,.09), 0 22px 44px -26px rgba(25,28,30,.45);

  /* --- Motion ----------------------------------------------------------- */
  --ease:      cubic-bezier(.2, .7, .3, 1);
  --dur-fast:  160ms;
  --dur:       320ms;
  --dur-slow:  620ms;
}

/* --- Zone: DE SMIDSE ---------------------------------------------------- */
.band--iron,
.hearth,
.leisteen,
.site-footer {
  --ink:        #DDD8CC;
  --ink-sterk:  var(--kalkwit);
  --ink-zacht:  #B7B0A2;
  --brass-ink:  var(--messing);
  --lijn:       rgba(243,239,230,.16);
  --lijn-brass: rgba(201,160,82,.35);
  --rand-knop:  rgba(243,239,230,.34);
  --vlak:       var(--smeedijzer-2);
  --vlak-rand:  rgba(201,160,82,.26);
  --vlak-hi:    rgba(243,239,230,.09);
  --vlak-lo:    rgba(0,0,0,.40);
  --focus:      var(--kaars);
}

/* A deeper limewash band: panels lift instead of sinking, so they stay visible. */
.band--diep { --vlak: var(--kalk-hoog); }

/* Per-page identity: each page burns at a different temperature. */
.page-home    { --accent-glow: rgba(176,62,20,.55); }
.page-menu    { --accent-glow: rgba(201,160,82,.32); }
.page-contact { --accent-glow: rgba(239,193,120,.34); }

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  background: var(--kalk);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* The limewash is never flat: a very fine grain lies over the whole page. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .5;
  background-image:
    repeating-linear-gradient(27deg,  rgba(25,28,30,.030) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(-63deg, rgba(255,255,255,.045) 0 1px, transparent 1px 5px);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-snug);
  margin: 0;
  color: var(--ink-sterk);
  text-wrap: balance;
}

p, li, dd, dt, figcaption { margin: 0; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }

a {
  color: var(--brass-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}
a:hover { color: var(--gloed); }
.band--iron a:hover, .hearth a:hover, .leisteen a:hover, .site-footer a:hover { color: var(--kaars); }

strong, b { font-weight: 600; }

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

::selection { background: var(--kaars); color: var(--smeedijzer); }

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

.skip-link {
  position: absolute;
  left: var(--sp-4); top: var(--sp-2);
  transform: translateY(-180%);
  z-index: 200;
  background: var(--smeedijzer);
  color: var(--kalkwit);
  padding: .85rem 1.25rem;
  border-radius: var(--r);
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: translateY(0); color: var(--kalkwit); }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}
.wrap--narrow { max-width: 52rem; }

.band { padding-block: var(--band-pad); position: relative; }
.band--tight { --band-pad: clamp(2.5rem, 1.6rem + 3.4vw, 4.25rem); }
.band--iron  { background: var(--smeedijzer); color: var(--ink); }
.band--diep  { background: var(--kalk-diep); }

.stack > * + * { margin-top: var(--sp-4); }
.measure { max-width: var(--measure); }

/* --------------------------------------------------------------------------
   4. Typographic roles
   -------------------------------------------------------------------------- */
.label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--brass-ink);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 var(--sp-4);
}
.label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .34;
  max-width: 5rem;
}

.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }

.lede {
  font-size: var(--fs-lede);
  line-height: 1.5;
  color: var(--ink);
  max-width: 46ch;
}

.thesis {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 2rem);
  line-height: 1.36;
  color: var(--kaars);
  max-width: 24ch;
}

.prose { max-width: var(--measure); }
.prose p + p { margin-top: var(--sp-4); }

.lijst > li { position: relative; padding-left: 1.5rem; }
.lijst > li + li { margin-top: .6rem; }
.lijst > li::before {
  content: "";
  position: absolute;
  left: 0; top: .82em;
  width: .6rem; height: 2px;
  background: var(--brass-ink);
  opacity: .8;
}

/* --------------------------------------------------------------------------
   5. De vonk — the signature mark (a struck-metal spark)
   -------------------------------------------------------------------------- */
.vonk { width: 1em; height: 1em; flex: none; fill: currentColor; }

.rule {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  color: var(--brass-ink);
  margin-block: var(--sp-7);
}
.rule::before, .rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: .34;
}
.rule .vonk { font-size: 1.1rem; opacity: .85; }

/* --------------------------------------------------------------------------
   6. Header and navigation — persistent, always visible, never a hamburger
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(230,227,217,.93);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: var(--hair) solid var(--lijn);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-stuck {
  background: rgba(230,227,217,.985);
  box-shadow: 0 1px 0 rgba(51,49,45,.10), 0 10px 30px -22px rgba(25,28,30,.6);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-height: 4.25rem;
  padding-block: .55rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--ink-sterk);
  margin-right: auto;
}
.brand .vonk { font-size: 1.35rem; color: var(--gloed); }
.brand-text { display: flex; flex-direction: column; line-height: 1.06; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -.01em;
}
.brand-sub {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-zacht);
  font-weight: 500;
  margin-top: .2em;
}

.nav { display: flex; align-items: stretch; gap: clamp(.1rem, .6vw, .9rem); }
.nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: .35rem clamp(.5rem, 1.4vw, .95rem);
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--r);
  position: relative;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: clamp(.5rem, 1.4vw, .95rem);
  right: clamp(.5rem, 1.4vw, .95rem);
  bottom: .38rem;
  height: 2px;
  background: var(--gloed);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav a:hover { color: var(--ink-sterk); background: rgba(111,82,23,.07); }
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--ink-sterk); font-weight: 700; }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-call { margin-left: var(--sp-3); }

/* --------------------------------------------------------------------------
   7. Buttons — one filled button on the page, and it is the telephone
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 52px;
  padding: .85rem 1.5rem;
  border: var(--hair) solid transparent;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.btn .vonk { font-size: .95em; opacity: .85; }
.btn:active { transform: translateY(1px); }

.btn--call {
  background: var(--gloed);
  color: var(--vlamwit);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18),
              0 10px 24px -14px rgba(176,62,20,.9);
}
.btn--call:hover { background: var(--gloed-diep); color: var(--vlamwit); }
.btn--call .btn-number { font-variant-numeric: tabular-nums; opacity: .92; font-weight: 500; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rand-knop); }
.btn--ghost:hover { color: var(--ink-sterk); border-color: var(--ink-sterk); background: rgba(111,82,23,.07); }
.band--iron .btn--ghost:hover,
.hearth .btn--ghost:hover { background: rgba(243,239,230,.08); }

.btn--block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }

/* A quiet inline link. The underline is drawn under the text, not under the
   44px tap target, so the target can be generous without looking loose. */
.link-on {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  font-weight: 600;
  color: var(--brass-ink);
  text-decoration: none;
}
.link-on::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: calc(50% - .95em);
  height: 2px;
  background: currentColor;
  opacity: .45;
  transition: opacity var(--dur-fast) var(--ease);
}
.link-on:hover::after { opacity: 1; }

/* --------------------------------------------------------------------------
   8. De haard — the iron band with the ember glow (the site's one atmosphere)
   -------------------------------------------------------------------------- */
.hearth {
  background: var(--smeedijzer);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 2rem + 7vw, 8rem) clamp(3rem, 1.8rem + 5vw, 6rem);
}

/* The coals: two stacked radial glows that breathe very slowly. */
.hearth::before,
.hearth::after { content: ""; position: absolute; pointer-events: none; z-index: 0; }
.hearth::before {
  inset: -20% -10% -40%;
  background:
    radial-gradient(58% 52% at 50% 88%, var(--accent-glow, rgba(176,62,20,.55)), transparent 68%),
    radial-gradient(38% 34% at 50% 96%, rgba(239,193,120,.30), transparent 70%);
  filter: blur(6px);
  opacity: .92;
  animation: gloed 11s var(--ease) infinite alternate;
}
.hearth::after {
  inset: 0;
  background-image:
    repeating-linear-gradient(31deg, rgba(255,255,255,.030) 0 1px, transparent 1px 5px),
    radial-gradient(120% 100% at 50% 0%, rgba(25,28,30,.55), transparent 60%);
  opacity: .8;
}
@keyframes gloed {
  from { opacity: .74; transform: translateY(1.5%) scale(1); }
  to   { opacity: 1;   transform: translateY(-1%)  scale(1.06); }
}

.hearth-eyebrow {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--messing);
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}

.wordmark { margin: 0 0 var(--sp-5); line-height: var(--lh-tight); }
.wordmark .wm-small {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(.95rem, .8rem + .5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--messing);
  margin: 0 0 .55rem .2em;
}
.wordmark .wm-big {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-hero);
  letter-spacing: -.022em;
  color: var(--kalkwit);
}

.hearth-copy { max-width: 40rem; }
.hearth-copy .lede { margin-top: var(--sp-5); }
.hearth .btn-group { margin-top: var(--sp-6); }

.hearth-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: var(--hair) solid var(--lijn-brass);
}
.hearth-facts > div { min-width: 9rem; }
.hearth-facts dt {
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--messing);
  font-weight: 600;
  margin-bottom: .2rem;
}
.hearth-facts dd { color: var(--kalkwit); }
.hearth-facts a { color: var(--kalkwit); text-decoration-color: rgba(243,239,230,.45); }

/* The compact hearth used on the inner pages and on the closing invitation. */
.hearth--inner { padding-block: clamp(2.75rem, 1.8rem + 4vw, 5rem) clamp(2.5rem, 1.6rem + 3.4vw, 4.5rem); }
.hearth--inner h1 {
  font-size: clamp(2.2rem, 1.5rem + 3.1vw, 3.75rem);
  letter-spacing: -.02em;
  max-width: 18ch;
}

.callband h2 { max-width: 22ch; }
.callband .lede { margin-top: var(--sp-4); }

/* --------------------------------------------------------------------------
   9. Jump rail — orientation on a long page
   -------------------------------------------------------------------------- */
.jump { background: var(--kalk-diep); border-bottom: var(--hair) solid var(--lijn); }
.jump-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .1rem 1.1rem;
  padding-block: .3rem;
}
.jump-label {
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-zacht);
  margin-right: .35rem;
}
.jump a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.jump a:hover {
  color: var(--gloed);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .3em;
}

/* --------------------------------------------------------------------------
   10. De smeedplaat — the cast plate that holds practical information
   -------------------------------------------------------------------------- */
.plate {
  position: relative;
  background: var(--vlak);
  border: var(--hair) solid var(--vlak-rand);
  border-radius: var(--r);
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  box-shadow: inset 0 1px 0 var(--vlak-hi), inset 0 -1px 0 var(--vlak-lo), var(--sh-1);
}
.plate::before {
  content: "";
  position: absolute;
  top: -1px;
  left: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  width: 2.75rem; height: 3px;
  background: var(--brass-ink);
  border-radius: 0 0 2px 2px;
}
.plate > h2, .plate > h3 { margin-bottom: var(--sp-4); }
.plate p + p { margin-top: var(--sp-4); }

.plate-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }

/* --------------------------------------------------------------------------
   11. Openingsuren
   -------------------------------------------------------------------------- */
.uren > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .1rem 1rem;
  padding-block: .62rem;
  border-bottom: var(--hair) solid var(--lijn);
}
.uren > div:last-child { border-bottom: 0; }
.uren dt { font-weight: 600; color: var(--ink-sterk); }
.uren dd { font-variant-numeric: tabular-nums; color: var(--ink); text-align: right; }

.uren-note { margin-top: var(--sp-4); font-size: 1rem; color: var(--ink-zacht); }

/* --------------------------------------------------------------------------
   12. Photo slots — art-directed frames, and beautiful while still empty
   -------------------------------------------------------------------------- */
.slot {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: var(--hair) solid var(--vlak-rand);
  background-color: var(--vlak);
  /* limewash over courses of old brick — drawn, never photographed */
  background-image:
    repeating-linear-gradient(180deg, rgba(25,28,30,.05) 0 1px, transparent 1px 2.15rem),
    radial-gradient(120% 90% at 28% 12%, rgba(255,255,255,.5), transparent 62%),
    radial-gradient(100% 85% at 82% 104%, rgba(25,28,30,.14), transparent 60%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), var(--sh-1);
  aspect-ratio: 4 / 3;
}
.slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0c.62 7.2 4.18 10.76 12 12-7.82 1.24-11.38 4.8-12 12-.62-7.2-4.18-10.76-12-12C7.82 10.76 11.38 7.2 12 0Z' fill='%236F5217'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: clamp(2rem, 7%, 3.25rem);
  opacity: .13;
}
.slot > img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }

.slot--portret  { aspect-ratio: 4 / 5; }
.slot--breed    { aspect-ratio: 16 / 9; }
.slot--vierkant { aspect-ratio: 1 / 1; }

.slot--iron {
  background-color: #202426;
  background-image:
    repeating-linear-gradient(180deg, rgba(0,0,0,.30) 0 1px, transparent 1px 2.15rem),
    radial-gradient(110% 90% at 30% 8%, rgba(239,193,120,.16), transparent 62%),
    radial-gradient(100% 90% at 78% 108%, rgba(0,0,0,.5), transparent 62%);
  box-shadow: inset 0 0 0 1px rgba(243,239,230,.07), 0 22px 44px -30px rgba(0,0,0,.9);
}
.slot--iron::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0c.62 7.2 4.18 10.76 12 12-7.82 1.24-11.38 4.8-12 12-.62-7.2-4.18-10.76-12-12C7.82 10.76 11.38 7.2 12 0Z' fill='%23EFC178'/></svg>");
  opacity: .17;
}

/* --------------------------------------------------------------------------
   13. Gerechten — dish cards and the editorial menu entries
   -------------------------------------------------------------------------- */
.dishes { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; margin-top: var(--sp-6); }
.dish { display: flex; flex-direction: column; gap: var(--sp-4); }
.dish h3 { font-size: var(--fs-h3); margin-bottom: .5rem; }
.dish-kicker {
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-ink);
  margin-bottom: .35rem;
}

.entry {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  align-items: start;
  padding-block: var(--sp-7);
  border-top: var(--hair) solid var(--lijn);
}
.entry:first-of-type { border-top: 0; padding-top: var(--sp-5); }
.entry h3 {
  font-size: clamp(1.6rem, 1.25rem + 1.5vw, 2.35rem);
  letter-spacing: -.015em;
  margin-bottom: var(--sp-3);
}
.entry-body p + p { margin-top: var(--sp-4); }
.entry-index {
  display: block;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-ink);
  margin-bottom: var(--sp-2);
}

/* --------------------------------------------------------------------------
   14. Leisteen — the board with the seasonal suggestions
   -------------------------------------------------------------------------- */
.leisteen {
  position: relative;
  background: #1F2426;
  border: var(--hair) solid rgba(201,160,82,.3);
  border-radius: var(--r);
  padding: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  color: var(--ink);
  overflow: hidden;
  box-shadow: var(--sh-2);
}
.leisteen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(243,239,230,.09), transparent 60%),
    repeating-linear-gradient(112deg, rgba(243,239,230,.035) 0 1px, transparent 1px 7px);
}
.leisteen > * { position: relative; }
.leisteen-hand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 2.1rem);
  line-height: 1.34;
  color: var(--kaars);
  max-width: 26ch;
}

/* --------------------------------------------------------------------------
   15. Redenen — the row of reasons to trust the place
   -------------------------------------------------------------------------- */
.redenen { display: grid; gap: var(--sp-5) var(--sp-6); grid-template-columns: 1fr; margin-top: var(--sp-6); }
.reden { padding-top: var(--sp-4); border-top: 2px solid var(--lijn-brass); }
.reden h3 {
  font-size: 1.22rem;
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.reden .vonk { font-size: .7em; color: var(--brass-ink); position: relative; top: -.05em; }
.reden p { color: var(--ink-zacht); }

/* --------------------------------------------------------------------------
   16. Verhaal — story block with a portrait beside it
   -------------------------------------------------------------------------- */
.verhaal { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; align-items: start; }
.verhaal-quote {
  margin-top: var(--sp-6);
  padding-left: var(--sp-5);
  border-left: 3px solid var(--gloed);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.05rem + .7vw, 1.6rem);
  line-height: 1.42;
  color: var(--ink-sterk);
}
.verhaal-quote cite {
  display: block;
  margin-top: var(--sp-3);
  font-family: var(--font-body);
  font-style: normal;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass-ink);
}

/* --------------------------------------------------------------------------
   17. FAQ — every answer visible, nothing to click open
   -------------------------------------------------------------------------- */
.faq { margin-top: var(--sp-6); }
.faq > div { padding-block: var(--sp-5); border-top: var(--hair) solid var(--lijn); }
.faq > div:last-child { border-bottom: var(--hair) solid var(--lijn); }
.faq dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--ink-sterk);
  margin-bottom: var(--sp-2);
}
.faq dd { color: var(--ink); max-width: 60ch; }
.faq dd a { font-weight: 600; }

/* --------------------------------------------------------------------------
   18. Contact page pieces
   -------------------------------------------------------------------------- */
.telblok { display: flex; flex-direction: column; gap: var(--sp-4); align-items: flex-start; }
.telnummer {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 1.15rem + 3.2vw, 3.4rem);
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink-sterk);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  border-bottom: 3px solid var(--gloed);
  padding-bottom: .08em;
}
.telnummer:hover { color: var(--gloed); }

.adres { font-style: normal; font-size: var(--fs-lede); line-height: 1.5; color: var(--ink); }
.adres strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12em;
  font-weight: 700;
  color: var(--ink-sterk);
}

.duo { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; align-items: start; }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--smeedijzer);
  color: var(--ink);
  padding-block: var(--sp-8) var(--sp-6);
}
.footer-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
.site-footer h2 {
  font-family: var(--font-body);
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--messing);
  margin-bottom: var(--sp-4);
}
.site-footer a { color: var(--kalkwit); text-decoration-color: rgba(243,239,230,.35); }
.footer-nav li + li { margin-top: .1rem; }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 500; }
.footer-brand .brand { pointer-events: none; margin-right: 0; }
.footer-brand .brand-name { color: var(--kalkwit); font-size: 1.5rem; }
.footer-brand .brand .vonk { color: var(--messing); font-size: 1.5rem; }
.footer-brand p { margin-top: var(--sp-3); max-width: 34ch; color: var(--ink-zacht); }
.footer-contact p + p { margin-top: .2rem; }

.footer-bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: var(--hair) solid var(--lijn);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--ink-zacht);
}
.naar-boven { display: inline-flex; align-items: center; gap: .45rem; min-height: 44px; font-weight: 600; }

/* --------------------------------------------------------------------------
   20. Callbar — the telephone, pinned to the bottom on small screens
   -------------------------------------------------------------------------- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  padding: .55rem var(--gutter) calc(.55rem + env(safe-area-inset-bottom, 0px));
  background: rgba(230,227,217,.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-top: var(--hair) solid var(--lijn);
  box-shadow: 0 -8px 26px -22px rgba(25,28,30,.9);
}
.callbar .btn { min-height: 56px; flex-wrap: wrap; gap: .35rem .6rem; }
.callbar .btn-number { font-size: .95rem; }
body { padding-bottom: 5.5rem; }

/* --------------------------------------------------------------------------
   21. Motion — one orchestrated page-load, one calm scroll reveal
   -------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

.js .hearth [data-load] {
  opacity: 0;
  transform: translateY(16px);
  animation: aankomst 760ms var(--ease) forwards;
}
.js .hearth [data-load="1"] { animation-delay: 120ms; }
.js .hearth [data-load="2"] { animation-delay: 220ms; }
.js .hearth [data-load="3"] { animation-delay: 340ms; }
.js .hearth [data-load="4"] { animation-delay: 450ms; }
.js .hearth [data-load="5"] { animation-delay: 560ms; }
@keyframes aankomst { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .hearth [data-load] { opacity: 1; transform: none; }
  .hearth::before { animation: none; opacity: .9; transform: none; }
}

/* --------------------------------------------------------------------------
   22. Breakpoints — desktop is the taste surface, mobile the discipline surface
   -------------------------------------------------------------------------- */
@media (max-width: 359px) {
  .nav a { font-size: .875rem; padding-inline: .22rem; }
}

@media (max-width: 479px) {
  .site-header .brand-taverne { display: none; }
  .brand-name { font-size: 1rem; }
  .brand .vonk { font-size: 1.15rem; }
  .nav a { font-size: .9375rem; padding-inline: .3rem; }
  .header-inner { gap: .5rem; }
}

@media (max-width: 759px) {
  .header-call { display: none; }
  .brand-sub { display: none; }
  .header-inner { min-height: 3.75rem; gap: .6rem; }
}

@media (min-width: 560px) {
  .dishes  { grid-template-columns: repeat(2, 1fr); }
  .redenen { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 760px) {
  :root { --fs-body: 1.125rem; }
  .callbar { display: none; }
  body { padding-bottom: 0; }
  .plate-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
  .duo     { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
  .verhaal { grid-template-columns: 1.25fr .75fr; gap: var(--sp-8); }
  .entry   { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
  .entry--flip .entry-media { order: -1; }
}

@media (min-width: 980px) {
  .dishes  { grid-template-columns: repeat(3, 1fr); }
  .redenen { grid-template-columns: repeat(4, 1fr); }
  .plate-grid--drie { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-8); }
  .hearth-copy { max-width: 44rem; }
}

/* --------------------------------------------------------------------------
   23. Print — someone will print the hours and put them on the fridge
   -------------------------------------------------------------------------- */
@media print {
  body { background: #fff; color: #000; padding: 0; font-size: 11pt; }
  body::before, .callbar, .jump, .site-header, .slot, .btn--ghost, .rule { display: none !important; }
  .hearth, .band--iron, .leisteen, .site-footer {
    background: #fff !important;
    color: #000 !important;
    --ink: #000; --ink-sterk: #000; --ink-zacht: #333; --brass-ink: #000;
  }
  .hearth::before, .hearth::after, .leisteen::before { display: none !important; }
  .thesis, .leisteen-hand, .wordmark .wm-big, .wordmark .wm-small { color: #000 !important; }
  .btn--call { background: none !important; color: #000 !important; border: 1px solid #000; box-shadow: none; }
  .band, .hearth { padding-block: 1.25rem !important; }
  a { text-decoration: none; color: #000; }
}
