@import url("/css/fonts.css");

/* ==========================================================================
   Yee Chino — base stylesheet
   Palette is taken from the room itself: petrol walls, silk-lantern gold,
   warm wood. Single committed look, no dark-mode variant — the brand IS dark
   petrol on warm paper.
   ========================================================================== */

:root {
  /* Colour */
  --petrol-900: #062024;
  --petrol-800: #0a3438;
  --petrol-700: #0e4a50;
  --petrol-600: #14636a;
  --gold-500: #c09a52;
  --gold-400: #d7b878;
  --gold-100: #f3e9d5;
  --paper: #fbf8f2;
  --paper-dim: #f2ece1;
  --ink: #1b1a17;
  --ink-soft: #514c44;
  --line: #ded5c6;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Space */
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --measure: 38rem;
  --wide: 76rem;
  --radius: 3px;

  /* Header */
  --header-h: 4.5rem;
}

/* --- Reset ---------------------------------------------------------------- */

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

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
}

a {
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

/* Global focus treatment — :focus-visible only, never :focus */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--petrol-900);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

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

/* --- Layout --------------------------------------------------------------- */

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--wide));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - (var(--gutter) * 2), 54rem);
  margin-inline: auto;
}

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

.section--petrol {
  background: var(--petrol-800);
  color: var(--paper);
}

.section--dim {
  background: var(--paper-dim);
}

.section__intro {
  max-width: var(--measure);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 0.9rem;
}

.section--petrol .eyebrow {
  color: var(--gold-400);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
}

.section--petrol .lede {
  color: var(--gold-100);
}

/* --- Header --------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--petrol-900) 94%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--paper);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--paper);
}

.brand span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  list-style: none;
}

.nav__list a {
  font-size: 0.92rem;
  text-decoration: none;
  padding-block: 0.35rem;
  border-bottom: 1px solid transparent;
}

.nav__list a:hover,
.nav__list a[aria-current="page"] {
  border-bottom-color: var(--gold-500);
}

/* Hamburger — top right, never floating standalone */
.nav-toggle {
  display: none;
  appearance: none;
  background: none;
  border: 1px solid color-mix(in srgb, var(--paper) 35%, transparent);
  border-radius: var(--radius);
  color: inherit;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  cursor: pointer;
}

.nav-toggle svg {
  margin-inline: auto;
}

.nav-toggle__close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
  display: block;
}

@media (max-width: 60rem) {
  /* The toggle only appears once JS has marked the header as enhanced.
     Without JS the nav stays visible as a stacked list instead of being
     locked behind a button that cannot open it. */
  .site-header[data-enhanced="true"] .nav-toggle {
    display: block;
    order: 3;
  }

  .site-header[data-enhanced="true"] .nav {
    order: 4;
    flex-basis: 100%;
    display: none;
  }

  .site-header[data-enhanced="true"] .nav[data-open="true"] {
    display: block;
  }

  .nav {
    order: 4;
    flex-basis: 100%;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 1rem;
  }

  .nav__list a {
    display: block;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid color-mix(in srgb, var(--paper) 14%, transparent);
  }

  .site-header__inner {
    flex-wrap: wrap;
    padding-block: 0.6rem;
  }
}

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn--gold {
  background: var(--gold-500);
  color: var(--petrol-900);
}

.btn--gold:hover {
  background: var(--gold-400);
}

.btn--ghost {
  border-color: currentColor;
  color: inherit;
}

.btn--ghost:hover {
  background: color-mix(in srgb, currentColor 12%, transparent);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  color: var(--paper);
  display: grid;
  align-items: end;
  min-height: min(78svh, 40rem);
  background: var(--petrol-900);
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Weighted so the whole text block sits on a safe backdrop. On narrow
     screens the copy grows tall and reaches into the bright lantern area,
     so the scrim has to stay dense well above the fold of the text. */
  background: linear-gradient(
    to top,
    rgb(6 32 36 / 0.94) 0%,
    rgb(6 32 36 / 0.9) 55%,
    rgb(6 32 36 / 0.72) 82%,
    rgb(6 32 36 / 0.38) 100%
  );
}

/* The eyebrow is 12.5px — it does not qualify as large text, so it needs the
   full 4.5:1. Measured against the brightest lantern behind it, not guessed. */
.hero .eyebrow {
  color: var(--gold-100);
}

.hero__body {
  padding-block: clamp(2.5rem, 7vw, 5rem);
  max-width: 44rem;
}

.hero h1 {
  margin-bottom: 0.35em;
}

