/* =========================================================================
   Kervan Cafe (Turkish Cuisine), Stamford - styles.css
   Editorial colour-block redesign: cream + forest green + burnt orange +
   mustard, bold condensed display, line illustrations, script accents.
   Barlow Condensed / Petrona / Caveat / Commissioner.
   ========================================================================= */

:root {
  /* Surfaces */
  --cream:   oklch(0.945 0.014 88);   /* warm ivory base */
  --cream-2: oklch(0.915 0.018 86);   /* deeper panel */
  --cream-3: oklch(0.885 0.020 84);

  /* Forest green - the dark */
  --forest:   oklch(0.290 0.032 152);
  --forest-2: oklch(0.360 0.036 152);
  --forest-3: oklch(0.235 0.028 152);

  /* Burnt orange - accent */
  --orange:   oklch(0.620 0.165 42);
  --orange-2: oklch(0.550 0.155 40);

  /* Mustard - secondary accent */
  --mustard:   oklch(0.775 0.115 78);
  --mustard-2: oklch(0.720 0.115 76);

  /* Ink (dark green-grey) */
  --ink:      oklch(0.255 0.022 150);
  --ink-soft: oklch(0.410 0.022 150);
  --ink-mute: oklch(0.520 0.020 150);

  /* On dark */
  --on-dark:      oklch(0.945 0.014 88);
  --on-dark-soft: oklch(0.820 0.018 86);

  --line:      oklch(0.855 0.018 86);
  --line-2:    oklch(0.790 0.020 84);
  --line-dark: oklch(0.400 0.030 152);
  --success:   oklch(0.560 0.100 150);

  --shadow-sm: 0 1px 2px oklch(0.29 0.03 152 / 0.10);
  --shadow-md: 0 10px 30px oklch(0.29 0.03 152 / 0.14);

  /* Spacing */
  --space-2xs: 4px; --space-xs: 8px; --space-sm: 12px; --space-md: 16px;
  --space-lg: 24px; --space-xl: 32px; --space-2xl: 48px; --space-3xl: 64px;
  --space-4xl: 96px; --space-5xl: clamp(72px, 9vw, 140px);
  --container: 1280px; --container-wide: 1440px; --measure: 62ch;
  --radius: 3px; --radius-md: 6px;

  /* Type */
  --font-display: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Petrona", Georgia, serif;
  --font-script: "Caveat", ui-sans-serif, cursive;
  --font-body: "Commissioner", ui-sans-serif, system-ui, sans-serif;
  --fs-eyebrow: clamp(0.7rem, 0.66rem + 0.2vw, 0.8rem);
  --fs-body:    clamp(1rem, 0.97rem + 0.18vw, 1.08rem);
  --fs-lead:    clamp(1.14rem, 1.04rem + 0.5vw, 1.38rem);
  --fs-h3:      clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --fs-h2:      clamp(2.1rem, 1.5rem + 2.8vw, 3.6rem);
  --fs-hero:    clamp(3rem, 1.6rem + 8vw, 7rem);

  /* Motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --dur-fast: 140ms; --dur-mid: 220ms; --dur-slow: 420ms;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
ul, ol { list-style: none; margin: 0; padding: 0; }
img, picture, video, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

body {
  font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.6;
  color: var(--ink); background: var(--cream);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* ---------- Type helpers ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 0.94; letter-spacing: 0.005em; color: var(--forest); text-transform: uppercase; }
p { text-wrap: pretty; }
.eyebrow, .section-head__eyebrow, .band-cell__eyebrow, .kitchen__eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
}
.script { font-family: var(--font-script); font-weight: 700; color: var(--orange); text-transform: none; line-height: 1; }
.serif { font-family: var(--font-serif); font-weight: 500; text-transform: none; letter-spacing: 0; }
.u-nowrap { white-space: nowrap; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: 860px; }
.section { padding-block: var(--space-5xl); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.section--cream { background: var(--cream); }
.section--cream-2 { background: var(--cream-2); }
.section--forest { background: var(--forest); color: var(--on-dark); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--on-dark); }

.section-head { max-width: 780px; margin-bottom: var(--space-2xl); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__eyebrow { display: inline-block; margin-bottom: var(--space-md); }
.section-head__title { font-size: var(--fs-h2); }
.section-head__lead { font-family: var(--font-body); font-size: var(--fs-lead); color: var(--ink-soft); margin-top: var(--space-md); max-width: var(--measure); text-transform: none; }
.section--forest .section-head__lead { color: var(--on-dark-soft); }

/* ---------- Wave motif ---------- */
.wave { display: inline-block; width: 46px; height: 17px; color: var(--orange); }
.wave svg { width: 100%; height: 100%; overflow: visible; }
.wave--sm { width: 34px; height: 13px; }

/* ---------- Skip link ---------- */
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 300; background: var(--forest); color: var(--on-dark); padding: 10px 16px; transition: top var(--dur-fast) var(--ease-out); }
.skip-link:focus { top: 12px; }

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-display); font-weight: 700; font-size: 0.94rem; line-height: 1;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1.05em 1.6em; border: 2px solid transparent; border-radius: var(--radius); cursor: pointer;
  max-width: 100%; white-space: normal; overflow-wrap: break-word; text-align: center;
  transition: transform var(--dur-fast) var(--ease-out), background-color var(--dur-mid) var(--ease-out), color var(--dur-mid) var(--ease-out), border-color var(--dur-mid) var(--ease-out);
}
.btn--dark { background: var(--forest); color: var(--on-dark); }
.btn--orange { background: var(--orange); color: var(--on-dark); }
.btn--outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn--light { background: var(--cream); color: var(--forest); }
.btn--block { display: flex; width: 100%; }
.btn__icon { width: 1em; height: 1em; flex: none; transition: transform var(--dur-mid) var(--ease-out); }
.btn:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .btn--dark:hover { background: var(--forest-2); }
  .btn--orange:hover { background: var(--orange-2); }
  .btn--outline:hover { background: var(--forest); color: var(--on-dark); }
  .btn--light:hover { background: var(--orange); color: var(--on-dark); }
  .btn:hover .btn__icon { transform: translateX(4px); }
}

