/* ==========================================================================
   Salt Kitchen & Lounge — design system
   One file, all pages. Dark luxury Aegean: ink grounds, cream editorial
   sections, gold hairlines, Cormorant Garamond display over Jost.
   Mobile-first. No frameworks.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --ink: #0C0A09;
  --charcoal: #1C1917;
  --stone: #292524;
  --line: #3A342E;
  --cream: #FAF7F2;
  --sand: #EFE7DA;
  --gold: #C9A25C;
  --gold-bright: #D9B87A;
  --sea: #2E6E73;
  --text-on-dark: #EDE6DB;
  --muted-on-dark: #B3A99A;
  --text-on-light: #171310;
  --muted-on-light: #57504A;

  /* Derived (accessibility + context) */
  --gold-deep: #7A5D29;          /* WCAG-safe gold for small text on light grounds (5.00:1 on sand, 5.74:1 on cream) */
  --hairline-light: #DDD2C1;     /* hairline on cream/sand */

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Jost", "Avenir Next", "Century Gothic", system-ui, sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Contextual — dark defaults, re-scoped inside light sections */
  --fg: var(--text-on-dark);
  --fg-strong: var(--cream);
  --fg-muted: var(--muted-on-dark);
  --hairline: var(--line);
  --link: var(--gold-bright);
  --accent-small: var(--gold);   /* eyebrows etc.; darkened on light grounds */
}

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
iframe { display: block; }

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

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

a { color: inherit; text-decoration: none; }

blockquote,
figure,
dl, dd { margin: 0; }

address { font-style: normal; }

cite { font-style: normal; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

strong { font-weight: 500; }

::selection { background: var(--gold); color: var(--ink); }

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

[id] { scroll-margin-top: 6rem; }

/* --------------------------------------------------------------------------
   3. Typography & core utilities
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--fg-strong);
}

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

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section--cream,
.section--sand {
  background: var(--cream);
  color: var(--text-on-light);
  --fg: var(--text-on-light);
  --fg-strong: var(--text-on-light);
  --fg-muted: var(--muted-on-light);
  --hairline: var(--hairline-light);
  --link: var(--sea);
  --accent-small: var(--gold-deep);
}

.section--sand { background: var(--sand); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-small);
  margin-bottom: 1.1rem;
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--fg-strong);
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
}

h1.display,
.display--hero {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.05;
}

.display em,
.display i {
  font-style: italic;
  font-weight: 500;
}

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 62ch;
}

.section__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

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

.section__head--center .lead { margin-inline: auto; }

.link {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  transition: color 0.3s ease;
}

.link:hover { color: var(--fg-strong); }

.attribution {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85em 1.4em;
}

.skip-link:focus {
  top: 1rem;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 44px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05em 2.2em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn--ghost {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

/* Ghost buttons on light grounds: gold on cream fails contrast — go ink */
.section--cream .btn--ghost,
.section--sand .btn--ghost {
  border-color: var(--text-on-light);
  color: var(--text-on-light);
}

.section--cream .btn--ghost:hover,
.section--sand .btn--ghost:hover,
.section--cream .btn--ghost:focus-visible,
.section--sand .btn--ghost:focus-visible {
  background: var(--text-on-light);
  color: var(--cream);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: absolute;           /* no-JS: scrolls away with the page */
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.js .site-header { position: fixed; }

.site-header.is-scrolled {
  background: rgba(12, 10, 9, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-block: 1.1rem;
}

/* Wordmark */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
}

.wordmark__salt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  transition: color 0.3s ease;
}

.wordmark:hover .wordmark__salt { color: var(--gold-bright); }

.wordmark__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem clamp(1.25rem, 3vw, 2.5rem);
}

.nav__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.9rem, 2vw, 2rem);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 400;
  font-size: 0.95rem;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.14em;
  color: var(--text-on-dark);
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left calc(100% - 10px);
  transition: background-size 0.35s var(--ease-out), color 0.3s ease;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  background-size: 100% 1px;
}

.nav__link[aria-current="page"] { color: var(--gold-bright); }

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  transition: color 0.3s ease;
}

.lang-switch a:hover { color: var(--cream); }

.lang-switch a[aria-current="true"] {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.4em;
}

@media (min-width: 900px) {
  .lang-switch {
    border-left: 1px solid var(--line);
    padding-left: clamp(1.25rem, 2.5vw, 2rem);
  }
}

/* Burger toggle (JS only) */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.nav-toggle__line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.35s var(--ease-out), opacity 0.3s ease;
}

.nav-open .nav-toggle__line:first-child { transform: translateY(4px) rotate(45deg); }
.nav-open .nav-toggle__line:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Mobile: JS overlay nav */
@media (max-width: 899px) {
  .js .nav-toggle { display: inline-flex; }

  .js .site-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.75rem;
    background: rgba(12, 10, 9, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-out), visibility 0.4s;
  }

  .js .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .js .site-nav .nav__list {
    flex-direction: column;
    gap: 1.4rem;
    text-align: center;
  }

  .js .site-nav .nav__link {
    font-family: var(--font-display);
    font-variant-caps: normal;
    font-size: 2rem;
    letter-spacing: 0.06em;
    background-position: left calc(100% - 4px);
  }

  .js body:not(.nav-open) .site-nav { pointer-events: none; }

  .js .nav-open .site-nav { pointer-events: auto; }
}

