/* Self-hosted fonts (variable woff2, latin + latin-ext) — no requests to Google. */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/fonts/playfair-display-latin.woff2") format("woff2");
  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: "Playfair Display";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/fonts/playfair-display-latin-ext.woff2") format("woff2");
  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: "Work Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/work-sans-latin.woff2") format("woff2");
  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: "Work Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/work-sans-latin-ext.woff2") format("woff2");
  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;
}


  html {
    font-size: 17px;
    scrollbar-gutter: stable;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  :root {
    color-scheme: light;
    --cream: #f6efdc;
    --card: #fffdf6;
    --ink: #221d16;
    --ink-soft: rgba(34, 29, 22, 0.62);
    --ink-faint: rgba(34, 29, 22, 0.4);
    --orange: #f19109;
    --rust: #d55114;
    --orange-wash: rgba(241, 145, 9, 0.11);
    --line: rgba(34, 29, 22, 0.13);
    --shadow: rgba(80, 55, 20, 0.08);
    --ok: #2e7d4f;
    --err: #c0392b;
  }

  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --cream: #211c14;
      --card: #2a241a;
      --ink: #f3ead6;
      --ink-soft: rgba(243, 234, 214, 0.66);
      --ink-faint: rgba(243, 234, 214, 0.42);
      --orange: #f5a532;
      --rust: #e8794a;
      --orange-wash: rgba(245, 165, 50, 0.16);
      --line: rgba(243, 234, 214, 0.14);
      --shadow: rgba(0, 0, 0, 0.35);
    }
  }

  :root[data-theme="dark"] {
    --cream: #211c14;
    --card: #2a241a;
    --ink: #f3ead6;
    --ink-soft: rgba(243, 234, 214, 0.66);
    --ink-faint: rgba(243, 234, 214, 0.42);
    --orange: #f5a532;
    --rust: #e8794a;
    --orange-wash: rgba(245, 165, 50, 0.16);
    --line: rgba(243, 234, 214, 0.14);
    --shadow: rgba(0, 0, 0, 0.35);
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  img { max-width: 100%; }

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }

  .page {
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
    min-height: 100dvh;
    padding-bottom: 3rem;
  }

  /* Homepage runs wider so the hero photo renders bigger and clearer. */
  body.home-page .page { max-width: 60rem; }

  /* ---------- Header ---------- */
  header.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    padding: 2rem 1.5rem 1.1rem;
  }

  .mark { width: 4.6rem; height: auto; margin-bottom: 0.5rem; }

  .eyebrow {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
  }

  .wordmark {
    margin: 0.1rem 0 0;
    font-family: "Playfair Display", ui-serif, Georgia, serif;
    font-weight: 700;
    font-size: clamp(2.1rem, 9vw, 2.6rem);
    line-height: 1;
    text-wrap: balance;
  }

  .tagline {
    margin: 0.35rem 0 0;
    font-size: 0.95rem;
    color: var(--ink-soft);
  }


  .info-strip {
    margin: 1rem 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.1rem;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    background: var(--orange-wash);
    font-size: 0.78rem;
    color: var(--ink-soft);
  }
  .info-strip strong { color: var(--ink); font-weight: 600; }

  /* ---------- Tabs ---------- */
  .tabs {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.35rem;
    padding: 1.1rem 1.5rem 0.8rem;
    margin-top: 0.4rem;
    background: linear-gradient(var(--cream) 78%, transparent);
  }

  .tabs button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 3.1rem;
    line-height: 1.25;
    appearance: none;
    border: 1px solid var(--line);
    background: var(--card);
    color: var(--ink-soft);
    font-family: "Work Sans", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.55rem 0.3rem;
    border-radius: 0.4rem;
    cursor: pointer;
    box-shadow: 0 1px 2px var(--shadow);
  }

  .tabs button[aria-selected="true"] {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff8ec;
  }

  .tabs button:focus-visible {
    outline: 2px solid var(--rust);
    outline-offset: 2px;
  }

  @media (max-width: 720px) {
    .tabs { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 480px) {
    .tabs { grid-template-columns: repeat(2, 1fr); }
  }

  /* ---------- Panels ---------- */
  .panel { display: none; padding: 0.2rem 1.5rem 0; }
  .panel[data-active="true"] { display: block; }

  .group { padding: 1.5rem 0 0.2rem; border-top: 1px solid var(--line); }
  .group:first-child { border-top: none; padding-top: 0.6rem; }

  .group-head-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .group-head {
    margin: 0 0 0.2rem;
    font-family: "Work Sans", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--orange);
    flex: 1;
    min-width: 0;
  }

  .group-controls {
    display: none;
    flex: none;
    gap: 0.25rem;
  }
  body[data-local-staffmode="true"] .group-controls { display: flex; }

  .group-note {
    margin: 0 0 0.9rem;
    font-size: 0.78rem;
    font-style: italic;
    color: var(--ink-faint);
  }
  .group-note:empty { display: none; }
  body[data-local-staffmode="true"] .group-note:empty {
    display: block;
    opacity: 0.45;
  }
  body[data-local-staffmode="true"] .group-note:empty::before {
    content: "Notitie toevoegen\2026";
  }

  .item { padding: 0.55rem 0; border-bottom: 1px dashed var(--line); }
  .item:last-child { border-bottom: none; }

  .item-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .item-name {
    font-weight: 600;
    font-size: 0.98rem;
    text-wrap: balance;
  }

  .item-price {
    flex: none;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: var(--rust);
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .item-desc-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .item-desc-row .item-desc { flex: 1 1 auto; }
  .item-desc-row .item-price-extra { flex: none; margin-top: 0.2rem; }

  .item-price-extra {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: var(--rust);
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .item-price-extra:empty { display: none; }

  .item-desc {
    margin: 0.2rem 0 0;
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--ink-soft);
    max-width: 46ch;
  }
  .item-desc:empty { display: none; }

  .stay-list { padding-left: 1.5rem; padding-right: 1.5rem; }

  .item-name-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
  }

  .stay-icon {
    flex: none;
    box-sizing: border-box;
    width: 2.15rem;
    height: 2.15rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: var(--orange-wash);
    color: var(--orange);
  }

  .stay-perk {
    margin: 0.6rem 0 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rust);
    line-height: 1.4;
  }

  .stay-item {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 1rem 1.1rem;
    margin: 0.7rem 0;
    box-shadow: 0 2px 10px var(--shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  }
  .stay-item:first-child { margin-top: 0; }
  .stay-item:last-child { margin-bottom: 0; }
  .stay-item:hover,
  .stay-item:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px var(--shadow);
    border-color: var(--orange);
    outline: none;
  }
  .stay-item .item-row {
    align-items: center;
    flex-wrap: wrap;
  }
  .stay-item .item-desc {
    margin-top: 0.5rem;
    max-width: none;
  }
  .stay-item .item-price {
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 2.15rem;
    height: 2.15rem;
    padding: 0;
    border-radius: 50%;
    background: var(--orange-wash);
    color: var(--rust);
    font-size: 1.05rem;
    font-weight: 700;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  }
  .stay-item:hover .item-price,
  .stay-item:focus-visible .item-price {
    background: var(--orange);
    color: #fff8ec;
    transform: translateX(3px);
  }
  body[data-local-staffmode="true"] .item-desc:empty {
    display: block;
    font-style: italic;
    opacity: 0.45;
  }
  body[data-local-staffmode="true"] .item-desc:empty::before {
    content: "Omschrijving toevoegen\2026";
  }

  /* featured callout boxes */
  .feature {
    margin: 1.3rem 0;
    padding: 1.1rem 1.2rem;
    border: 1.5px solid var(--orange);
    border-radius: 0.6rem;
    text-align: center;
    background: var(--orange-wash);
  }

  .feature .group-head { color: var(--rust); }

  .feature-line-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
  }

  .feature-line {
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.3rem 0;
  }

  .feature-or {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }

  .feature-price {
    margin-top: 0.5rem;
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--rust);
  }

  .feature-desc {
    font-size: 0.8rem;
    color: var(--ink-soft);
    margin: 0.5rem 0 0;
  }
  .feature-desc:empty { display: none; }
  body[data-local-staffmode="true"] .feature-desc:empty {
    display: block;
    font-style: italic;
    opacity: 0.45;
  }
  body[data-local-staffmode="true"] .feature-desc:empty::before {
    content: "Omschrijving toevoegen\2026";
  }

  .feature-add-line {
    margin-top: 0.5rem;
  }

  /* ---------- Footer ---------- */
  footer {
    margin-top: 2.2rem;
    padding: 1.4rem 1.5rem 0;
    text-align: center;
    border-top: 1px solid var(--line);
  }

  .fineprint {
    margin: 0;
    font-size: 0.76rem;
    color: var(--ink-faint);
    line-height: 1.6;
  }
  .fineprint a { color: inherit; }

  /* ---------- Staff mode ---------- */
  .staff-link {
    appearance: none;
    border: none;
    background: none;
    margin-top: 0.9rem;
    padding: 0.3rem;
    font-family: "Work Sans", sans-serif;
    font-size: 0.72rem;
    color: var(--ink-faint);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
  }
  .staff-link:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }


  /* ---------- Staff code entry (on-page, not a native dialog) ---------- */
  .staff-gate {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.45);
  }
  .staff-gate[hidden] { display: none; }

  .staff-gate-box {
    width: 100%;
    max-width: 20rem;
    background: var(--card);
    border-radius: 0.7rem;
    padding: 1.3rem 1.3rem 1.1rem;
    box-shadow: 0 10px 30px var(--shadow);
  }

  .staff-gate-label {
    margin: 0 0 0.6rem;
    font-family: "Work Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
  }

  .staff-gate-input {
    width: 100%;
    box-sizing: border-box;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    padding: 0.65rem 0.8rem;
    border-radius: 0.4rem;
    border: 1.5px solid var(--line);
    background: var(--cream);
    color: var(--ink);
    font-family: "Work Sans", sans-serif;
  }
  .staff-gate-input:focus { outline: 2px solid var(--rust); outline-offset: 1px; }

  .staff-gate-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .staff-gate-actions button {
    appearance: none;
    border: none;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
    border-radius: 0.4rem;
    cursor: pointer;
  }
  .staff-gate-cancel { background: transparent; color: var(--ink-soft); }
  .staff-gate-submit { background: var(--rust); color: #fff8ec; }

  /* editable text only interactive in staff mode */
  .item-name, .item-price, .item-desc,
  .group-head, .group-note,
  .feature-line, .feature-desc, .feature-price {
    pointer-events: none;
    border-radius: 0.2rem;
  }
  body[data-local-staffmode="true"] .item-name,
  body[data-local-staffmode="true"] .item-price,
  body[data-local-staffmode="true"] .item-desc,
  body[data-local-staffmode="true"] .group-head,
  body[data-local-staffmode="true"] .group-note,
  body[data-local-staffmode="true"] .feature-line,
  body[data-local-staffmode="true"] .feature-desc,
  body[data-local-staffmode="true"] .feature-price,
  body[data-local-staffmode="true"] .suggestie-empty {
    pointer-events: auto;
  }
  body[data-local-staffmode="true"] .item-name:focus,
  body[data-local-staffmode="true"] .item-price:focus,
  body[data-local-staffmode="true"] .item-desc:focus,
  body[data-local-staffmode="true"] .group-head:focus,
  body[data-local-staffmode="true"] .group-note:focus,
  body[data-local-staffmode="true"] .feature-line:focus,
  body[data-local-staffmode="true"] .feature-desc:focus,
  body[data-local-staffmode="true"] .feature-price:focus {
    outline: 1.5px dashed var(--rust);
    outline-offset: 2px;
    background: var(--orange-wash);
  }

  .soldout-toggle {
    display: none;
    flex: none;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: var(--card);
    color: var(--ink-faint);
    font-size: 0.7rem;
    line-height: 1;
    cursor: pointer;
  }
  body[data-local-staffmode="true"] .soldout-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .item.sold-out .soldout-toggle { color: #fff8ec; background: var(--rust); border-color: var(--rust); }

  .item-move, .group-controls button {
    display: none;
    flex: none;
    width: 1.4rem;
    height: 1.4rem;
    margin-left: -0.4rem;
    border-radius: 0.3rem;
    border: 1.5px solid var(--line);
    background: var(--card);
    color: var(--ink-faint);
    font-size: 0.6rem;
    line-height: 1;
    cursor: pointer;
  }
  body[data-local-staffmode="true"] .item-move { display: inline-flex; align-items: center; justify-content: center; }
  .group-controls button { display: inline-flex; align-items: center; justify-content: center; margin-left: 0; }
  .item-move:active, .group-controls button:active { background: var(--orange-wash); color: var(--rust); }

  .soldout-badge {
    display: none;
    flex: none;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rust);
    border: 1px solid var(--rust);
    border-radius: 999px;
    padding: 0.1rem 0.5rem;
  }
  .item.sold-out .soldout-badge { display: inline-block; }
  .item.sold-out .item-name { text-decoration: line-through; opacity: 0.55; }
  .item.sold-out .item-price { opacity: 0.4; }

  .item-remove, .feature-line-remove, .group-remove-btn {
    display: none;
    flex: none;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: var(--card);
    color: var(--ink-faint);
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
  }
  body[data-local-staffmode="true"] .item-remove,
  body[data-local-staffmode="true"] .feature-line-remove,
  body[data-local-staffmode="true"] .group-remove-btn {
    display: inline-flex; align-items: center; justify-content: center;
  }

  .suggestie-empty {
    margin: 0;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--ink-faint);
  }
  body[data-local-staffmode="true"] .suggestie-add,
  body[data-local-staffmode="true"] .item-add,
  body[data-local-staffmode="true"] .group-add,
  body[data-local-staffmode="true"] .feature-add-line {
    display: inline-flex;
  }
  .suggestie-add,
  .item-add,
  .group-add,
  .feature-add-line {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.8rem;
    appearance: none;
    border: 1.5px dashed var(--orange);
    background: transparent;
    color: var(--rust);
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.55rem 0.9rem;
    border-radius: 0.4rem;
    cursor: pointer;
  }
  .item-add, .group-add {
    width: 100%;
    font-size: 0.8rem;
    padding: 0.5rem;
    margin-top: 0.6rem;
  }
  .group-add {
    border-color: var(--rust);
    margin: 1.2rem 0 0.4rem;
  }

  .toast {
    position: fixed;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    max-width: calc(100% - 2.4rem);
    background: var(--ink);
    color: var(--cream);
    font-size: 0.82rem;
    padding: 0.65rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 14px var(--shadow);
    z-index: 30;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .toast.show { opacity: 1; }
  .toast.err { background: var(--err); color: #fff; }
  .toast.ok { background: var(--ok); color: #fff; }

  .load-state {
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.9rem;
  }

  /* =====================================================
     Site-wide additions (navigation + other pages)
     ===================================================== */

  /* ---------- Language switcher ---------- */
  .langswitch {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.4rem 1.25rem;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .langswitch a {
    font-family: "Work Sans", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ink-faint);
    text-decoration: none;
    padding: 0.1rem 0.2rem;
  }
  .langswitch a:hover { color: var(--ink); }
  .langswitch a[aria-current="true"] { color: var(--orange); }
  .langswitch a:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }

  /* ---------- Site navigation: full browser width (breaks out of the
     .page column), links centered inside it, wraps only if it must ---------- */
  .sitenav {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0.7rem 1.25rem;
  }

  .nav-toggle { display: none; }

  .sitenav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }

  .sitenav-links a {
    flex: none;
    white-space: nowrap;
    font-family: "Work Sans", sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink-soft);
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--card);
  }
  .sitenav-links a:hover { color: var(--ink); border-color: var(--ink-soft); }
  .sitenav-links a[aria-current="page"] {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff8ec;
  }
  .sitenav-links a:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }

  @media (max-width: 480px) {
    .sitenav-links { gap: 0.3rem; }
    .sitenav-links a { font-size: 0.66rem; padding: 0.38rem 0.62rem; letter-spacing: 0.03em; }
  }

  /* ---------- Mobile: collapse links behind a hamburger toggle ---------- */
  @media (max-width: 720px) {
    .sitenav { padding: 0.6rem 1rem; }

    .nav-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      font-family: "Work Sans", sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      color: var(--ink);
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 0.5rem;
      padding: 0.55rem 0.8rem;
      cursor: pointer;
    }
    .nav-toggle:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }
    .nav-toggle-icon { font-size: 1rem; line-height: 1; }

    .sitenav-links {
      display: none;
      flex-direction: column;
      align-items: stretch;
      gap: 0.35rem;
      margin-top: 0.6rem;
    }
    .sitenav-links a { text-align: center; }

    .sitenav.open .sitenav-links { display: flex; }
  }

  /* ---------- Page title (non-menu pages) ---------- */
  .page-title {
    margin: 0.1rem 0 0;
    font-family: "Playfair Display", ui-serif, Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 8vw, 2.3rem);
    line-height: 1.05;
    text-wrap: balance;
  }

  /* ---------- Photo card ---------- */
  .photo-card {
    margin: 1.3rem 1.5rem;
    border-radius: 0.7rem;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow);
  }
  .photo-card img { display: block; width: 100%; height: auto; }

  .photo-caption {
    margin: 0.4rem 1.5rem 0;
    font-size: 0.72rem;
    font-style: italic;
    color: var(--ink-faint);
    text-align: right;
  }
  .photo-caption a { color: inherit; }

  /* ---------- Prose (story, faq intro, hondjes, ...) ---------- */
  .prose {
    padding: 0.3rem 1.5rem 0;
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--ink);
  }
  .prose p { margin: 0 0 1rem; }
  .prose p:last-child { margin-bottom: 0; }

  /* ---------- Larger, editorial intro text (short intros) ---------- */
  .intro-lead {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.6;
  }

  /* ---------- Larger intro text, left-aligned (longer prose) ---------- */
  .intro-lead--plain {
    text-align: left;
    font-size: 1.08rem;
    line-height: 1.65;
  }

  /* ---------- Label / value rows (hours, contact) ---------- */
  .info-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--line);
  }
  .info-row:last-child { border-bottom: none; }
  .info-row dt {
    margin: 0;
    font-weight: 600;
    font-size: 0.94rem;
  }
  .info-row dd {
    margin: 0;
    font-size: 0.9rem;
    color: var(--ink-soft);
    text-align: right;
  }
  .info-row dd a { color: inherit; }

  /* ---------- Buttons / CTAs ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.9rem;
    padding: 0.65rem 1.3rem;
    border-radius: 0.5rem;
    background: var(--orange);
    color: #fff8ec;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    border: 1px solid var(--orange);
  }
  .btn:hover { background: var(--rust); border-color: var(--rust); }
  .btn:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }
  .btn-ghost {
    background: transparent;
    color: var(--rust);
  }
  .btn-ghost:hover { background: var(--orange-wash); }

  /* ---------- FAQ accordion ---------- */
  .faq-item {
    border-bottom: 1px dashed var(--line);
    padding: 0.1rem 0;
  }
  .faq-item:last-child { border-bottom: none; }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.15rem;
    text-wrap: balance;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+";
    flex: none;
    color: var(--orange);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 0.15s ease;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item summary:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }
  .faq-answer {
    margin: 0 0 1.1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  /* ---------- Photo gallery ---------- */
  body.gallery-page .page { max-width: 60rem; }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
    gap: 0.6rem;
    padding: 0.3rem 1.5rem 0;
  }
  .gallery-grid a {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow);
  }
  .gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
  }
  .gallery-grid a:hover img { transform: scale(1.05); }
  .gallery-grid a:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }

  /* ---------- Lightbox ---------- */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 9, 6, 0.94);
    padding: 3.5rem 1rem;
  }
  .lightbox[hidden] { display: none; }

  .lightbox-img {
    max-width: min(92vw, 64rem);
    max-height: calc(100dvh - 5rem);
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    appearance: none;
    border: 1px solid rgba(255, 248, 236, 0.3);
    background: rgba(255, 248, 236, 0.08);
    color: #fff8ec;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .lightbox-close:hover,
  .lightbox-prev:hover,
  .lightbox-next:hover {
    background: var(--orange);
    border-color: var(--orange);
  }
  .lightbox-close:focus-visible,
  .lightbox-prev:focus-visible,
  .lightbox-next:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
  }

  .lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.5rem;
  }

  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.1rem;
  }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }

  .lightbox-counter {
    position: absolute;
    bottom: 1.1rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    color: #fff8ec;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    font-variant-numeric: tabular-nums;
    opacity: 0.85;
  }

  @media (min-width: 640px) {
    .lightbox-close { top: 1.5rem; right: 1.5rem; }
    .lightbox-prev { left: 1.5rem; }
    .lightbox-next { right: 1.5rem; }
  }

  /* ---------- Cookie banner (consent.js) ---------- */
  .cookie-banner {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    z-index: 2147483000;
    max-width: 34rem;
    margin: 0 auto;
    padding: 1rem 1.1rem;
    background: var(--card);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 0.6rem;
    box-shadow: 0 6px 24px var(--shadow), 0 1px 3px var(--shadow);
  }
  .cookie-text { margin: 0 0 0.85rem; font-size: 0.85rem; line-height: 1.45; }
  .cookie-actions { display: flex; gap: 0.6rem; }
  .cookie-btn {
    flex: 1;
    appearance: none;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--orange);
    border-radius: 0.4rem;
    background: var(--card);
    color: var(--ink);
    font: 600 0.85rem "Work Sans", sans-serif;
  }
  .cookie-btn:hover { background: var(--orange-wash); }
  .cookie-btn:focus-visible, .cookie-reopen:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }
  .cookie-reopen {
    appearance: none;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font: inherit;
    text-decoration: underline;
  }

  /* ---------- Legal / privacy pages ---------- */
  .prose-legal h2 {
    margin: 1.8rem 0 0.55rem;
    font-family: "Work Sans", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--orange);
  }
  .prose-legal h2:first-child { margin-top: 0.4rem; }
  .prose-legal ul { margin: 0 0 1rem; padding-left: 1.2rem; }
  .prose-legal li { margin-bottom: 0.55rem; }
  .prose-legal a { color: var(--rust); overflow-wrap: anywhere; }
  .prose-legal code { font-size: 0.85em; overflow-wrap: anywhere; }
  .cookie-text a { color: var(--rust); }

  /* ---------- Announcement strip (announcement.js) + its staff editor ---------- */
  .announce {
    margin: 1rem 1.5rem 0;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(241, 145, 9, 0.4);
    border-radius: 0.5rem;
    background: var(--orange-wash);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
    text-wrap: balance;
  }
  .announce-editor { display: none; margin: 0.8rem 1.5rem 0; }
  body[data-local-staffmode="true"] .announce-editor { display: block; }
  .announce-editor-label { margin: 0 0 0.3rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); }
  .announce-edit {
    margin: 0;
    min-height: 2.4rem;
    padding: 0.55rem 0.8rem;
    border: 1px dashed var(--orange);
    border-radius: 0.5rem;
    background: var(--card);
    font-size: 0.9rem;
  }
  .announce-edit:empty::before { content: attr(data-placeholder); opacity: 0.45; }
  .announce-edit:focus { outline: 2px solid var(--rust); outline-offset: 2px; }
  .cta-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
  .prose-legal a.btn { color: #fff8ec; text-decoration: none; }
  .prose-legal a.btn-ghost { color: var(--rust); }
  .photo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin: 0 1.5rem 1.3rem;
  }
  .photo-pair img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 0.7rem;
    box-shadow: 0 6px 20px var(--shadow);
  }

  /* ---------- Staff editor shell (NL / EN / FR frames, one save button) ---------- */
  body.editor-open { overflow: hidden; }
  .editor-shell {
    position: fixed;
    inset: 0;
    z-index: 2147483600;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    background: var(--cream);
  }
  .editor-shell-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    padding: 0.55rem 0.9rem;
    background: var(--rust);
    color: #fff8ec;
    font-size: 0.8rem;
    font-weight: 600;
  }
  .editor-langs { display: flex; gap: 0.35rem; }
  .editor-shell-bar button {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    cursor: pointer;
  }
  .editor-shell-bar button:disabled { opacity: 0.5; cursor: default; }
  .editor-shell-bar .editor-lang[aria-selected="true"] { background: #fff8ec; color: var(--rust); border-color: #fff8ec; }
  .editor-shell-bar .editor-lang.dirty::after { content: " \25CF"; }
  .editor-shell-bar .editor-lang.loading { opacity: 0.55; }
  .editor-shell-bar .editor-lang.failed { text-decoration: line-through; opacity: 0.6; }
  .editor-shell-bar .editor-save { background: #fff8ec; color: var(--rust); border-color: #fff8ec; }
  .editor-status { flex: 1 1 10rem; min-width: 8rem; font-weight: 500; }
  .editor-status.ok::before { content: "\2713  "; }
  .editor-status.err { background: rgba(0, 0, 0, 0.25); padding: 0.25rem 0.5rem; border-radius: 0.4rem; }
  .editor-frame { flex: 1 1 auto; width: 100%; min-height: 0; border: 0; background: var(--cream); }
  .editor-frame[hidden] { display: none; }

  /* The menu page as shown inside the editor: only the editable part. */
  html.embedded .langswitch,
  html.embedded .sitenav,
  html.embedded header.hero,
  html.embedded footer,
  html.embedded .announce { display: none !important; }
  html.embedded .tabs { margin-top: 0; }
  /* The reservation widget must not float on top of the editor. */
  body.editor-open #gstpln-widget-host,
  body.editor-open > iframe { display: none !important; }

  /* Short, quiet location note under the homepage photo. */
  .home-intro {
    max-width: 34rem;
    margin: 1rem auto 0.3rem;
    padding: 0 1.5rem;
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--ink-soft);
    text-align: center;
    text-wrap: balance;
  }
  .home-intro p { margin: 0; }