/* underlined arrow link */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest);
  padding-bottom: 4px; border-bottom: 2px solid var(--forest);
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), gap var(--dur-mid) var(--ease-out);
}
.link-arrow svg { width: 1.4em; height: 0.9em; }
.link-arrow--light { color: var(--on-dark); border-color: var(--on-dark); }
.link-arrow--orange { color: var(--orange); border-color: var(--orange); }
@media (hover: hover) and (pointer: fine) { .link-arrow:hover { color: var(--orange); border-color: var(--orange); gap: 0.9em; } .link-arrow--light:hover { color: var(--mustard); border-color: var(--mustard); } }

/* ---------- Top bar ---------- */
.topbar { background: var(--forest); color: var(--on-dark-soft); font-size: 0.78rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); padding-block: 7px; flex-wrap: wrap; }
.topbar__group { display: inline-flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 0.4em; }
.topbar__item svg { width: 14px; height: 14px; color: var(--mustard); flex: none; }
.topbar__phone { color: var(--on-dark); font-weight: 600; }
.topbar__tag { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.14em; color: var(--forest); background: var(--mustard); padding: 3px 10px; border-radius: var(--radius); font-size: 0.68rem; }
@media (hover: hover) { .topbar__phone:hover { color: var(--mustard); } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: color-mix(in oklch, var(--cream) 86%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: background-color var(--dur-mid) var(--ease-out), border-color var(--dur-mid) var(--ease-out); }
.site-header.is-stuck { background: color-mix(in oklch, var(--cream) 97%, transparent); border-bottom-color: var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); min-height: var(--header-h); }

