/* ==========================================================================
   Specialiteitenbakkerij Besselink — Udenhout & Oisterwijk
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Colour */
  --ink:          #241813;
  --ink-soft:     #4a3a31;
  --ink-faint:    #7a685d;
  --paper:        #f8f2e6;
  --paper-warm:   #f1e7d4;
  --rye:          #e6d8bd;
  --line:         #ded0b6;
  --crust:        #c1802a;
  --crust-deep:   #9c6318;
  --broeder:      #b0231c;
  --espresso:     #2b1c14;
  --espresso-2:   #3a2619;
  --white:        #fffdf8;
  --whatsapp:     #25d366;

  /* Type */
  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Space scale */
  --s1: .5rem;  --s2: .875rem; --s3: 1.25rem; --s4: 2rem;
  --s5: 3rem;   --s6: 4.5rem;  --s7: 7rem;

  --wrap: 1180px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(36,24,19,.06), 0 4px 14px rgba(36,24,19,.06);
  --shadow-md: 0 2px 6px rgba(36,24,19,.08), 0 18px 46px rgba(36,24,19,.13);
  --ease: cubic-bezier(.2,.7,.3,1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .18vw, 1.0625rem);
  line-height: 1.68;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* very subtle paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 20, "WONK" 1;
}
h1 { font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4.15rem); }
h2 { font-size: clamp(1.85rem, 1.35rem + 2.1vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.08rem + .5vw, 1.45rem); letter-spacing: -.005em; }

/* Fraunces' swash ampersand is illegible at text sizes — use the sans one */
h1 .amp, h2 .amp, h3 .amp { font-family: var(--sans); font-weight: 400; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

hr { border: 0; border-top: 1px solid var(--line); margin: var(--s5) 0; }

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

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; position: relative; z-index: 1; }
.wrap--narrow { width: min(100% - 2.5rem, 760px); }

section { position: relative; z-index: 1; }
.band { padding-block: clamp(3.25rem, 2rem + 5vw, var(--s7)); }
.band--tight { padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.5rem); }
.band--warm { background: var(--paper-warm); }
.band--rye  { background: var(--rye); }