.hero__claim {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--gold-100);
  max-width: 34rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--gold-100);
}

.hero__meta li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* --- Cards / grids -------------------------------------------------------- */

.grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
}

.section--petrol .card {
  background: color-mix(in srgb, var(--paper) 6%, transparent);
  border-color: color-mix(in srgb, var(--gold-500) 40%, transparent);
}

.card__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-500);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

/* The qualifier ("pro Person, ab zwei Personen") gets its own line in the body
   face. Left inline it wraps mid-phrase and reads as a second price. */
.card__price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-400);
  margin-top: 0.15rem;
}

.card ul {
  list-style: none;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.card ul li {
  padding-left: 1.1rem;
  position: relative;
}

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 1px;
  background: var(--gold-500);
}

.card__foot {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.section--petrol .card__foot {
  color: var(--gold-100);
}

/* --- Split (image + text) ------------------------------------------------- */

.split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.split__media img {
  border-radius: var(--radius);
  width: 100%;
}

/* --- Gallery -------------------------------------------------------------- */

.gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  list-style: none;
}

.gallery img {
  width: 100%;
  border-radius: var(--radius);
}

.gallery figure {
  margin: 0;
}

.gallery figcaption {
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding-top: 0.5rem;
}

/* --- Menu (Speisekarte) --------------------------------------------------- */

.menu-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  background: var(--paper-dim);
  border-bottom: 1px solid var(--line);
  padding-block: 0.6rem;
}

.menu-nav ul {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.menu-nav a {
  display: block;
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  background: var(--paper);
}

.menu-nav a:hover {
  border-color: var(--gold-500);
}

.menu-section {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 3.5rem);
}

.menu-section:last-of-type {
  border-bottom: 0;
}

.menu-section__note {
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: var(--measure);
}

.dish-list {
  list-style: none;
  display: grid;
  gap: 0.15rem;
}

.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.35rem 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dotted var(--line);
}

.dish:last-child {
  border-bottom: 0;
}

.dish__name {
  font-weight: 500;
}

.dish__no {
  color: var(--gold-500);
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  margin-right: 0.4rem;
}

.dish__desc {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0.15rem 0 0;
}

.dish__price {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  white-space: nowrap;
}

.dish__price--add {
  font-weight: 500;
  color: var(--ink-soft);
}

.allergen {
  font-size: 0.72em;
  color: var(--ink-soft);
  vertical-align: super;
  letter-spacing: 0.04em;
}

.legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 0.35rem 2rem;
  list-style: none;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.legend dt {
  font-weight: 600;
}

/* --- Info / contact ------------------------------------------------------- */

.info-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.hours {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dotted color-mix(in srgb, currentColor 30%, transparent);
  padding-bottom: 0.4rem;
}

.hours .closed {
  color: var(--gold-400);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  font-size: 1rem;
}

.contact-list a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

address {
  font-style: normal;
}

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

/* The trigger is a real link to the image file. Without JS it simply opens the
   picture; with JS the click is intercepted and the dialog takes over. */

.zoomable {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}

.zoomable::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(6 32 36 / 0);
  pointer-events: none;
  transition: background 180ms ease;
}

.zoomable:hover::after {
  background: rgb(6 32 36 / 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .zoomable::after {
    transition: none;
  }
}

.lightbox {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgb(4 20 22 / 0.985);
}

.lightbox__stage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(0.75rem, 3vw, 2rem);
  gap: 0.75rem;
}

.lightbox__frame {
  position: relative;
  display: grid;
  place-items: center;
  overflow: auto;
  min-height: 0;
  overscroll-behavior: contain;
}

.lightbox__frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.lightbox__frame[data-zoomed="true"] {
  place-items: start;
  cursor: grab;
}

.lightbox__frame[data-zoomed="true"] img {
  max-width: none;
  max-height: none;
  width: 200%;
  cursor: zoom-out;
}

.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--gold-100);
}

.lightbox__caption {
  margin: 0;
  max-width: 52ch;
}

.lightbox__count {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--gold-400);
}

.lightbox__btn {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid color-mix(in srgb, var(--paper) 34%, transparent);
  border-radius: 50%;
  background: rgb(6 32 36 / 0.72);
  color: var(--paper);
  cursor: pointer;
  padding: 0;
}

.lightbox__btn:hover {
  background: rgb(6 32 36 / 0.95);
  border-color: var(--gold-500);
}

.lightbox__close {
  top: clamp(0.75rem, 3vw, 2rem);
  right: clamp(0.75rem, 3vw, 2rem);
}

