/* ============================================
   eat@12 — Shared stylesheet
   ============================================ */

/* Font: Schibsted Grotesk — self-hosted variable font, weights 400–900 + italics.
   Self-hosted rather than loaded from fonts.gstatic.com, to keep visitor IPs off Google. */

@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('/assets/fonts/schibsted-grotesk-latin.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('/assets/fonts/schibsted-grotesk-latin-ext.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('/assets/fonts/schibsted-grotesk-italic-latin.woff2') format('woff2');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('/assets/fonts/schibsted-grotesk-italic-latin-ext.woff2') format('woff2');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* ── Brand colours ── */
  --magenta:  #E41B64;
  --oranje:   #ED6D0F;
  --beige:    #FEF2E8; /* tint: 5% orange */
  --bordeaux: #771139;
  --groen:    #DDE05E; /* call to action only */

  /* ── Derived tints ── */
  --bordeaux-muted: #9B5475;
  --bordeaux-soft:  #C49AAE;
  --bordeaux-pale:  #D49EB8;
  --bordeaux-mid:   #8A325C;
  --bordeaux-deep:  #7E2C53;
  --beige-line:     #F2E2D8;
  --groen-hover:    #D2D447;
  --white:          #FFFFFF;

  /* ── Spacing ── */
  --gutter: 40px; /* side margin of every container, smaller on mobile */
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: var(--beige); }
h1, h2, h3, h4, h5, h6, p, figure, blockquote, ul, ol { margin: 0; }
strong, b { font-weight: 600; } /* house style, same as the main site */
em, i     { font-style: italic; }
::selection { background: var(--magenta); color: #fff; }
input, textarea, select { font-family: 'Schibsted Grotesk',sans-serif; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--magenta) !important; }

@keyframes floatUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { animation: floatUp .9s ease both; }

/* ── PAGE ── */
.page      { background: var(--beige); color: var(--bordeaux); font-family: 'Schibsted Grotesk',sans-serif; -webkit-font-smoothing: antialiased; overflow-x: clip; }
.page-flex { background: var(--beige); color: var(--bordeaux); font-family: 'Schibsted Grotesk',sans-serif; -webkit-font-smoothing: antialiased; overflow-x: clip; min-height: 100vh; display: flex; flex-direction: column; }

/* ── NAV ── */
.nav       { position: sticky; top: 0; z-index: 50; background: rgba(254,242,232,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--beige-line); }
.nav-inner { max-width: 1320px; margin: 0 auto; padding: 18px var(--gutter); display: flex; gap: 36px; align-items: center; }
.nav-menu  { flex: 1; display: flex; justify-content: space-between; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-right { display: flex; gap: 26px; align-items: center; }
.nav-toggle { display: none; }
.logo      { text-decoration: none; font-weight: 700; font-size: 26px; color: var(--bordeaux); line-height: 1; letter-spacing: -0.02em; }
.logo-at   { color: var(--magenta); }
.nav-link                { position: relative; text-decoration: none; font-size: 15px; font-weight: 600; color: var(--bordeaux); }
.nav-link-primary-active { position: relative; text-decoration: none; font-size: 15px; font-weight: 600; color: var(--magenta); }
.nav-link-sm             { position: relative; text-decoration: none; font-size: 14px; font-weight: 500; color: var(--bordeaux-muted); }
.nav-link-active         { position: relative; text-decoration: none; font-size: 14px; font-weight: 600; color: var(--magenta); }
.nav-link::after, .nav-link-primary-active::after,
.nav-link-sm::after, .nav-link-active::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--magenta); transition: width .25s ease;
}
.nav-link:hover::after, .nav-link-primary-active:hover::after,
.nav-link-sm:hover::after, .nav-link-active:hover::after { width: 100%; }
.btn-nav       { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--bordeaux); background: var(--groen); padding: 11px 22px; border-radius: 100px; transition: background .2s; }
.btn-nav:hover { background: var(--groen-hover); }

/* ── NAV: MOBILE ── */
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .nav-inner { padding: 14px var(--gutter); gap: 16px; justify-content: space-between; }

  /* No text label: "menu" would clash with the menu item in the navigation itself. */
  .nav-toggle {
    display: inline-flex; align-items: center; position: relative;
    background: none; border: 0; padding: 6px 10px; margin-right: -10px; cursor: pointer;
    color: var(--bordeaux);
  }
  /* Grows the touch target to ~44px without making the bar taller. */
  .nav-toggle::before { content: ''; position: absolute; inset: -9px; }
  .nav-toggle-bars { display: block; width: 22px; height: 14px; position: relative; }
  .nav-toggle-bars span {
    position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
    background: var(--bordeaux); transition: transform .25s ease, opacity .2s ease;
  }
  .nav-toggle-bars span:nth-child(1) { top: 0; }
  .nav-toggle-bars span:nth-child(2) { top: 6px; }
  .nav-toggle-bars span:nth-child(3) { top: 12px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Fills the height below the nav bar: 100% = the height of .nav itself. */
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    height: calc(100dvh - 100%); overflow-y: auto; overscroll-behavior: contain;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 32px; background: var(--beige);
  }
  .nav-toggle[aria-expanded="true"] + .nav-menu { display: flex; animation: navDrop .25s ease both; }
  .nav-open, .nav-open body { overflow: hidden; }
  /* That overflow lock takes the scrollport away, so the sticky bar would drop
     back to the top of the document: pin it while the panel is open. */
  .nav-open .nav { position: fixed; top: 0; left: 0; right: 0; }
  /* The floating Zenchef button would sit on top of the panel (max z-index). */
  .nav-open iframe[class*="ZC_sdk__zc-iframe"] { display: none; }

  .nav-links, .nav-right { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-right { flex: 1; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--beige-line); }

  .nav-menu .nav-link, .nav-menu .nav-link-primary-active,
  .nav-menu .nav-link-sm, .nav-menu .nav-link-active { padding: 14px 0; }
  .nav-menu .nav-link, .nav-menu .nav-link-primary-active { font-size: 20px; }
  .nav-menu .nav-link-sm, .nav-menu .nav-link-active { font-size: 16px; }
  .nav-menu .nav-link::after, .nav-menu .nav-link-primary-active::after,
  .nav-menu .nav-link-sm::after, .nav-menu .nav-link-active::after { display: none; }

  .nav-menu .btn-nav { margin-top: 16px; text-align: center; padding: 14px 22px; font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-toggle-bars span { transition: none; }
  .nav-toggle[aria-expanded="true"] + .nav-menu { animation: none; }
}

/* ── CONTAINERS ── */
.section        { max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter) 30px; }
.section-sm     { max-width: 1100px; margin: 0 auto; padding: 0 var(--gutter) 30px; }
.section-padded { max-width: 1320px; margin: 0 auto; padding: 80px var(--gutter); }
.section-top    { max-width: 1320px; margin: 0 auto; padding: 80px var(--gutter) 0; }
.section-bottom { max-width: 1320px; margin: 0 auto; padding: 80px var(--gutter) 100px; }
.section-hero   { max-width: 1320px; margin: 0 auto; padding: 24px var(--gutter); }
.page-header    { max-width: 1320px; margin: 0 auto; padding: 70px var(--gutter) 50px; }
.page-header-sm { max-width: 1100px; margin: 0 auto; padding: 80px var(--gutter) 40px; text-align: center; }
.page-main      { flex: 1; max-width: 1320px; margin: 0 auto; width: 100%; padding: 70px var(--gutter) 90px; }
.page-main-sm   { flex: 1; max-width: 1100px; margin: 0 auto; width: 100%; padding: 70px var(--gutter) 90px; }