/* Brand logo */
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; text-decoration: none; }
.brand__mark { width: 46px; height: 46px; flex: none; color: var(--forest); }
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--forest); }
.brand__sub { font-family: var(--font-display); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--orange); margin-top: 3px; }
.site-footer .brand__mark, .site-footer .brand__name { color: var(--on-dark); }
.site-footer .brand__sub { color: var(--mustard); }
/* Header + top bar run full-bleed so the logo's left edge lines up with the
   full-bleed hero H1 (both use the same clamp() left padding). */
.topbar__inner, .site-header__inner { max-width: none; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
.nav__link { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest); position: relative; padding-block: 6px; transition: color var(--dur-fast) var(--ease-out); }
.nav__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-mid) var(--ease-out); }
.nav__link--active { color: var(--orange); }
.nav__link--active::after { transform: scaleX(1); }
@media (hover: hover) and (pointer: fine) { .nav__link:hover { color: var(--orange); } .nav__link:hover::after { transform: scaleX(1); } }
.header-cta { display: none; }

/* Hamburger */
.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; padding: 11px; background: transparent; border: 1px solid var(--line-2); border-radius: var(--radius); cursor: pointer; }
.nav-toggle__bar { display: block; height: 2px; width: 100%; background: var(--forest); transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-fast) var(--ease-out); }

/* Mobile nav (clip-layer) */
.mobile-nav { position: fixed; inset: 0; z-index: 200; background: var(--forest); color: var(--on-dark); overflow: hidden; visibility: hidden; transition: visibility var(--dur-slow); }
.mobile-nav__panel { position: absolute; inset: 0; background: var(--forest); color: var(--on-dark); padding: 92px clamp(24px, 8vw, 56px) 40px; display: flex; flex-direction: column; justify-content: space-between; transform: translateX(100%); transition: transform var(--dur-slow) var(--ease-in-out); overscroll-behavior: contain; overflow-y: auto; }
.mobile-nav.is-open { visibility: visible; }
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__close { position: absolute; top: 16px; right: clamp(20px, 8vw, 56px); z-index: 2; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line-dark); border-radius: var(--radius); color: var(--on-dark); cursor: pointer; transition: transform var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out); }
.mobile-nav__close svg { width: 22px; height: 22px; }
.mobile-nav__close:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) { .mobile-nav__close:hover { background: var(--forest-2); } }
.mobile-nav__list { display: flex; flex-direction: column; gap: var(--space-xs); }
.mobile-nav__link { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 11vw, 3.4rem); letter-spacing: 0.01em; text-transform: uppercase; color: var(--on-dark); padding-block: 8px; border-bottom: 1px solid var(--line-dark); }
.mobile-nav__link--active { color: var(--mustard); }
.mobile-nav__foot { display: flex; flex-direction: column; gap: var(--space-sm); color: var(--on-dark-soft); }
.mobile-nav__foot a:not(.btn) { color: var(--on-dark); font-weight: 600; }
.mobile-nav__foot .btn { margin-top: var(--space-sm); }