.lightbox__prev {
  left: clamp(0.5rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: clamp(0.5rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__btn[hidden] {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .lightbox[open] .lightbox__stage {
    animation: lb-in 220ms ease-out both;
  }

  @keyframes lb-in {
    from {
      opacity: 0;
      transform: scale(0.985);
    }
  }
}

/* --- Map facade ----------------------------------------------------------- */

/* Two-click solution. The placeholder is a self-hosted OpenStreetMap render —
   it costs no external request and is already useful for orientation. Google
   Maps only loads after an explicit click, which is the consent. */

.map {
  position: relative;
  margin-top: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-dim);
  aspect-ratio: 3 / 2;
}

@media (min-width: 48rem) {
  .map {
    aspect-ratio: 12 / 5;
  }
}

.map__still {
  position: absolute;
  inset: 0;
}

.map__still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map__gate {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.85rem;
  text-align: center;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: rgb(6 32 36 / 0.74);
  color: var(--paper);
}

.map__gate p {
  margin: 0;
  max-width: 34rem;
  font-size: 0.9rem;
  color: var(--gold-100);
}

.map__gate .map__hint {
  font-size: 0.8rem;
}

.map__gate a {
  color: var(--gold-100);
}

.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map__credit {
  position: absolute;
  z-index: 2;
  right: 0.4rem;
  bottom: 0.4rem;
  margin: 0;
  font-size: 0.68rem;
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  background: rgb(251 248 242 / 0.88);
  color: var(--ink);
}

.map__credit a {
  color: inherit;
}

/* --- Video facade --------------------------------------------------------- */

/* Same two-click principle as the map: nothing reaches YouTube until the
   visitor asks for it. The poster frame is stored here, not fetched from
   i.ytimg.com — a "privacy" facade that loads Google's thumbnail is pointless. */

.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--petrol-900);
}

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

/* The poster already carries the film's own burned-in lower third
   ("TÂN & TRANG LÊ / Wirtsehepaar"). Putting a second caption on top of it
   collides, so the gate is just a centred play control and the notice sits
   below the frame. */
.video__gate {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 0;
  border: 0;
  width: 100%;
  background: rgb(6 32 36 / 0.28);
  color: var(--paper);
  font: inherit;
  cursor: pointer;
  transition: background 160ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .video__gate {
    transition: none;
  }
}

.video__gate:hover {
  background: rgb(6 32 36 / 0.44);
}

.video__play {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--petrol-900);
  box-shadow: 0 2px 18px rgb(4 20 22 / 0.45);
}

.video__gate:hover .video__play {
  background: var(--gold-400);
}

.video__note {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Testimonials --------------------------------------------------------- */

.quote {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section--petrol .quote {
  background: color-mix(in srgb, var(--paper) 6%, transparent);
  border-color: color-mix(in srgb, var(--gold-500) 40%, transparent);
}

.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.45;
}

.quote figcaption {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: auto;
}

.section--petrol .quote figcaption {
  color: var(--gold-100);
}

/* --- Forms ---------------------------------------------------------------- */

.form {
  display: grid;
  gap: 1.1rem;
  max-width: 34rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
}

.field .hint {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: inherit;
  width: 100%;
}

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

.field-row {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
}

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  background: var(--petrol-900);
  color: var(--gold-100);
  padding-block: clamp(2.5rem, 6vw, 4rem) 2rem;
  font-size: 0.92rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--paper);
  font-size: 1.15rem;
}

.site-footer a {
  color: var(--gold-100);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.social {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin-top: 0.9rem;
}

.social a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--gold-500) 55%, transparent);
  border-radius: 50%;
}

.social a:hover {
  background: color-mix(in srgb, var(--gold-500) 20%, transparent);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--paper) 15%, transparent);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
}

/* --- Prose (legal pages) -------------------------------------------------- */

.prose {
  max-width: var(--measure);
}

.prose h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-top: 2.25em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  padding-left: 1.15rem;
  margin-bottom: 1.1em;
}

.prose li {
  margin-bottom: 0.35em;
}

.note {
  border-left: 3px solid var(--gold-500);
  background: var(--paper-dim);
  padding: 1rem 1.25rem;
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
}

/* --- Motion --------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: reveal 620ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(0.75rem);
    }
  }
}

/* --- Print ---------------------------------------------------------------- */

@media print {
  .site-header,
  .menu-nav,
  .site-footer,
  .btn-row,
  .hero__media {
    display: none !important;
  }

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

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

  .dish {
    break-inside: avoid;
  }
}
