@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;600;700&family=Noto+Serif+SC:wght@400;500;600&display=swap");

:root {
  color-scheme: light;
  --paper: #fffdf7;
  --warm: #ffe9e5;
  --soft: #fff5eb;
  --ink: #221817;
  --muted: #705c56;
  --line: #f1b6ae;
  --copper: #b97900;
  --copper-soft: #ffd84a;
  --sage: #008f4f;
  --deep: #006b3f;
  --red: #df0616;
  --red-dark: #9f1016;
  --red-soft: #ffe2df;
  --green-soft: #e7f7ef;
  --yellow: #ffd12d;
  --logo-black: #221817;
  --serif: "Noto Serif SC", "Songti SC", "STSong", Georgia, "Times New Roman", serif;
  --sans: "Noto Sans SC", "Avenir Next", Inter, "Microsoft YaHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 143, 79, 0.08), transparent 18%, transparent 82%, rgba(223, 6, 22, 0.07)),
    linear-gradient(180deg, #fffdf7 0%, #fff3f0 48%, #fffdf7 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}

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

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

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  word-break: keep-all;
  text-wrap: balance;
}

h1 {
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 1.13;
}

h2 {
  font-size: clamp(30px, 3.7vw, 54px);
  line-height: 1.18;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}

.site-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 4vw, 54px);
  min-height: 88px;
  padding: 18px clamp(18px, 5vw, 76px);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(223, 6, 22, 0.2);
  box-shadow: 0 10px 28px rgba(34, 24, 23, 0.04);
  backdrop-filter: blur(18px);
}

.brand-mark,
.footer-brand {
  font-family: var(--serif);
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-self: start;
  gap: 12px;
  color: var(--logo-black);
  font-size: 23px;
  line-height: 1.05;
}

.brand-wording {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-wording > span {
  color: var(--red);
}

.brand-mark small {
  color: var(--deep);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.brand-tile {
  position: relative;
  display: grid;
  width: 48px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  padding: 7px 0 6px;
  border: 3px solid var(--logo-black);
  border-radius: 8px;
  color: var(--logo-black);
  background: var(--paper);
  box-shadow:
    7px -7px 0 var(--deep),
    10px -10px 0 var(--logo-black);
  font-family: var(--serif);
  line-height: 0.86;
}

.brand-tile strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 22px;
  font-weight: 700;
}

.brand-tile strong + strong {
  color: var(--red);
}

.brand-tile::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 29px;
  width: 5px;
  height: 15px;
  border-radius: 8px 8px 2px 8px;
  background: var(--deep);
  transform: rotate(16deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  white-space: nowrap;
}

.main-nav a,
.text-link {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.text-link:hover {
  color: var(--red);
  text-decoration-color: var(--yellow);
}

.reserve-link,
.primary-button,
.secondary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.reserve-link::after,
.primary-button::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 2px rgba(34, 24, 23, 0.12);
}

.reserve-link {
  justify-self: end;
  color: var(--paper);
  background: var(--deep);
  border-color: var(--deep);
}

.reserve-link:hover,
.reserve-link.is-active,
.secondary-button:hover {
  border-color: var(--red);
  color: var(--paper);
  background: var(--red);
}

.primary-button {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.primary-button:hover {
  color: var(--paper);
  background: var(--deep);
  border-color: var(--deep);
}

.secondary-button {
  color: var(--deep);
  background: rgba(255, 253, 247, 0.72);
  border-color: rgba(0, 143, 79, 0.44);
}

.restaurant-page,
.site-footer,
.home-hero,
.demo-list {
  width: min(1240px, calc(100% - 52px));
  margin: 0 auto;
}

.restaurant-page {
  overflow: hidden;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 20px;
  border-radius: 9px 9px 9px 2px;
  background: var(--red);
  box-shadow: 3px -7px 0 -3px var(--deep);
  transform: rotate(18deg);
}

.section-intro.narrow .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.grand-hero {
  position: relative;
  min-height: 0;
  padding: clamp(24px, 4.4vw, 62px) 0 48px;
  text-align: center;
  overflow: visible;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 860px;
  margin: 0 auto clamp(8px, 1.6vw, 18px);
  padding-top: clamp(56px, 8vw, 96px);
}

.hero-logo {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: min(980px, 100vw);
  color: rgba(223, 6, 22, 0.1);
  font-family: "Avenir Next", var(--sans);
  font-size: clamp(54px, 9vw, 116px);
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 0.92;
  text-indent: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-copy h1 {
  margin-top: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.24;
}

.hero-copy p:not(.eyebrow):not(.hero-logo),
.section-intro > p,
.split-section p,
.feature-panel p,
.team-card p,
.link-card p,
.site-footer p {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow):not(.hero-logo) {
  max-width: 590px;
  margin: 18px auto 0;
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.home-carousel {
  position: relative;
  z-index: 3;
  width: min(900px, calc(100% - 86px));
  margin: 0 auto;
}

.carousel-stage,
.wide-image,
.feature-hero-image,
.portrait-image,
.card-image,
.menu-item-image,
.small-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--warm);
}

.carousel-stage {
  isolation: isolate;
  aspect-ratio: 16 / 10;
  box-shadow: 22px 22px 0 rgba(0, 143, 79, 0.1);
}

.carousel-track,
.carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.012);
  transition:
    opacity 720ms ease,
    transform 920ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.carousel-slide img,
.wide-image img,
.feature-hero-image img,
.portrait-image img,
.card-image img,
.menu-item-image img,
.small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.carousel-caption {
  margin-top: 18px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  text-align: left;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 253, 247, 0.82);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(0, 107, 63, 0.72);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: rgba(223, 6, 22, 0.86);
  border-color: var(--paper);
}