.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--crust-deep);
  margin: 0 0 1.1rem;
  display: flex; align-items: center; gap: .7rem;
}
.eyebrow::after {
  content: ""; flex: 1; height: 1px; max-width: 68px;
  background: linear-gradient(90deg, var(--crust) , transparent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: ""; flex: 1; height: 1px; max-width: 68px;
  background: linear-gradient(270deg, var(--crust), transparent);
}

.lead {
  font-size: clamp(1.08rem, 1rem + .4vw, 1.28rem);
  line-height: 1.62;
  color: var(--ink-soft);
}

.center { text-align: center; }

/* Brabant diamond motif (nod to the original site's red check) */
.diamonds {
  height: 10px;
  background-image:
    linear-gradient(45deg, var(--broeder) 25%, transparent 25%),
    linear-gradient(-45deg, var(--broeder) 25%, transparent 25%);
  background-size: 20px 20px;
  background-position: 0 0, 0 0;
  opacity: .85;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.5rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid var(--btn-bg);
  border-radius: 100px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--crust { --btn-bg: var(--crust); --btn-fg: #fff; }
.btn--broeder { --btn-bg: var(--broeder); --btn-fg: #fff; }
.btn--broeder:hover { --btn-bg: #97201a; }
.btn--light { --btn-bg: transparent; --btn-fg: var(--paper); border-color: rgba(248,242,230,.45); }
.btn--light:hover { background: var(--paper); color: var(--espresso); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: var(--s3); }

/* text link with underline animation */
.tlink {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .95rem;
  text-decoration: none;
  color: var(--crust-deep);
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .28s ease, gap .2s ease;
}
.tlink:hover { background-size: 0 1px; gap: .75rem; }
.tlink span[aria-hidden] { transition: transform .2s ease; }
.tlink:hover span[aria-hidden] { transform: translateX(3px); }
.tlink--light { color: var(--crust); }
.tlink--broeder { color: var(--broeder); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248,242,230,.88);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(36,24,19,.06);
}
.site-header__inner {
  display: flex; align-items: center; gap: var(--s3);
  min-height: 94px;
}
.brand { display: flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand img { height: 66px; width: auto; transition: opacity .2s ease; }
.brand:hover img { opacity: .78; }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav .nav__phone { display: none; }
.nav a {
  padding: .5rem .8rem;
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  border-radius: 100px;
  transition: color .18s ease, background-color .18s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); background: rgba(193,128,42,.12); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; margin-top: 3px;
  background: var(--crust); border-radius: 2px;
}

.header-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .88rem; font-weight: 600;
  text-decoration: none;
  background: var(--broeder);
  border-color: var(--broeder);
  color: #fff;
  box-shadow: 0 6px 18px rgba(176,35,28,.22);
  white-space: nowrap;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.header-cta:hover { background: #97201a; border-color: #97201a; transform: translateY(-1px); }
.header-cta svg { width: 1em; height: 1em; color: currentColor; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: 100px;
  cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 940px) {
  .site-header__inner { min-height: 84px; }
  .brand img { height: 56px; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: absolute; inset: 100% 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border-block: 1px solid var(--line);
    padding: .6rem 1.25rem 1.4rem;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .85rem .4rem; font-size: 1.05rem; border-bottom: 1px solid rgba(222,208,182,.6); border-radius: 0; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { color: var(--crust-deep); }
  .nav .nav__phone { display: block; margin-top: .9rem; border: 0; font-weight: 600; color: var(--crust-deep); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  /* explicit, not inherited from the `section` rule: WordPress renders this
     container as a <div>, and the photo below is positioned against it. */
  position: relative;
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.75rem) 0;
  overflow: hidden;
}

/* full-bleed photo on the right, feathered into the paper on the left */
.hero__photo { position: absolute; inset: 0 0 0 auto; width: min(60%, 940px); z-index: 0; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 45% 50%; }
.hero__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg,
    var(--paper) 0%,
    rgba(248,242,230,.99) 11%,
    rgba(248,242,230,.82) 24%,
    rgba(248,242,230,.46) 38%,
    rgba(248,242,230,.12) 54%,
    rgba(248,242,230,0) 68%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: end;
  min-height: clamp(360px, 26vw, 440px);
  z-index: 3;
}
.hero__copy { padding-block: clamp(.5rem, .2rem + 1vw, 1.5rem) 0; align-self: center; }
.hero h1 { font-size: clamp(2.3rem, 1.5rem + 3.1vw, 3.9rem); margin-bottom: .38em; }
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--crust-deep);
  display: block;
}
.hero .lead { max-width: 46ch; }
.hero .btn-row { margin-top: var(--s4); }

/* floating "onze trots" card */
.hero__promo { justify-self: end; align-self: end; }
.promo {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  align-items: center; gap: .5rem;
  width: min(100%, 400px);
  margin-bottom: clamp(-3rem, -1rem - 1.6vw, -1rem);
  padding: clamp(1.1rem, .9rem + .6vw, 1.5rem);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.promo .eyebrow { color: var(--broeder); margin-bottom: .55rem; font-size: .68rem; }
.promo .eyebrow::after { display: none; }
.promo h3 { font-size: clamp(1.2rem, 1.05rem + .5vw, 1.45rem); margin-bottom: .4em; }
.promo p { font-size: .88rem; color: var(--ink-soft); margin-bottom: .7rem; }
.promo .tlink { font-size: .87rem; }
.promo img { width: 100%; height: auto; border-radius: 6px; mix-blend-mode: multiply; }

/* stat bar tucked under the hero */
.hero__stats {
  position: relative; z-index: 2;
  list-style: none;
  margin: clamp(1.25rem, .9rem + 1.2vw, 1.75rem) 0 0;
  padding: clamp(1.05rem, .8rem + .9vw, 1.5rem) clamp(1.25rem, .9rem + 1.6vw, 2.25rem);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.hero__stats li { display: flex; align-items: center; gap: .8rem; }
.hero__stats li + li {
  border-left: 1px solid var(--line);
  padding-left: clamp(1rem, .5rem + 1.8vw, 2.25rem);
}
.hero__stats svg { width: 28px; height: 28px; flex: none; color: var(--crust); }
.hero__stats b {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.35rem, 1.1rem + .9vw, 1.85rem);
  line-height: 1; letter-spacing: -.02em;
}
.hero__stats b.is-word { font-size: clamp(1rem, .92rem + .35vw, 1.15rem); }
.hero__stats span { font-size: .82rem; line-height: 1.32; color: var(--ink-faint); }

@media (min-width: 941px) {
  .hero__stats { padding-right: min(34%, 26rem); }
}

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; align-items: start; min-height: 0; }
  .hero__promo { justify-self: stretch; margin-top: var(--s3); }
  .promo { width: 100%; margin-bottom: 0; }
  .hero__photo {
    position: relative; inset: auto; width: auto;
    height: clamp(210px, 40vw, 320px);
    margin-bottom: clamp(1.5rem, 1rem + 3vw, 2.5rem);
  }
  .hero__photo::after { display: none; }
  .hero { padding-top: 0; }
}
@media (max-width: 640px) {
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stats li + li {
    border-left: 0; padding-left: 0;
    border-top: 1px solid var(--line); margin-top: .85rem; padding-top: .85rem;
  }
}
/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid { display: grid; gap: clamp(1.25rem, .8rem + 1.6vw, 2.25rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--rye); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: clamp(1.25rem, 1rem + .7vw, 1.75rem); flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .45em; }
.card__body p { color: var(--ink-soft); font-size: .96rem; }
.card__body .tlink { margin-top: auto; padding-top: 1rem; align-self: flex-start; }

/* full-bleed photo tiles with an overlaid label */
.tiles { display: grid; gap: clamp(1rem, .7rem + 1.2vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.tile {
  position: relative; display: block; text-decoration: none;
  aspect-ratio: 356 / 188;
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile:hover img { transform: scale(1.05); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,13,8,0) 36%, rgba(22,13,8,.34) 68%, rgba(22,13,8,.62) 100%);
}
.tile__text {
  position: absolute; z-index: 1;
  left: clamp(1rem, .7rem + 1vw, 1.5rem); right: 4.75rem;
  bottom: clamp(.9rem, .6rem + 1vw, 1.35rem);
}
.tile__text h3 { color: #fff; margin: 0 0 .22em; font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem); }
.tile__text p { margin: 0; font-size: .84rem; line-height: 1.4; color: rgba(255,253,248,.82); }
.tile__go {
  position: absolute; z-index: 1;
  right: clamp(.9rem, .6rem + 1vw, 1.25rem); bottom: clamp(.9rem, .6rem + 1vw, 1.25rem);
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); color: var(--ink);
  display: grid; place-items: center;
  transition: transform .25s ease;
}
.tile__go svg { width: 18px; height: 18px; }
.tile:hover .tile__go { transform: translateX(4px); }

/* numbered feature list */
.facts { list-style: none; margin: var(--s4) 0 0; padding: 0; display: grid; gap: 1.4rem; }
.facts li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.facts .num {
  font-family: var(--display);
  font-size: .82rem; font-weight: 600;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--crust);
  color: var(--crust-deep);
  border-radius: 50%;
}
.facts h3 { font-size: 1.08rem; margin-bottom: .15em; }
.facts p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* split feature */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }
@media (max-width: 720px) { .split--reverse > *:first-child { order: 0; } }
.split img.framed {
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
}

/* ==========================================================================
   Brabantse Broeder band (dark)
   ========================================================================== */
.dark {
  background: var(--espresso);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.dark::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 12% 0%, rgba(193,128,42,.18), transparent 62%);
  pointer-events: none;
}
.dark .eyebrow { color: var(--crust); }
.dark .eyebrow::after, .dark .eyebrow--center::before { background: linear-gradient(90deg, var(--crust), transparent); }
.dark .lead, .dark p { color: rgba(248,242,230,.78); }
.dark h2, .dark h3 { color: var(--paper); }
.dark hr { border-color: rgba(248,242,230,.16); }

