/* ==========================================================================
   EMBER & OAK — Restaurant & Café Kit
   A premium, dependency-free HTML template kit for restaurants, cafés,
   bistros, wine bars and bakeries.
   --------------------------------------------------------------------------
   No frameworks. No build step. No network requests. Works from file://
   --------------------------------------------------------------------------
   TABLE OF CONTENTS
     01. Design tokens (:root)
     02. Dark theme
     03. Reset & base
     04. Typography
     05. Layout primitives
     06. Buttons
     07. Header & navigation
     08. Mobile drawer
     09. Footer
     10. Eyebrows, pills, tags, rules
     11. Cards & surfaces
     12. Photo compositions (.ph — CSS-generated imagery)
     13. Hero
     14. Feature rows & story blocks
     15. Signature dishes
     16. Menu (tabs, items, dietary key)
     17. Gallery, filters & lightbox
     18. Testimonials
     19. Hours, tables & info lists
     20. Accordion / FAQ
     21. Stats, steps & marquee strip
     22. Forms
     23. CTA bands
     24. Utilities
     25. Motion & reveal
     26. Print
   ========================================================================== */


/* ==========================================================================
   01. DESIGN TOKENS
   --------------------------------------------------------------------------
   REBRAND IN 60 SECONDS — change these six variables and the whole kit
   follows. Everything else is derived from them or from the neutral ramp.

     --brand           the ember accent: links, prices, active states
     --brand-strong    hover / pressed accent
     --brand-contrast  text colour that sits on top of --brand
     --brand-soft      soft tint of the accent, used for chips and callouts
     --ink             the near-black used for headings and dark surfaces
     --radius          global corner rounding (this kit is editorial: keep it small)

   Then, if you want a different mood, swap the warm neutral ramp below for
   a cool one. The dark theme in section 02 mirrors the same names.
   ========================================================================== */

:root {
  color-scheme: light;

  /* -- Brand ------------------------------------------------------------ */
  --brand: #a8481f;
  --brand-strong: #8a3814;
  --brand-contrast: #fff8f2;
  --brand-soft: #f6e6db;
  --ink: #1e1a16;
  --radius: 6px;

  /* The accent, lightened so it still clears 4.5:1 on the dark "ink"
     surfaces (hero, CTA bands, footer) while the light theme is active. */
  --brand-on-ink: #ef9166;

  /* -- Secondary accent (herb green — dietary marks, "fresh" signals) --- */
  --accent-2: #3f6b47;
  --accent-2-soft: #e6efe6;

  /* -- Warm neutral ramp ------------------------------------------------ */
  --bg: #fbf6ee;
  --bg-subtle: #f5eee2;
  --bg-inset: #efe6d7;
  --surface: #fffdf9;
  --surface-2: #fbf7f0;
  --surface-raised: #ffffff;

  --border: #e6dbc9;
  --border-strong: #d5c7b0;
  --border-hover: #c2b096;

  --text: #1e1a16;
  --text-muted: #5b5147;
  --text-subtle: #6f6558;
  --text-inverse: #fbf6ee;

  /* -- Dark editorial surface (used for the hero and CTA bands) --------- */
  --ink-surface: #1e1a16;
  --ink-surface-2: #272119;
  --ink-border: rgba(251, 246, 238, 0.16);
  --ink-text: #f6efe4;
  --ink-text-muted: #c3b6a4;

  /* -- Semantic --------------------------------------------------------- */
  --success: #2f6b45;
  --success-soft: #e6f0e8;
  --warning: #96620a;
  --warning-soft: #faf0dd;
  --danger: #a83228;
  --danger-soft: #f9e9e6;

  /* -- Primary action --------------------------------------------------- */
  --primary-bg: #1e1a16;
  --primary-bg-hover: #322b23;
  --primary-fg: #fbf6ee;

  /* -- Elevation -------------------------------------------------------- */
  --shadow-xs: 0 1px 2px rgba(43, 32, 20, 0.06);
  --shadow-sm: 0 1px 3px rgba(43, 32, 20, 0.07), 0 1px 2px rgba(43, 32, 20, 0.05);
  --shadow-md: 0 6px 16px -4px rgba(43, 32, 20, 0.10), 0 2px 6px -2px rgba(43, 32, 20, 0.06);
  --shadow-lg: 0 22px 46px -16px rgba(43, 32, 20, 0.20), 0 8px 16px -8px rgba(43, 32, 20, 0.10);
  --shadow-xl: 0 42px 90px -30px rgba(43, 32, 20, 0.30), 0 12px 28px -14px rgba(43, 32, 20, 0.14);
  --ring: 0 0 0 3px color-mix(in srgb, var(--brand) 34%, transparent);

  /* -- Type ------------------------------------------------------------- */
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
    Georgia, "Times New Roman", Times, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
    "Liberation Mono", "Courier New", monospace;

  --step--2: clamp(0.72rem, 0.70rem + 0.10vw, 0.78rem);
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.91rem);
  --step-0: clamp(0.97rem, 0.94rem + 0.17vw, 1.06rem);
  --step-1: clamp(1.11rem, 1.05rem + 0.31vw, 1.30rem);
  --step-2: clamp(1.32rem, 1.20rem + 0.58vw, 1.66rem);
  --step-3: clamp(1.58rem, 1.36rem + 1.06vw, 2.20rem);
  --step-4: clamp(1.90rem, 1.51rem + 1.86vw, 3.00rem);
  --step-5: clamp(2.28rem, 1.63rem + 3.10vw, 4.10rem);
  --step-6: clamp(2.55rem, 1.72rem + 3.95vw, 4.60rem);

  /* -- Space ------------------------------------------------------------ */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.5rem;
  --sp-8: 3rem;
  --sp-9: 4rem;
  --sp-10: 5rem;
  --sp-11: 6.5rem;
  --sp-12: 8rem;

  /* -- Structure -------------------------------------------------------- */
  --container: 1180px;
  --container-wide: 1360px;
  --container-narrow: 760px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 260ms;
}


/* ==========================================================================
   02. DARK THEME
   --------------------------------------------------------------------------
   Applied when the OS asks for it (unless the visitor forced light) and when
   the visitor explicitly picks dark. Both blocks carry the same values.
   ========================================================================== */

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;

    --brand: #e8875a;
    --brand-strong: #f2a37c;
    --brand-contrast: #2a1409;
    --brand-soft: rgba(232, 135, 90, 0.15);
    --brand-on-ink: #e8875a;
    --ink: #f4ede3;

    --accent-2: #86c191;
    --accent-2-soft: rgba(134, 193, 145, 0.14);

    --bg: #14110e;
    --bg-subtle: #191512;
    --bg-inset: #201b16;
    --surface: #1c1815;
    --surface-2: #211c18;
    --surface-raised: #262019;

    --border: #322b23;
    --border-strong: #443a30;
    --border-hover: #57493c;

    --text: #f4ede3;
    --text-muted: #b6a99a;
    --text-subtle: #968878;
    --text-inverse: #14110e;

    --ink-surface: #1c1815;
    --ink-surface-2: #241e19;
    --ink-border: rgba(244, 237, 227, 0.14);
    --ink-text: #f4ede3;
    --ink-text-muted: #b6a99a;

    --success: #7fc08d;
    --success-soft: rgba(127, 192, 141, 0.13);
    --warning: #e5b463;
    --warning-soft: rgba(229, 180, 99, 0.13);
    --danger: #ef8a7d;
    --danger-soft: rgba(239, 138, 125, 0.13);

    --primary-bg: #f4ede3;
    --primary-bg-hover: #ffffff;
    --primary-fg: #17130f;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.45);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 6px 18px -4px rgba(0, 0, 0, 0.62), 0 2px 6px -2px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 24px 50px -18px rgba(0, 0, 0, 0.78), 0 8px 18px -8px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 46px 100px -32px rgba(0, 0, 0, 0.88), 0 14px 30px -16px rgba(0, 0, 0, 0.6);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;

  --brand: #e8875a;
  --brand-strong: #f2a37c;
  --brand-contrast: #2a1409;
  --brand-soft: rgba(232, 135, 90, 0.15);
  --brand-on-ink: #e8875a;
  --ink: #f4ede3;

  --accent-2: #86c191;
  --accent-2-soft: rgba(134, 193, 145, 0.14);

  --bg: #14110e;
  --bg-subtle: #191512;
  --bg-inset: #201b16;
  --surface: #1c1815;
  --surface-2: #211c18;
  --surface-raised: #262019;

  --border: #322b23;
  --border-strong: #443a30;
  --border-hover: #57493c;

  --text: #f4ede3;
  --text-muted: #b6a99a;
  --text-subtle: #968878;
  --text-inverse: #14110e;

  --ink-surface: #1c1815;
  --ink-surface-2: #241e19;
  --ink-border: rgba(244, 237, 227, 0.14);
  --ink-text: #f4ede3;
  --ink-text-muted: #b6a99a;

  --success: #7fc08d;
  --success-soft: rgba(127, 192, 141, 0.13);
  --warning: #e5b463;
  --warning-soft: rgba(229, 180, 99, 0.13);
  --danger: #ef8a7d;
  --danger-soft: rgba(239, 138, 125, 0.13);

  --primary-bg: #f4ede3;
  --primary-bg-hover: #ffffff;
  --primary-fg: #17130f;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 6px 18px -4px rgba(0, 0, 0, 0.62), 0 2px 6px -2px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 50px -18px rgba(0, 0, 0, 0.78), 0 8px 18px -8px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 46px 100px -32px rgba(0, 0, 0, 0.88), 0 14px 30px -16px rgba(0, 0, 0, 0.6);
}


/* ==========================================================================
   03. RESET & BASE
   ========================================================================== */

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  min-height: 100vh;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 320ms var(--ease), color 320ms var(--ease);
}

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