.carousel-prev {
  left: 18px;
}

.carousel-next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 4;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(37, 34, 29, 0.52);
}

.carousel-dot.is-active {
  background: var(--paper);
  outline: 1px solid var(--ink);
  outline-offset: 2px;
}

.link-card:hover img {
  transform: scale(1.03);
}

figure figcaption {
  margin-top: 12px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.decor-image {
  position: absolute;
  z-index: 1;
  margin: 0;
  pointer-events: none;
}

.decor-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.decor-image .image-fallback {
  display: none;
}

.decor-left-botanical {
  left: clamp(-196px, -10vw, -72px);
  top: clamp(410px, 41vw, 560px);
  width: clamp(260px, 26vw, 430px);
  opacity: 0.66;
}

.decor-right-spice {
  right: clamp(-210px, -10vw, -70px);
  top: clamp(270px, 28vw, 430px);
  width: clamp(260px, 28vw, 460px);
  opacity: 0.92;
  transform: rotate(8deg);
}

.decor-ladle {
  right: clamp(-120px, -6vw, -38px);
  bottom: -92px;
  width: clamp(240px, 24vw, 390px);
  opacity: 0.62;
}

.decor-food-spice {
  right: clamp(-130px, -7vw, -58px);
  bottom: -54px;
  width: clamp(220px, 24vw, 340px);
  opacity: 0.64;
}

.decor-page-left {
  left: clamp(-160px, -9vw, -52px);
  top: 30px;
  width: clamp(220px, 25vw, 410px);
  opacity: 0.82;
}

.decor-page-right {
  right: clamp(-150px, -8vw, -48px);
  top: 118px;
  width: clamp(220px, 24vw, 380px);
  opacity: 0.72;
}

.ornamental-divider {
  position: relative;
  height: clamp(82px, 12vw, 154px);
  margin: clamp(8px, 2vw, 26px) 0;
  pointer-events: none;
}

.ornamental-divider svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ornamental-divider path {
  fill: none;
  stroke: var(--copper-soft);
  stroke-width: 1.35;
  opacity: 0.92;
}

.ornamental-divider span {
  position: absolute;
  left: 23%;
  top: 42%;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.hero-divider {
  margin-top: -8px;
  margin-bottom: 10px;
}

.soft-divider {
  height: clamp(54px, 8vw, 104px);
  margin: 0;
  opacity: 0.72;
}

.masthead-divider {
  height: 82px;
  margin-top: 32px;
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
  padding: clamp(58px, 7vw, 96px) 0;
}

.split-section.reverse {
  grid-template-columns: minmax(360px, 0.74fr) minmax(0, 0.86fr);
}

.split-section h2 {
  max-width: 660px;
}

.split-section p {
  max-width: 650px;
  margin-top: 24px;
  font-size: 18px;
}

.split-section .text-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--deep);
  font-family: var(--serif);
  font-style: italic;
}