body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 640px;
  min-height: max(640px, 100vh);
  min-height: max(640px, 100svh);
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 10, 9, 0.25), rgba(12, 10, 9, 0.88));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(7rem, 14vh, 9rem) clamp(3.5rem, 9vh, 6rem);
}

.hero__content .lead {
  margin-top: 1.4rem;
  max-width: 56ch;
  color: var(--text-on-dark);
}

.hero__content .btn-row { margin-top: 2.2rem; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.hero__badge .stars svg {
  width: 13px;
  height: 13px;
}

.hero__badge a {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-on-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
  transition: color 0.3s ease;
}

.hero__badge a:hover { color: var(--gold-bright); }

/* Scroll cue: hairline that sweeps */
.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 2;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  overflow: hidden;
}

.hero__cue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform-origin: bottom;
  animation: cue-sweep 2.8s var(--ease-out) infinite;
}

@keyframes cue-sweep {
  0%   { transform: scaleY(1); }
  60%  { transform: scaleY(0); }
  100% { transform: scaleY(0); }
}

/* Inner-page typographic header (no image) */
.hero-lite {
  padding-block: clamp(8.5rem, 18vh, 12rem) clamp(3.5rem, 7vw, 5rem);
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hero-lite .lead {
  margin-top: 1.4rem;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   7. Split (media + copy)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(2.25rem, 6vw, 4.5rem);
  align-items: center;
}

.split__media { position: relative; }

.split__media img { width: 100%; }

/* Inner passe-partout hairline */
.frame { position: relative; }

.frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(250, 247, 242, 0.28);
  pointer-events: none;
}

.split__media--portrait {
  max-width: 420px;
  margin-inline: auto;
}

.split__copy p + p { margin-top: 1.1rem; }
.split__copy p { max-width: 56ch; }
.split__copy .btn-row,
.split__copy .link--more { margin-top: 2rem; }
.split__copy .link--more { display: inline-block; }

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip .split__media { order: 2; }
}

/* --------------------------------------------------------------------------
   8. Stat row
   -------------------------------------------------------------------------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.stat {
  background: var(--ink);
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem) 1.25rem;
}

.section--cream .stat { background: var(--cream); }
.section--sand .stat { background: var(--sand); }

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  line-height: 1;
  color: var(--fg-strong);
}

.stat__value small {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--fg-muted);
}

.stat .eyebrow {
  margin: 0.9rem 0 0;
  font-size: 0.7rem;
}

@media (min-width: 900px) {
  .stat-row { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   9. Dish grid / cards
   -------------------------------------------------------------------------- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

@media (min-width: 1100px) {
  .dish-grid { grid-template-columns: repeat(3, 1fr); }
}

.dish-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--stone);
}

.section--cream .dish-card,
.section--sand .dish-card { background: var(--cream); }

.dish-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.dish-card:hover::after { transform: scaleX(1); }

.dish-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.dish-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.dish-card:hover .dish-card__media img { transform: scale(1.04); }

.dish-card__body { padding: 1.5rem 1.6rem 1.8rem; }

.dish-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--fg-strong);
}

.dish-card__desc {
  margin-top: 0.45rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

/* Text-only tile — charcoal per component spec (photo cards use --stone) */
.dish-card--text {
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--charcoal);
  border-top: 1px solid var(--gold);
  padding: 3rem 1.6rem;
  min-height: 280px;
}

.dish-card--text .eyebrow {
  font-size: 0.68rem;
  margin-bottom: 1rem;
}

.dish-card--text .dish-card__name {
  font-style: italic;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
}

/* --------------------------------------------------------------------------
   10. Reviews / stars
   -------------------------------------------------------------------------- */
.stars {
  display: inline-flex;
  gap: 0.25rem;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.review-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Default: cream card on a dark section */
.review-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.4rem 2rem;
  background: var(--cream);
  color: var(--text-on-light);
}

.review-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--text-on-light);
  flex-grow: 1;
}

.review-card cite {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-on-light);
}

/* Inverted: dark card on a light section */
.section--cream .review-card,
.section--sand .review-card {
  background: var(--ink);
  color: var(--text-on-dark);
}

.section--cream .review-card__quote,
.section--sand .review-card__quote { color: var(--cream); }

.section--cream .review-card cite,
.section--sand .review-card cite { color: var(--muted-on-dark); }

/* --------------------------------------------------------------------------
   11. Statement band
   -------------------------------------------------------------------------- */
.band {
  padding-block: clamp(5rem, 10vw, 8rem);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}

.band .eyebrow { margin-bottom: 1.6rem; }

.band__line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  line-height: 1.25;
  color: var(--fg-strong);
  max-width: 24ch;
  margin-inline: auto;
}

.band cite {
  display: block;
  margin-top: 1.6rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* --------------------------------------------------------------------------
   12. Hours table
   -------------------------------------------------------------------------- */
.hours-table > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--hairline);
}