.broeder__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
  position: relative; z-index: 1;
}
.broeder__wordmark { max-width: 260px; margin-bottom: 1.5rem; }
.dark .broeder__wordmark { filter: brightness(0) invert(1); opacity: .94; }
.broeder__art { position: relative; }
.broeder__art img.photo {
  border-radius: var(--radius);
  border: 8px solid var(--paper);
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
  width: 100%;
}
.broeder__art img.friar {
  position: absolute;
  left: -2.5rem; bottom: -2.5rem;
  width: 110px;
  filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(0,0,0,.55));
  opacity: .9;
}
.stamp {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-top: var(--s3);
  padding: .8rem 1.25rem .8rem .9rem;
  border: 1px dashed rgba(248,242,230,.35);
  border-radius: var(--radius);
}
.stamp img { width: 96px; filter: brightness(0) invert(1) opacity(.92); }
.stamp span { font-size: .84rem; color: rgba(248,242,230,.72); max-width: 20ch; line-height: 1.45; }

@media (max-width: 860px) {
  .broeder__grid { grid-template-columns: 1fr; }
  .broeder__art img.friar { width: 84px; left: -.5rem; bottom: -1.5rem; }
}

/* ==========================================================================
   Menu / price list
   ========================================================================== */
.menu-section + .menu-section { margin-top: var(--s5); }
.menu-section > h2 {
  font-size: clamp(1.45rem, 1.2rem + 1vw, 1.9rem);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--ink);
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.25rem;
}
.menu-section > h2 small {
  font-family: var(--sans);
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint);
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex; align-items: baseline; gap: .6rem;
  padding: .6rem 0;
  border-bottom: 1px dotted var(--line);
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list .item { font-weight: 500; }
.menu-list .item i { display: block; font-style: normal; font-size: .86rem; color: var(--ink-faint); font-weight: 400; line-height: 1.5; margin-top: .1rem; }
.menu-list .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 1.5rem; }
.menu-list .price { font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }

.note {
  margin-top: 1.1rem;
  padding: 1rem 1.15rem;
  background: var(--paper-warm);
  border-left: 3px solid var(--crust);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .92rem;
  color: var(--ink-soft);
}
.note strong { color: var(--ink); }

/* ---------- Openingstijden ---------- */
.hours {
  margin-top: var(--s3);
  padding: 1.35rem 1.5rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.hours h3 { font-size: 1.15rem; margin-bottom: .2em; }
.hours__note { font-size: .86rem; color: var(--ink-faint); margin: 0 0 .9rem; }
.hours__list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.5rem;
}
.hours__list dt,
.hours__list dd {
  padding: .5rem 0;
  border-bottom: 1px dotted var(--line);
}
.hours__list dt { font-weight: 500; }
.hours__list dd {
  margin: 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  white-space: nowrap;
}
.hours__list dt:nth-last-of-type(1),
.hours__list dd:nth-last-of-type(1) { border-bottom: 0; }
/* closed days are marked with <em> so the styling survives the WordPress
   conversion, where dt/dd become table cells and class names are dropped */
.hours__list em { font-style: normal; font-weight: 400; color: var(--ink-faint); }

.dark .hours { background: rgba(255,255,255,.05); border-color: rgba(248,242,230,.18); }
.dark .hours__list dt, .dark .hours__list dd { border-bottom-color: rgba(248,242,230,.16); }

.menu-toc {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: var(--s3);
}
.menu-toc a {
  padding: .45rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 100px;
  font-size: .85rem; font-weight: 500;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}
.menu-toc a:hover { border-color: var(--crust); color: var(--crust-deep); }

/* pill tags */
.tags { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: var(--s3) 0 0; padding: 0; }
.tags li {
  padding: .4rem .9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  font-size: .85rem;
  color: var(--ink-soft);
}
.dark .tags li { background: rgba(248,242,230,.06); border-color: rgba(248,242,230,.2); color: rgba(248,242,230,.82); }

/* ==========================================================================
   Locations
   ========================================================================== */