a {
  color: var(--brand);
  text-decoration-color: color-mix(in srgb, var(--brand) 38%, transparent);
  text-underline-offset: 3px;
  transition: color 160ms var(--ease), text-decoration-color 160ms var(--ease);
}

a:hover {
  color: var(--brand-strong);
  text-decoration-color: currentColor;
}

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

::selection {
  background: color-mix(in srgb, var(--brand) 26%, transparent);
  color: var(--text);
}

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

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: var(--sp-4);
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--brand);
  color: var(--brand-contrast);
  border-radius: var(--radius);
  font-weight: 650;
  font-size: var(--step--1);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 200ms var(--ease-out);
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline-offset: 4px;
}


/* ==========================================================================
   04. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.014em;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
h5 { font-size: var(--step-0); }

p { text-wrap: pretty; }

.display {
  font-size: var(--step-6);
  line-height: 1.02;
  letter-spacing: -0.022em;
}

.title-xl { font-size: var(--step-5); }
.title-lg { font-size: var(--step-4); }
.title-md { font-size: var(--step-3); }
.title-sm { font-size: var(--step-2); }

.lede {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 62ch;
}

.text-muted { color: var(--text-muted); }
.text-subtle { color: var(--text-subtle); }
.text-brand { color: var(--brand); }
.text-sm { font-size: var(--step--1); }
.text-xs { font-size: var(--step--2); }

.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 1.9em; }
.prose h3 { margin-top: 1.7em; }
.prose p { color: var(--text-muted); }
.prose strong { color: var(--text); font-weight: 650; }
.prose ul {
  padding-left: 1.15rem;
  color: var(--text-muted);
}
.prose li + li { margin-top: 0.45em; }
.prose li::marker { color: var(--brand); }

/* A large opening paragraph with a drop cap — very editorial. */
.prose--drop > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 3.6em;
  line-height: 0.78;
  padding: 0.06em 0.10em 0 0;
  color: var(--brand);
  font-weight: 600;
}


/* ==========================================================================
   05. LAYOUT PRIMITIVES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
  position: relative;
}

.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }
.section--alt { background: var(--bg-subtle); }
.section--inset { background: var(--bg-inset); }

.section--ink {
  background: var(--ink-surface);
  color: var(--ink-text);
}
.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4 { color: var(--ink-text); }
.section--ink .lede,
.section--ink p { color: var(--ink-text-muted); }
.section--ink .eyebrow { color: var(--brand-on-ink); }

.section-head {
  max-width: 66ch;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  margin-top: var(--sp-4);
  color: var(--text-muted);
  font-size: var(--step-1);
  line-height: 1.6;
}

.section-head--split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-5);
}

.section-head--split > div { max-width: 56ch; }

.grid { display: grid; gap: clamp(1.15rem, 2.4vw, 1.9rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.grid--auto-lg { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }

.stack { display: grid; gap: var(--sp-4); }
.stack--lg { gap: var(--sp-6); }
.stack--sm { gap: var(--sp-2); }

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

.cluster--lg { gap: var(--sp-5); }
.cluster--center { justify-content: center; }

@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); }
}

@media (max-width: 640px) {
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: minmax(0, 1fr); }
}


/* ==========================================================================
   06. BUTTONS
   ========================================================================== */

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-border: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.82em 1.5em;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 650;
  letter-spacing: 0.012em;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease),
    color 180ms var(--ease), transform 180ms var(--ease), box-shadow 220ms var(--ease);
}

.btn svg { width: 1.05em; height: 1.05em; flex: none; }

/* Sheen that sweeps across on hover — subtle, appetising. */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.22) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 620ms var(--ease-out);
  pointer-events: none;
}

.btn:hover::after { transform: translateX(120%); }

.btn:active { transform: translateY(1px); }