.portrait-image {
  aspect-ratio: 4 / 5;
}

.image-stack {
  position: relative;
}

.quote-section {
  position: relative;
  padding: clamp(70px, 10vw, 136px) 0;
  text-align: center;
}

.quote-section blockquote {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  margin: 0 auto;
  color: var(--deep);
  font-family: var(--serif);
  font-size: clamp(28px, 3.7vw, 52px);
  font-weight: 400;
  line-height: 1.36;
}

.card-section {
  padding: clamp(62px, 8vw, 102px) 0;
}

.section-intro {
  max-width: 790px;
}

.section-intro.narrow {
  margin: 0 auto;
  text-align: center;
}

.section-intro > p {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.85;
  word-break: keep-all;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.home-newsletter {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 108px) 0 clamp(80px, 10vw, 132px);
  text-align: center;
}

.home-newsletter h2 {
  margin-bottom: 18px;
}

.home-newsletter .text-link {
  color: var(--deep);
  font-family: var(--serif);
  font-style: italic;
}

.link-card {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.card-image {
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
}

.link-card span {
  color: var(--deep);
  font-family: var(--serif);
  font-size: 25px;
}

.link-card p {
  margin-top: 10px;
}

.inner-page {
  padding-bottom: 72px;
}

.page-masthead {
  position: relative;
  min-height: 430px;
  padding: 98px 0 18px;
}

.menu-masthead {
  min-height: 480px;
}

.gallery-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.58fr);
  gap: 22px;
  padding: 76px 0;
}

.gallery-band .wide-image {
  grid-row: span 2;
  aspect-ratio: 16 / 11;
}

.small-image {
  aspect-ratio: 4 / 3;
}

.values-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 90px);
  padding: 86px 0;
}

.value-list,
.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list {
  border-top: 1px solid var(--line);
}

.value-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.value-list span,
.menu-row-number {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 25px;
}

.highlight-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 38px 0;
}