/* ---------- Hero ---------- */
.hero { border-bottom: 1px solid var(--line); }
.hero__grid { display: grid; grid-template-columns: 1fr; }
.hero__text { padding: clamp(32px, 6vw, 88px) clamp(20px, 5vw, 56px) clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; max-width: 720px; margin-inline: auto; width: 100%; }
.hero__hello { font-size: clamp(2.4rem, 6vw, 3.6rem); margin-bottom: 0.1em; position: relative; display: inline-block; }
.hero__hello::after { content: ""; display: block; width: 62%; height: 3px; background: var(--orange); border-radius: 2px; margin-top: -0.15em; }
.hero__title { font-size: var(--fs-hero); font-weight: 800; color: var(--forest); letter-spacing: 0.004em; margin-block: 0.1em 0.35em; position: relative; }
.hero__title .u-orange { color: var(--orange); }
.hero__sub { font-family: var(--font-body); font-size: var(--fs-lead); color: var(--ink-soft); max-width: 32ch; margin-bottom: var(--space-xl); }
.hero__media { position: relative; min-height: clamp(320px, 48vh, 620px); background: var(--forest); overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__vbar { position: absolute; top: 0; right: 0; bottom: 0; width: clamp(44px, 6vw, 62px); background: var(--orange); color: var(--on-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.82rem; }
.hero__vbar span { writing-mode: vertical-rl; }
.hero__vbar svg { width: 16px; height: 16px; }
@media (hover: hover) and (pointer: fine) { .hero__vbar:hover { background: var(--orange-2); } }

/* ---------- Colour-block band ---------- */
.band { display: grid; grid-template-columns: 1fr; }
.band-cell { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: space-between; gap: var(--space-xl); min-height: 320px; }
.band-cell--forest { background: var(--forest); color: var(--on-dark); }
.band-cell--forest h2, .band-cell--forest h3 { color: var(--on-dark); }
.band-cell--cream { background: var(--cream-2); }
.band-cell--mustard { background: var(--mustard); color: var(--forest); }
.band-cell--photo { padding: 0; min-height: 320px; }
.band-cell--photo img { width: 100%; height: 100%; object-fit: cover; }
.band-cell__eyebrow { display: inline-block; margin-bottom: var(--space-md); }
.band-cell--forest .band-cell__eyebrow { color: var(--mustard); }
.band-cell--mustard .band-cell__eyebrow { color: var(--forest); opacity: 0.7; }
.band-cell__title { font-size: var(--fs-h3); }
.band-cell__title.serif { font-family: var(--font-serif); font-weight: 600; text-transform: none; line-height: 1.15; letter-spacing: 0; }
.band-cell__addr { font-family: var(--font-body); font-style: normal; font-size: var(--fs-lead); line-height: 1.5; color: var(--forest); }
.band-cell__illus { color: var(--orange); width: clamp(72px, 9vw, 104px); height: auto; margin-top: auto; }
.band-cell--forest .band-cell__illus { color: var(--mustard); }
.band-cell--mustard .band-cell__illus { color: var(--forest); opacity: 0.55; }
.band-cell__top { display: flex; flex-direction: column; }

/* ---------- From our kitchen ---------- */
.kitchen { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 56px); align-items: start; }
.kitchen__intro { max-width: 420px; }
.kitchen__eyebrow { display: inline-block; margin-bottom: var(--space-md); }
.kitchen__title { font-size: var(--fs-h2); margin-bottom: var(--space-md); display: flex; flex-direction: column; gap: 6px; }
.kitchen__title .wave { margin-top: 4px; }
.kitchen__text { font-family: var(--font-body); color: var(--ink-soft); font-size: var(--fs-lead); margin-bottom: var(--space-lg); }
.kitchen__grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.kitchen__item { padding: var(--space-lg) 0; border-top: 1px solid var(--line-2); display: flex; flex-direction: column; gap: var(--space-xs); }
.kitchen__icon { color: var(--orange); width: 60px; height: 60px; margin-bottom: var(--space-xs); }
.kitchen__item-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); }
.kitchen__item-text { font-family: var(--font-body); color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Photo band ---------- */
.photoband { display: grid; grid-template-columns: repeat(2, 1fr); }
.photoband__cell { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.photoband__cell img, .photoband__cell video { width: 100%; height: 100%; object-fit: cover; }
.photoband__cell--script { background: var(--forest); display: flex; align-items: center; justify-content: center; padding: var(--space-lg); }
.photoband__script { font-family: var(--font-script); font-weight: 700; color: var(--mustard); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 0.95; text-align: center; }

/* ---------- Menu page ---------- */
.menu-cat { display: grid; gap: clamp(24px, 4vw, 60px); align-items: center; padding-block: clamp(40px, 6vw, 84px); border-bottom: 1px solid var(--line); }
.menu-cat:last-of-type { border-bottom: 0; }
.menu-cat__imgs { display: grid; gap: var(--space-md); grid-template-columns: 1fr 1fr; }
.menu-cat__imgs img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); }
.menu-cat__imgs--single { grid-template-columns: 1fr; }
.menu-cat__imgs--single img { aspect-ratio: 4 / 3; }
.menu-cat__tag { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--forest); background: var(--mustard); padding: 0.4em 0.85em; border-radius: var(--radius); margin-bottom: var(--space-sm); }
.menu-cat__title { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
.menu-cat__text { font-family: var(--font-body); color: var(--ink-soft); font-size: var(--fs-lead); max-width: 46ch; margin-bottom: var(--space-lg); }
.menu-cat__list { display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.menu-cat__list li { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.8rem; color: var(--forest); background: var(--cream-2); border: 1px solid var(--line-2); padding: 0.45em 0.9em; border-radius: var(--radius); }
.menu-note { background: var(--forest); color: var(--on-dark); border-radius: var(--radius); padding: clamp(24px, 3vw, 40px); margin-top: var(--space-3xl); display: flex; gap: var(--space-lg); align-items: center; flex-wrap: wrap; }
.menu-note svg { width: 40px; height: 40px; color: var(--mustard); flex: none; }
.menu-note p { font-family: var(--font-body); color: var(--on-dark-soft); max-width: 62ch; }
.menu-note strong { color: var(--on-dark); }
.menu-note a { color: var(--mustard); text-decoration: underline; }
.vaccent { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--forest); }
.vaccent__video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* ---------- Mosaic (galleries) ---------- */
.mosaic { display: grid; gap: clamp(10px, 1.2vw, 16px); grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
.mosaic__item { position: relative; overflow: hidden; border-radius: var(--radius); }
.mosaic__item--tall { grid-row: span 2; }
.mosaic__item--wide { grid-column: span 2; }
.mosaic__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.mosaic__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 10px; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.82rem; color: var(--on-dark); background: linear-gradient(0deg, oklch(0.18 0.03 152 / 0.82), transparent); }
@media (hover: hover) and (pointer: fine) { .mosaic__item:hover .mosaic__img { transform: scale(1.05); } }

/* ---------- About ---------- */
.about-hero { position: relative; height: clamp(340px, 52vh, 560px); overflow: hidden; }
.about-hero__img { width: 100%; height: 100%; object-fit: cover; }
.about-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, oklch(0.20 0.03 152 / 0.66), oklch(0.20 0.03 152 / 0.15)); }
.about-hero__cap { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: clamp(24px, 5vw, 56px) 0; }
.about-hero__cap h1 { color: var(--on-dark); font-size: var(--fs-hero); }
.about__body { max-width: var(--measure); }
.about__body p { font-family: var(--font-body); color: var(--ink-soft); font-size: var(--fs-lead); }
.about__body p + p { margin-top: var(--space-lg); }
.values { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-2xl); }
.value { display: inline-flex; align-items: center; gap: 0.55em; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; color: var(--forest); background: var(--mustard); padding: 0.55em 1em; border-radius: var(--radius); }
.value svg { width: 16px; height: 16px; }