.btn--primary {
  --btn-bg: var(--brand);
  --btn-fg: var(--brand-contrast);
  --btn-border: var(--brand);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  --btn-bg: var(--brand-strong);
  --btn-border: var(--brand-strong);
  color: var(--brand-contrast);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--ink {
  --btn-bg: var(--primary-bg);
  --btn-fg: var(--primary-fg);
  --btn-border: var(--primary-bg);
  box-shadow: var(--shadow-sm);
}
.btn--ink:hover {
  --btn-bg: var(--primary-bg-hover);
  --btn-border: var(--primary-bg-hover);
  color: var(--primary-fg);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--secondary {
  --btn-bg: var(--surface);
  --btn-fg: var(--text);
  --btn-border: var(--border-strong);
}
.btn--secondary:hover {
  --btn-border: var(--border-hover);
  --btn-bg: var(--surface-raised);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn--ghost {
  --btn-fg: var(--text);
  --btn-border: transparent;
  padding-inline: 1em;
}
.btn--ghost:hover {
  --btn-bg: var(--bg-inset);
  color: var(--text);
}

/* On the dark hero / ink bands. */
.btn--outline-light {
  --btn-fg: var(--ink-text);
  --btn-border: var(--ink-border);
  --btn-bg: transparent;
}
.btn--outline-light:hover {
  --btn-bg: rgba(255, 255, 255, 0.09);
  --btn-border: rgba(255, 255, 255, 0.36);
  color: var(--ink-text);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 1.02em 1.9em;
  font-size: var(--step-0);
}

.btn--sm {
  padding: 0.6em 1.05em;
  font-size: var(--step--2);
}

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

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

/* Text link with a travelling underline. */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 650;
  font-size: var(--step--1);
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.link-arrow svg {
  width: 1em;
  height: 1em;
  transition: transform 240ms var(--ease-out);
}

.link-arrow:hover svg { transform: translateX(4px); }

.link-arrow span {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size 280ms var(--ease-out);
}

.link-arrow:hover span { background-size: 100% 1px; }


/* ==========================================================================
   07. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: background-color 260ms var(--ease), border-color 260ms var(--ease),
    box-shadow 260ms var(--ease), backdrop-filter 260ms var(--ease);
}

@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
  .site-header {
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
  }
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header > .container {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--text);
  text-decoration: none;
  margin-right: auto;
  flex: none;
}

.brand:hover { color: var(--text); }

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: var(--brand-contrast);
  box-shadow: var(--shadow-xs);
  transition: transform 320ms var(--ease-out);
}

.brand-mark svg { width: 19px; height: 19px; }

.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text small {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  position: relative;
  padding: 0.5rem 0.78rem;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: var(--step--1);
  font-weight: 560;
  text-decoration: none;
  transition: color 170ms var(--ease), background-color 170ms var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0.78rem;
  right: 0.78rem;
  bottom: 0.24rem;
  height: 1.5px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }

.nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 640;
}
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: none;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  color: var(--text-muted);
  transition: color 170ms var(--ease), background-color 170ms var(--ease),
    border-color 170ms var(--ease);
}

.icon-btn svg { width: 19px; height: 19px; }

.icon-btn:hover {
  color: var(--text);
  background: var(--bg-inset);
  border-color: var(--border);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}

.nav-toggle { display: none; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding-inline: 0.5rem;
}
.header-phone svg { width: 15px; height: 15px; color: var(--brand); }
.header-phone:hover { color: var(--text); }

@media (max-width: 1080px) {
  .header-phone { display: none; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: grid; }
  .header-cta--desktop { display: none; }
}


/* ==========================================================================
   08. MOBILE DRAWER
   ========================================================================== */

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 88;
  background: var(--bg);
  padding: var(--sp-5) clamp(1.15rem, 5vw, 2rem) var(--sp-8);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 240ms var(--ease), transform 300ms var(--ease-out),
    visibility 0s linear 240ms;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-nav ul { display: grid; gap: 0.1rem; }

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0.35rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--step-2);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
}

.mobile-nav.is-open a {
  animation: drawer-in 420ms var(--ease-out) forwards;
}

.mobile-nav.is-open li:nth-child(1) a { animation-delay: 40ms; }
.mobile-nav.is-open li:nth-child(2) a { animation-delay: 80ms; }
.mobile-nav.is-open li:nth-child(3) a { animation-delay: 120ms; }
.mobile-nav.is-open li:nth-child(4) a { animation-delay: 160ms; }
.mobile-nav.is-open li:nth-child(5) a { animation-delay: 200ms; }
.mobile-nav.is-open li:nth-child(6) a { animation-delay: 240ms; }

@keyframes drawer-in {
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav a[aria-current="page"] { color: var(--brand); }

.mobile-nav a svg { width: 16px; height: 16px; color: var(--text-subtle); }

.mobile-nav-foot {
  margin-top: var(--sp-7);
  display: grid;
  gap: var(--sp-3);
}

.mobile-nav-meta {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  font-size: var(--step--1);
  color: var(--text-muted);
  display: grid;
  gap: var(--sp-2);
}

@media (min-width: 901px) {
  .mobile-nav { display: none; }
}


/* ==========================================================================
   09. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--ink-surface);
  color: var(--ink-text);
  padding-block: clamp(3rem, 6vw, 5rem) var(--sp-6);
  margin-top: auto;
}

.site-footer ul { list-style: none; padding-left: 0; margin: 0; }
.site-footer a { color: var(--ink-text-muted); text-decoration: none; }
.site-footer a:hover { color: var(--ink-text); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(2.2rem, 4vw, 3.2rem);
  border-bottom: 1px solid var(--ink-border);
}

.footer-brand .brand { color: var(--ink-text); margin-right: 0; }
.footer-brand p {
  margin-top: var(--sp-4);
  color: var(--ink-text-muted);
  font-size: var(--step--1);
  max-width: 34ch;
  line-height: 1.7;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-text);
  margin-bottom: var(--sp-4);
}

.footer-col ul { display: grid; gap: 0.62rem; }
.footer-col li { font-size: var(--step--1); }
.footer-col address {
  font-style: normal;
  font-size: var(--step--1);
  color: var(--ink-text-muted);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  font-size: var(--step--2);
  color: var(--ink-text-muted);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.social {
  display: flex;
  gap: 0.4rem;
  margin-top: var(--sp-5);
}

.social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ink-border);
  color: var(--ink-text-muted);
  transition: color 180ms var(--ease), border-color 180ms var(--ease),
    background-color 180ms var(--ease), transform 220ms var(--ease-out);
}

.social a svg { width: 17px; height: 17px; }

.social a:hover {
  color: var(--ink-text);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
}


/* ==========================================================================
   10. EYEBROWS, PILLS, TAGS, RULES
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-4);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.eyebrow--center {
  display: flex;
  justify-content: center;
}

.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: var(--step--2);
  font-weight: 600;
  line-height: 1.3;
}

.pill svg { width: 13px; height: 13px; }
.pill--brand {
  background: var(--brand-soft);
  border-color: color-mix(in srgb, var(--brand) 30%, transparent);
  color: var(--brand);
}
.pill--green {
  background: var(--accent-2-soft);
  border-color: color-mix(in srgb, var(--accent-2) 34%, transparent);
  color: var(--accent-2);
}
.pill--ink {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--ink-border);
  color: var(--ink-text);
}

.tag {
  display: inline-grid;
  place-items: center;
  min-width: 1.42rem;
  height: 1.42rem;
  padding-inline: 0.34rem;
  border-radius: 4px;
  background: var(--bg-inset);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tag--v { background: var(--accent-2-soft); border-color: color-mix(in srgb, var(--accent-2) 34%, transparent); color: var(--accent-2); }
.tag--gf { background: var(--warning-soft); border-color: color-mix(in srgb, var(--warning) 34%, transparent); color: var(--warning); }
.tag--spicy { background: var(--danger-soft); border-color: color-mix(in srgb, var(--danger) 34%, transparent); color: var(--danger); }

.rule-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--border-strong);
  margin-block: var(--sp-6);
}

.rule-ornament::before,
.rule-ornament::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: currentColor;
}

.rule-ornament svg { width: 16px; height: 16px; color: var(--brand); }


/* ==========================================================================
   11. CARDS & SURFACES
   ========================================================================== */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  transition: border-color 240ms var(--ease), box-shadow 280ms var(--ease),
    transform 340ms var(--ease-out), background-color 240ms var(--ease);
}

.card--hover:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-body {
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.card-body > p { color: var(--text-muted); font-size: var(--step--1); line-height: 1.7; }

.card-title {
  font-size: var(--step-2);
  line-height: 1.2;
}

.card-media {
  position: relative;
  overflow: hidden;
}

.card-media .ph {
  border-radius: 0;
  transition: transform 700ms var(--ease-out);
}

.card--hover:hover .card-media .ph { transform: scale(1.05); }

.card-foot {
  margin-top: auto;
  padding-top: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

/* Whole-card link: keeps a single focusable element but a big hit area. */
.card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Small icon-led feature card. */
.feature {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  transition: border-color 240ms var(--ease), box-shadow 280ms var(--ease),
    transform 340ms var(--ease-out);
}

.feature:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature h3 { font-size: var(--step-1); }
.feature p { color: var(--text-muted); font-size: var(--step--1); line-height: 1.7; }

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  transition: transform 380ms var(--ease-out), background-color 240ms var(--ease);
}

.feature-icon svg { width: 22px; height: 22px; }

.feature:hover .feature-icon { transform: scale(1.07) rotate(-4deg); }

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

.panel--inset { background: var(--bg-subtle); }
.panel--brand {
  background: var(--brand-soft);
  border-color: color-mix(in srgb, var(--brand) 26%, transparent);
}

.callout {
  display: flex;
  gap: var(--sp-4);
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid color-mix(in srgb, var(--brand) 26%, transparent);
  background: var(--brand-soft);
  font-size: var(--step--1);
  line-height: 1.7;
  color: var(--text-muted);
}

.callout svg {
  width: 21px;
  height: 21px;
  flex: none;
  color: var(--brand);
  margin-top: 0.15em;
}

.callout strong { color: var(--text); display: block; margin-bottom: 0.2em; font-weight: 650; }

.callout--muted {
  background: var(--bg-subtle);
  border-color: var(--border);
}
.callout--muted svg { color: var(--text-subtle); }


/* ==========================================================================
   12. PHOTO COMPOSITIONS
   --------------------------------------------------------------------------
   Every "photograph" in this kit is generated with CSS gradients so the
   template ships with zero image weight and zero network requests.

   SWAP IN REAL PHOTOGRAPHY:
     Replace   <div class="ph ph-dish ph-dish--octopus" role="img" aria-label="…">
     with      <img class="ph" src="images/octopus.jpg" alt="…" loading="lazy">
     The .ph class already handles aspect ratio, rounding and object-fit.
   ========================================================================== */

.ph {
  display: block;
  position: relative;
  /* A size container, so every composition inside can scale from the SHORTER
     edge (cqmin). That keeps a plate round and correctly sized whether the
     frame is a wide card, a square, or a tall masonry cell. */
  container-type: size;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  background-color: var(--bg-inset);
  object-fit: cover;
  isolation: isolate;
}

.ph--square { aspect-ratio: 1 / 1; }
.ph--wide { aspect-ratio: 16 / 9; }
.ph--ultra { aspect-ratio: 21 / 9; }
.ph--portrait { aspect-ratio: 3 / 4; }
.ph--tall { aspect-ratio: 2 / 3; }
.ph--fill { height: 100%; aspect-ratio: auto; }

/* Soft top-light every composition shares — this is what stops them
   reading as flat CSS shapes. */
.ph::before,
.ph::after { content: ""; position: absolute; pointer-events: none; }

/* --------------------------------------------------------------------------
   12a. Plated dishes (top-down)
   -------------------------------------------------------------------------- */

.ph-dish {
  --table: #d8c6ab;
  --table-2: #bda78a;
  --plate: #fdfbf7;
  --plate-2: #e9e0d1;
  --f1: #c2532a;
  --f2: #6f8f45;
  --f3: #e2a942;
  --f4: #8c3b1c;
  background-image:
    /* window light falling across the table */
    radial-gradient(72% 58% at 76% 2%, rgba(255, 246, 228, 0.72), transparent 66%),
    radial-gradient(64% 56% at 8% 100%, rgba(52, 33, 16, 0.38), transparent 68%),
    /* timber grain */
    repeating-linear-gradient(
      93deg,
      rgba(88, 58, 30, 0.045) 0 3px,
      rgba(255, 242, 220, 0.030) 3px 9px,
      rgba(88, 58, 30, 0.020) 9px 26px
    ),
    repeating-linear-gradient(
      87deg,
      transparent 0 34px,
      rgba(72, 46, 22, 0.055) 34px 36px
    ),
    linear-gradient(158deg, var(--table) 0%, var(--table-2) 100%);
}

/* the plate */
.ph-dish::before {
  left: 50%;
  top: 50%;
  width: 80cqmin;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-image:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.9), transparent 55%),
    radial-gradient(circle at 50% 50%,
      var(--plate) 0 55%,
      var(--plate-2) 56% 60%,
      var(--plate) 61% 100%);
  box-shadow:
    0 22px 40px -16px rgba(52, 34, 16, 0.55),
    inset 0 0 0 1px rgba(90, 66, 40, 0.10);
}

