:root {
  --paper: #f8efe0;
  --ink: #2d2117;
  --gold: #d8b273;
  --gold-deep: #a9834f;
  --sand: #f2e9d8;
  --sand-light: #f8f2e6;
  --sand-deep: #e9dcc4;
  --ink-soft: rgba(45, 33, 23, 0.66);
  --ink-faint: rgba(45, 33, 23, 0.4);
  --hairline-dark: rgba(45, 33, 23, 0.16);
  --night: #14100b;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: #0f0b08;
  color: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 82% 78%, rgba(255, 235, 190, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(15, 11, 8, 0.06), rgba(15, 11, 8, 0.28));
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-header {
  position: absolute;
  top: clamp(0.8rem, 1.8vw, 1.5rem);
  right: clamp(0.7rem, 1.8vw, 1.75rem);
  left: clamp(1.25rem, 3.4vw, 3.75rem);
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

.header-left {
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
  pointer-events: auto;
}

.menu-shell {
  position: relative;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--paper);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-button:hover,
.menu-button:focus-visible {
  opacity: 0.75;
  transform: translateY(-0.1rem);
}

.language-toggle a:focus-visible,
.reserve-button:focus-visible {
  outline: 2px solid rgba(248, 239, 224, 0.9);
  outline-offset: 4px;
}

.menu-button:focus-visible {
  outline: 0;
}

.menu-icon {
  width: 2.15rem;
  height: 1.25rem;
}

.menu-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.6;
}

.menu-dropdown {
  position: absolute;
  top: 2.6rem;
  left: 0;
  display: grid;
  gap: 0.72rem;
  min-width: 7rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-button[aria-expanded="true"] + .menu-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-dropdown a {
  color: rgba(248, 239, 224, 0.86);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.menu-dropdown a:hover,
.menu-dropdown a:focus-visible {
  color: var(--paper);
  transform: translateX(0.2rem);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  gap: 0.72rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.language-toggle a {
  color: rgba(248, 239, 224, 0.74);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease;
}

.language-toggle a:hover,
.language-toggle a[aria-current="true"] {
  color: var(--paper);
}

.language-toggle span {
  width: 1px;
  height: 0.86rem;
  background: rgba(248, 239, 224, 0.48);
}

.header-logo {
  width: clamp(2.1rem, 3.5vw, 3.75rem);
  height: auto;
  pointer-events: auto;
  filter: drop-shadow(0 0.8rem 1.6rem rgba(24, 17, 10, 0.26));
}

.header-right {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.2rem);
  pointer-events: auto;
}

.reserve-link {
  position: relative;
  padding-bottom: 0.55rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(15, 11, 8, 0.55);
  transition: color 200ms ease, letter-spacing 240ms ease;
}

.reserve-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0.42);
  transform-origin: left center;
  transition: transform 260ms ease;
}

.reserve-link:hover,
.reserve-link:focus-visible {
  color: var(--paper);
  letter-spacing: 0.38em;
}

.reserve-link:hover::after,
.reserve-link:focus-visible::after {
  transform: scaleX(1);
}

.reserve-link:focus-visible {
  outline: 2px solid rgba(248, 239, 224, 0.9);
  outline-offset: 4px;
}

.menu-top-link {
  color: rgba(248, 239, 224, 0.85);
}

.menu-top-link::after {
  background: rgba(248, 239, 224, 0.55);
}

.menu-top-link:hover,
.menu-top-link:focus-visible {
  color: var(--gold);
}

.menu-top-link:hover::after,
.menu-top-link:focus-visible::after {
  background: var(--gold);
}

.reserve-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.1rem 0;
  background: none;
  box-shadow: none;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, letter-spacing 220ms ease;
}

.reserve-button::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.6rem;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
  transition: width 260ms ease;
}

.visit-cta:hover .reserve-button,
.reserve-button:focus-visible {
  color: var(--gold);
  letter-spacing: 0.32em;
}

.visit-cta:hover .reserve-button::before,
.reserve-button:focus-visible::before {
  width: 100%;
}

.reserve-caption {
  margin: 0.65rem 0 0;
  color: rgba(248, 239, 224, 0.6);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  transition: color 220ms ease;
}

.visit-cta:hover .reserve-caption,
.reserve-button:focus-visible ~ .reserve-caption {
  color: rgba(248, 239, 224, 0.92);
}

.scroll-cue {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  display: block;
  width: 1px;
  height: clamp(3.2rem, 7vh, 5rem);
  overflow: hidden;
  background: rgba(248, 239, 224, 0.22);
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(248, 239, 224, 0.9);
  animation: cue-drop 2.6s ease-in-out infinite;
}