.highlight-band span {
  color: var(--deep);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

.menu-group {
  position: relative;
  padding: 76px 0;
}

.menu-group + .menu-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 9%;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.menu-group h2 {
  margin-bottom: 32px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.menu-item {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.menu-item-image {
  aspect-ratio: 4 / 3.15;
}

.menu-item-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.menu-item-title span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 20px;
}

.menu-item p {
  margin-top: 10px;
  color: var(--muted);
}

.feature-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.64fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding: 76px 0 92px;
}

.feature-hero-image {
  aspect-ratio: 16 / 10.4;
}

.feature-panel {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  background: rgba(255, 253, 247, 0.9);
  border: 2px solid var(--logo-black);
  border-radius: 8px;
  box-shadow: 7px -7px 0 var(--green-soft);
}

.feature-panel p {
  margin-top: 22px;
}

.feature-panel .primary-button {
  margin-top: 30px;
}

.detail-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.detail-list li {
  padding: 15px 0;
  color: var(--deep);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.single-image-band {
  padding: 74px 0;
}

.single-image-band .wide-image {
  aspect-ratio: 16 / 8.2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 76px 0 24px;
}

.team-card {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.team-card span {
  color: var(--copper);
  font-family: var(--serif);
  font-style: italic;
}

.team-card h3 {
  margin-top: 10px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.team-card p {
  margin-top: 12px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 100px);
  padding: 82px 0;
}

.store-list {
  border-top: 1px solid var(--line);
}

.store-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.store-row h3 {
  color: var(--deep);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.store-row p,
.store-row span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-lines a {
  color: var(--deep);
  font-family: var(--serif);
  font-size: 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(240px, 0.7fr);
  gap: clamp(28px, 5vw, 78px);
  padding: 54px 0 68px;
  border-top: 3px solid var(--logo-black);
  background:
    linear-gradient(180deg, rgba(223, 6, 22, 0.08), transparent 78%),
    linear-gradient(90deg, rgba(0, 143, 79, 0.08), transparent 34%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-brand {
  display: inline-block;
  color: var(--red);
  font-size: 25px;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}

.newsletter span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter a {
  display: inline-block;
  margin-top: 8px;
  color: var(--deep);
  font-family: var(--serif);
}

.image-fallback {
  display: none;
  min-height: 220px;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  background: var(--warm);
  text-align: center;
}

.missing-image img {
  display: none;
}

.missing-image .image-fallback {
  display: grid;
}

.loading-state {
  display: grid;
  min-height: 80vh;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.error-state {
  align-content: center;
}

.home-page .home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
  min-height: calc(100vh - 88px);
  padding: 78px 0;
}

.home-copy {
  max-width: 680px;
}

.home-copy p {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.home-preview {
  margin: 0;
  border: 3px solid var(--logo-black);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  box-shadow:
    12px -12px 0 var(--deep),
    15px -15px 0 var(--logo-black);
}

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

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.demo-list {
  padding: 0 0 78px;
}

.demo-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 20px;
  border: 2px solid var(--logo-black);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 6px -6px 0 var(--green-soft);
}

.demo-tile small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.tile-arrow {
  color: var(--deep);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .site-bar {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .split-section,
  .split-section.reverse,
  .feature-hero,
  .values-section,
  .visit-section,
  .home-page .home-hero {
    grid-template-columns: 1fr;
  }

  .grand-hero {
    padding-top: 58px;
  }

  .feature-panel {
    border: 2px solid var(--logo-black);
    padding-left: clamp(26px, 4vw, 42px);
    padding-right: clamp(26px, 4vw, 42px);
  }

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

  .decor-left-botanical {
    left: -158px;
    top: 420px;
    width: 300px;
    opacity: 0.42;
  }

  .decor-right-spice {
    right: -130px;
    top: 470px;
    width: 280px;
  }

  .gallery-band {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-band .wide-image {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  body {
    background: var(--paper);
  }

  body.restaurant-site,
  body.home-page {
    background:
      linear-gradient(90deg, rgba(0, 143, 79, 0.07), transparent 24%, transparent 76%, rgba(223, 6, 22, 0.07)),
      repeating-linear-gradient(135deg, rgba(223, 6, 22, 0.035) 0 2px, transparent 2px 62px),
      var(--paper);
  }

  .site-bar {
    min-height: 74px;
    padding: 14px 16px;
  }

  .brand-mark {
    gap: 9px;
    font-size: 19px;
  }

  .premium-header .brand-mark {
    min-width: 0;
  }

  .brand-mark small {
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .brand-tile {
    width: 40px;
    height: 48px;
    padding-top: 6px;
    border-width: 2px;
    box-shadow:
      5px -5px 0 var(--deep),
      7px -7px 0 var(--logo-black);
  }

  .brand-tile strong {
    font-size: 18px;
  }

  .brand-tile::after {
    left: 18px;
    top: 24px;
    width: 4px;
    height: 12px;
  }

  .reserve-link,
  .primary-button,
  .secondary-button {
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .restaurant-page,
  .site-footer,
  .home-hero,
  .demo-list {
    width: min(100% - 32px, 1240px);
  }

  .grand-hero {
    padding: 42px 0 44px;
  }

  .hero-logo {
    font-size: clamp(40px, 14vw, 58px);
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }

  .hero-copy h1 {
    margin-top: 8px;
  }

  .hero-copy p:not(.eyebrow):not(.hero-logo),
  .section-intro > p,
  .split-section p {
    font-size: 16px;
  }

  .home-carousel {
    width: 100%;
  }

  .carousel-stage {
    aspect-ratio: 4 / 3;
    box-shadow: none;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-dots {
    bottom: 16px;
  }

  .carousel-caption {
    text-align: center;
  }

  .decor-left-botanical {
    display: none;
  }

  .decor-right-spice,
  .decor-page-left,
  .decor-page-right,
  .decor-ladle {
    display: none;
  }

  .ornamental-divider {
    height: 66px;
  }

  .split-section,
  .quote-section,
  .card-section,
  .page-masthead,
  .gallery-band,
  .values-section,
  .highlight-band,
  .menu-group,
  .feature-hero,
  .single-image-band,
  .team-grid,
  .visit-section {
    padding: 56px 0;
  }

  .page-masthead,
  .menu-masthead {
    min-height: 0;
  }

  .gallery-band,
  .menu-grid,
  .card-grid,
  .team-grid,
  .highlight-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .value-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .store-row {
    grid-template-columns: 1fr;
  }

  .single-image-band .wide-image,
  .gallery-band .wide-image {
    aspect-ratio: 4 / 3;
  }

  .home-page .home-hero {
    min-height: 0;
    padding: 48px 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

/* Premium bilingual restaurant site refresh */

body.restaurant-site,
body.home-page {
  background:
    linear-gradient(90deg, rgba(0, 143, 79, 0.08), transparent 18%, transparent 82%, rgba(223, 6, 22, 0.08)),
    repeating-linear-gradient(135deg, rgba(223, 6, 22, 0.045) 0 2px, transparent 2px 74px),
    repeating-linear-gradient(45deg, rgba(0, 143, 79, 0.035) 0 1px, transparent 1px 92px),
    var(--paper);
}

.premium-header {
  grid-template-columns: minmax(180px, 1fr) auto minmax(220px, 1fr);
  min-height: 84px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.premium-header .brand-mark {
  min-width: 210px;
  padding: 4px 0;
  letter-spacing: 0;
}

.premium-header .main-nav {
  display: flex;
  font-style: normal;
  letter-spacing: 0.02em;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-toggle,
.mobile-menu-toggle,
.text-button,
.modal-close {
  border: 0;
  color: var(--deep);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.language-toggle {
  min-width: 44px;
  min-height: 40px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: var(--line);
  color: var(--red);
}

.mobile-menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.mobile-nav-panel[hidden] {
  display: none;
}

.mobile-nav-panel {
  grid-column: 1 / -1;
  padding: 18px 0 4px;
  border-top: 1px solid var(--line);
}

.mobile-nav-panel nav {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 22px;
}

.premium-page {
  overflow: visible;
}

.premium-page picture,
.dish-modal picture {
  display: block;
  width: 100%;
  height: 100%;
}

.premium-page img,
.dish-modal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(46px, 7vw, 108px);
  isolation: isolate;
  min-height: calc(100vh - 84px);
  padding: clamp(56px, 7vw, 104px) 0 clamp(40px, 6vw, 84px);
}

.premium-hero::before,
.premium-hero::after {
  content: "";
  position: absolute;
  left: clamp(-92px, -7vw, -36px);
  right: clamp(-92px, -7vw, -36px);
  pointer-events: none;
}

.premium-hero::before {
  top: clamp(24px, 4vw, 58px);
  z-index: -2;
  height: min(430px, 48vw);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0 16%, transparent 16% 50%, rgba(34, 24, 23, 0.08) 50% 66%, transparent 66%),
    repeating-linear-gradient(135deg, transparent 0 70px, rgba(255, 255, 255, 0.16) 70px 74px),
    var(--red);
  background-size: 118px 118px, 96px 96px, auto;
  border: 3px solid var(--logo-black);
  border-radius: 8px;
  box-shadow: 12px 12px 0 rgba(223, 6, 22, 0.12);
}

.premium-hero::after {
  bottom: clamp(20px, 5vw, 62px);
  z-index: -1;
  height: clamp(54px, 8vw, 96px);
  background: var(--deep);
  border-top: 3px solid var(--logo-black);
  border-bottom: 3px solid var(--logo-black);
  transform: skewY(-2.8deg);
  transform-origin: center;
}

.premium-hero .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.premium-hero .hero-logo {
  position: static;
  z-index: auto;
  width: auto;
  margin-bottom: 24px;
  color: rgba(255, 253, 247, 0.74);
  text-shadow: 0 2px 0 rgba(34, 24, 23, 0.12);
  font-family: "Avenir Next", var(--sans);
  font-size: clamp(50px, 8vw, 112px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 0.9;
  text-indent: 0;
  transform: none;
}

.premium-hero .hero-copy h1 {
  max-width: 620px;
  color: var(--paper);
  text-shadow: 2px 2px 0 var(--logo-black);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.08;
}

.premium-hero .hero-copy p:not(.eyebrow):not(.hero-logo) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--paper);
  text-shadow: 0 1px 0 rgba(34, 24, 23, 0.22);
}

.premium-hero .eyebrow {
  color: var(--yellow);
  text-shadow: 0 1px 0 rgba(34, 24, 23, 0.18);
}

.premium-hero .eyebrow::before {
  background: var(--yellow);
  box-shadow: 3px -7px 0 -3px var(--paper);
}

.premium-hero .primary-button {
  color: var(--logo-black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.premium-hero .primary-button::after {
  background: var(--red);
}

.premium-hero .secondary-button {
  color: var(--deep);
  background: var(--paper);
  border-color: var(--logo-black);
}

.hero-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
  margin: 0;
  border: 3px solid var(--logo-black);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow:
    12px -12px 0 var(--deep),
    15px -15px 0 var(--logo-black);
}

.feature-hero-image,
.wide-image,
.portrait-image {
  border: 2px solid var(--logo-black);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 8px -8px 0 var(--green-soft);
}

.hero-image figcaption,
.gallery-image figcaption,
.wide-image figcaption,
.portrait-image figcaption,
.feature-hero-image figcaption {
  color: var(--sage);
}

.hero-actions.left {
  justify-content: flex-start;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(40px, 6vw, 86px) 0;
}

.gallery-image {
  position: relative;
  margin: 0;
  border: 2px solid rgba(34, 24, 23, 0.9);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper);
  box-shadow: 6px -6px 0 var(--green-soft);
}

.gallery-image:first-child {
  aspect-ratio: 4 / 3;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(52px, 8vw, 116px);
  padding: clamp(68px, 8vw, 116px) 0;
}

.editorial-split h2 {
  max-width: 720px;
}

.editorial-split p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.editorial-split .text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--deep);
  font-family: var(--serif);
  font-style: italic;
}

.refined-quote {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-author {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  color: var(--copper);
  font-family: var(--serif);
  font-style: italic;
}

.community-reviews {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 86px);
  padding: clamp(66px, 8vw, 112px) 0;
  border-bottom: 1px solid var(--line);
}

.review-heading h2 {
  max-width: none;
  white-space: nowrap;
}

.review-heading > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.review-carousel-stage {
  min-width: 0;
}

.review-track {
  position: relative;
  min-height: clamp(460px, 40vw, 560px);
}

.review-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.54fr) minmax(0, 0.46fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.review-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.review-slide-image {
  margin: 0;
  overflow: hidden;
  height: clamp(360px, 38vw, 520px);
  border: 2px solid var(--logo-black);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 7px -7px 0 var(--green-soft);
}

.review-slide-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
}

.review-slide-copy h3 {
  color: var(--deep);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
}

.review-slide-copy blockquote {
  max-width: 620px;
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.5;
}

.review-source {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.editorial-card {
  display: block;
  border: 2px solid var(--logo-black);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
  box-shadow:
    7px -7px 0 var(--green-soft),
    8px -8px 0 rgba(0, 107, 63, 0.5);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.editorial-card:hover img {
  transform: scale(1.025);
}

.editorial-card:hover {
  border-color: var(--red);
  box-shadow:
    7px -7px 0 var(--yellow),
    8px -8px 0 rgba(34, 24, 23, 0.72);
  transform: translateY(-2px);
}

.editorial-card span {
  color: var(--deep);
  font-family: var(--serif);
  font-size: 26px;
}

.editorial-card p {
  margin-top: 10px;
  color: var(--muted);
}

.compact-masthead {
  min-height: 0;
  padding: clamp(76px, 9vw, 132px) 0 clamp(28px, 5vw, 64px);
}

.compact-masthead .section-intro.narrow {
  max-width: 850px;
}

.refined-values h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.menu-anchor-nav {
  position: sticky;
  top: 84px;
  z-index: 30;
  display: flex;
  gap: 8px;
  margin: 0 auto 24px;
  padding: 12px 0;
  overflow-x: auto;
  background: rgba(255, 253, 247, 0.94);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.menu-anchor-nav::-webkit-scrollbar {
  display: none;
}

.menu-anchor-nav a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 16px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.menu-anchor-nav a.is-active,
.menu-anchor-nav a:hover {
  color: var(--logo-black);
  border-color: rgba(34, 24, 23, 0.22);
  background: var(--yellow);
}

.refined-menu-group {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 82px);
  padding: clamp(54px, 7vw, 92px) 0;
  scroll-margin-top: 150px;
}

.menu-group-heading {
  position: sticky;
  top: 158px;
  align-self: start;
}

.menu-group-heading h2 {
  margin-bottom: 18px;
}

.menu-group-heading p:not(.eyebrow) {
  color: var(--muted);
}

.menu-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.menu-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 22px;
  width: 100%;
  padding: 18px;
  border: 2px solid transparent;
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.menu-card:hover,
.menu-card:focus-visible {
  border-color: rgba(223, 6, 22, 0.55);
  background: var(--red-soft);
  transform: translateX(2px);
}

.menu-card:hover .menu-detail-link,
.menu-card:focus-visible .menu-detail-link {
  color: var(--red);
  text-decoration-color: var(--copper);
}

.menu-card:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 6px;
}

.menu-item-image {
  aspect-ratio: 4 / 3;
  margin: 0;
  border: 2px solid rgba(34, 24, 23, 0.82);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.menu-card:hover .menu-item-image,
.menu-card:focus-visible .menu-item-image {
  border-color: var(--logo-black);
  box-shadow: 5px -5px 0 var(--deep);
}

.menu-card-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.menu-item-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.menu-item-title strong {
  color: var(--deep);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 400;
}

.menu-item-title em {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 14px;
  font-style: normal;
}

.menu-card-description {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.menu-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-tag {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  color: var(--logo-black);
  border: 1px solid rgba(34, 24, 23, 0.18);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 700;
}

.menu-detail-link {
  justify-self: start;
  color: var(--deep);
  font-family: var(--serif);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
}

.menu-footnote {
  max-width: 820px;
  margin: 0 auto clamp(60px, 8vw, 104px);
  color: var(--muted);
  text-align: center;
}

.dish-modal[hidden] {
  display: none;
}

.dish-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.dish-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 34, 29, 0.44);
}

.dish-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(300px, 1fr);
  width: min(980px, 100%);
  max-height: min(820px, 92vh);
  overflow: auto;
  border: 3px solid var(--logo-black);
  border-radius: 8px;
  background: var(--paper);
  box-shadow:
    0 22px 70px rgba(34, 24, 23, 0.26),
    12px -12px 0 var(--deep);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.modal-dish-image {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
}

.dish-modal-copy {
  padding: clamp(34px, 5vw, 58px);
}

.dish-modal-copy h2 {
  margin-top: 4px;
  font-size: clamp(30px, 3vw, 44px);
}

.dish-modal-copy > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.dish-modal-copy dl {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.dish-modal-copy dl div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.dish-modal-copy dt {
  color: var(--red);
  font-weight: 700;
}

.dish-modal-copy dd {
  margin: 0;
  color: var(--deep);
}

.has-modal {
  overflow: hidden;
}

.refined-feature {
  padding-top: clamp(62px, 8vw, 112px);
}

.store-list {
  display: grid;
  gap: 18px;
  border-top: 0;
}

.store-card {
  border: 2px solid var(--logo-black);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
  box-shadow:
    7px -7px 0 var(--green-soft),
    8px -8px 0 rgba(0, 107, 63, 0.45);
}

.store-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.store-card-header h3 {
  margin-top: 10px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
}

.store-card-header p {
  color: var(--red);
  font-family: var(--serif);
  white-space: nowrap;
}

.status-pill {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  color: var(--paper);
  border: 1px solid var(--deep);
  border-radius: 999px;
  background: var(--deep);
  font-size: 12px;
  font-weight: 700;
}

.store-address,
.store-notice {
  margin-top: 14px;
  color: var(--muted);
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.text-button {
  min-height: 40px;
  color: var(--deep);
  font-family: var(--serif);
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.policy-title {
  margin-top: 34px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.is-reference-image::after {
  content: "replace with high-res";
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: none;
  padding: 4px 7px;
  color: var(--paper);
  background: rgba(37, 34, 29, 0.68);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lang-zh .compact-masthead .section-intro h1,
.lang-zh .review-heading h2 {
  white-space: nowrap;
}

.lang-zh .compact-masthead .section-intro > p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.image-fallback {
  font-family: var(--serif);
}

@media (max-width: 980px) {
  .premium-header {
    grid-template-columns: 1fr auto;
  }

  .premium-header .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .premium-hero,
  .editorial-split,
  .refined-menu-group,
  .feature-hero,
  .visit-section,
  .values-section,
  .community-reviews {
    grid-template-columns: 1fr;
  }

  .premium-hero {
    min-height: 0;
  }

  .menu-group-heading {
    position: static;
  }

  .dish-modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-dish-image {
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 700px) {
  .premium-header {
    min-height: 70px;
  }

  .header-actions {
    gap: 6px;
  }

  .premium-header .reserve-link {
    display: none;
  }

  .language-toggle {
    min-width: 38px;
    padding: 0 6px;
  }

  .premium-hero {
    gap: 28px;
    padding: 44px 0 36px;
  }

  .compact-masthead .section-intro h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.2vw, 34px);
    line-height: 1.22;
  }

  .compact-masthead .section-intro > p {
    font-size: 15px;
  }

  .premium-hero .hero-copy {
    text-align: center;
  }

  .premium-hero .hero-logo {
    margin-bottom: 16px;
    font-size: clamp(42px, 17vw, 74px);
  }

  .premium-hero .hero-copy p:not(.eyebrow):not(.hero-logo) {
    margin-left: auto;
    margin-right: auto;
  }

  .premium-hero .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image,
  .gallery-image:first-child {
    aspect-ratio: 4 / 3;
  }

  .image-gallery {
    grid-template-columns: 1fr;
    padding: 44px 0;
  }

  .editorial-split,
  .refined-menu-group,
  .feature-hero,
  .visit-section,
  .values-section,
  .community-reviews,
  .single-image-band,
  .team-grid {
    padding: 50px 0;
  }

  .review-track {
    min-height: 620px;
  }

  .review-slide {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .review-slide-image {
    width: 100%;
    height: clamp(280px, 72vw, 460px);
  }

  .menu-anchor-nav {
    top: 70px;
    width: calc(100% + 32px);
    margin-left: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .menu-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .menu-item-title {
    display: grid;
    gap: 6px;
  }

  .menu-item-title em {
    white-space: normal;
  }

  .dish-modal {
    align-items: end;
    padding: 0;
  }

  .dish-modal-panel {
    width: 100%;
    max-height: 88vh;
  }

  .dish-modal-copy {
    padding: 28px 20px 34px;
  }

  .dish-modal-copy dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .store-card-header {
    display: grid;
  }

  .store-card-header p {
    white-space: normal;
  }
}