/* the food — soft-edged so it reads as produce, not discs */
.ph-dish::after {
  left: 50%;
  top: 50%;
  width: 57cqmin;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(var(--plate-rot, -6deg));
  border-radius: 50%;
  background-image:
    /* micro-garnish */
    radial-gradient(circle at 46% 22%, rgba(255, 252, 240, 0.85) 0 1.6%, transparent 2.4%),
    radial-gradient(circle at 71% 55%, rgba(255, 252, 240, 0.7) 0 1.2%, transparent 2%),
    radial-gradient(circle at 28% 58%, rgba(120, 158, 82, 0.9) 0 2.4%, transparent 3.4%),
    radial-gradient(circle at 58% 78%, rgba(120, 158, 82, 0.75) 0 2%, transparent 3%),
    /* highlights */
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.34) 0 6%, transparent 16%),
    /* the components */
    radial-gradient(circle at 33% 37%,
      color-mix(in srgb, var(--f1) 88%, #fff) 0 12%,
      var(--f1) 20% 27%,
      color-mix(in srgb, var(--f1) 70%, #000) 29%,
      transparent 32%),
    radial-gradient(circle at 66% 31%,
      color-mix(in srgb, var(--f2) 86%, #fff) 0 9%,
      var(--f2) 16% 21%,
      color-mix(in srgb, var(--f2) 72%, #000) 23%,
      transparent 26%),
    radial-gradient(circle at 63% 67%,
      color-mix(in srgb, var(--f3) 88%, #fff) 0 10%,
      var(--f3) 18% 24%,
      color-mix(in srgb, var(--f3) 74%, #000) 26%,
      transparent 29%),
    radial-gradient(circle at 34% 69%,
      var(--f4) 0 15%,
      color-mix(in srgb, var(--f4) 76%, #000) 18%,
      transparent 21%),
    radial-gradient(circle at 49% 50%,
      color-mix(in srgb, var(--f1) 78%, var(--f3)) 0 13%,
      transparent 17%);
  box-shadow:
    0 6px 14px -6px rgba(50, 30, 12, 0.55);
  filter: saturate(1.06) contrast(1.02);
}

.ph-dish:nth-of-type(2n) { --plate-rot: 9deg; }
.ph-dish:nth-of-type(3n) { --plate-rot: -14deg; }

/* Signature-dish colourways ------------------------------------------------ */
.ph-dish--ember   { --f1: #b8431f; --f2: #7e9a4a; --f3: #e8b04b; --f4: #6d2a12; }
.ph-dish--octopus { --f1: #8c3a24; --f2: #5f8a52; --f3: #d9762f; --f4: #3f2a1e; --plate: #f2efe6; }
.ph-dish--risotto { --f1: #e9c66a; --f2: #86a552; --f3: #f0dca4; --f4: #c08a2e; --plate: #fbf7ee; }
.ph-dish--beet    { --f1: #8e2c4a; --f2: #6f9257; --f3: #e5cf9e; --f4: #5a1c31; --plate: #fdfcf9; }
.ph-dish--greens  { --f1: #5c8a3f; --f2: #8fae57; --f3: #d8c05a; --f4: #37622c; }
.ph-dish--dessert { --f1: #6c3a24; --f2: #d9a7b6; --f3: #f4e4c4; --f4: #40211a; --plate: #fffdfa; }
.ph-dish--bread   { --f1: #c58a41; --f2: #a9662a; --f3: #e6c88a; --f4: #7d4718; --table: #c9b193; }
.ph-dish--fish    { --f1: #d8a07a; --f2: #7fa25b; --f3: #ecd39a; --f4: #a45a34; }
.ph-dish--lamb    { --f1: #8a3721; --f2: #6d8a44; --f3: #cfa25a; --f4: #4a1f10; }
.ph-dish--pasta   { --f1: #e0a13c; --f2: #83a04c; --f3: #c04a26; --f4: #8d6420; --plate: #fbf8f1; }

/* --------------------------------------------------------------------------
   12b. Drinks (side-on glassware)
   -------------------------------------------------------------------------- */

.ph-drink {
  --d1: #7e2b1c;
  --d2: #c2532a;
  --bar: #241a14;
  --bar-top: rgba(226, 196, 152, 0.24);
  background-image:
    /* backlit bottles behind the bar */
    radial-gradient(26% 34% at 16% 22%, rgba(255, 206, 148, 0.34), transparent 70%),
    radial-gradient(22% 30% at 84% 16%, rgba(255, 174, 104, 0.28), transparent 72%),
    radial-gradient(48% 30% at 50% 8%, rgba(255, 226, 182, 0.20), transparent 76%),
    /* the bar top catching the light */
    linear-gradient(180deg, transparent 71%, var(--bar-top) 71.5% 73.5%, transparent 74%),
    linear-gradient(180deg, transparent 73%, rgba(12, 8, 5, 0.42) 82%, rgba(10, 6, 4, 0.72) 100%),
    linear-gradient(170deg, #3a2a20 0%, var(--bar) 62%, #16100c 100%);
}

/* the glass */
.ph-drink::before {
  left: 50%;
  bottom: 25%;
  width: 30cqmin;
  height: 46cqmin;
  transform: translateX(-50%);
  border-radius: 8% 8% 34% 34% / 5% 5% 20% 20%;
  background-image:
    /* rim */
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0 2.5%, transparent 3.5%),
    /* left and right specular highlights */
    linear-gradient(96deg,
      transparent 8%,
      rgba(255, 255, 255, 0.34) 11% 16%,
      transparent 19%,
      transparent 82%,
      rgba(255, 255, 255, 0.18) 85% 90%,
      transparent 93%),
    /* the surface of the liquid */
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.16) 0 8%,
      color-mix(in srgb, var(--d2) 82%, #fff) 8% 11%,
      var(--d2) 11%,
      var(--d1) 100%);
  box-shadow:
    inset 0 -10% 22% rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 6px 18px -6px rgba(0, 0, 0, 0.6);
}

/* the reflection and the shadow it casts on the bar */
.ph-drink::after {
  left: 50%;
  bottom: 12%;
  width: 44cqmin;
  height: 14cqmin;
  transform: translateX(-50%);
  border-radius: 50%;
  background-image:
    radial-gradient(ellipse at 50% 22%,
      color-mix(in srgb, var(--d2) 46%, transparent) 0 24%,
      transparent 62%),
    radial-gradient(ellipse at 50% 40%, rgba(0, 0, 0, 0.62), transparent 70%);
  filter: blur(2px);
}

.ph-drink--wine   { --d1: #5c1024; --d2: #99203c; }
.ph-drink--amber  { --d1: #8a4a10; --d2: #d18a25; }
.ph-drink--coffee { --d1: #2e1a10; --d2: #6b3d1f; }
.ph-drink--spritz { --d1: #b8420f; --d2: #f08a2a; }

/* --------------------------------------------------------------------------
   12c. Rooms & atmosphere
   -------------------------------------------------------------------------- */

.ph-scene {
  --s-warm: rgba(255, 214, 158, 0.80);
  --s-glow: rgba(255, 158, 92, 0.52);
  --s-wall-1: #6d5238;
  --s-wall-2: #3a2a1c;
  --s-floor: #2a1d13;
  --s-table: rgba(226, 196, 152, 0.30);
  background-image:
    /* pendant light pools on the back wall */
    radial-gradient(38% 30% at 20% 12%, var(--s-warm), transparent 70%),
    radial-gradient(30% 26% at 74% 8%, var(--s-glow), transparent 72%),
    radial-gradient(44% 32% at 50% 32%, rgba(255, 226, 182, 0.13), transparent 76%),
    /* wall panelling */
    repeating-linear-gradient(
      90deg,
      rgba(255, 232, 198, 0.032) 0 1px,
      transparent 1px 58px
    ),
    /* room depth */
    linear-gradient(180deg, var(--s-wall-1) 0%, var(--s-wall-2) 52%, var(--s-floor) 100%);
}

/* candles, glassware and hanging bulbs */
.ph-scene::before {
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 246, 220, 1) 0 1.1%, rgba(255, 206, 140, 0.42) 2.8%, transparent 6.5%),
    radial-gradient(circle at 37% 13%, rgba(255, 240, 208, 0.9) 0 1.5%, rgba(255, 196, 128, 0.28) 3.8%, transparent 8%),
    radial-gradient(circle at 62% 22%, rgba(255, 248, 224, 0.95) 0 0.9%, rgba(255, 206, 140, 0.32) 2.4%, transparent 5.5%),
    radial-gradient(circle at 82% 11%, rgba(255, 232, 186, 0.8) 0 1.3%, rgba(255, 196, 128, 0.22) 3.4%, transparent 7.5%),
    /* candle flames along the tables */
    radial-gradient(circle at 28% 62%, rgba(255, 224, 160, 0.9) 0 0.9%, rgba(255, 176, 90, 0.30) 2.6%, transparent 5%),
    radial-gradient(circle at 55% 66%, rgba(255, 224, 160, 0.8) 0 0.8%, rgba(255, 176, 90, 0.26) 2.4%, transparent 4.6%),
    radial-gradient(circle at 79% 60%, rgba(255, 224, 160, 0.7) 0 0.7%, rgba(255, 176, 90, 0.22) 2.2%, transparent 4.2%);
  filter: blur(0.3px);
}

/* table plane, reflected light and vignette */
.ph-scene::after {
  inset: 0;
  background-image:
    /* foreground silhouettes — chair backs and shoulders, softly out of focus */
    radial-gradient(ellipse 13% 20% at 17% 92%, rgba(10, 6, 3, 0.80), transparent 72%),
    radial-gradient(ellipse 10% 15% at 43% 97%, rgba(10, 6, 3, 0.66), transparent 74%),
    radial-gradient(ellipse 14% 22% at 76% 90%, rgba(10, 6, 3, 0.74), transparent 72%),
    /* the table edge catching the light */
    linear-gradient(180deg, transparent 66%, var(--s-table) 66.4% 68.4%, transparent 69%),
    linear-gradient(180deg, transparent 68%, rgba(24, 15, 9, 0.34) 74%, rgba(18, 11, 6, 0.66) 100%),
    radial-gradient(126% 92% at 50% 34%, transparent 44%, rgba(14, 9, 5, 0.62) 100%);
}

.ph-scene--dining  { --s-wall-1: #7a5a3c; --s-wall-2: #3d2b1c; }
.ph-scene--bar     { --s-warm: rgba(255, 190, 126, 0.78); --s-glow: rgba(226, 108, 58, 0.58); --s-wall-1: #6a4230; --s-wall-2: #331f16; --s-floor: #1d110c; }
.ph-scene--terrace { --s-warm: rgba(214, 236, 198, 0.68); --s-glow: rgba(255, 212, 148, 0.55); --s-wall-1: #5c7050; --s-wall-2: #2f3a28; --s-floor: #1b2014; --s-table: rgba(214, 232, 196, 0.28); }
.ph-scene--kitchen { --s-warm: rgba(255, 226, 176, 0.78); --s-glow: rgba(255, 158, 78, 0.58); --s-wall-1: #7d6f5c; --s-wall-2: #3d3428; --s-floor: #1f1a14; --s-table: rgba(240, 228, 202, 0.38); }
.ph-scene--event   { --s-warm: rgba(255, 198, 152, 0.80); --s-glow: rgba(208, 92, 52, 0.56); --s-wall-1: #74452f; --s-wall-2: #3a2118; --s-floor: #1d100c; }
.ph-scene--market  { --s-warm: rgba(240, 214, 152, 0.72); --s-glow: rgba(158, 180, 100, 0.50); --s-wall-1: #736844; --s-wall-2: #3a3320; --s-floor: #1e1b11; --s-table: rgba(232, 214, 160, 0.30); }

/* --------------------------------------------------------------------------
   12d. Portraits
   -------------------------------------------------------------------------- */

.ph-portrait-art {
  --p-bg-1: #c9a982;
  --p-bg-2: #8d6f4e;
  --p-skin: #d8ab84;
  --p-hair: #3a2a1e;
  --p-cloth: #2b2b2f;
  background-image:
    /* studio key light from the upper left */
    radial-gradient(58% 46% at 26% 8%, rgba(255, 246, 226, 0.66), transparent 66%),
    radial-gradient(40% 34% at 88% 82%, rgba(0, 0, 0, 0.22), transparent 70%),
    linear-gradient(165deg, var(--p-bg-1) 0%, var(--p-bg-2) 100%);
}

/* head, with hair falling over the crown */
.ph-portrait-art::before {
  left: 50%;
  top: 13%;
  width: 33cqmin;
  aspect-ratio: 0.8;
  transform: translateX(-50%);
  border-radius: 50% 50% 44% 44%;
  background-image:
    radial-gradient(ellipse 82% 42% at 50% -4%, var(--p-hair) 0 62%, transparent 74%),
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.42), transparent 56%),
    linear-gradient(172deg,
      var(--p-skin) 0%,
      color-mix(in srgb, var(--p-skin) 84%, #000) 76%,
      color-mix(in srgb, var(--p-skin) 62%, #000) 100%);
  box-shadow: 0 14px 26px -12px rgba(40, 24, 10, 0.55);
}

/* shoulders — they rise high enough to meet the jaw, which reads as a neck */
.ph-portrait-art::after {
  left: 50%;
  top: 56%;
  bottom: -8%;
  width: 96cqmin;
  transform: translateX(-50%);
  border-radius: 44% 44% 0 0 / 30% 30% 0 0;
  background-image:
    /* the neck, showing above the collar */
    radial-gradient(ellipse 15% 34% at 50% -2%,
      color-mix(in srgb, var(--p-skin) 78%, #000) 0 72%, transparent 84%),
    linear-gradient(172deg,
      color-mix(in srgb, var(--p-cloth) 82%, #fff) 0%,
      var(--p-cloth) 46%,
      color-mix(in srgb, var(--p-cloth) 72%, #000) 100%);
  box-shadow: 0 -12px 28px -14px rgba(0, 0, 0, 0.5);
}

.ph-portrait-art--a { --p-bg-1: #c9a982; --p-bg-2: #7d5f42; --p-skin: #d8a97f; --p-hair: #3d2b1c; --p-cloth: #24252a; }
.ph-portrait-art--b { --p-bg-1: #b9c3ac; --p-bg-2: #5f6e58; --p-skin: #b07c58; --p-hair: #241812; --p-cloth: #eae5da; }
.ph-portrait-art--c { --p-bg-1: #d5b3a4; --p-bg-2: #8a5c4c; --p-skin: #eec49c; --p-hair: #6b4326; --p-cloth: #33302b; }
.ph-portrait-art--d { --p-bg-1: #a8b6c2; --p-bg-2: #5b6a76; --p-skin: #8d5f42; --p-hair: #1c1512; --p-cloth: #2a2f36; }

/* --------------------------------------------------------------------------
   12e. Small round avatar (testimonials)
   -------------------------------------------------------------------------- */

.avatar {
  position: relative;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  background-image: linear-gradient(160deg, #c9a982, #8d6f4e);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.avatar::before,
.avatar::after { content: ""; position: absolute; }

.avatar::before {
  left: 50%;
  top: 20%;
  width: 34%;
  aspect-ratio: 0.86;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.9);
}

.avatar::after {
  left: 50%;
  bottom: -14%;
  width: 74%;
  height: 52%;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0 / 68% 68% 0 0;
  background: rgba(255, 250, 242, 0.88);
}

.avatar--2 { background-image: linear-gradient(160deg, #b9c3ac, #5f6e58); }
.avatar--3 { background-image: linear-gradient(160deg, #d5b3a4, #8a5c4c); }
.avatar--4 { background-image: linear-gradient(160deg, #a8b6c2, #5b6a76); }
.avatar--5 { background-image: linear-gradient(160deg, #d9bb7a, #96702c); }

/* Caption that sits under any composition. */
.ph-caption {
  margin-top: var(--sp-3);
  font-size: var(--step--2);
  color: var(--text-subtle);
  letter-spacing: 0.02em;
}


/* ==========================================================================
   13. HERO
   ========================================================================== */

.hero {
  position: relative;
  isolation: isolate;
  background: var(--ink-surface);
  color: var(--ink-text);
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 7.5rem) clamp(3.5rem, 8vw, 6.5rem);
}

/* Drifting ember light. Slow enough to read as ambience, not animation. */
.hero-glow {
  position: absolute;
  inset: -25% -10%;
  z-index: -2;
  background-image:
    radial-gradient(38% 44% at 18% 26%, rgba(220, 108, 52, 0.44), transparent 62%),
    radial-gradient(34% 38% at 78% 16%, rgba(196, 74, 32, 0.34), transparent 64%),
    radial-gradient(46% 50% at 62% 82%, rgba(120, 92, 40, 0.30), transparent 66%);
  filter: blur(6px);
  animation: ember-drift 26s var(--ease) infinite alternate;
}

@keyframes ember-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-3%, 2%, 0) scale(1.06); }
  100% { transform: translate3d(2.5%, -2%, 0) scale(1.02); }
}

/* Film grain — an inline SVG, so still zero network requests. */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.30;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-copy { max-width: 36ch; }

.hero h1 {
  font-size: clamp(2.45rem, 1.55rem + 3.5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.024em;
  color: var(--ink-text);
}

.hero h1 em {
  font-style: italic;
  color: var(--brand-on-ink);
}

.hero-lede {
  margin-top: var(--sp-5);
  font-size: var(--step-1);
  line-height: 1.66;
  color: var(--ink-text-muted);
  max-width: 44ch;
}

.hero-actions {
  margin-top: var(--sp-7);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.hero-meta {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--ink-border);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

.hero-meta div { min-width: 0; }

.hero-meta dt {
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-on-ink);
  margin-bottom: 0.35rem;
}

.hero-meta dd {
  margin: 0;
  font-size: var(--step--1);
  color: var(--ink-text-muted);
  line-height: 1.5;
}

/* Layered composition: a room shot with a plated dish overlapping it. */
.hero-art {
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
}

.hero-art .ph-scene {
  position: absolute;
  inset: 0 0 12% 8%;
  /* inset defines the box — stop .ph's width:100% over-constraining it */
  width: auto;
  height: auto;
  aspect-ratio: auto;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 236, 208, 0.14);
  animation: float-slow 11s var(--ease) infinite alternate;
}

.hero-art .ph-dish {
  position: absolute;
  left: -2%;
  bottom: 0;
  width: 46%;
  border-radius: 50%;
  box-shadow: var(--shadow-xl);
  animation: float-slow 9s var(--ease) 0.6s infinite alternate-reverse;
}

.hero-badge {
  position: absolute;
  right: 2%;
  top: 6%;
  display: grid;
  place-items: center;
  width: clamp(84px, 10vw, 116px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--brand);
  color: var(--brand-contrast);
  text-align: center;
  font-family: var(--font-display);
  line-height: 1.15;
  box-shadow: var(--shadow-lg);
  animation: spin-slow 40s linear infinite;
}

.hero-badge span {
  display: block;
  font-size: clamp(0.62rem, 1.1vw, 0.74rem);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
}

@keyframes float-slow {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--step--2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-text-muted);
  text-decoration: none;
}

.scroll-cue svg {
  width: 16px;
  height: 16px;
  animation: nudge 2.2s var(--ease) infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); opacity: 0.75; }
  50%      { transform: translateY(5px); opacity: 1; }
}

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 46ch; }
  .hero-art { min-height: clamp(280px, 62vw, 420px); order: 2; }
  .hero-art .ph-dish { left: 0; width: 42%; }
  .scroll-cue { display: none; }
}

/* --------------------------------------------------------------------------
   13b. Compact page header (inner pages)
   -------------------------------------------------------------------------- */

.page-head {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-surface);
  color: var(--ink-text);
  padding-block: clamp(3rem, 7vw, 5.5rem);
  text-align: center;
}

.page-head .hero-glow { animation-duration: 32s; opacity: 0.85; }

.page-head h1 {
  color: var(--ink-text);
  font-size: var(--step-5);
  max-width: 20ch;
  margin-inline: auto;
}

.page-head p {
  margin-top: var(--sp-4);
  color: var(--ink-text-muted);
  font-size: var(--step-1);
  max-width: 56ch;
  margin-inline: auto;
  line-height: 1.6;
}

.page-head .eyebrow { color: var(--brand-on-ink); justify-content: center; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--sp-5);
  font-size: var(--step--2);
  color: var(--ink-text-muted);
  letter-spacing: 0.06em;
}

.breadcrumb a { color: var(--ink-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink-text); }
.breadcrumb span[aria-hidden] { opacity: 0.5; }


/* ==========================================================================
   14. FEATURE ROWS & STORY BLOCKS
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.split--media-right .split-media { order: 2; }
.split--top { align-items: start; }
.split--narrow-copy .split-copy { max-width: 52ch; }

.split-copy h2 { margin-bottom: var(--sp-4); }
.split-copy p { color: var(--text-muted); }
.split-copy > * + * { margin-top: var(--sp-4); }

.split-media { position: relative; }

/* Two overlapping compositions — gives the page a designed, layered feel. */
.media-stack {
  position: relative;
  padding-bottom: 16%;
  padding-right: 14%;
}

.media-stack > .ph:first-child {
  box-shadow: var(--shadow-lg);
}

.media-stack > .ph:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  border: 6px solid var(--bg);
  box-shadow: var(--shadow-lg);
}

.media-frame {
  position: relative;
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-md);
}

.media-note {
  position: absolute;
  left: clamp(-1rem, -2vw, -2rem);
  bottom: clamp(-1rem, -2vw, -1.75rem);
  max-width: 15rem;
  padding: 0.9rem 1.1rem;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: var(--step--2);
  line-height: 1.55;
  color: var(--text-muted);
}

.media-note strong { display: block; color: var(--text); font-weight: 650; margin-bottom: 0.15rem; }

@media (max-width: 860px) {
  .split { grid-template-columns: minmax(0, 1fr); }
  .split--media-right .split-media { order: 0; }
  .media-note { position: static; max-width: none; margin-top: var(--sp-4); box-shadow: none; }
}

/* Value list with hairline dividers. */
.value-list { display: grid; gap: 0; }

.value-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  border-top: 1px solid var(--border);
}

.value-list li:last-child { border-bottom: 1px solid var(--border); }

.value-list h3 { font-size: var(--step-1); margin-bottom: 0.3rem; }
.value-list p { color: var(--text-muted); font-size: var(--step--1); line-height: 1.7; }

.value-num {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--brand);
  line-height: 1.2;
  min-width: 2.2rem;
}


/* ==========================================================================
   15. SIGNATURE DISHES
   ========================================================================== */

.dish-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  transition: transform 380ms var(--ease-out), box-shadow 320ms var(--ease),
    border-color 240ms var(--ease);
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.dish-card .ph {
  border-radius: 0;
  transition: transform 800ms var(--ease-out);
}

.dish-card:hover .ph { transform: scale(1.055); }

.dish-card-body {
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
  display: grid;
  gap: 0.5rem;
}

.dish-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
}

.dish-card h3 { font-size: var(--step-1); }

.dish-price {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--brand);
  white-space: nowrap;
}

.dish-card p {
  color: var(--text-muted);
  font-size: var(--step--1);
  line-height: 1.65;
}

.dish-card .cluster { margin-top: 0.25rem; }

/* Ribbon for "chef's pick" etc. */
.ribbon {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  background: var(--brand);
  color: var(--brand-contrast);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}


/* ==========================================================================
   16. MENU
   ========================================================================== */

.menu-tabs {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-bottom: 1px solid var(--border);
  padding-block: 0.7rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
  .menu-tabs {
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
  }
}

.tablist {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.tablist::-webkit-scrollbar { display: none; }

.tab {
  flex: none;
  position: relative;
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-size: var(--step--1);
  font-weight: 620;
  white-space: nowrap;
  transition: color 180ms var(--ease), background-color 200ms var(--ease),
    border-color 200ms var(--ease), transform 200ms var(--ease);
}

.tab:hover {
  color: var(--text);
  background: var(--bg-inset);
}

.tab[aria-selected="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--brand-contrast);
  box-shadow: var(--shadow-sm);
}

.tab:active { transform: scale(0.98); }

.tabpanel[hidden] { display: none; }

.tabpanel {
  animation: panel-in 420ms var(--ease-out) both;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -- The menu list itself -------------------------------------------------- */

.menu-section + .menu-section { margin-top: clamp(2.5rem, 5vw, 4rem); }

.menu-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--text);
  margin-bottom: var(--sp-5);
}

.menu-section-head h3 { font-size: var(--step-3); }
.menu-section-head p { color: var(--text-subtle); font-size: var(--step--1); font-style: italic; }

.menu-list { display: grid; gap: 0; }

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.4rem var(--sp-4);
  padding-block: var(--sp-4);
  border-bottom: 1px dashed var(--border-strong);
  transition: background-color 220ms var(--ease);
}

.menu-item:hover { background: color-mix(in srgb, var(--brand) 5%, transparent); }

.menu-item-name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--brand);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-item-desc {
  grid-column: 1 / -1;
  color: var(--text-muted);
  font-size: var(--step--1);
  line-height: 1.65;
  max-width: 62ch;
}

.menu-item .tag { transform: translateY(-1px); }

/* Two-column menu on wide screens — reads like a printed carte. */
.menu-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 800px) {
  .menu-columns { grid-template-columns: minmax(0, 1fr); }
}

.dietary-key {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding: var(--sp-4) clamp(1rem, 2.4vw, 1.5rem);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  font-size: var(--step--2);
  color: var(--text-muted);
}

.dietary-key div {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* Set-menu / tasting card */
.set-menu {
  display: grid;
  gap: var(--sp-4);
  padding: clamp(1.5rem, 3.4vw, 2.5rem);
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(180deg, var(--brand-soft) 0%, transparent 42%),
    var(--surface);
  text-align: center;
}

.set-menu .price-large {
  font-family: var(--font-display);
  font-size: var(--step-4);
  color: var(--brand);
  line-height: 1;
}

.set-menu ol {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  list-style: none;
  counter-reset: course;
  color: var(--text-muted);
  font-size: var(--step--1);
}

.set-menu ol li {
  counter-increment: course;
}

.set-menu ol li::before {
  content: counter(course);
  display: inline-block;
  min-width: 1.5em;
  font-family: var(--font-display);
  font-size: 0.95em;
  color: var(--brand);
}


/* ==========================================================================
   17. GALLERY, FILTERS & LIGHTBOX
   ========================================================================== */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.filter-btn {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-muted);
  font-size: var(--step--1);
  font-weight: 620;
  transition: color 180ms var(--ease), background-color 200ms var(--ease),
    border-color 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.filter-btn:hover {
  color: var(--text);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.filter-btn[aria-pressed="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--brand-contrast);
  box-shadow: var(--shadow-sm);
}

.filter-count {
  margin-left: auto;
  font-size: var(--step--2);
  color: var(--text-subtle);
}

/* Masonry-ish gallery built from grid spans — no JS layout needed. */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
  grid-auto-rows: 12px;
  gap: clamp(0.7rem, 1.6vw, 1.1rem);
}

.gallery-item {
  position: relative;
  grid-row-end: span 18;
  padding: 0;
  border: 0;
  background: none;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  cursor: zoom-in;
  transition: opacity 380ms var(--ease), transform 420ms var(--ease-out),
    box-shadow 320ms var(--ease);
}

.gallery-item--tall { grid-row-end: span 26; }
.gallery-item--short { grid-row-end: span 14; }

/* One column on a phone, so shorten every span — otherwise eighteen
   pictures become seven thousand pixels of scrolling. */
@media (max-width: 620px) {
  .gallery { grid-auto-rows: 10px; }
  .gallery-item { grid-row-end: span 15; }
  .gallery-item--tall { grid-row-end: span 19; }
  .gallery-item--short { grid-row-end: span 12; }
}

.gallery-item .ph {
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  transition: transform 800ms var(--ease-out);
}

.gallery-item:hover { box-shadow: var(--shadow-lg); }
.gallery-item:hover .ph { transform: scale(1.06); }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14, 9, 5, 0.72) 100%);
  opacity: 0;
  transition: opacity 320ms var(--ease);
  pointer-events: none;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.9rem 1rem;
  text-align: left;
  color: #fff;
  font-size: var(--step--1);
  font-weight: 600;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 320ms var(--ease), transform 360ms var(--ease-out);
}

.gallery-caption small {
  display: block;
  font-weight: 500;
  opacity: 0.82;
  font-size: var(--step--2);
  margin-top: 0.15rem;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Filtered-out state */
.is-filtered-out {
  display: none;
}

.gallery-item.is-entering {
  animation: item-in 420ms var(--ease-out) both;
}

@keyframes item-in {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.gallery-empty {
  grid-column: 1 / -1;
  /* the grid uses 12px auto-rows, so an unspanned child would collapse */
  grid-row: span 9;
  display: grid;
  place-content: center;
  padding: var(--sp-8);
  text-align: center;
  color: var(--text-subtle);
  border: 1px dashed var(--border-strong);
  border-radius: calc(var(--radius) + 2px);
}

/* -- Horizontal strip (home page teaser) ---------------------------------- */

.strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: clamp(0.7rem, 1.6vw, 1.1rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--sp-3);
  scrollbar-width: thin;
}

.strip > * { scroll-snap-align: start; }

.strip .ph { transition: transform 700ms var(--ease-out), filter 400ms var(--ease); }
.strip a:hover .ph { transform: scale(1.04); }

/* -- Lightbox -------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: rgba(12, 8, 5, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms var(--ease), visibility 0s linear 260ms;
}

@supports (backdrop-filter: blur(6px)) {
  .lightbox { -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) clamp(1rem, 3vw, 2rem);
  color: rgba(255, 250, 244, 0.85);
  font-size: var(--step--1);
}

.lightbox-stage {
  display: grid;
  place-items: center;
  padding: 0 clamp(1rem, 4vw, 3.5rem);
  min-height: 0;
}

.lightbox-figure {
  max-width: min(1000px, 100%);
  width: 100%;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 380ms var(--ease-out), opacity 300ms var(--ease);
}

.lightbox.is-open .lightbox-figure { transform: scale(1); opacity: 1; }

.lightbox-figure .ph {
  max-height: min(68vh, 620px);
  aspect-ratio: 3 / 2;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
}

.lightbox-figure figcaption {
  margin-top: var(--sp-4);
  text-align: center;
  color: rgba(255, 250, 244, 0.9);
  font-size: var(--step-0);
}

.lightbox-figure figcaption small {
  display: block;
  color: rgba(255, 250, 244, 0.6);
  font-size: var(--step--2);
  margin-top: 0.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-4) var(--sp-7);
}

.lightbox-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 244, 0.28);
  color: rgba(255, 250, 244, 0.9);
  background: rgba(255, 255, 255, 0.05);
  transition: background-color 200ms var(--ease), border-color 200ms var(--ease),
    transform 200ms var(--ease);
}

.lightbox-btn svg { width: 20px; height: 20px; }

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 250, 244, 0.5);
  transform: scale(1.06);
}

.lightbox-close {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 244, 0.28);
  color: rgba(255, 250, 244, 0.9);
  font-size: var(--step--1);
  font-weight: 620;
  transition: background-color 200ms var(--ease), border-color 200ms var(--ease);
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.13); }
.lightbox-close svg { width: 15px; height: 15px; }


/* ==========================================================================
   18. TESTIMONIALS
   ========================================================================== */

.quote {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding: clamp(1.5rem, 3.4vw, 2.4rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  transition: box-shadow 300ms var(--ease), transform 340ms var(--ease-out),
    border-color 240ms var(--ease);
}

.quote:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border-hover);
}

.quote blockquote {
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--text);
}

.quote-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
}

.quote-author strong { display: block; font-size: var(--step--1); font-weight: 650; }
.quote-author span { display: block; font-size: var(--step--2); color: var(--text-subtle); }

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--brand);
}

.stars svg { width: 15px; height: 15px; }

/* Big feature quote on an ink band. */
.quote-feature {
  max-width: 44ch;
  margin-inline: auto;
  text-align: center;
}

.quote-feature blockquote {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1.34;
  color: var(--ink-text);
  font-style: italic;
}

.quote-feature .quote-author { justify-content: center; margin-top: var(--sp-6); }
.quote-feature .quote-author strong { color: var(--ink-text); }
.quote-feature .quote-author span { color: var(--ink-text-muted); }

.quote-mark {
  display: block;
  margin-inline: auto;
  width: 34px;
  height: 34px;
  color: var(--brand-on-ink);
  margin-bottom: var(--sp-5);
}


/* ==========================================================================
   19. HOURS, TABLES & INFO LISTS
   ========================================================================== */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface);
}

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step--1);
}

/* Keep a wide table readable: it scrolls inside .table-wrap instead of
   squeezing to one word per column on a phone. */
table.data--wide { min-width: 46rem; }

table.data caption {
  text-align: left;
  padding: var(--sp-4) var(--sp-5) 0;
  color: var(--text-subtle);
  font-size: var(--step--2);
}

table.data th,
table.data td {
  padding: 0.85rem var(--sp-5);
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

table.data thead th {
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  background: var(--bg-subtle);
}

table.data tbody tr:last-child th,
table.data tbody tr:last-child td { border-bottom: 0; }

table.data tbody tr { transition: background-color 200ms var(--ease); }
table.data tbody tr:hover { background: var(--bg-subtle); }

table.data th[scope="row"] { font-weight: 640; color: var(--text); }

/* Today's row gets called out. */
table.data tr.is-today {
  background: var(--brand-soft);
}
table.data tr.is-today th[scope="row"] { color: var(--brand); }

.hours-list { display: grid; gap: 0; }

.hours-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: 0.68rem;
  border-bottom: 1px solid var(--border);
  font-size: var(--step--1);
}

.hours-list li:last-child { border-bottom: 0; }
.hours-list dt, .hours-list span:first-child { color: var(--text); font-weight: 600; }
.hours-list span:last-child { color: var(--text-muted); font-variant-numeric: tabular-nums; }
.hours-list li.is-today span:first-child { color: var(--brand); }
.hours-list li.is-today span:last-child { color: var(--brand); font-weight: 620; }

.info-list { display: grid; gap: var(--sp-5); }

.info-list > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--sp-4);
  align-items: start;
}

.info-list dt,
.info-list h3 {
  font-family: var(--font-sans);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.35rem;
}

.info-list dd { margin: 0; color: var(--text-muted); font-size: var(--step--1); line-height: 1.7; }
.info-list address { font-style: normal; }

.info-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
}

.info-icon svg { width: 19px; height: 19px; }

/* Map placeholder — a stylised street plan, all CSS. */
.map {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  overflow: hidden;
  background-color: var(--bg-inset);
  background-image:
    linear-gradient(var(--border-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-strong) 1px, transparent 1px),
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 132px 132px, 132px 132px, 33px 33px, 33px 33px;
  background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
}

.map::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(74deg, transparent 47.4%, color-mix(in srgb, var(--brand) 26%, transparent) 47.4% 52.6%, transparent 52.6%),
    linear-gradient(-24deg, transparent 48%, color-mix(in srgb, var(--accent-2) 22%, transparent) 48% 52%, transparent 52%);
}

.map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 50% 40%, transparent 40%, color-mix(in srgb, var(--bg) 68%, transparent) 100%);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 47%;
  z-index: 2;
  transform: translate(-50%, -100%);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 4px;
  rotate: -45deg;
  background: var(--brand);
  color: var(--brand-contrast);
  box-shadow: var(--shadow-lg);
  animation: pin-drop 2.6s var(--ease) infinite;
}

.map-pin svg { width: 18px; height: 18px; rotate: 45deg; }

@keyframes pin-drop {
  0%, 60%, 100% { transform: translate(-50%, -100%); }
  30%           { transform: translate(-50%, -128%); }
}

.map-card {
  position: absolute;
  left: var(--sp-4);
  bottom: var(--sp-4);
  z-index: 3;
  max-width: 17rem;
  padding: 0.9rem 1.05rem;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: var(--step--2);
  color: var(--text-muted);
  line-height: 1.6;
}

.map-card strong { display: block; color: var(--text); font-size: var(--step--1); margin-bottom: 0.15rem; }


/* ==========================================================================
   20. ACCORDION / FAQ
   ========================================================================== */

.accordion {
  border-top: 1px solid var(--border);
}

.acc-item { border-bottom: 1px solid var(--border); }

.acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-5) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--text);
  transition: color 200ms var(--ease);
}

.acc-trigger:hover { color: var(--brand); }

.acc-icon {
  position: relative;
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  transition: background-color 240ms var(--ease), border-color 240ms var(--ease),
    transform 320ms var(--ease-out);
}

.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transition: transform 320ms var(--ease-out), opacity 240ms var(--ease);
}

.acc-icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.acc-icon::after { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }

.acc-trigger[aria-expanded="true"] .acc-icon {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--brand-contrast);
  transform: rotate(180deg);
}

.acc-trigger[aria-expanded="true"] .acc-icon::after { opacity: 0; transform: translate(-50%, -50%) scaleY(0); }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--ease-out);
}