@keyframes cue-drop {
  0% {
    top: -40%;
  }
  60%,
  100% {
    top: 100%;
  }
}

/* ---------- Shared section language ---------- */

.kicker {
  margin: 0 0 2rem;
  color: var(--ink-faint);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.story-section h1,
.section-head h2,
.chef-copy h2,
.wine-copy h2,
.visit-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

/* ---------- Story ---------- */

.story-section {
  padding: clamp(6.5rem, 11vw, 11rem) clamp(1.25rem, 6vw, 6.5rem) clamp(5rem, 8vw, 8rem);
  color: var(--ink);
  background: var(--sand);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(16rem, 0.7fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  max-width: 82rem;
}

.story-section h1 {
  max-width: 52rem;
  font-size: clamp(3rem, 6.5vw, 6.8rem);
  line-height: 1;
}

.story-lede {
  margin: 0 0 1.1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
}

.story-aside p:not(.story-lede) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.wind-line {
  max-width: 13rem;
  margin: clamp(3rem, 6vw, 5.5rem) 0;
  color: var(--gold-deep);
  overflow: hidden;
}

.wind-line svg {
  display: block;
  width: 130%;
  height: 0.85rem;
  animation: wind-drift 7s ease-in-out infinite alternate;
}

.wind-line path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.4;
}

@keyframes wind-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-18%);
  }
}

.story-images {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(1.2rem, 3.5vw, 3.5rem);
  align-items: start;
  max-width: 76rem;
}

.story-images figure {
  margin: 0;
}

.story-figure-offset {
  margin-top: clamp(2.5rem, 6vw, 6rem);
}

.story-images img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-images figcaption,
.kitchen-band figcaption,
.wine-detail figcaption {
  margin-top: 0.85rem;
  color: var(--ink-faint);
  font-family: var(--serif);
  font-size: 0.98rem;
  font-style: italic;
}

/* Chef figcaption sits inside the decorative offset frame.
   The ::before frame left border starts 1rem in from the figure edge,
   so we indent the caption to match it. */
.chef-portrait figcaption {
  margin-top: 0.85rem;
  padding-left: 1rem;
  color: var(--ink-faint);
  font-family: var(--serif);
  font-size: 0.98rem;
  font-style: italic;
}

/* ---------- Full-bleed statement ---------- */

.statement {
  position: relative;
  isolation: isolate;
  background: var(--night);
}

.statement img {
  width: 100%;
  height: clamp(30rem, 92vh, 52rem);
  object-fit: cover;
}

.statement::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(200deg, transparent 55%, rgba(20, 16, 11, 0.55));
  pointer-events: none;
}

.statement blockquote {
  position: absolute;
  bottom: clamp(2rem, 6vw, 4.5rem);
  left: clamp(1.25rem, 6vw, 6.5rem);
  z-index: 2;
  max-width: 26ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
}

/* ---------- Kitchen ---------- */

.kitchen-section {
  padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 6vw, 6.5rem);
  color: var(--ink);
  background: var(--sand-light);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.55fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  max-width: 82rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-head .kicker {
  grid-column: 1 / -1;
}

.section-head h2,
.wine-copy h2,
.visit-copy h2 {
  font-size: clamp(2.3rem, 4.4vw, 4.6rem);
  line-height: 1.02;
}

.section-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  max-width: 88rem;
}

.dish-grid figure {
  margin: 0;
}

.dish-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.dish-grid figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.9rem;
}

.dish-grid figcaption span {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.1;
}

.dish-grid figcaption em {
  color: var(--ink-faint);
  font-family: var(--serif);
  font-size: 0.95rem;
}

.kitchen-band {
  margin: clamp(3rem, 6vw, 6rem) 0 0;
}

.kitchen-band img {
  width: 100%;
  height: clamp(16rem, 42vw, 30rem);
  object-fit: cover;
}

/* ---------- Wine ---------- */

.wine-section {
  padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 6vw, 6.5rem);
  color: var(--ink);
  background: var(--sand);
  border-top: 1px solid var(--hairline-dark);
}

.wine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  max-width: 82rem;
}

.wine-main {
  margin: 0;
}

.wine-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.wine-copy p:not(.kicker) {
  max-width: 26rem;
  margin: 1.7rem 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.wine-detail {
  max-width: 15rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
}

.wine-detail img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.wine-fact {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-deep) !important;
}

.menu-full-link {
  display: inline-block;
  margin-top: 1.4rem;
  padding-bottom: 0.35rem;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  transition: opacity 180ms ease;
}