/* ── GRIDS ── */
.grid-2      { display: grid; grid-template-columns: 1fr 1fr;        gap: 60px; align-items: center; }
.grid-2-end  { display: grid; grid-template-columns: 1fr 1fr;        gap: 60px; align-items: start; }
.grid-2-asym { display: grid; grid-template-columns: 1.5fr 1fr;      gap: 60px; align-items: end; }
.grid-2-form { display: grid; grid-template-columns: 1fr 1.2fr;      gap: 48px; align-items: start; }
.grid-2-menu { display: grid; grid-template-columns: 1fr 1fr;        gap: 72px; align-items: center; }
.grid-3      { display: grid; grid-template-columns: repeat(3,1fr);  gap: 22px; }
.grid-4      { display: grid; grid-template-columns: repeat(4,1fr);  gap: 22px; }
.grid-4-img  { display: grid; grid-template-columns: repeat(4,1fr);  gap: 18px; }
.grid-2-col  { display: grid; grid-template-columns: repeat(2,1fr);  gap: 0 56px; }
.grid-2-sm   { display: grid; grid-template-columns: 1fr 1fr;        gap: 16px; }

/* ── TYPOGRAPHY ── */
.eyebrow         { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--magenta);  font-weight: 700; margin-bottom: 22px; }
.eyebrow-sm      { font-size: 13px; letter-spacing: 0.2em;  text-transform: uppercase; color: var(--magenta);  font-weight: 700; margin-bottom: 18px; }
.eyebrow-center  { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--magenta);  font-weight: 700; margin-bottom: 20px; }
.eyebrow-yellow  { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--groen); font-weight: 700; margin-bottom: 24px; }
.eyebrow-yellow-sm { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--groen); font-weight: 700; margin-bottom: 20px; }
.h1        { font-weight: 700; font-size: clamp(40px,6.4vw,84px); line-height: 0.98; margin: 0; color: var(--bordeaux);  letter-spacing: -0.03em; max-width: 18ch; }
.h1-wide   { font-weight: 700; font-size: clamp(40px,6.4vw,84px); line-height: 0.98; margin: 0; color: var(--bordeaux);  letter-spacing: -0.03em; max-width: 14ch; }
.h1-center { font-weight: 700; font-size: clamp(40px,6vw,76px);   line-height: 1;    margin: 0; color: var(--bordeaux);  letter-spacing: -0.03em; }
.h1-white  { font-weight: 700; font-size: clamp(40px,6vw,80px);   line-height: 0.98; margin: 0; color: var(--white); letter-spacing: -0.03em; }
.h2        { font-weight: 700; font-size: clamp(26px,3.2vw,40px);  margin: 0 0 22px; color: var(--bordeaux); letter-spacing: -0.02em; }
.h2-pink   { font-weight: 700; font-size: clamp(28px,3.6vw,44px);  margin: 0 0 36px; color: var(--bordeaux);  letter-spacing: -0.02em; }
.h2-pink-sm { font-weight: 700; font-size: clamp(28px,3.6vw,44px); margin: 0 0 32px; color: var(--bordeaux);  letter-spacing: -0.02em; }
.h2-sm     { font-weight: 700; font-size: clamp(26px,3.4vw,42px);  margin: 0 0 22px; color: var(--bordeaux); letter-spacing: -0.02em; }
.h3-dark   { font-weight: 700; font-size: clamp(28px,3.4vw,40px);  margin: 0 0 24px; color: var(--bordeaux); letter-spacing: -0.02em; }
.h3-menu   { font-weight: 700; font-size: clamp(26px,3.4vw,40px);  margin: 0 0 22px; color: var(--bordeaux); letter-spacing: -0.02em; }
.h3-cta    { font-weight: 700; font-size: clamp(26px,3.4vw,40px);  margin: 0 0 22px; color: var(--bordeaux); letter-spacing: -0.02em; }
.h3-practical { font-weight: 700; font-size: clamp(30px,3.6vw,46px); line-height: 1.1; margin: 0 0 32px; color: var(--bordeaux); letter-spacing: -0.02em; }
.body        { font-size: 17px; line-height: 1.7; color: var(--bordeaux); margin: 0 0 18px; }
.body-muted  { font-size: 17px; line-height: 1.7; color: var(--bordeaux-muted); margin: 0; }
.body-lg     { font-size: 18px; line-height: 1.65; color: var(--bordeaux); margin: 0; }
.body-intro  { font-size: 19px; line-height: 1.65; color: var(--bordeaux); max-width: 58ch; margin: 30px auto 0; }

/* ── BUTTONS ── */
.btn-yellow       { text-decoration: none; font-size: 15px; font-weight: 700; color: var(--bordeaux); background: var(--groen); padding: 16px 34px; border-radius: 100px; display: inline-block; transition: background .2s; }
.btn-yellow:hover { background: var(--groen-hover); }
.btn-yellow-white       { text-decoration: none; font-size: 15px; font-weight: 700; color: var(--bordeaux); background: var(--groen); padding: 16px 28px; border-radius: 100px; display: inline-block; transition: background .2s; }
.btn-yellow-white:hover { background: var(--white); }
.btn-yellow-full        { text-decoration: none; font-size: 15px; font-weight: 700; color: var(--bordeaux); background: var(--groen); padding: 16px 36px; border-radius: 100px; display: inline-block; transition: background .2s; }
.btn-yellow-full:hover  { background: var(--groen-hover); }
.btn-dark       { text-decoration: none; font-size: 15px; font-weight: 700; color: #FAF7F0; background: var(--bordeaux); padding: 16px 34px; border-radius: 100px; display: inline-block; transition: background .2s; }
.btn-dark:hover { background: var(--magenta); }
.btn-dark-wine       { text-decoration: none; font-size: 15px; font-weight: 700; color: var(--beige); background: var(--bordeaux); padding: 16px 36px; border-radius: 100px; display: inline-block; transition: background .2s; }
.btn-dark-wine:hover { background: var(--magenta); }
.btn-outline       { text-decoration: none; font-size: 15px; font-weight: 700; color: var(--bordeaux); border: 2px solid var(--bordeaux); padding: 14px 32px; border-radius: 100px; display: inline-block; transition: all .2s; }
.btn-outline:hover { background: var(--bordeaux); color: var(--groen); }
.btn-outline-white       { text-decoration: none; font-size: 15px; font-weight: 700; color: var(--beige); border: 2px solid rgba(254,242,232,0.4); padding: 14px 32px; border-radius: 100px; display: inline-block; transition: all .2s; }
.btn-outline-white:hover { background: var(--beige); color: var(--bordeaux); border-color: var(--beige); }
.btn-tel       { text-decoration: none; font-size: 15px; font-weight: 700; color: var(--bordeaux); background: var(--groen); padding: 16px 32px; border-radius: 100px; white-space: nowrap; transition: background .2s; }
.btn-tel:hover { background: var(--white); }
.btn-row  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.with-phone-icon { display: inline-flex; align-items: center; gap: 9px; }
.with-phone-icon::before { content: ""; width: 16px; height: 16px; flex: none; background: currentColor; -webkit-mask: url(/assets/images/icon-phone.svg) center / contain no-repeat; mask: url(/assets/images/icon-phone.svg) center / contain no-repeat; }
.text-link { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--bordeaux); border-bottom: 2px solid var(--groen); padding-bottom: 2px; display: inline-block; }

/* ── CARDS ── */
.card       { background: var(--white); border: 1px solid var(--beige-line); border-radius: 22px; padding: 34px; }
.card-title { font-weight: 700; font-size: 22px; color: var(--magenta); }
.card-text  { font-size: 15px; color: var(--bordeaux-muted); line-height: 1.6; margin: 12px 0 0; }
.card-dark  { background: var(--bordeaux); border-radius: 22px; padding: 34px; }
.card-sm    { background: var(--white); border: 1px solid var(--beige-line); border-radius: 20px; padding: 28px; }