.acc-panel > div { overflow: hidden; }

.acc-trigger[aria-expanded="true"] + .acc-panel { grid-template-rows: 1fr; }

.acc-panel p {
  padding-bottom: var(--sp-5);
  color: var(--text-muted);
  font-size: var(--step--1);
  line-height: 1.75;
  max-width: 66ch;
}


/* ==========================================================================
   21. STATS, STEPS & MARQUEE
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: clamp(1.2rem, 3vw, 2.5rem);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--step--2);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 620;
}

.section--ink .stat-label { color: var(--ink-text-muted); }
.section--ink .stat-num,
.cta-band .stat-num { color: var(--brand-on-ink); }
.cta-band .eyebrow,
.site-footer .eyebrow { color: var(--brand-on-ink); }
.section--ink .link-arrow,
.cta-band .link-arrow { color: var(--brand-on-ink); }
.section--ink a:not(.btn):not(.brand),
.cta-band a:not(.btn) { color: var(--brand-on-ink); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
  counter-reset: step;
}

.step { position: relative; padding-top: var(--sp-6); counter-increment: step; }

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--brand);
  opacity: 0.85;
}

.step::after {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 3.2rem;
  right: -1rem;
  height: 1px;
  background: var(--border-strong);
}

.step:last-child::after { display: none; }

.step h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.step p { color: var(--text-muted); font-size: var(--step--1); line-height: 1.7; }

@media (max-width: 700px) {
  .step::after { display: none; }
}

/* Scrolling word ribbon — pure decoration, pauses for reduced motion. */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--ink-border);
  padding-block: var(--sp-4);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: clamp(1.6rem, 4vw, 3rem);
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3rem);
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--ink-text-muted);
  white-space: nowrap;
}