/* ---------- Find us ---------- */
.findus__grid { display: grid; gap: clamp(28px, 4vw, 56px); align-items: start; }
.findus__info { display: flex; flex-direction: column; gap: var(--space-lg); }
.findus__row { display: grid; gap: 3px; }
.findus__label { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-eyebrow); letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); }
.findus__val { font-family: var(--font-body); font-size: var(--fs-lead); color: var(--ink); font-style: normal; }
.findus__val a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }
.findus__actions { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-sm); }
.findus__map { border-radius: var(--radius); overflow: hidden; min-height: 340px; border: 1px solid var(--line-2); }
.findus__map iframe, .findus__map img { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.hours { display: grid; gap: 0; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; max-width: 400px; }
.hours__row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); padding: 0.7em 1.1em; background: var(--cream); border-bottom: 1px solid var(--line); }
.hours__row:last-child { border-bottom: 0; }
.hours__row--closed { color: var(--ink-mute); background: var(--cream-2); }
.hours__day { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.92rem; color: var(--forest); }
.hours__time { font-family: var(--font-body); font-variant-numeric: tabular-nums; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact__grid { display: grid; gap: clamp(28px, 4vw, 56px); align-items: start; }
.form { display: grid; gap: var(--space-md); }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field__label { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.82rem; color: var(--forest); }
.field__input, .field__textarea { width: 100%; background: var(--cream); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 0.8em 1em; color: var(--ink); font-size: 1rem; font-family: var(--font-body); transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out); }
.field__textarea { min-height: 140px; resize: vertical; }
.field__input:focus, .field__textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px oklch(0.620 0.165 42 / 0.16); }
.field__input::placeholder, .field__textarea::placeholder { color: var(--ink-mute); }
.form__fields { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form__submit { margin-top: var(--space-xs); }
.form-success { display: none; background: var(--mustard); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); color: var(--forest); }
.form-success h3 { color: var(--forest); margin-bottom: var(--space-xs); }
.form-success p { font-family: var(--font-body); color: var(--forest); }
.contact__aside { display: flex; flex-direction: column; gap: var(--space-lg); background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: var(--on-dark-soft); }
.site-footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-lg); padding-block: clamp(28px, 4vw, 44px); }
.site-footer__cols { display: grid; gap: clamp(28px, 5vw, 64px); grid-template-columns: 1fr; padding-block: var(--space-4xl) 0; }
.site-footer__brand { max-width: 42ch; }
.site-footer__brand p { font-family: var(--font-body); color: var(--on-dark-soft); margin-top: var(--space-md); }
.site-footer__head { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mustard); font-size: 0.78rem; margin-bottom: var(--space-md); }
.site-footer__links { display: flex; flex-direction: column; gap: var(--space-xs); }
.site-footer__links a, .site-footer__addr a { font-family: var(--font-body); color: var(--on-dark-soft); transition: color var(--dur-fast) var(--ease-out); }
.site-footer__addr { font-family: var(--font-body); font-style: normal; line-height: 1.7; color: var(--on-dark-soft); }
.site-footer__addr a { font-weight: 600; color: var(--on-dark); }
@media (hover: hover) { .site-footer__links a:hover, .site-footer__addr a:hover, .site-footer__nav a:hover, .site-footer__legal a:hover { color: var(--mustard); } }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 40px); }
.site-footer__nav a { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.85rem; color: var(--on-dark); }
.site-footer__copy { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.78rem; color: var(--on-dark-soft); }
.site-footer__bottom { border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; justify-content: space-between; padding-block: var(--space-lg); font-size: 0.82rem; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.site-footer__legal a { font-family: var(--font-body); color: var(--on-dark-soft); }

/* ---------- Legal pages ---------- */
.legal-page { background: var(--cream); padding-block: clamp(64px, 9vw, 128px); }
.legal-page__inner { max-width: 68ch; margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
.legal-page__title { font-size: var(--fs-h2); color: var(--forest); margin-bottom: var(--space-sm); }
.legal-page__last-updated { font-family: var(--font-body); color: var(--ink-mute); font-size: 0.9rem; margin-bottom: var(--space-2xl); }
.legal-page__body { font-family: var(--font-body); color: var(--ink-soft); line-height: 1.72; }
.legal-page__body p, .legal-page__body ul, .legal-page__body ol { margin-bottom: var(--space-lg); max-width: 70ch; }
.legal-page__body ul, .legal-page__body ol { padding-left: 1.3em; }
.legal-page__body ul li { list-style: disc; margin-bottom: var(--space-xs); }
.legal-page__body ol li { list-style: decimal; margin-bottom: var(--space-xs); }
.legal-page__body a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.legal-page__section-heading { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: var(--fs-h3); color: var(--forest); margin: var(--space-2xl) 0 var(--space-md); }
.legal-page__section-subheading { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.1rem; color: var(--forest); margin: var(--space-lg) 0 var(--space-xs); }

/* ---------- Scroll reveal ---------- */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
html.js .reveal.is-in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 70ms; }
.reveal--d2 { transition-delay: 140ms; }
.reveal--d3 { transition-delay: 210ms; }
.reveal--d4 { transition-delay: 280ms; }

/* ---------- Hero load-in (staggered) ---------- */
@keyframes heroRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes heroFade { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: none; } }
html.js .hero__hello { opacity: 0; animation: heroRise 0.7s var(--ease-out) 0.08s both; }
html.js .hero__title  { opacity: 0; animation: heroRise 0.75s var(--ease-out) 0.18s both; }
html.js .hero__sub    { opacity: 0; animation: heroRise 0.7s var(--ease-out) 0.32s both; }
html.js .hero__text .link-arrow { opacity: 0; animation: heroRise 0.7s var(--ease-out) 0.42s both; }
html.js .hero__media  { opacity: 0; animation: heroFade 0.9s var(--ease-out) 0.15s both; }

