:root {
  --ink: #000000;
  --muted: #5a5a5a;
  --paper: #ffffff;
  --surface: #cec0b1;
  --chalk: #ffffff;
  --brand: #2a2b6c;
  --primary: #df6b3a;
  --sage: #627165;
  --clay: #ce6548;
  --cream: #fff6ef;
  --line: rgba(42, 43, 108, 0.16);
  --shadow: 0 14px 40px rgba(42, 43, 108, 0.16);
  --max: 1320px;
}

@font-face {
  font-family: "Erstoria";
  src: url("assets/fonts/Erstoria.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "erstoria";
  src: url("assets/fonts/Erstoria.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Biennale";
  src: url("assets/fonts/Biennale-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Biennale";
  src: url("assets/fonts/Biennale-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "biennale";
  src: url("assets/fonts/Biennale-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Biennale", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 14px clamp(24px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
  box-shadow: none;
  backdrop-filter: blur(14px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.98);
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(42, 43, 108, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Erstoria", Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 0;
  color: currentColor;
  font-family: "Biennale", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.site-nav a:hover {
  color: var(--primary);
  background: transparent;
}

.site-header.is-solid .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  color: var(--primary);
  background: transparent;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.language-switcher a {
  min-height: 34px;
  padding: 8px 9px;
  font-size: 0.76rem;
  font-weight: 900;
}

.language-switcher a[aria-current="page"] {
  background: var(--brand);
  color: var(--chalk);
}

.site-nav .language-switcher a:hover {
  background: var(--primary);
  color: var(--chalk);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--chalk);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1020px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--primary);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1;
}

h1 {
  max-width: none;
  margin-bottom: 12px;
  font-family: "Erstoria", Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  font-family: "Biennale", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.8rem, 6.3vw, 4.25rem);
  font-weight: 400;
}

.hero-content h2 {
  color: var(--surface);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  line-height: 1.15;
}

.hero-kicker {
  margin-bottom: 28px;
  color: var(--chalk);
  font-family: "Biennale", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-actions {
  margin-top: 46px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button.primary {
  background: var(--brand);
  color: var(--chalk);
}

.button.secondary {
  background: var(--primary);
  color: var(--chalk);
}

.button.ghost {
  border-color: rgba(255, 253, 248, 0.56);
  color: var(--chalk);
}

.button.ghost.dark {
  border-color: var(--line);
  color: var(--brand);
}

.button.outline {
  width: fit-content;
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.button.compact {
  width: fit-content;
  min-height: 44px;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(760px, calc(100% - 36px));
  background: rgba(255, 250, 241, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel a {
  min-height: 92px;
  padding: 20px;
  border-left: 1px solid var(--line);
}

.hero-panel a:first-child {
  border-left: 0;
}

.hero-panel span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  font-size: 1rem;
}

.section-band {
  background: var(--surface);
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  padding: 78px 0 50px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.about-carousel {
  position: relative;
  min-width: 0;
}

.photo-slider-viewport {
  overflow: hidden;
}

.photo-slider-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 0 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.photo-slider-track::-webkit-scrollbar {
  display: none;
}

.photo-slide {
  flex: 0 0 100%;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #d9cabb;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.photo-slide:hover img,
.photo-slide:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.03) contrast(1.02);
}

.photo-slide.is-current img {
  filter: saturate(1.04) contrast(1.02);
}

.photo-slide:focus-visible,
.photo-slider-controls button:focus-visible,
.photo-lightbox button:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.photo-slider-controls {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.photo-slider-controls button,
.photo-lightbox button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--chalk);
  color: var(--brand);
  cursor: pointer;
}

.photo-slider-controls svg,
.photo-lightbox svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  gap: clamp(8px, 2vw, 22px);
  align-items: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(0, 0, 0, 0.88);
  color: var(--chalk);
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox figure {
  margin: 0;
}

.photo-lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.photo-lightbox figcaption {
  margin-top: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.photo-lightbox button {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: var(--chalk);
  backdrop-filter: blur(10px);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.lightbox-nav {
  justify-self: center;
}

body.lightbox-open {
  overflow: hidden;
}

.about-copy h2 {
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-copy p {
  max-width: 720px;
  margin: 24px 0 28px;
  color: #1f1f1f;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
}

.values {
  padding: 42px 0;
  background: var(--brand);
  color: var(--chalk);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  background: transparent;
  text-align: center;
}

.value-grid article {
  min-height: 132px;
  padding: 20px 12px;
  background: transparent;
}

.value-grid h3 {
  margin: 18px auto 0;
  color: var(--chalk);
  font-size: 1.05rem;
  font-weight: 600;
}

.value-grid img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  padding: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  object-fit: contain;
}

.value-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-section {
  padding: 86px 0 0;
  background: var(--paper);
}

.menu-section::after,
.gallery-section::after {
  display: block;
  height: clamp(34px, 4.5vw, 62px);
  margin-top: 88px;
  background: var(--brand);
  content: "";
}

.menu-heading {
  margin-bottom: 38px;
  text-align: center;
}

.menu-heading h2 {
  color: var(--sage);
  font-family: "Erstoria", Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--brand);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.menu-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}

.menu-group {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.menu-tagline {
  min-height: 1.7em;
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.96rem;
  font-weight: 600;
  text-align: center;
}

.menu-title {
  display: grid;
  grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.menu-title span {
  height: 2px;
  background: var(--brand);
}

.menu-title h3 {
  margin: 0;
  color: var(--brand);
  font-family: "Erstoria", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 400;
  white-space: nowrap;
}

.dish {
  padding: 0 0 24px;
}

.dish h4 {
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--muted);
  color: var(--sage);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

.dish p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.gallery-section {
  padding: 96px 0;
  background: var(--brand);
}

.gallery-section::after {
  display: none;
}

.ambient-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  background: var(--chalk);
}

.ambient-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  min-height: 0;
}

.ambient-photo-slide {
  width: 100%;
  aspect-ratio: 3 / 4;
  box-shadow: none;
}

.ambient-photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambient-copy {
  position: relative;
  z-index: 2;
  margin-left: 0;
  padding: clamp(28px, 4vw, 46px);
  background: var(--chalk);
  box-shadow: var(--shadow);
}

.ambient-copy h2 {
  color: var(--brand);
  font-size: clamp(2.1rem, 4.5vw, 3.55rem);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.ambient-copy > p:not(.eyebrow) {
  margin: 24px 0 28px;
  color: #24302d;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.8;
}

.ambient-points {
  display: grid;
  gap: 18px;
}

.ambient-points article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(42, 43, 108, 0.18);
}

.ambient-points span {
  grid-row: span 2;
  color: var(--primary);
  font-weight: 900;
}

.ambient-points h3 {
  margin: 0;
  color: var(--brand);
  font-size: 1.05rem;
  font-weight: 600;
}

.ambient-points p {
  margin: 0;
  color: var(--muted);
}

.ambient-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.reviews {
  padding: 64px 0;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.reviews-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: end;
}

.reviews-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.reviews h2 {
  max-width: 680px;
  font-size: clamp(2.65rem, 5.4vw, 4rem);
  line-height: 0.98;
}

.reviews-lead {
  margin: 0;
  max-width: 560px;
  color: #2d2b28;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.review-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.review-points span {
  padding: 10px 12px;
  border: 1px solid rgba(42, 43, 108, 0.18);
  background: rgba(255, 255, 255, 0.3);
  color: var(--brand);
  font-weight: 800;
}

.trustindex-widget {
  display: grid;
  gap: 8px;
  min-height: 240px;
  padding: 10px;
  border-radius: 8px;
  background: var(--chalk);
  border: 1px solid var(--line);
}

.trustindex-embed {
  min-width: 0;
}

.trustindex-widget iframe {
  max-width: 100%;
}

.reserve {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(520px, 1fr);
  min-height: 760px;
  background: var(--brand);
  color: var(--chalk);
}

.reserve-image {
  min-height: 420px;
}

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

.reserve-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 860px;
  padding: clamp(42px, 7vw, 86px);
}

.reserve-content h2 {
  margin-bottom: 22px;
}

.reserve-content p:not(.eyebrow) {
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.12rem;
}

.covermanager-widget {
  width: 100%;
  margin: 4px 0 22px;
  padding: 16px;
  background: var(--chalk);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.covermanager-widget iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
  background: var(--chalk);
}

.location {
  padding: 92px 0;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
}

address {
  margin: 28px 0;
  color: #33413e;
  font-style: normal;
  font-size: 1.15rem;
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-stack a {
  color: var(--brand);
  font-weight: 900;
}

.hours {
  margin-bottom: 28px;
  color: var(--muted);
}

.hours strong {
  color: var(--ink);
}

.map-wrap {
  min-height: 500px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--chalk);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.site-footer {
  background: var(--brand);
  color: var(--chalk);
}

.footer-main {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px) 0;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
  text-transform: none;
}

.footer-column h2 + h2,
.footer-column p + h2 {
  margin-top: 30px;
}

.footer-column address,
.footer-column p {
  margin: 0 0 16px;
  color: rgba(255, 253, 248, 0.78);
  font-style: normal;
  line-height: 1.75;
}

.footer-column a {
  display: block;
  width: fit-content;
  color: #f2bf9d;
  font-weight: 800;
  line-height: 1.8;
  text-decoration: none;
}

.footer-column a:hover,
.footer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin: 0 auto 14px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.footer-hours {
  justify-self: end;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: #101817;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.92rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-bottom a {
  color: var(--chalk);
  font-weight: 800;
  text-decoration: none;
}

.legal-hero {
  min-height: 44vh;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 5vw, 72px) 64px;
  background: var(--brand);
  color: var(--chalk);
}

.legal-hero .eyebrow {
  color: #f2bf9d;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--chalk);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
}

.legal-content {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 0;
}

.legal-content h2 {
  margin: 36px 0 12px;
  color: var(--brand);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.1;
}

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

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-actions {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 66px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 66px 12px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
    border-radius: 8px;
    background: var(--chalk);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
  }

  .language-switcher {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 6px 0 0;
  }

  .language-switcher a {
    min-height: 42px;
    text-align: center;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding: 76px 0;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .hero-panel a {
    min-height: 68px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-panel a:first-child {
    border-top: 0;
  }

  .about-layout,
  .reviews-layout,
  .location-layout,
  .reserve {
    grid-template-columns: 1fr;
  }

  .reviews-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .photo-lightbox {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
  }

  .menu-groups {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ambient-layout {
    grid-template-columns: 1fr;
  }

  .ambient-copy {
    margin: 0;
  }

  .site-footer {
    padding-bottom: 76px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column,
  .footer-hours {
    justify-self: center;
  }

  .footer-column a {
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: 24px;
  }

  .footer-bottom nav {
    justify-content: center;
  }

  .mobile-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 6px;
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: grid;
    min-height: 46px;
    place-items: center;
    border-radius: 6px;
    background: var(--brand);
    color: var(--chalk);
    font-size: 0.9rem;
    font-weight: 900;
  }
}

@media (max-width: 680px) {
  .brand span {
    font-size: 1.8rem;
  }

  .site-header {
    padding: 10px 18px;
  }

  h1 {
    font-size: clamp(1.95rem, 8vw, 2.65rem);
  }

  h2 {
    font-size: clamp(2.45rem, 10vw, 3.35rem);
  }

  .hero {
    min-height: 560px;
  }

  .photo-slider-controls {
    justify-content: center;
  }

  .photo-lightbox {
    grid-template-columns: 1fr;
    padding: 72px 14px 24px;
  }

  .photo-lightbox img {
    max-height: 70vh;
  }

  .lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }

  .lightbox-nav.previous {
    left: 12px;
  }

  .lightbox-nav.next {
    right: 12px;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .hero-actions,
  .reserve-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .intro,
  .menu-section,
  .gallery-section,
  .reviews,
  .location {
    padding: 68px 0;
  }

  .values {
    padding: 36px 0;
  }

  .menu-section,
  .gallery-section {
    padding-bottom: 0;
  }

  .gallery-section {
    padding-bottom: 68px;
  }

  .menu-section::after,
  .gallery-section::after {
    height: 42px;
    margin-top: 68px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-grid article {
    min-height: auto;
  }

  .value-grid h3 {
    margin-top: 24px;
  }

  .dish {
    padding-bottom: 22px;
  }

  .ambient-layout {
    padding: 12px;
  }

  .ambient-media {
    gap: 8px;
  }

  .ambient-copy {
    margin: 0;
    padding: 28px 20px;
  }

  .ambient-points article {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .ambient-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .reserve-content {
    padding: 52px 18px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