.hours-table > div:first-child { border-top: 1px solid var(--hairline); }

.hours-table dt {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hours-table dd {
  font-weight: 400;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   13. Map frame
   -------------------------------------------------------------------------- */
.map-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--hairline);
  background: var(--charcoal);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15);
}

/* --------------------------------------------------------------------------
   14. Instagram strip
   -------------------------------------------------------------------------- */
.ig-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

@media (min-width: 640px) {
  .ig-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .ig-strip { grid-template-columns: repeat(6, 1fr); }
}

.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--charcoal);
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ig-tile:hover img,
.ig-tile:focus-visible img { transform: scale(1.05); }

.ig-tile__veil {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 92, 0.82);
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ig-tile:hover .ig-tile__veil,
.ig-tile:focus-visible .ig-tile__veil { opacity: 1; }

.ig-tile__veil svg {
  width: 28px;
  height: 28px;
}

/* --------------------------------------------------------------------------
   15. Visit grid / generic panel
   -------------------------------------------------------------------------- */
.visit-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .visit-grid { grid-template-columns: repeat(3, 1fr); gap: 3.5rem; }
}

.visit-grid h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-small);
  margin-bottom: 1rem;
}

.visit-grid p,
.visit-grid address { color: var(--fg); }

.panel {
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.section--cream .panel,
.section--sand .panel {
  background: var(--cream);
  border-color: var(--hairline-light);
}

/* --------------------------------------------------------------------------
   16. Menu & FAQ helpers (inner pages)
   -------------------------------------------------------------------------- */
.menu-note {
  font-size: 0.95rem;
  color: var(--fg-muted);
  border: 1px solid var(--hairline);
  padding: 1.25rem 1.5rem;
  max-width: 62ch;
}

.menu-list { max-width: 760px; }

.menu-item {
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--hairline);
}

.menu-item__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--fg-strong);
}

.menu-item__desc {
  margin-top: 0.3rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.faq details {
  border-bottom: 1px solid var(--hairline);
}

.faq details:first-child { border-top: 1px solid var(--hairline); }

.faq summary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--fg-strong);
  padding-block: 1.1rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--accent-small);
  transition: transform 0.3s var(--ease-out);
}

.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq details > p,
.faq details > div {
  padding-bottom: 1.4rem;
  max-width: 62ch;
  color: var(--fg-muted);
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--text-on-dark);
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.site-footer__grid {
  display: grid;
  gap: 2.75rem;
}

@media (min-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 4rem;
  }
}

.site-footer .wordmark { margin-bottom: 1.1rem; }

.site-footer__blurb {
  font-size: 0.95rem;
  color: var(--muted-on-dark);
  max-width: 40ch;
}

.footer-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.site-footer address,
.site-footer p { color: var(--muted-on-dark); }

.site-footer address { line-height: 1.9; font-size: 0.95rem; }

.footer-links li + li { margin-top: 0.35rem; }

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  font-size: 0.95rem;
  color: var(--text-on-dark);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--gold-bright); }

.footer-links svg {
  width: 18px;
  height: 18px;
  flex: none;
  stroke: currentColor;
}

.footer-tel {
  color: var(--text-on-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  transition: color 0.3s ease;
}

.footer-tel:hover { color: var(--gold-bright); }

.site-footer__legal {
  margin-top: clamp(2.75rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  font-size: 0.8rem;
  color: var(--muted-on-dark);
}

.site-footer__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.site-footer__langs a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted-on-dark);
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.site-footer__langs a:hover { color: var(--cream); }

.site-footer__langs a[aria-current="true"] {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

/* --------------------------------------------------------------------------
   18. Scroll reveal (JS-gated: visible by default without JS)
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .d-1 { transition-delay: 0.08s; }
.js .d-2 { transition-delay: 0.16s; }
.js .d-3 { transition-delay: 0.24s; }
.js .d-4 { transition-delay: 0.32s; }

/* --------------------------------------------------------------------------
   19. 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;
    transition-delay: 0s !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__cue { display: none; }

  .dish-card:hover .dish-card__media img,
  .ig-tile:hover img { transform: none; }
}

/* --------------------------------------------------------------------------
   20. Print basics
   -------------------------------------------------------------------------- */
@media print {
  body { background: #fff; color: #000; }

  .site-header,
  .nav-toggle,
  .skip-link,
  .hero__cue,
  .ig-strip,
  .btn,
  .map-frame { display: none !important; }

  .section,
  .section--cream,
  .section--sand,
  .band,
  .site-footer {
    background: #fff !important;
    color: #000 !important;
    padding-block: 1.25rem;
  }

  .hero { min-height: auto; }
  .hero__img { display: none; }
  .hero::after { display: none; }
  .hero__content { padding-block: 1.5rem 0; }

  h1, h2, h3, h4,
  .display,
  .band__line,
  .stat__value,
  .dish-card__name,
  .review-card__quote { color: #000 !important; }

  p, .lead, .attribution, cite, address, dd, dt { color: #222 !important; }

  a { color: #000; text-decoration: underline; }

  .dish-card,
  .review-card,
  .stat { background: #fff !important; border: 1px solid #ccc; }
}