.marquee-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-on-ink);
  flex: none;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ==========================================================================
   22. FORMS
   --------------------------------------------------------------------------
   The forms in this kit are wired for progressive enhancement: they validate
   in the browser and show a success panel. To make them send for real, set a
   `action` on the <form> (Formspree, Netlify Forms, your own endpoint) and
   delete the `data-demo-form` attribute.
   ========================================================================== */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-5);
}

.form-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field--full { grid-column: 1 / -1; }

@media (max-width: 640px) {
  .form-grid,
  .form-grid--3 { grid-template-columns: minmax(0, 1fr); }
}

.field { display: grid; gap: 0.45rem; min-width: 0; }

.field-label {
  font-size: var(--step--1);
  font-weight: 640;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.field-label .req { color: var(--brand); font-weight: 700; }
.field-label .opt { color: var(--text-subtle); font-weight: 500; font-size: var(--step--2); }

.field-hint {
  font-size: var(--step--2);
  color: var(--text-subtle);
  line-height: 1.55;
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 0.78rem 0.95rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-size: var(--step-0);
  line-height: 1.45;
  transition: border-color 180ms var(--ease), box-shadow 200ms var(--ease),
    background-color 180ms var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.textarea { min-height: 8rem; resize: vertical; }

.input::placeholder,
.textarea::placeholder { color: var(--text-subtle); opacity: 0.85; }

.input:hover,
.select:hover,
.textarea:hover { border-color: var(--border-hover); }

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: var(--ring);
  background: var(--surface-raised);
}

.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible { outline: none; }

.select {
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%236f6558' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 17px 17px;
  cursor: pointer;
}

:root[data-theme="dark"] .select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23968878' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23968878' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  }
}