.shop { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.shop__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--rye); }
.shop__media img { width: 100%; height: 100%; object-fit: cover; }
.shop__body { padding: clamp(1.4rem, 1rem + 1vw, 2rem); }
.shop__body h3 { margin-bottom: .3em; }
.shop dl { margin: 1.1rem 0 0; display: grid; grid-template-columns: auto 1fr; gap: .55rem 1rem; font-size: .95rem; }
.shop dt { color: var(--ink-faint); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding-top: .2rem; }
.shop dd { margin: 0; }
.shop dd a { text-decoration: none; border-bottom: 1px solid var(--line); }
.shop dd a:hover { border-color: var(--crust); }
.shop .map { margin-top: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.shop .map img { width: 100%; }
.shop .map figcaption { font-size: .8rem; color: var(--ink-faint); padding: .55rem .75rem; background: var(--paper-warm); }

/* ==========================================================================
   CTA strip + footer
   ========================================================================== */
.cta-strip { background: var(--crust); color: #fff; }
.cta-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s3); padding-block: var(--s4); }
.cta-strip h2 { color: #fff; margin: 0; font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); }
.cta-strip p { color: rgba(255,255,255,.85); margin: .35rem 0 0; font-size: .96rem; }
.cta-strip .btn { --btn-bg: var(--white); --btn-fg: var(--ink); }

.site-footer { background: var(--espresso); color: rgba(248,242,230,.72); padding-block: var(--s5) 5.5rem; font-size: .92rem; }
.site-footer a { color: rgba(248,242,230,.72); text-decoration: none; }
.site-footer a:hover { color: var(--paper); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s4); }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.site-footer img.mark { height: 68px; width: auto; margin-bottom: 1rem; }
.site-footer h4 {
  font-family: var(--sans);
  font-size: .74rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--crust); margin: 0 0 .9rem; font-weight: 600;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer__bottom {
  margin-top: var(--s4); padding-top: var(--s3);
  border-top: 1px solid rgba(248,242,230,.14);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: rgba(248,242,230,.5);
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.wa-fab {
  position: fixed;
  right: clamp(1rem, .6rem + 1vw, 1.75rem);
  bottom: clamp(1rem, .6rem + 1vw, 1.75rem);
  z-index: 90;
  display: inline-flex; align-items: center; gap: .6rem;
  height: 58px;
  padding: 0 1.25rem 0 1.05rem;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600; font-size: .95rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.16), 0 16px 40px rgba(37,211,102,.34);
  transition: transform .22s ease, box-shadow .22s ease;
}
.wa-fab svg { width: 28px; height: 28px; flex: none; }
.wa-fab:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 24px rgba(0,0,0,.2), 0 22px 54px rgba(37,211,102,.42); }
.wa-fab:active { transform: translateY(-1px); }

/* gentle attention pulse, once settled */
.wa-fab::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  border: 2px solid var(--whatsapp);
  animation: wa-pulse 2.8s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { opacity: .55; transform: scale(1); }
  70%  { opacity: 0;   transform: scale(1.22); }
  100% { opacity: 0;   transform: scale(1.22); }
}

@media (max-width: 560px) {
  .wa-fab { height: 56px; width: 56px; padding: 0; justify-content: center; }
  .wa-fab .wa-fab__label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab::before { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Page header (interior pages) ---------- */
.page-head { padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.5rem) clamp(2rem, 1.5rem + 2vw, 3rem); }
.page-head p.lead { max-width: 62ch; }

.crumbs { font-size: .8rem; color: var(--ink-faint); margin-bottom: 1.2rem; }
.crumbs a { text-decoration: none; border-bottom: 1px solid var(--line); }
.crumbs a:hover { color: var(--ink); }

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none; font-weight: 600; font-size: .9rem;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Small-screen refinements ---------- */
@media (max-width: 560px) {
  .menu-section > h2 { flex-direction: column; align-items: flex-start; gap: .3rem; }
  .menu-list li { flex-wrap: wrap; }
  .hero__badge { width: 88px; height: 88px; font-size: .68rem; }
  .stamp { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .stamp span { max-width: none; }
  .cta-strip .wrap { flex-direction: column; align-items: flex-start; }
}