.menu-full-link:hover,
.menu-full-link:focus-visible {
  opacity: 0.65;
}

/* ---------- From the menu ---------- */

.menu-list {
  max-width: 76rem;
  margin-top: clamp(4rem, 7vw, 7rem);
  padding-top: clamp(2.5rem, 4vw, 4rem);
  border-top: 1px solid var(--hairline-dark);
}

.menu-list-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.menu-list-head .kicker {
  margin-bottom: 0;
}

.menu-list-head .menu-full-link {
  margin-top: 0;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.9rem clamp(2.5rem, 6vw, 6rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item-row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.menu-item-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.15;
}

.menu-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(45, 33, 23, 0.32);
  transform: translateY(-0.25rem);
}

.menu-price {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.menu-item-desc {
  max-width: 30rem;
  margin: 0.35rem 0 0;
  color: var(--ink-faint);
  font-family: var(--serif);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.45;
}

/* ---------- Chef ---------- */

.chef-section {
  padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 6vw, 6.5rem);
  color: var(--ink);
  background: var(--sand);
  border-top: 1px solid var(--hairline-dark);
}

.chef-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  max-width: 82rem;
  margin: 0 auto;
}

.chef-portrait {
  position: relative;
  margin: 0;
}

.chef-portrait::before {
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  content: "";
  border: 1px solid rgba(169, 131, 79, 0.4);
}

.chef-portrait img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: sepia(0.08) contrast(1.05);
}

.chef-copy .kicker {
  margin-bottom: 1.5rem;
}

.chef-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.chef-copy p:not(.kicker) {
  max-width: 37rem;
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.chef-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 39rem;
  margin: clamp(2rem, 4vw, 3.2rem) 0 0;
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.chef-facts div {
  padding: 1rem 1.15rem 1.1rem;
  border-left: 1px solid var(--hairline-dark);
}

.chef-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.chef-facts span {
  display: block;
  color: var(--ink-faint);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.chef-facts em {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.25;
}

.chef-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  margin-top: 1.8rem;
}

.chef-links a {
  padding-bottom: 0.35rem;
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  transition: opacity 180ms ease;
}

.chef-links a:hover,
.chef-links a:focus-visible {
  opacity: 0.65;
}

/* ---------- A day at Anemi ---------- */

.day-section {
  padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 6vw, 6.5rem);
  color: var(--ink);
  background: var(--sand-light);
  border-top: 1px solid var(--hairline-dark);
}

.day-head {
  max-width: 76rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.day-head .kicker {
  margin-bottom: 1.4rem;
}

.day-head h2 {
  max-width: 20ch;
  font-size: clamp(2.3rem, 4.4vw, 4.6rem);
  line-height: 1.02;
}

.day-holder {
  --fill: 0%;
  /* Orb + track colours are interpolated in JS from noon to night. */
  --orb-hi: #f6dca6;
  --orb-mid: #e4b678;
  --orb-lo: #b98a48;
  --orb-glow: rgba(216, 178, 115, 0.65);
  --track: #c69a5e;
  max-width: 76rem;
  margin: 0 auto;
}

.day-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 38rem;
  overflow: hidden;
  isolation: isolate;
}

.day-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 620ms ease;
}

.day-stage > img.is-active {
  opacity: 1;
}

.day-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(20, 16, 11, 0.62));
  pointer-events: none;
}

.day-meta {
  position: absolute;
  right: 1.6rem;
  bottom: 1.5rem;
  left: 1.6rem;
  z-index: 2;
  color: var(--paper);
}

.day-time {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.day-caption {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-style: italic;
  line-height: 1.2;
}

.day-control {
  position: relative;
  margin-top: 1.6rem;
}

.day-range {
  display: block;
  width: 100%;
  height: 2.4rem;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}

.day-range::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 2px;
  background:
    linear-gradient(var(--track), var(--track)) no-repeat 0 / var(--fill) 100%,
    rgba(45, 33, 23, 0.18);
}

.day-range::-moz-range-track {
  height: 2px;
  border-radius: 2px;
  background: rgba(45, 33, 23, 0.18);
}

.day-range::-moz-range-progress {
  height: 2px;
  border-radius: 2px;
  background: var(--track);
}

.day-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 1.6rem;
  height: 1.6rem;
  margin-top: -0.79rem;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 32%, var(--orb-hi), var(--orb-mid) 52%, var(--orb-lo));
  box-shadow: 0 0 0.35rem 0.05rem var(--orb-glow), 0 0 1.4rem 0.2rem var(--orb-glow);
}