/* Native date/time pickers keep their glyph legible in dark mode. */
:root[data-theme="dark"] input[type="date"]::-webkit-calendar-picker-indicator,
:root[data-theme="dark"] input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.65);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) input[type="date"]::-webkit-calendar-picker-indicator,
  :root:not([data-theme="light"]) input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.65);
  }
}

/* -- Choice chips (party size, occasion, service …) ------------------------ */

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.choice {
  position: relative;
  display: inline-flex;
}

.choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}

.choice span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 2.9rem;
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-muted);
  font-size: var(--step--1);
  font-weight: 620;
  transition: border-color 180ms var(--ease), background-color 180ms var(--ease),
    color 180ms var(--ease), transform 180ms var(--ease);
}

.choice:hover span { border-color: var(--border-hover); color: var(--text); }

.choice input:checked + span {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--brand-contrast);
  box-shadow: var(--shadow-sm);
}

.choice input:focus-visible + span {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* -- Larger radio cards ---------------------------------------------------- */

.radio-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.radio-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.radio-card > span {
  display: grid;
  gap: 0.25rem;
  padding: var(--sp-4);
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface);
  transition: border-color 180ms var(--ease), background-color 180ms var(--ease),
    box-shadow 200ms var(--ease), transform 200ms var(--ease);
}