/* ── IMAGE PLACEHOLDERS ── */
.img-ph       { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4/5; background: repeating-linear-gradient(135deg,#D8D2C2,#D8D2C2 16px,#CFC9B8 16px,#CFC9B8 32px); display: flex; align-items: flex-end; padding: 20px; }
.img-ph-light { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4/5; background: repeating-linear-gradient(135deg,#E7EAE0,#E7EAE0 16px,#DCE1D2 16px,#DCE1D2 32px); display: flex; align-items: flex-end; padding: 20px; }
.img-ph-wide  { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 21/9; min-height: 340px; background: repeating-linear-gradient(135deg,#D8D2C2,#D8D2C2 16px,#CFC9B8 16px,#CFC9B8 32px); display: flex; align-items: flex-end; padding: 22px; }
.img-ph-wide-light { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 21/9; min-height: 340px; background: repeating-linear-gradient(135deg,#E7EAE0,#E7EAE0 16px,#DCE1D2 16px,#DCE1D2 32px); display: flex; align-items: flex-end; padding: 22px; }
.img-ph-fill  { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-ph-map   { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 16/9; background: repeating-linear-gradient(135deg,#E7EAE0,#E7EAE0 16px,#DCE1D2 16px,#DCE1D2 32px); display: flex; align-items: flex-end; padding: 20px; }
.img-ph-rect  { position: relative; border-radius: 24px; overflow: hidden; background: repeating-linear-gradient(135deg,#E7EAE0,#E7EAE0 16px,#DCE1D2 16px,#DCE1D2 32px); min-height: 380px; display: flex; align-items: flex-end; padding: 20px; }
.img-tag          { font-family: ui-monospace,monospace; font-size: 11px; color: #fff;    background: rgba(119,17,57,0.55); padding: 6px 10px; border-radius: 8px; }
.img-tag-light    { font-family: ui-monospace,monospace; font-size: 11px; color: #6E7560; background: var(--beige); padding: 6px 10px; border-radius: 8px; }
.img-tag-sm       { font-family: ui-monospace,monospace; font-size: 10px; color: #8A8576; background: #FAF7F0; padding: 4px 8px; border-radius: 6px; }
.img-tag-sm-green { font-family: ui-monospace,monospace; font-size: 10px; color: #6E7560; background: #FAF7F0; padding: 4px 8px; border-radius: 6px; }
.img-tag-dark     { font-family: ui-monospace,monospace; font-size: 10px; color: var(--bordeaux-pale); background: var(--bordeaux); padding: 4px 7px; border-radius: 6px; }
.img-ph-white     { position: relative; border-radius: 24px; overflow: hidden; background: var(--white); border: 1px solid var(--beige-line); min-height: 300px; display: flex; align-items: flex-end; padding: 20px; }

/* ── PORTRAITS ── */
.portrait     { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; display: flex; align-items: flex-end; padding: 16px; }
.portrait-a   { background: repeating-linear-gradient(135deg,#E7EAE0,#E7EAE0 13px,#DCE1D2 13px,#DCE1D2 26px); }
.portrait-b   { background: repeating-linear-gradient(135deg,#ECE7DA,#ECE7DA 13px,#E2DCCD 13px,#E2DCCD 26px); }
.portrait-tag { font-family: ui-monospace,monospace; font-size: 10px; color: #6E7560; background: var(--beige); padding: 4px 8px; border-radius: 6px; }

/* ── GALLERY IMAGES ── */
.gal-a { aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; background: repeating-linear-gradient(135deg,#ECE7DA,#ECE7DA 14px,#E2DCCD 14px,#E2DCCD 28px); display: flex; align-items: flex-end; padding: 16px; }
.gal-b { aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; background: repeating-linear-gradient(135deg,#E7EAE0,#E7EAE0 14px,#DCE1D2 14px,#DCE1D2 28px); display: flex; align-items: flex-end; padding: 16px; margin-top: 34px; }
.gal-dark-a { aspect-ratio: 3/4; border-radius: 18px; overflow: hidden; background: repeating-linear-gradient(135deg,var(--bordeaux-mid),var(--bordeaux-mid) 14px,var(--bordeaux-deep) 14px,var(--bordeaux-deep) 28px); display: flex; align-items: flex-end; padding: 14px; margin-top: 32px; }
.gal-dark-b { aspect-ratio: 3/4; border-radius: 18px; overflow: hidden; background: repeating-linear-gradient(135deg,var(--bordeaux-mid),var(--bordeaux-mid) 14px,var(--bordeaux-deep) 14px,var(--bordeaux-deep) 28px); display: flex; align-items: flex-end; padding: 14px; }

/* ── TEAM ── */
.team-name { font-weight: 700; font-size: 18px; color: var(--bordeaux); margin-top: 16px; }
.team-role { font-size: 14px; color: var(--bordeaux-muted); }

/* ── DARK BLOCK ── */
.dark-block   { background: var(--bordeaux); border-radius: 28px; padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.dark-eyebrow { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--groen); font-weight: 700; margin-bottom: 16px; }
.dark-h3      { font-weight: 700; font-size: clamp(26px,3.2vw,38px); margin: 0 0 18px; color: var(--white); letter-spacing: -0.02em; }
.dark-body    { font-size: 16px; line-height: 1.7; color: var(--bordeaux-pale); margin: 0; }
.dark-cta     { text-align: center; }
.dark-card    { background: var(--bordeaux); border-radius: 24px; padding: 32px; }

/* ── YELLOW BLOCK ── */
.yellow-block         { background: var(--groen); border-radius: 28px; }
.yellow-block-inner   { max-width: 1100px; margin: 0 auto; padding: 100px var(--gutter); text-align: center; }
.yellow-block-h3      { font-weight: 700; font-size: clamp(34px,5.4vw,62px); line-height: 1.04; margin: 0; color: var(--bordeaux); letter-spacing: -0.02em; }
.yellow-block-p       { font-size: 18px; line-height: 1.6; color: var(--bordeaux); max-width: 46ch; margin: 22px auto 36px; font-weight: 500; }
.yellow-cta-block     { background: var(--groen); border-radius: 28px; padding: 56px; text-align: center; }
.yellow-cta-h3        { font-weight: 700; font-size: clamp(28px,3.6vw,44px); margin: 0 0 14px; color: var(--bordeaux); letter-spacing: -0.02em; }
.yellow-cta-p         { font-size: 18px; color: var(--bordeaux); font-weight: 500; margin: 0 0 28px; }

/* ── HOURS BLOCK ── */
.hours-block { background: var(--groen); border-radius: 28px; padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hours-row   { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(119,17,57,0.18); }
.hours-row:last-child { border-bottom: none; }

/* ── INFO ROWS ── */
.info-row          { display: flex; justify-content: space-between; gap: 24px; padding: 18px 0; border-bottom: 1px solid #ECE3D8; }
.info-row:last-child { border-bottom: none; }
.info-label        { font-size: 15px; font-weight: 700; color: var(--bordeaux); }
.info-value        { font-size: 15px; line-height: 1.7; color: var(--bordeaux-muted); text-align: right; }
.info-value a      { color: inherit; text-decoration: underline; text-decoration-color: var(--bordeaux-soft); text-underline-offset: 3px; transition: color .2s, text-decoration-color .2s; }
.info-value a:hover { color: var(--bordeaux); text-decoration-color: var(--magenta); }

/* ── MENU ROWS ── */
.menu-section-head  { display: flex; align-items: baseline; gap: 16px; margin: 48px 0 8px; }
.menu-section-head:first-of-type { margin-top: 0; }
.menu-section-title { font-weight: 700; font-size: 30px; color: var(--bordeaux); margin: 0; letter-spacing: -0.01em; }
.menu-divider       { flex: 1; border-bottom: 1px dashed #E5C9D5; }
.menu-section-note  { font-size: 13px; color: var(--bordeaux-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.menu-col           { display: flex; flex-direction: column; }
.menu-row      { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--beige-line); }
.menu-row:last-child { border-bottom: none; }
.menu-name     { font-size: 19px; font-weight: 600; color: var(--bordeaux); }
.menu-sub      { font-size: 13px; color: var(--bordeaux-muted); margin-top: 3px; }
.menu-price    { font-size: 16px; font-weight: 700; color: var(--magenta); }
.menu-row-rest { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--beige-line); }
.menu-name-lg  { font-size: 20px; font-weight: 600; color: var(--bordeaux); }
.menu-row-dark       { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--bordeaux-mid); }
.menu-row-dark:last-child { border-bottom: none; }
.menu-name-dark  { font-size: 19px; font-weight: 600; color: #FAF7F0; }
.menu-sub-dark   { font-size: 13px; color: var(--bordeaux-pale); margin-top: 3px; }
.menu-price-dark { font-size: 16px; font-weight: 700; color: var(--groen); }

/* ── FORMS ── */
.form-card    { background: var(--white); border: 1px solid var(--beige-line); border-radius: 24px; padding: 40px; }
.form-card-lg { background: var(--white); border: 1px solid var(--beige-line); border-radius: 28px; padding: 44px; }
.form-title   { font-weight: 700; font-size: 24px; margin: 0 0 6px; color: var(--bordeaux); }
.form-caption { font-size: 14px; color: var(--bordeaux-muted); margin: 0 0 24px; }
.form-stack   { display: flex; flex-direction: column; gap: 16px; }
.form-2col    { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-2col-mb { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.form-mb      { margin-bottom: 24px; }
.form-label   { font-size: 12px; font-weight: 600; color: var(--bordeaux); letter-spacing: 0.04em; }
.form-label-lg { font-size: 12px; font-weight: 700; color: var(--bordeaux); letter-spacing: 0.06em; text-transform: uppercase; }
.form-input   { width: 100%; margin-top: 6px;  padding: 12px 14px; border: 1px solid var(--beige-line);  border-radius: 12px; background: var(--beige); font-size: 14px; color: var(--bordeaux); }
.form-input-lg { width: 100%; margin-top: 8px; padding: 13px 14px; border: 1.5px solid var(--beige-line); border-radius: 14px; background: var(--beige); font-size: 15px; color: var(--bordeaux); }
.form-textarea { width: 100%; margin-top: 6px;  padding: 12px 14px; border: 1.5px solid var(--beige-line); border-radius: 12px; background: var(--beige); font-size: 14px; color: var(--bordeaux); resize: vertical; }
.form-select  { width: 100%; margin-top: 8px;  padding: 13px 14px; border: 1.5px solid var(--beige-line); border-radius: 14px; background: var(--beige); font-size: 15px; color: var(--bordeaux); }
.form-btn      { font-size: 15px; font-weight: 700; color: var(--bordeaux); background: var(--groen); border: none; padding: 15px; border-radius: 100px; cursor: pointer; transition: background .2s; width: 100%; }
.form-btn:hover { background: var(--groen-hover); }
.form-btn-lg      { width: 100%; font-size: 16px; font-weight: 700; color: var(--bordeaux); background: var(--groen); border: none; padding: 17px; border-radius: 100px; cursor: pointer; transition: background .2s; }
.form-btn-lg:hover { background: var(--groen-hover); }
.form-note    { font-size: 12px; color: var(--bordeaux-soft); text-align: center; margin: 0; }
.form-note-sm { font-size: 13px; color: var(--bordeaux-soft); text-align: center; margin: 16px 0 0; }

/* ── FORM STATE ── */
.uniform__potty { position: absolute; left: -9999px; }
.alert.error   { display: block; font-size: 12px; color: var(--magenta); margin-top: 6px; }
.uniform-errors { margin: 0 0 20px; }
.uniform-errors__item { font-size: 13px; color: var(--magenta); margin-bottom: 4px; }
.form-input-error { border-color: var(--magenta); }
.form-required { color: var(--magenta); }
.form-note-required { font-size: 12px; color: var(--bordeaux-soft); margin: 0; }
.alert.success { font-size: 15px; color: var(--bordeaux); background: var(--beige); border: 1px solid var(--beige-line); border-radius: 12px; padding: 16px; margin: 0; }

/* ── CHECK LIST ── */
.check-list { display: flex; flex-direction: column; }
.check-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--beige-line); }
.check-item:last-child { border-bottom: none; }
.check-icon    { color: var(--groen); background: var(--bordeaux); width: 24px; height: 24px; border-radius: 100px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.check-heading { font-weight: 600; color: var(--bordeaux); font-size: 16px; }
.check-text    { font-size: 14px; color: var(--bordeaux-muted); margin-top: 2px; }

/* ── PHONE BANNER ── */
.phone-banner        { background: var(--bordeaux); border-radius: 28px; padding: 40px 56px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.phone-banner-label  { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--groen); font-weight: 700; margin-bottom: 8px; }
.phone-banner-number { font-weight: 700; font-size: clamp(28px,4vw,46px); color: var(--white); letter-spacing: -0.02em; }
.phone-banner-number a { color: inherit; text-decoration: none; }

/* ── FOOTER ── */
.footer         { background: var(--white); color: var(--bordeaux-muted); border-top: 1px solid var(--beige-line); }
.footer-inner   { max-width: 1320px; margin: 0 auto; padding: 72px var(--gutter) 40px; }
.footer-grid    { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand   { font-weight: 700; font-size: 34px; color: var(--bordeaux); letter-spacing: -0.02em; }
.footer-tag     { font-size: 14px; line-height: 1.6; max-width: 34ch; margin: 16px 0 0; color: var(--bordeaux-muted); }
.footer-col     { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-label   { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bordeaux-soft); margin-bottom: 4px; font-weight: 600; }
.footer-link    { text-decoration: none; font-size: 14px; color: var(--bordeaux); }
.footer-link:hover { color: var(--magenta); }
.footer-info    { font-size: 14px; color: var(--bordeaux); }
.footer-info-link { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; }
.footer-info-link:hover { color: var(--magenta); }
.footer-icon    { width: 14px; height: 14px; flex: none; }
.footer-cta     { text-decoration: none; font-size: 14px; color: var(--magenta); font-weight: 700; }
.footer-bottom  { border-top: 1px solid var(--beige-line); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy    { font-size: 12px; color: var(--bordeaux-soft); }
.footer-credits { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.footer-credit-link { color: inherit; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: #E3CBD8; }
.footer-credit-link:hover { color: var(--magenta); text-decoration-color: var(--magenta); }

/* ── FOOTER: MOBILE ── */
@media (max-width: 900px) {
  /* Brand block full width, the link columns side by side underneath. */
  .footer-grid      { grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-tag       { max-width: 46ch; }
}
@media (max-width: 640px) {
  /* Two columns; the address gets the full width so it does not wrap apart. */
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-col-contact { grid-column: 1 / -1; }
  /* Stack explicitly rather than relying on flex-wrap, so both lines align
     left instead of one left and the other right. */
  .footer-bottom  { flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 36px; padding-bottom: 40px; }
  .footer-copy    { line-height: 1.7; }
  .footer-credits { align-items: flex-start; gap: 2px; }
}

/* ── HOMEPAGE ── */
.hero-wrap    { position: relative; border-radius: 28px; overflow: hidden; height: calc(100vh - 135px); min-height: 560px; max-height: 760px; display: flex; align-items: center; justify-content: center; }
.hero-bg      { position: absolute; inset: 0; background: repeating-linear-gradient(135deg,#D8D2C2,#D8D2C2 16px,#CFC9B8 16px,#CFC9B8 32px); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(119,17,57,0.18),rgba(119,17,57,0.40)); }
.hero-label   { position: absolute; left: 20px; bottom: 20px; font-family: ui-monospace,monospace; font-size: 11px; color: #fff; background: rgba(119,17,57,0.55); padding: 6px 10px; border-radius: 8px; }
.hero-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 25%; text-align: center; padding: 0 24px; transform: translateY(50%); }
.hero-logo    { margin: 0; font-weight: 700; font-size: clamp(40px,8vw,110px); line-height: 0.92; color: #FBFAF6; letter-spacing: -0.03em; text-shadow: 0 2px 40px rgba(119,17,57,0.3); }
.hero-logo-at { color: var(--groen); }
.hero-sub     { margin: 14px 0 0; font-weight: 400; font-size: clamp(19px,2.6vw,30px); color: #FBFAF6; text-shadow: 0 1px 20px rgba(119,17,57,0.4); }
.notice       { max-width: 1100px; margin: 40px auto -20px; padding: 0 var(--gutter); }
.notice-card  { background: var(--white); border: 1px solid var(--beige-line); border-radius: 24px; padding: 26px 32px; text-align: center; }
.notice-text  { font-size: 17px; font-weight: 500; line-height: 1.5; color: var(--bordeaux); max-width: 62ch; margin: 0 auto; }
.notice-link  { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--bordeaux); border-bottom: 2px solid var(--groen); padding-bottom: 2px; display: inline-block; transition: color .2s, border-color .2s; }
.notice-text + .notice-link { margin-top: 14px; } /* only when there is a message above it */
.notice-link:hover { color: var(--magenta); border-color: var(--magenta); }
.intro        { max-width: 1100px; margin: 0 auto; padding: 90px var(--gutter) 80px; text-align: center; }
.intro-eyebrow { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--magenta); font-weight: 700; margin-bottom: 28px; }
.intro-h2     { font-weight: 700; font-size: clamp(32px,4.6vw,56px); line-height: 1.1; margin: 0 auto; max-width: 20ch; letter-spacing: -0.02em; color: var(--bordeaux); }
.intro-p      { font-size: 19px; line-height: 1.65; color: var(--bordeaux); max-width: 58ch; margin: 30px auto 0; }
.intro-p a    { color: inherit; font-weight: 600; text-decoration: underline; text-decoration-thickness: 2px; text-decoration-color: var(--bordeaux-soft); text-underline-offset: 4px; transition: color .2s, text-decoration-color .2s; }
.intro-p a:hover { color: var(--magenta); text-decoration-color: var(--magenta); }
.paths        { max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter) 100px; }
.paths-bar    { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; }
.paths-h3     { font-weight: 700; font-size: 34px; margin: 0; color: var(--bordeaux); letter-spacing: -0.01em; }
.path-card    { text-decoration: none; color: inherit; display: block; }
.path-img-a   { position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: repeating-linear-gradient(135deg,#ECE7DA,#ECE7DA 13px,#E2DCCD 13px,#E2DCCD 26px); }
.path-img-b   { position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: repeating-linear-gradient(135deg,#E7EAE0,#E7EAE0 13px,#DCE1D2 13px,#DCE1D2 26px); }
.path-img-tag { position: absolute; left: 16px; bottom: 16px; font-family: ui-monospace,monospace; font-size: 10px; color: #8A8576; background: #FAF7F0; padding: 5px 8px; border-radius: 6px; }
.path-img-tag-green { position: absolute; left: 16px; bottom: 16px; font-family: ui-monospace,monospace; font-size: 10px; color: #6E7560; background: #FAF7F0; padding: 5px 8px; border-radius: 6px; }
.path-h4      { font-weight: 700; font-size: 26px; margin: 22px 0 8px; color: var(--magenta); letter-spacing: -0.01em; }
.path-p       { font-size: 15px; color: var(--bordeaux); line-height: 1.6; margin: 0; }
.path-link    { font-size: 14px; font-weight: 700; color: var(--bordeaux); border-bottom: 2px solid var(--groen); padding-bottom: 2px; display: inline-block; margin-top: 16px; }
.menu-dark-wrap  { max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter); }
.menu-dark-box   { background: var(--bordeaux); color: #FAF7F0; border-radius: 28px; overflow: hidden; }
.menu-dark-inner { max-width: 1320px; margin: 0 auto; padding: 90px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.menu-dark-h3    { font-weight: 700; font-size: clamp(32px,4.2vw,52px); line-height: 1.05; margin: 0; color: var(--white); letter-spacing: -0.02em; }
.menu-dark-accent { color: #FF7FB0; }
.menu-dark-sug   { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--bordeaux-mid); }
.menu-dark-sug-label { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--groen); font-weight: 700; margin-bottom: 8px; }
.menu-img-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.img-band        { max-width: 1320px; margin: 0 auto; padding: 80px var(--gutter); }
.practical       { max-width: 1320px; margin: 0 auto; padding: 30px var(--gutter) 110px; }
.cta-section     { max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter) 80px; }
.btn-menu-cta    { text-decoration: none; font-size: 15px; font-weight: 700; color: var(--bordeaux); background: var(--groen); padding: 14px 28px; border-radius: 100px; display: inline-block; margin-top: 36px; transition: background .2s; }
.btn-menu-cta:hover { background: var(--white); }
.btn-events       { text-decoration: none; font-size: 15px; font-weight: 700; color: var(--bordeaux); background: var(--groen); padding: 16px 34px; border-radius: 100px; display: inline-block; transition: background .2s; }
.btn-events:hover { background: var(--white); }

/* ── MENU PAGE ── */
.status-pill { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; background: var(--white); border: 1px solid var(--beige-line); border-radius: 100px; padding: 10px 20px; }
.status-dot  { width: 8px; height: 8px; border-radius: 100px; background: var(--groen); box-shadow: 0 0 0 3px rgba(221,224,94,0.35); }
.status-text { font-size: 13px; color: var(--bordeaux-muted); }
.menu-highlight { background: var(--bordeaux); border-radius: 28px; overflow: hidden; padding: 48px 52px; display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; }
.allergen-box  { background: var(--white); border: 1px solid var(--beige-line); border-radius: 20px; padding: 24px 28px; display: flex; gap: 16px; align-items: flex-start; }
.allergen-icon { color: var(--bordeaux); background: var(--groen); width: 28px; height: 28px; border-radius: 100px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; font-weight: 700; }
.allergen-text { font-size: 14px; color: var(--bordeaux-muted); line-height: 1.6; margin: 0; }

/* ── RESTAURANT PAGE ── */
.menu-week-bar   { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 34px; }
.menu-week-label { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--magenta); font-weight: 700; margin-bottom: 14px; }
.menu-week-h2    { font-weight: 700; font-size: clamp(30px,4vw,48px); margin: 0; color: var(--bordeaux); letter-spacing: -0.02em; }
.menu-week-sug   { margin-top: 40px; }
.formule-label      { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--magenta);  font-weight: 700; }
.formule-label-dark { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--groen); font-weight: 700; }
.formule-price      { font-weight: 700; font-size: 40px; color: var(--bordeaux); margin: 12px 0 4px; }
.formule-price-white { font-weight: 700; font-size: 40px; color: #FFF; margin: 12px 0 4px; }
.formule-text       { font-size: 14px; color: var(--bordeaux-muted); line-height: 1.6; margin: 0; }
.formule-text-dark  { font-size: 14px; color: var(--bordeaux-pale); line-height: 1.6; margin: 0; }

/* ── PRIVÉTAFEL PAGE ── */
.capacity-num  { font-size: 24px; font-weight: 700; color: var(--magenta); }
.capacity-text { font-size: 14px; color: var(--bordeaux-muted); margin-top: 8px; line-height: 1.5; }
.capacity-card-dark-num  { font-size: 24px; font-weight: 700; color: var(--groen); }
.capacity-card-dark-text { font-size: 14px; color: var(--bordeaux-pale); margin-top: 8px; line-height: 1.5; }

/* ── ZAKENLUNCH PAGE ── */
.advantage-label { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); font-weight: 700; margin-bottom: 14px; }
.advantage-title { font-weight: 600; font-size: 19px; color: var(--bordeaux); line-height: 1.3; }
.advantage-text  { font-size: 14px; color: var(--bordeaux-muted); line-height: 1.6; margin: 10px 0 0; }
.formule-xl-price       { font-weight: 700; font-size: 46px; color: var(--bordeaux); margin: 14px 0 2px; }
.formule-xl-price-white { font-weight: 700; font-size: 46px; color: var(--white); margin: 14px 0 2px; }
.formule-xl-unit        { font-size: 16px; color: var(--bordeaux-muted);  font-weight: 500; }
.formule-xl-unit-dark   { font-size: 16px; color: var(--bordeaux-pale);  font-weight: 500; }
.formule-xl-card     { background: var(--white); border: 1px solid var(--beige-line); border-radius: 24px; padding: 38px; }
.formule-xl-card-dark { background: var(--bordeaux); border-radius: 24px; padding: 38px; position: relative; }
.popular-badge { position: absolute; top: 26px; right: 26px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bordeaux); background: var(--groen); padding: 6px 12px; border-radius: 100px; font-weight: 700; }
.formule-items      { display: flex; flex-direction: column; gap: 8px; }
.formule-item       { font-size: 14px; color: var(--bordeaux); }
.formule-item-light { font-size: 14px; color: #F0DCE6; }

/* ── RESERVEER PAGE ── */
.pill-row    { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.pill        { border: 1.5px solid var(--beige-line); border-radius: 100px; padding: 11px 20px; font-size: 15px; font-weight: 600; color: var(--bordeaux); cursor: pointer; transition: all .18s; }
.pill-active { border: 1.5px solid var(--bordeaux); background: var(--bordeaux); color: var(--beige); border-radius: 100px; padding: 11px 20px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .18s; }
.reserveer-step { font-size: 12px; font-weight: 700; color: var(--bordeaux); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.side-info  { display: flex; flex-direction: column; gap: 20px; }
.info-card       { background: var(--white); border: 1px solid var(--beige-line); border-radius: 24px; padding: 32px; }
.info-card-dark  { background: var(--bordeaux); border-radius: 24px; padding: 32px; }
.info-card-label        { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta);  font-weight: 700; margin-bottom: 16px; }
.info-card-label-yellow { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--groen); font-weight: 700; margin-bottom: 16px; }
.phone-link      { text-decoration: none; font-weight: 700; font-size: 26px; color: var(--white); letter-spacing: -0.01em; }
.info-phone-text { font-size: 14px; color: var(--bordeaux-pale); line-height: 1.6; margin: 14px 0 0; }
.info-row-sm     { display: flex; justify-content: space-between; }
.info-row-sm + .info-row-sm { margin-top: 14px; }
.info-key  { font-size: 14px; color: var(--bordeaux-muted); }
.info-val  { font-size: 14px; color: var(--bordeaux); font-weight: 600; }

/* ── EVENTS PAGE ── */
.events-hero    { background: var(--bordeaux); border-radius: 32px; overflow: hidden; position: relative; }
.events-inner   { position: relative; padding: 80px 64px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.events-eyebrow { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--groen); font-weight: 700; margin-bottom: 24px; }
.events-h1      { font-weight: 700; font-size: clamp(40px,6vw,80px); line-height: 0.98; margin: 0; color: var(--white); letter-spacing: -0.03em; }
.events-accent  { color: var(--groen); }
.events-p       { font-size: 18px; line-height: 1.7; color: var(--bordeaux-pale); max-width: 46ch; margin: 28px 0 36px; }
.events-btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.events-types   { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 24px; }

/* ── CONTACT PAGE ── */
.call-card    { background: var(--bordeaux); border-radius: 24px; padding: 32px; }
.call-label   { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--groen); font-weight: 700; margin-bottom: 18px; }
.call-phone   { text-decoration: none; font-weight: 700; font-size: 24px; color: var(--white); display: block; width: fit-content; }
.call-email   { text-decoration: none; font-size: 16px; color: var(--groen); display: block; width: fit-content; margin-top: 8px; }
.location-card { background: var(--white); border: 1px solid var(--beige-line); border-radius: 24px; padding: 32px; }
.location-label   { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); font-weight: 700; margin-bottom: 18px; }
.location-address { font-weight: 700; font-size: 20px; color: var(--bordeaux); line-height: 1.4; }
.location-map-link { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--bordeaux); border-bottom: 2px solid var(--groen); padding-bottom: 2px; display: inline-block; margin-top: 16px; }
.hours-card   { background: var(--white); border: 1px solid var(--beige-line); border-radius: 24px; padding: 32px; }
.hours-label  { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); font-weight: 700; margin-bottom: 18px; }
.hours-list   { display: flex; flex-direction: column; gap: 12px; }
.hours-item   { display: flex; justify-content: space-between; }
.hours-day    { font-size: 14px; color: var(--bordeaux-muted); }
.hours-time   { font-size: 14px; color: var(--bordeaux); font-weight: 600; }
.closed-card  { background: var(--white); border: 1px solid var(--beige-line); border-radius: 24px; padding: 32px; }
.closed-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); font-weight: 700; margin-bottom: 18px; }
.closed-list  { display: flex; flex-direction: column; gap: 12px; }
.closed-item  { font-size: 14px; color: var(--bordeaux); font-weight: 600; }
.closed-more  { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--bordeaux); border-bottom: 2px solid var(--groen); padding-bottom: 2px; display: inline-block; margin-top: 16px; }
.contact-info-col  { display: flex; flex-direction: column; gap: 20px; }
.contact-map-form  { display: flex; flex-direction: column; gap: 24px; }

/* ── SMALL CARD CONTENT ── */
.card-sm-title { font-weight: 700; font-size: 18px; color: var(--magenta); margin-bottom: 6px; }
.card-sm-text  { font-size: 14px; color: var(--bordeaux-muted); line-height: 1.6; }

/* ── UTILITY ── */
.mt-24  { margin-top: 24px; }
.accent { color: var(--magenta); }
.formule-text-mb      { font-size: 14px; color: var(--bordeaux-muted);  line-height: 1.6; margin: 14px 0 22px; }
.formule-text-dark-mb { font-size: 14px; color: var(--bordeaux-pale);  line-height: 1.6; margin: 14px 0 22px; }

/* ── MENU PAGE EXTRAS ── */
.menu-intro-p    { font-size: 18px; line-height: 1.6; color: var(--bordeaux); max-width: 52ch; margin: 24px auto 0; }
.menu-cta-wrap   { max-width: 1100px; margin: 0 auto; padding: 40px var(--gutter) 100px; text-align: center; }

/* ── STYLEGUIDE ── */
.sg-page         { background: #F6F3EC; color: #262320; font-family: 'Hanken Grotesk',sans-serif; min-height: 100vh; -webkit-font-smoothing: antialiased; }
.sg-inner        { max-width: 1180px; margin: 0 auto; padding: 48px; }
.sg-masthead     { max-width: 1180px; margin: 0 auto; padding: 80px 48px 0; }
.sg-masthead-bar { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid #D9D3C6; padding-bottom: 22px; }
.sg-meta         { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: #8A8576; }
.sg-intro        { padding: 72px 0 40px; }
.sg-eyebrow      { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: #D96A3B; font-weight: 600; margin-bottom: 28px; }
.sg-h1           { font-family: 'Cormorant Garamond',serif; font-weight: 500; font-size: clamp(44px,7vw,104px); line-height: 0.98; letter-spacing: -0.01em; margin: 0; max-width: 14ch; }
.sg-h1-em        { font-style: italic; color: #5C6B4F; }
.sg-lead         { font-size: 19px; line-height: 1.6; color: #5A5648; max-width: 54ch; margin: 36px 0 0; font-weight: 400; }
.sg-section-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 40px; }
.sg-section-num  { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: #8A8576; font-weight: 600; }

/* Wordmark */
.sg-wm-2     { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.sg-wm-3     { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 24px; }
.sg-wm-light { background: #FBFAF6; border: 1px solid #E5E0D4; padding: 64px 48px; display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 320px; }
.sg-wm-dark  { background: #262320; padding: 64px 48px; display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 320px; }
.sg-logo-xl       { font-family: 'Cormorant Garamond',serif; font-weight: 500; font-size: 88px; line-height: 1; color: #262320; letter-spacing: -0.01em; }
.sg-logo-xl-light { font-family: 'Cormorant Garamond',serif; font-weight: 500; font-size: 88px; line-height: 1; color: #F6F3EC; letter-spacing: -0.01em; }
.sg-logo-at       { color: #D96A3B; }
.sg-logo-at-dark  { color: #E8915E; }
.sg-logo-sub      { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: #8A8576; margin-top: 18px; }
.sg-logo-sub-dark { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: #9A9486; margin-top: 18px; }
.sg-wm-sm-light  { background: #FBFAF6; border: 1px solid #E5E0D4; padding: 36px; display: flex; flex-direction: column; gap: 10px; justify-content: center; align-items: center; min-height: 150px; }
.sg-wm-sm-green  { background: #5C6B4F; padding: 36px; display: flex; flex-direction: column; gap: 10px; justify-content: center; align-items: center; min-height: 150px; }
.sg-logo-sm       { font-family: 'Cormorant Garamond',serif; font-weight: 500; font-size: 40px; color: #262320; }
.sg-logo-sm-light { font-family: 'Cormorant Garamond',serif; font-weight: 500; font-size: 40px; color: #F6F3EC; }
.sg-wm-caption        { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #8A8576; }
.sg-wm-caption-light  { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #C7CDBB; }
.sg-favicon { font-family: 'Cormorant Garamond',serif; font-weight: 600; font-size: 34px; color: #D96A3B; width: 64px; height: 64px; border: 1.5px solid #D96A3B; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Color palette */
.sg-color-grid  { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.sg-swatch      { height: 160px; }
.sg-sw-creme    { background: #F6F3EC; border: 1px solid #E5E0D4; }
.sg-sw-paper    { background: #FBFAF6; border: 1px solid #E5E0D4; }
.sg-sw-ink      { background: #262320; }
.sg-sw-terra    { background: #D96A3B; }
.sg-sw-olive    { background: #5C6B4F; }
.sg-color-name  { font-size: 14px; font-weight: 600; margin-top: 14px; }
.sg-color-code  { font-size: 12px; color: #8A8576; }
.sg-color-note  { font-size: 15px; line-height: 1.6; color: #5A5648; max-width: 60ch; margin: 32px 0 0; }

/* Typography */
.sg-type-2      { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; border-bottom: 1px solid #D9D3C6; padding-bottom: 40px; }
.sg-font-serif  { font-family: 'Cormorant Garamond',serif; font-size: 72px; line-height: 1; }
.sg-font-sans   { font-size: 72px; line-height: 1; font-weight: 600; }
.sg-font-label  { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: #8A8576; margin-top: 16px; }
.sg-font-desc   { font-size: 14px; color: #5A5648; line-height: 1.6; margin-top: 12px; }
.sg-scale       { display: flex; flex-direction: column; gap: 30px; margin-top: 44px; }
.sg-scale-row   { display: grid; grid-template-columns: 130px 1fr; gap: 32px; align-items: baseline; }
.sg-scale-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #8A8576; padding-top: 8px; }
.sg-t-display   { font-family: 'Cormorant Garamond',serif; font-weight: 500; font-size: 64px; line-height: 1; }
.sg-t-heading   { font-family: 'Cormorant Garamond',serif; font-weight: 500; font-size: 40px; line-height: 1.1; }
.sg-t-subhead   { font-family: 'Cormorant Garamond',serif; font-style: italic; font-weight: 400; font-size: 34px; line-height: 1.1; color: #5C6B4F; }
.sg-t-body      { font-size: 18px; line-height: 1.65; color: #3D3A33; max-width: 54ch; }
.sg-t-label     { font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #D96A3B; }

/* UI */
.sg-btn-row     { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.sg-btn-primary { font-family: 'Hanken Grotesk',sans-serif; font-size: 15px; font-weight: 600; letter-spacing: 0.04em; color: #fff; background: #D96A3B; border: none; padding: 16px 32px; cursor: pointer; transition: background .2s; }
.sg-btn-outline { font-family: 'Hanken Grotesk',sans-serif; font-size: 15px; font-weight: 600; letter-spacing: 0.04em; color: #262320; background: transparent; border: 1.5px solid #262320; padding: 14.5px 30px; cursor: pointer; transition: all .2s; }
.sg-btn-text    { font-family: 'Hanken Grotesk',sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; color: #262320; background: transparent; border: none; padding: 8px 0; cursor: pointer; border-bottom: 1.5px solid #D96A3B; display: inline-flex; align-items: center; gap: 8px; }
.sg-at          { color: #D96A3B; }
.sg-nav-preview { margin-top: 48px; background: #FBFAF6; border: 1px solid #E5E0D4; }
.sg-nav-bar     { display: flex; justify-content: space-between; align-items: center; padding: 22px 32px; border-bottom: 1px solid #EDE8DC; }
.sg-nav-left    { display: flex; gap: 34px; align-items: center; }
.sg-nav-logo    { font-family: 'Cormorant Garamond',serif; font-weight: 500; font-size: 28px; }
.sg-nav-active  { font-size: 15px; font-weight: 600; color: #262320; }
.sg-nav-link    { font-size: 15px; font-weight: 500; color: #5A5648; }
.sg-nav-right   { display: flex; gap: 24px; align-items: center; }
.sg-nav-sm      { font-size: 14px; color: #5A5648; }
.sg-nav-cta     { font-size: 13px; font-weight: 600; color: #fff; background: #D96A3B; padding: 10px 20px; }
.sg-nav-caption { padding: 14px 32px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #8A8576; }
.sg-paths       { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 24px; }
.sg-path-light  { background: #FBFAF6; border: 1px solid #E5E0D4; padding: 32px; }
.sg-path-green  { background: #5C6B4F; padding: 32px; }
.sg-path-tag    { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: #D96A3B; font-weight: 600; }
.sg-path-tag-lt { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: #E8C9A8; font-weight: 600; }
.sg-path-title  { font-family: 'Cormorant Garamond',serif; font-size: 32px; margin-top: 8px; }
.sg-path-title-lt { font-family: 'Cormorant Garamond',serif; font-size: 32px; margin-top: 8px; color: #F6F3EC; }
.sg-path-p      { font-size: 14px; color: #5A5648; line-height: 1.6; margin: 10px 0 0; }
.sg-path-p-lt   { font-size: 14px; color: #D5DAC9; line-height: 1.6; margin: 10px 0 0; }

/* Imagery */
.sg-img-grid  { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; }
.sg-img-ph    { aspect-ratio: 3/4; background: repeating-linear-gradient(135deg,#ECE7DA,#ECE7DA 11px,#E4DECF 11px,#E4DECF 22px); display: flex; align-items: flex-end; padding: 18px; }
.sg-img-ph-g  { aspect-ratio: 3/4; background: repeating-linear-gradient(135deg,#E7EAE0,#E7EAE0 11px,#DDE2D4 11px,#DDE2D4 22px); display: flex; align-items: flex-end; padding: 18px; }
.sg-img-col   { display: flex; flex-direction: column; gap: 16px; }
.sg-img-sm    { flex: 1; background: repeating-linear-gradient(135deg,#E7EAE0,#E7EAE0 11px,#DDE2D4 11px,#DDE2D4 22px); display: flex; align-items: flex-end; padding: 18px; }
.sg-img-sm-b  { flex: 1; background: repeating-linear-gradient(135deg,#ECE7DA,#ECE7DA 11px,#E4DECF 11px,#E4DECF 22px); display: flex; align-items: flex-end; padding: 18px; }
.sg-img-tag   { font-family: ui-monospace,monospace; font-size: 11px; color: #8A8576; background: #F6F3EC; padding: 5px 9px; }
.sg-img-tag-g { font-family: ui-monospace,monospace; font-size: 11px; color: #6E7560; background: #F6F3EC; padding: 5px 9px; }
.sg-img-note  { font-size: 15px; line-height: 1.6; color: #5A5648; max-width: 60ch; margin: 0 0 28px; }

/* Voice */
.sg-voice-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.sg-voice-quote { font-family: 'Cormorant Garamond',serif; font-style: italic; font-size: 30px; line-height: 1.3; color: #262320; }
.sg-voice-body  { font-size: 15px; color: #5A5648; line-height: 1.6; margin-top: 24px; }
.sg-voice-items { display: flex; flex-direction: column; gap: 14px; }
.sg-voice-item  { display: flex; gap: 12px; align-items: flex-start; }
.sg-check       { color: #5C6B4F; font-weight: 700; }
.sg-cross       { color: #C25A2E; font-weight: 700; }
.sg-v-text      { font-size: 15px; color: #3D3A33; }
.sg-v-text-off  { font-size: 15px; color: #9A9486; text-decoration: line-through; }
.sg-foot-bar    { border-top: 1px solid #D9D3C6; margin-top: 80px; padding-top: 24px; display: flex; justify-content: space-between; }
.sg-foot-text   { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #8A8576; }

/* ── RESERVEER PAGE ── */
.reserveer-header { text-align: center; margin-bottom: 56px; }
.reserveer-cta    { margin-top: 36px; font-size: 17px; font-weight: 700; color: var(--bordeaux); background: var(--groen); border: none; padding: 19px 52px; border-radius: 100px; cursor: pointer; transition: background .2s; }
.reserveer-cta:hover { background: var(--groen-hover); }
.reserveer-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }

/* ── ICON ── */
.icon-lg   { font-size: 17px; }
.mb-50     { margin-bottom: 50px; }
.phone-inline { color: var(--bordeaux); font-weight: 600; }
a.phone-inline { text-decoration: underline; text-decoration-color: var(--bordeaux-soft); text-underline-offset: 3px; }
a.phone-inline:hover { text-decoration-color: var(--magenta); }
.yellow-cta-p a { color: inherit; text-decoration: underline; text-decoration-color: var(--bordeaux-soft); text-underline-offset: 3px; }
.formule-item a, .capacity-card-dark-text a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.yellow-cta-p a:hover { text-decoration-color: var(--magenta); }

/* ── REAL IMAGES IN CONTAINERS ── */
.gal-a, .gal-b, .gal-dark-a, .gal-dark-b { position: relative; }
.portrait { position: relative; }

.img-ph img, .img-ph-light img, .img-ph-wide img, .img-ph-wide-light img,
.img-ph-map img, .img-ph-rect img, .img-ph-white img,
.gal-a img, .gal-b img, .gal-dark-a img, .gal-dark-b img,
.portrait img, .path-img-a img, .path-img-b img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--bordeaux); color: var(--beige);
  padding: 12px 20px; font-size: 15px; font-weight: 600;
  text-decoration: none; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ============================================
   RESPONSIVE
   Nav and footer have their own blocks above;
   everything that touches the page content lives here.
   ============================================ */

/* ── TABLET ── */
@media (max-width: 900px) {
  :root { --gutter: 24px; }

  /* Vertical spacing one step tighter */
  .section-padded { padding-top: 60px; padding-bottom: 60px; }
  .section-top    { padding-top: 60px; }
  .section-bottom { padding-top: 60px; padding-bottom: 72px; }
  .img-band       { padding-top: 60px; padding-bottom: 60px; }
  .notice         { margin: 32px auto -16px; }
  .intro          { padding: 68px var(--gutter) 60px; }
  .paths          { padding-bottom: 72px; }
  .practical      { padding-bottom: 80px; }
  .cta-section    { padding-bottom: 60px; }
  .page-header    { padding: 56px var(--gutter) 40px; }
  .page-header-sm { padding: 60px var(--gutter) 32px; }
  .page-main, .page-main-sm { padding: 56px var(--gutter) 72px; }
  .menu-cta-wrap  { padding: 32px var(--gutter) 72px; }
  .yellow-block-inner { padding: 72px var(--gutter); }

  /* Card grids: four or three columns become two */
  .grid-3, .grid-4, .grid-4-img { grid-template-columns: repeat(2, 1fr); }
  .events-types { grid-template-columns: repeat(2, 1fr); }
  /* Two-column grids stay, but with less space between them */
  .grid-2, .grid-2-end, .grid-2-asym, .grid-2-menu { gap: 40px; }
  /* The contact column is too narrow to keep next to the form: stack it */
  .grid-2-form { grid-template-columns: 1fr; gap: 32px; }

  /* Blocks with generous inner padding */
  /* These two blocks are text heavy: on tablet they read better stacked */
  .dark-block, .hours-block { grid-template-columns: 1fr; padding: 40px; gap: 36px; }
  /* Opening hours must not break in the middle of the range */
  .hours-row > span:last-child { white-space: nowrap; }
  .yellow-cta-block { padding: 40px; }
  .menu-dark-inner  { padding: 64px 40px; gap: 48px; }
  .menu-highlight   { padding: 40px; gap: 40px; }
  .events-inner     { padding: 56px 40px; gap: 44px; }
  .phone-banner     { padding: 36px 40px; }

  /* min-height + aspect-ratio makes Chrome derive the width from the height,
     so the image grows wider than its container. The ratio does the work. */
  .img-ph-wide, .img-ph-wide-light { min-height: 0; }
}

/* ── PHONE ── */
@media (max-width: 640px) {
  :root { --gutter: 20px; }

  /* Vertical spacing one step tighter again */
  .section-padded { padding-top: 48px; padding-bottom: 48px; }
  .section-top    { padding-top: 48px; }
  .section-bottom { padding-top: 48px; padding-bottom: 56px; }
  .img-band       { padding-top: 48px; padding-bottom: 48px; }
  .notice         { margin: 24px auto -12px; }
  .notice-card    { padding: 20px 22px; }
  .notice-text    { font-size: 16px; }
  .intro          { padding: 52px var(--gutter) 44px; }
  .paths          { padding-bottom: 56px; }
  .practical      { padding-bottom: 60px; }
  .cta-section    { padding-bottom: 48px; }
  .page-header    { padding: 44px var(--gutter) 32px; }
  .page-header-sm { padding: 44px var(--gutter) 28px; }
  .page-main, .page-main-sm { padding: 44px var(--gutter) 56px; }
  .menu-cta-wrap  { padding: 28px var(--gutter) 56px; }
  .yellow-block-inner { padding: 52px var(--gutter); }
  .section, .section-sm { padding-bottom: 24px; }

  /* All two-column grids stack */
  .grid-2, .grid-2-end, .grid-2-asym, .grid-2-menu,
  .grid-2-col, .grid-2-sm, .form-2col, .form-2col-mb,
  .reserveer-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-2-end, .grid-2-asym, .grid-2-menu { gap: 32px; }
  .grid-2-form { gap: 28px; }
  .grid-2-col  { gap: 0; }
  /* Text cards go one per row, images and portraits stay two up */
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .grid-4 { gap: 16px; }
  .grid-4-img { gap: 12px; }

  /* Blocks: two columns stack, inner padding back to readable proportions */
  .dark-block, .hours-block, .menu-dark-inner,
  .menu-highlight, .events-inner { grid-template-columns: 1fr; }
  .dark-block, .hours-block { padding: 28px 24px; gap: 28px; }
  .yellow-cta-block { padding: 32px 24px; }
  .menu-dark-inner  { padding: 44px 24px; gap: 36px; }
  .menu-highlight   { padding: 28px 24px; gap: 28px; }
  .events-inner     { padding: 40px 24px; gap: 32px; }
  .phone-banner     { padding: 28px 24px; }
  .card, .card-dark { padding: 24px; }
  .card-sm          { padding: 22px; }
  .form-card        { padding: 24px; }
  .form-card-lg     { padding: 26px; }
  .formule-xl-card, .formule-xl-card-dark { padding: 26px; }
  .info-card, .info-card-dark, .call-card,
  .location-card, .hours-card, .closed-card { padding: 24px; }
  .allergen-box     { padding: 20px; gap: 12px; }

  /* Rows that push left against right: stacked instead */
  .hours-row, .info-row, .info-row-sm, .hours-item {
    flex-direction: column; align-items: flex-start; gap: 2px;
  }
  .info-row    { gap: 4px; }
  .info-value  { text-align: left; }
  .paths-bar, .menu-week-bar {
    flex-direction: column; align-items: flex-start; gap: 12px;
  }
  .menu-section-head { flex-wrap: wrap; gap: 8px 16px; }
  /* Dishes keep their price on the right, but the name may wrap */
  .menu-row, .menu-row-rest, .menu-row-dark { gap: 16px; }
  .menu-price, .menu-price-dark { flex: none; }

  /* Images: fixed minimum heights are too heavy on a narrow screen */
  .img-ph-wide, .img-ph-wide-light { aspect-ratio: 3 / 2; }
  .img-ph-rect  { min-height: 240px; }
  .img-ph-white { min-height: 220px; }
  .hero-wrap    { height: calc(100dvh - 180px); min-height: 420px; max-height: 620px; }

  /* The handful of fixed font sizes that do not scale with clamp() */
  .paths-h3           { font-size: 26px; }
  .menu-section-title { font-size: 24px; }
  .formule-price, .formule-price-white { font-size: 32px; }
  .formule-xl-price, .formule-xl-price-white { font-size: 36px; }
  .footer-brand { font-size: 28px; }
  .path-h4      { font-size: 22px; }
  .phone-link   { font-size: 22px; }
  .form-title   { font-size: 20px; }
  /* A phone number must never break in the middle of the digits */
  .phone-banner-number a, .phone-link, .call-phone { white-space: nowrap; }
  .call-phone   { font-size: 21px; }
  .location-address { font-size: 18px; }
}

/* ── VERY NARROW DEVICES ── */
@media (max-width: 380px) {
  /* A word like "Bedrijfsevents" no longer fits in half a column */
  .events-types { grid-template-columns: 1fr; }
}