.day-range::-moz-range-thumb {
  width: 1.6rem;
  height: 1.6rem;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 32%, var(--orb-hi), var(--orb-mid) 52%, var(--orb-lo));
  box-shadow: 0 0 0.35rem 0.05rem var(--orb-glow), 0 0 1.4rem 0.2rem var(--orb-glow);
}

.day-range:focus-visible {
  outline: 2px solid var(--track);
  outline-offset: 6px;
}

.day-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
  color: var(--ink-faint);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.day-note {
  margin: 1.4rem 0 0;
  color: var(--ink-faint);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .day-stage > img {
    transition: none;
  }
}

/* ---------- Reviews ---------- */

.reviews-section {
  padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 6vw, 6.5rem);
  color: var(--ink);
  background: var(--sand);
  border-top: 1px solid var(--hairline-dark);
}

.reviews-score {
  grid-column: 2;
  justify-self: end;
  text-align: right;
}

.reviews-number {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1;
}

.reviews-outof {
  color: var(--ink-faint);
  font-size: 0.5em;
}

.reviews-stars {
  margin: 0.4rem 0 0.5rem;
  color: var(--gold-deep);
  font-size: 1.05rem;
  letter-spacing: 0.28em;
}

.star-partial {
  position: relative;
  display: inline-block;
  color: rgba(169, 131, 79, 0.25);
}

.star-partial::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  overflow: hidden;
  color: var(--gold-deep);
  content: "\2605";
}

.reviews-count {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.8rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  max-width: 82rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
  margin: 0;
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  border: 1px solid var(--hairline-dark);
  background: var(--sand-light);
}

.review-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  font-style: italic;
  line-height: 1.35;
}

.review-card footer {
  color: var(--ink-faint);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reviews-links {
  display: flex;
  gap: 1.8rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.reviews-links a {
  padding-bottom: 0.35rem;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  transition: opacity 180ms ease;
}

.reviews-links a:hover,
.reviews-links a:focus-visible {
  opacity: 0.65;
}

/* ---------- Moments ---------- */

.moments-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  color: var(--ink);
  background: var(--sand-deep);
}

.moments-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin: 0 clamp(1.25rem, 6vw, 6.5rem) clamp(2.5rem, 5vw, 4.5rem);
}

.moments-head .kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.moments-lede {
  max-width: 30ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.moments-link {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.35rem;
  transition: opacity 180ms ease;
}

.moments-link:hover,
.moments-link:focus-visible {
  opacity: 0.65;
}

.moments-strip {
  display: flex;
  gap: clamp(0.9rem, 1.6vw, 1.5rem);
  padding: 0 clamp(1.25rem, 6vw, 6.5rem) 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) transparent;
  cursor: grab;
  user-select: none;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

.moments-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none; /* disable snap while dragging for smoothness */
}

.moments-strip img {
  flex: 0 0 auto;
  width: clamp(14rem, 24vw, 21rem);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  scroll-snap-align: start;
}

/* ---------- Visit ---------- */

.visit-section {
  padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 6vw, 6.5rem);
  color: var(--paper);
  background: var(--night);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  max-width: 82rem;
}

.visit-copy .kicker {
  color: rgba(248, 239, 224, 0.42);
}

.visit-copy h2 {
  color: var(--paper);
}

.visit-copy address {
  margin: 2.2rem 0 0;
  font-style: normal;
}

.visit-copy address p {
  margin: 0 0 0.4rem;
  color: rgba(248, 239, 224, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.visit-copy address a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(248, 239, 224, 0.3);
  transition: border-color 180ms ease, color 180ms ease;
}

.visit-copy address a:hover,
.visit-copy address a:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}

.visit-links {
  display: flex;
  gap: 1.6rem;
  margin-top: 1.9rem;
}

.visit-links a {
  color: rgba(248, 239, 224, 0.6);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.visit-links a:hover,
.visit-links a:focus-visible {
  color: var(--gold);
}

.visit-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.2rem 3.4rem;
  border: 1px solid rgba(248, 239, 224, 0.22);
  background: #1b140e;
}

.visit-cta-phone {
  display: block;
  margin: 1.4rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(248, 239, 224, 0.14);
  color: rgba(248, 239, 224, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: color 180ms ease;
}

.visit-cta-phone:hover,
.visit-cta-phone:focus-visible {
  color: var(--gold);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.25rem, 3.4vw, 3.75rem) clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(248, 239, 224, 0.16);
  color: rgba(248, 239, 224, 0.72);
  background: #0f0b08;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr repeat(3, 16rem);
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  max-width: 82rem;
  margin: 0 auto;
  padding-bottom: clamp(2rem, 3vw, 2.5rem);
}