.radio-card strong { font-size: var(--step--1); font-weight: 650; color: var(--text); }
.radio-card small { font-size: var(--step--2); color: var(--text-subtle); line-height: 1.5; }

.radio-card:hover > span { border-color: var(--border-hover); transform: translateY(-1px); }

.radio-card input:checked + span {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: var(--ring);
}

.radio-card input:focus-visible + span { outline: 2px solid var(--brand); outline-offset: 2px; }

/* -- Checkbox -------------------------------------------------------------- */

.checkbox {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  font-size: var(--step--1);
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}

.checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.18rem 0 0;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: var(--surface);
  cursor: pointer;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease);
}

.checkbox input:checked {
  background: var(--brand);
  border-color: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10.5l4 4 8-9'/%3E%3C/svg%3E");
  background-size: 82%;
  background-position: center;
  background-repeat: no-repeat;
}

.checkbox input:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* -- Validation & status --------------------------------------------------- */

.field-error {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--step--2);
  color: var(--danger);
  font-weight: 600;
}

.field.is-invalid .field-error { display: flex; }
.field.is-invalid .input,
.field.is-invalid .select,
.field.is-invalid .textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--danger) 20%, transparent);
}

.form-status {
  display: none;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid color-mix(in srgb, var(--success) 34%, transparent);
  background: var(--success-soft);
  color: var(--text);
  font-size: var(--step--1);
  line-height: 1.7;
}

.form-status.is-visible {
  display: flex;
  animation: panel-in 420ms var(--ease-out) both;
}

.form-status svg { width: 22px; height: 22px; flex: none; color: var(--success); margin-top: 0.1em; }
.form-status strong { display: block; color: var(--text); margin-bottom: 0.2rem; font-size: var(--step-0); }

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.form-note {
  font-size: var(--step--2);
  color: var(--text-subtle);
  line-height: 1.6;
  max-width: 46ch;
}

/* Honeypot — invisible to people, catches naive bots. */
.hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

legend {
  padding: 0;
  font-size: var(--step--1);
  font-weight: 640;
  color: var(--text);
  margin-bottom: 0.55rem;
}

.form-section + .form-section {
  margin-top: var(--sp-7);
  padding-top: var(--sp-7);
  border-top: 1px solid var(--border);
}

.form-section > h2,
.form-section > h3 {
  font-size: var(--step-2);
  margin-bottom: var(--sp-5);
}


/* ==========================================================================
   23. CTA BANDS
   ========================================================================== */

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-surface);
  color: var(--ink-text);
  padding-block: clamp(3rem, 7vw, 5.5rem);
  text-align: center;
}

.cta-band h2 { color: var(--ink-text); font-size: var(--step-4); max-width: 20ch; margin-inline: auto; }
.cta-band p {
  margin-top: var(--sp-4);
  color: var(--ink-text-muted);
  font-size: var(--step-1);
  max-width: 52ch;
  margin-inline: auto;
}

.cta-actions {
  margin-top: var(--sp-7);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}

.cta-fineprint {
  margin-top: var(--sp-5);
  font-size: var(--step--2);
  color: var(--ink-text-muted);
  letter-spacing: 0.04em;
}

/* Warm ember wash behind the band. */
.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% -10%;
  z-index: -1;
  background-image:
    radial-gradient(40% 50% at 20% 30%, rgba(214, 100, 46, 0.30), transparent 64%),
    radial-gradient(36% 44% at 82% 70%, rgba(150, 92, 40, 0.26), transparent 66%);
  animation: ember-drift 30s var(--ease) infinite alternate;
}

/* Reservation strip — a compact inline booking prompt. */
.book-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--sp-5);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2.25rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(120deg, var(--brand-soft), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow-md);
}

.book-strip h2, .book-strip h3 { font-size: var(--step-2); margin-bottom: 0.3rem; }
.book-strip p { color: var(--text-muted); font-size: var(--step--1); }

@media (max-width: 720px) {
  .book-strip { grid-template-columns: minmax(0, 1fr); }
}


/* --------------------------------------------------------------------------
   23b. Form page layout — a wide form beside a sticky reference column
   -------------------------------------------------------------------------- */

.form-layout {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4.5vw, 3.5rem);
  align-items: flex-start;
}

.form-main { flex: 1 1 34rem; min-width: 0; }
.form-aside { flex: 1 1 20rem; min-width: 0; }

.sticky-col {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  display: grid;
  gap: var(--sp-5);
}

@media (max-width: 920px) {
  .sticky-col { position: static; }
}


/* --------------------------------------------------------------------------
   23c. Inline code — used in the buyer-facing notes inside the pages
   -------------------------------------------------------------------------- */

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  padding: 0.1em 0.36em;
  border-radius: 4px;
  background: var(--bg-inset);
  border: 1px solid var(--border);
  color: var(--text);
}

.section--ink code,
.cta-band code,
.site-footer code {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--ink-border);
  color: var(--ink-text);
}


/* ==========================================================================
   24. UTILITIES
   ========================================================================== */

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

.full-height { display: flex; flex-direction: column; min-height: 100vh; }
.full-height main { flex: 1; }

/* Small uppercase label — job titles, roles, category lines inside cards. */
.meta-label {
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }
.nowrap { white-space: nowrap; }
.relative { position: relative; }

.divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 0;
}

.badge-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--step--2);
  font-weight: 600;
  color: var(--text-muted);
}

.badge-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 22%, transparent);
  animation: pulse-dot 2.4s var(--ease) infinite;
}

.badge-dot--closed::before { background: var(--text-subtle); box-shadow: none; animation: none; }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 22%, transparent); }
  50%      { box-shadow: 0 0 0 6px color-mix(in srgb, var(--success) 8%, transparent); }
}

/* Toast used by the demo forms and copy buttons. */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.6rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: var(--ink-surface);
  color: var(--ink-text);
  border: 1px solid var(--ink-border);
  box-shadow: var(--shadow-xl);
  font-size: var(--step--1);
  font-weight: 600;
  transform: translate(-50%, 130%);
  opacity: 0;
  transition: transform 420ms var(--ease-out), opacity 300ms var(--ease);
  pointer-events: none;
  max-width: calc(100vw - 2rem);
}

.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
.toast svg { width: 16px; height: 16px; color: var(--brand-on-ink); flex: none; }

/* Template-demo notice used in footers. */
.template-notice {
  font-size: var(--step--2);
  color: var(--ink-text-muted);
  line-height: 1.6;
  max-width: 70ch;
}


/* ==========================================================================
   25. MOTION & REVEAL
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 760ms var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.reveal--scale { transform: translateY(14px) scale(0.985); }
.reveal--left { transform: translateX(-24px); }
.reveal--right { transform: translateX(24px); }
.reveal--fade { transform: none; }

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
.reveal-delay-6 { transition-delay: 480ms; }

/* Stagger children automatically — no per-element delay classes needed. */
.stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }

/* Gentle parallax handled in JS; the CSS just smooths it out. */
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-glow,
  .hero-art .ph-scene,
  .hero-art .ph-dish,
  .hero-badge,
  .marquee-track,
  .map-pin,
  .scroll-cue svg,
  .badge-dot::before,
  .cta-band::before {
    animation: none !important;
    transform: none !important;
  }

  .btn::after { display: none; }
}


/* ==========================================================================
   26. PRINT — the menu page should print cleanly on A4.
   ========================================================================== */

@media print {
  .site-header,
  .mobile-nav,
  .site-footer,
  .cta-band,
  .book-strip,
  .filter-bar,
  .menu-tabs,
  .scroll-cue,
  .lightbox,
  .toast,
  .skip-link { display: none !important; }

  body { background: #fff; color: #000; font-size: 11pt; }

  .section { padding-block: 1rem; }

  .tabpanel[hidden] { display: block !important; }

  .ph { display: none; }

  .menu-item { break-inside: avoid; }
  .menu-section { break-inside: avoid-page; }

  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}

/* ==========================================================================
   BOOKING EMBED
   Slot for an optional Cal.com / Calendly iframe, filled by
   js/integrations.js when booking.url is set in config.js. It carries the
   [hidden] attribute until then, so an unconfigured kit renders as before.
   ========================================================================== */
.booking-embed {
  border: 1px solid var(--border, rgba(0, 0, 0, 0.12));
  border-radius: var(--radius, 12px);
  overflow: hidden;
  background: var(--surface, #fff);
}
.booking-embed[hidden] { display: none; }
.booking-embed iframe { display: block; width: 100%; border: 0; }