/* ---------- Reviews strip ---------- */
.reviews__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--space-lg); max-width: none; margin-bottom: var(--space-2xl); }
.reviews__note { font-family: var(--font-body); color: var(--ink-soft); margin: 0; }
.reviews__grid { display: grid; gap: clamp(20px, 3vw, 40px); grid-template-columns: 1fr; }
.review { display: flex; flex-direction: column; }
.review__stars { color: var(--orange); letter-spacing: 0.1em; font-size: 1.05rem; }
.review__quote { font-family: var(--font-serif); font-weight: 600; font-size: var(--fs-h3); line-height: 1.3; color: var(--forest); text-transform: none; letter-spacing: 0; margin-top: var(--space-sm); }
.review__by { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.82rem; color: var(--ink-mute); font-style: normal; margin-top: var(--space-md); display: block; }
@media (min-width: 700px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Grid guards ---------- */
.hero__text, .band-cell, .kitchen__intro, .menu-cat__body, .contact__main, .findus__info { min-width: 0; }
@media (max-width: 430px) { .topbar__addr { display: none; } }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (min-width: 620px) {
  .kitchen__grid { grid-template-columns: repeat(2, 1fr); column-gap: clamp(24px, 3vw, 44px); }
  .kitchen__item { border-top: 0; border-left: 1px solid var(--line-2); padding: 0 0 0 clamp(20px, 2vw, 32px); }
  .mosaic { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 800px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; }
  .hero__text { padding-block: clamp(48px, 6vw, 96px); max-width: none; margin-inline: 0; }
  .band { grid-template-columns: repeat(2, 1fr); }
  .photoband { grid-template-columns: repeat(4, 1fr); }
  .kitchen { grid-template-columns: 0.85fr 1.15fr; }
  .kitchen__grid { grid-template-columns: repeat(4, 1fr); }
  .findus__grid { grid-template-columns: 1fr 1.1fr; }
  .contact__grid { grid-template-columns: 1.1fr 0.9fr; }
  .menu-cat { grid-template-columns: 1fr 1fr; }
  .menu-cat--flip .menu-cat__media { order: 2; }
  .site-footer__cols { grid-template-columns: 1.5fr 1fr 1fr; }
  .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; }
}
@media (min-width: 980px) {
  .nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .band { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  html.js .reveal { opacity: 1; transform: none; }
  html.js .hero__hello, html.js .hero__title, html.js .hero__sub, html.js .hero__text .link-arrow, html.js .hero__media { opacity: 1 !important; transform: none !important; animation: none !important; }
  .mosaic__item:hover .mosaic__img { transform: none; }
}