.footer-brand img {
  width: 3.4rem;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  max-width: 18rem;
  margin: 0;
  color: rgba(248, 239, 224, 0.55);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-col-title {
  margin: 0 0 0.5rem;
  color: rgba(248, 239, 224, 0.4);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-col p {
  margin: 0;
  color: rgba(248, 239, 224, 0.62);
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-col a {
  color: rgba(248, 239, 224, 0.62);
  font-size: 0.86rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 82rem;
  margin: 0 auto;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(248, 239, 224, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(248, 239, 224, 0.38);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Sound toggle ---------- */

.sound-toggle {
  position: fixed;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 1px solid rgba(248, 239, 224, 0.28);
  border-radius: 50%;
  color: var(--paper);
  background: #1b140e;
  cursor: pointer;
  transition: border-color 200ms ease, transform 200ms ease;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  border-color: var(--gold);
  transform: translateY(-0.12rem);
}

.sound-toggle:focus-visible {
  outline: 2px solid rgba(248, 239, 224, 0.9);
  outline-offset: 3px;
}

.sound-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 0.95rem;
}

.sound-bars i {
  width: 2px;
  height: 30%;
  background: currentColor;
  animation: sound-wave 1.4s ease-in-out infinite;
  animation-play-state: paused;
}

.sound-bars i:nth-child(1) {
  animation-delay: 0ms;
  height: 42%;
}

.sound-bars i:nth-child(2) {
  animation-delay: 220ms;
  height: 88%;
}

.sound-bars i:nth-child(3) {
  animation-delay: 440ms;
  height: 58%;
}

.sound-bars i:nth-child(4) {
  animation-delay: 660ms;
  height: 74%;
}

.sound-toggle[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--gold);
}

.sound-toggle[aria-pressed="true"] .sound-bars i {
  animation-play-state: running;
}

@keyframes sound-wave {
  0%,
  100% {
    transform: scaleY(0.45);
  }
  50% {
    transform: scaleY(1);
  }
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .wind-line svg,
  .scroll-cue span,
  .sound-bars i {
    animation: none;
  }
}

/* ---------- Tablet (medium breakpoint) ---------- */

@media (max-width: 960px) {
  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wine-grid {
    grid-template-columns: 1fr;
  }

  .wine-detail {
    display: none;
  }
}

/* ---------- Mobile ---------- */

@media (max-width: 720px) {
  .hero-header {
    top: 0.75rem;
    right: 0.75rem;
    left: 1rem;
  }

  .header-left {
    gap: 0.7rem;
  }

  .menu-button {
    width: 2.6rem;
    height: 2rem;
  }

  .header-logo {
    width: 2.1rem;
  }

  .header-right {
    gap: 0.9rem;
  }

  .reserve-link {
    font-size: 0.66rem;
    letter-spacing: 0.24em;
  }

  .reserve-button {
    font-size: 0.76rem;
  }

  .reserve-caption {
    max-width: 12rem;
    white-space: normal;
  }

  .scroll-cue {
    display: none;
  }

  .story-section,
  .kitchen-section,
  .chef-section,
  .wine-section,
  .visit-section {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .story-grid,
  .section-head,
  .chef-grid,
  .wine-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .story-section h1 {
    font-size: 3rem;
  }

  .story-images {
    grid-template-columns: 1fr;
  }

  .story-figure-offset {
    margin-top: 0;
  }

  .statement img {
    height: 70vh;
  }

  .statement blockquote {
    left: 1.25rem;
    right: 1.25rem;
  }

  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moments-head {
    grid-template-columns: 1fr;
    align-items: start;
    margin-right: 1.25rem;
    margin-left: 1.25rem;
  }

  .moments-strip {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .moments-strip img {
    width: 17rem;
  }

  .visit-cta {
    align-self: stretch;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-list-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .chef-portrait {
    max-width: 22rem;
  }

  .chef-portrait::before {
    inset: 0.7rem -0.7rem -0.7rem 0.7rem;
  }

  .chef-copy h2 {
    max-width: 12ch;
  }

  .chef-facts {
    grid-template-columns: 1fr;
  }

  .chef-facts div,
  .chef-facts div:first-child {
    padding: 1rem 0;
    border-left: 0;
  }

  .chef-facts div + div {
    border-top: 1px solid var(--hairline-dark);
  }

  .day-section {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .day-stage {
    aspect-ratio: 4 / 5;
  }

  .reviews-section {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .reviews-score {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .sound-toggle {
    bottom: 1rem;
    left: 1rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}

/* ---------- Menu pages (menu.html / wines.html / drinks.html) ---------- */

.wine-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
}

.menu-page {
  color: var(--ink);
  background: var(--sand-light);
}

.mp-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem clamp(1.25rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--hairline-dark);
  background: rgba(248, 242, 230, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mp-back {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.mp-back:hover,
.mp-back:focus-visible {
  color: var(--gold-deep);
}

.mp-switch {
  display: flex;
  gap: clamp(1rem, 3vw, 2.2rem);
}

.mp-switch a {
  padding-bottom: 0.3rem;
  color: var(--ink-faint);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.mp-switch a:hover,
.mp-switch a:focus-visible {
  color: var(--ink);
}

.mp-switch a[aria-current="page"] {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.mp-lang a {
  color: rgba(45, 33, 23, 0.55);
}

.mp-lang a:hover,
.mp-lang a[aria-current="true"] {
  color: var(--ink);
}

.mp-lang span {
  background: rgba(45, 33, 23, 0.3);
}

.mp-lang a:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 4px;
}

.mp-main {
  max-width: 62rem;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3.5rem) clamp(4rem, 8vw, 7rem);
}

.mp-head .kicker {
  margin-bottom: 1.2rem;
}

.mp-head h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
}

.mp-note {
  margin: 1.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.mp-note a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 33, 23, 0.3);
  transition: color 180ms ease, border-color 180ms ease;
}

.mp-note a:hover,
.mp-note a:focus-visible {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.mp-cats {
  position: sticky;
  top: 3.6rem;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: clamp(2rem, 4vw, 3rem) -1.25rem 0;
  padding: 0.8rem 1.25rem;
  background: var(--sand-light);
  box-shadow: 0 0.6rem 0.9rem -0.7rem rgba(45, 33, 23, 0.18);
}

.mp-cats::-webkit-scrollbar {
  display: none;
}

.mp-cats a {
  flex: 0 0 auto;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--hairline-dark);
  border-radius: 2rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mp-cats a:hover,
.mp-cats a:focus-visible {
  color: var(--ink);
  border-color: var(--gold-deep);
}

.mp-cat {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  scroll-margin-top: 8.5rem;
}

.mp-cat h2 {
  margin: 0 0 0.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--hairline-dark);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 400;
  line-height: 1.05;
}

.mp-hint {
  margin: 0.55rem 0 0;
  color: var(--ink-faint);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  text-align: right;
}

.mp-items {
  display: grid;
  gap: 1.5rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.mp-sub {
  margin-top: 0.9rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.mp-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.14rem 0.4rem;
  border: 1px solid rgba(169, 131, 79, 0.55);
  border-radius: 2px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  vertical-align: 0.18em;
}

.mp-legend {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  color: var(--ink-faint);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
}

.mp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2.2rem clamp(1.25rem, 4vw, 3.5rem) 6rem;
  border-top: 1px solid rgba(248, 239, 224, 0.14);
  color: rgba(248, 239, 224, 0.62);
  background: var(--night);
}

.mp-footer p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mp-footer a {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(216, 178, 115, 0.5);
  padding-bottom: 0.25rem;
  transition: opacity 180ms ease;
}

.mp-footer a:hover,
.mp-footer a:focus-visible {
  opacity: 0.7;
}

@media (max-width: 720px) {
  .mp-topbar {
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }

  .mp-switch {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 1.3rem;
  }

  .mp-cats {
    top: 6.2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mp-cats::-webkit-scrollbar {
    display: none;
  }

  .mp-cat {
    scroll-margin-top: 10.5rem;
  }

  .mp-main {
    padding-top: 2.2rem;
  }
}

/* ---------- Readable menu experience ---------- */

/*
  The Cormorant face is the character of Anemi, but it is not used for the
  small, information-dense text. Names retain the editorial feel; ingredients,
  controls and prices use the far more legible system sans-serif.
*/
.menu-page {
  background: #f7f1e5;
  color: #241a12;
}

.menu-page .mp-topbar {
  min-height: 4.75rem;
  padding: 0.85rem clamp(1rem, 4vw, 3.5rem);
  border-bottom-color: rgba(45, 33, 23, 0.2);
  background: rgba(250, 246, 238, 0.97);
}

.menu-page .mp-back {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.menu-page .mp-switch {
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid rgba(45, 33, 23, 0.15);
  border-radius: 0.65rem;
  background: #f1e8d8;
}

.menu-page .mp-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.72rem;
  border: 0;
  border-radius: 0.42rem;
  color: #665b50;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.menu-page .mp-switch a[aria-current="page"] {
  color: #241a12;
  background: #fffdf8;
  box-shadow: 0 1px 3px rgba(45, 33, 23, 0.12);
}

.menu-page .mp-lang {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.4rem 0;
}

.menu-page .mp-lang a {
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0.55rem;
  color: #5a5047;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.menu-page .mp-lang a[aria-current="true"] {
  color: #241a12;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.menu-page .mp-main {
  max-width: 76rem;
  padding: clamp(2.8rem, 6vw, 5.5rem) clamp(1rem, 4vw, 3.5rem) clamp(4rem, 8vw, 7rem);
}

.menu-page .mp-head {
  max-width: 48rem;
  padding-bottom: clamp(1.8rem, 4vw, 3.2rem);
  border-bottom: 1px solid rgba(45, 33, 23, 0.18);
}

.menu-page .mp-head .kicker {
  margin-bottom: 0.7rem;
  color: #87683f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.menu-page .mp-head h1 {
  font-size: clamp(3.1rem, 8vw, 6.25rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.menu-page .mp-cats {
  position: relative;
  top: auto;
  flex-wrap: nowrap;
  gap: 0.55rem;
  margin: 0 -1rem;
  padding: 1rem max(1rem, calc((100vw - 69rem) / 2));
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  background: rgba(247, 241, 229, 0.98);
  box-shadow: 0 0.65rem 1rem -0.8rem rgba(45, 33, 23, 0.35);
}

.menu-page .mp-cats::-webkit-scrollbar {
  display: none;
}

.menu-page .mp-cats a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.9rem;
  border-color: rgba(45, 33, 23, 0.24);
  color: #4d443b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.menu-page .mp-cats a:hover,
.menu-page .mp-cats a:focus-visible {
  color: #241a12;
  border-color: #87683f;
  background: #fffdf8;
}

.menu-page .mp-cat {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid rgba(45, 33, 23, 0.16);
  border-radius: 1rem;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 0.7rem 1.8rem -1.5rem rgba(45, 33, 23, 0.35);
  scroll-margin-top: 9.5rem;
}

.menu-page .mp-cat h2 {
  margin: 0;
  padding: 0 0 1rem;
  border-bottom-color: rgba(45, 33, 23, 0.2);
  font-size: clamp(2.15rem, 4vw, 3.3rem);
  line-height: 0.95;
}

.menu-page .mp-hint {
  margin: 0.75rem 0 0;
  color: #655a4e;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.menu-page .mp-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 1rem;
}

.menu-page .mp-items > li:not(.mp-sub) {
  min-width: 0;
  padding: 1.05rem 1.1rem 1.1rem 0;
  border-bottom: 1px solid rgba(45, 33, 23, 0.13);
}

.menu-page .mp-items > li:not(.mp-sub):nth-child(odd) {
  padding-right: 1.4rem;
}

.menu-page .mp-items > li:not(.mp-sub):nth-child(even) {
  padding-left: 1.4rem;
  border-left: 1px solid rgba(45, 33, 23, 0.13);
}

.menu-page .menu-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.75rem;
}

.menu-page .menu-dots {
  display: none;
}

.menu-page .menu-item-name {
  color: #241a12;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.02;
}

.menu-page .menu-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.25rem 0.55rem;
  border-radius: 0.35rem;
  color: #684719;
  background: #f3e8d2;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.menu-page .menu-item-desc {
  max-width: 42rem;
  margin: 0.55rem 0 0;
  color: #5d5247;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.menu-page .mp-sub {
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
  padding: 0.65rem 0 0.2rem;
  border-top: 1px solid rgba(45, 33, 23, 0.2);
  color: #74542a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.menu-page .mp-badge {
  margin-left: 0.4rem;
  padding: 0.2rem 0.42rem;
  border-color: rgba(116, 84, 42, 0.65);
  color: #684719;
  font-size: 0.65rem;
  vertical-align: 0.12em;
}

.menu-page .mp-legend {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  margin: 1.35rem 0 0;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(116, 84, 42, 0.32);
  border-radius: 0.5rem;
  color: #4b4035;
  background: #f4ead6;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
}

.menu-page .mp-footer {
  padding-bottom: 3rem;
}

@media (max-width: 760px) {
  .menu-page .mp-topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.65rem 0.8rem;
  }

  .menu-page .mp-switch {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: stretch;
  }

  .menu-page .mp-switch a {
    flex: 1 1 0;
    justify-content: center;
    padding-inline: 0.35rem;
    font-size: 0.72rem;
  }

  .menu-page .mp-cats {
    top: auto;
    margin-inline: -1rem;
    padding: 0.85rem 1rem;
  }

  .menu-page .mp-cat {
    padding: 1.2rem;
    border-radius: 0.8rem;
    scroll-margin-top: 12rem;
  }

  .menu-page .mp-items {
    grid-template-columns: 1fr;
  }

  .menu-page .mp-items > li:not(.mp-sub),
  .menu-page .mp-items > li:not(.mp-sub):nth-child(odd),
  .menu-page .mp-items > li:not(.mp-sub):nth-child(even) {
    padding: 1rem 0;
    border-left: 0;
  }

  .menu-page .menu-item-name {
    font-size: 1.48rem;
  }

  .menu-page .menu-item-desc {
    font-size: 0.98rem;
    line-height: 1.55;
  }
}

/* ---------- Editorial wine and drinks lists ---------- */

.wine-page .mp-main,
.drinks-page .mp-main {
  max-width: 58rem;
}

.wine-page .mp-head,
.drinks-page .mp-head {
  max-width: 34rem;
  margin-inline: auto;
  text-align: center;
}

.wine-page .mp-head .kicker,
.drinks-page .mp-head .kicker {
  margin-bottom: 0.85rem;
}

.wine-page .mp-cats,
.drinks-page .mp-cats {
  justify-content: flex-start;
}

.wine-page .mp-cat,
.drinks-page .mp-cat {
  max-width: 36rem;
  margin: clamp(4rem, 8vw, 6.5rem) auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wine-page .mp-cat h2,
.drinks-page .mp-cat h2 {
  margin: 0;
  padding: 0;
  border: 0;
  color: #1f1711;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.65rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.wine-page .mp-hint,
.drinks-page .mp-hint {
  display: table;
  margin: 1rem auto 0;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(116, 84, 42, 0.25);
  border-radius: 0.35rem;
  background: #f3e8d2;
  color: #63461f;
  text-align: center;
}

.wine-page .mp-items,
.drinks-page .mp-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 1.6rem;
}

.wine-page .mp-items > li:not(.mp-sub),
.drinks-page .mp-items > li:not(.mp-sub),
.wine-page .mp-items > li:not(.mp-sub):nth-child(odd),
.wine-page .mp-items > li:not(.mp-sub):nth-child(even),
.drinks-page .mp-items > li:not(.mp-sub):nth-child(odd),
.drinks-page .mp-items > li:not(.mp-sub):nth-child(even) {
  padding: 0.85rem 0 1rem;
  border: 0;
  text-align: center;
}

.wine-page .menu-item-row,
.drinks-page .menu-item-row {
  position: relative;
  display: block;
  min-height: 2.1rem;
  padding: 0 4rem;
}

.wine-page .menu-item-name,
.drinks-page .menu-item-name {
  display: block;
  padding: 0;
  color: #1f1711;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-style: italic;
  line-height: 1.02;
  text-align: center;
}

.wine-page .menu-price,
.drinks-page .menu-price {
  position: absolute;
  top: 50%;
  right: 0;
  min-width: 3rem;
  margin: 0;
  padding: 0.28rem 0.5rem;
  border-radius: 0.25rem;
  color: #5e3f17;
  background: #f1e4cb;
  font-size: 0.88rem;
  transform: translateY(-50%);
}

.wine-page .menu-item-desc,
.drinks-page .menu-item-desc {
  max-width: 31rem;
  margin: 0.48rem auto 0;
  color: #66594d;
  font-size: 0.93rem;
  line-height: 1.45;
  text-align: center;
}

.wine-page .mp-sub,
.drinks-page .mp-sub {
  margin: 1.75rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(45, 33, 23, 0.2);
  color: #1f1711;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.wine-page .mp-badge,
.drinks-page .mp-badge {
  font-family: var(--sans);
  font-size: 0.61rem;
  font-style: normal;
}

@media (max-width: 760px) {
  .wine-page .mp-head,
  .drinks-page .mp-head {
    text-align: center;
  }

  .wine-page .mp-cat,
  .drinks-page .mp-cat {
    margin-top: 3.7rem;
  }

  .wine-page .menu-item-name,
  .drinks-page .menu-item-name {
    font-size: 1.62rem;
  }

  .wine-page .menu-item-desc,
  .drinks-page .menu-item-desc {
    font-size: 0.96rem;
  }
}

@media (min-width: 900px) {
  .wine-page .mp-cats,
  .drinks-page .mp-cats {
    justify-content: center;
  }
}
