:root {
  --bg: #fbf5f2;
  --paper: #fffdfb;
  --ink: #242121;
  --muted: #6f6863;
  --line: #e7ddd8;
  --red: #aa424e;
  --red-dark: #941c1f;
  --gold: #c79b4f;
  --footer: #171412;
  --shadow: 0 18px 38px rgba(70, 42, 32, .11);
  --serif: Cambria, "Times New Roman", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 0 42px;
  background: rgba(255, 253, 251, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
}

.brand-mark {
  display: inline-block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background: url("assets/logo-lotus.svg") center / contain no-repeat;
}

.brand-mark::after {
  content: none;
}

.brand strong {
  display: block;
  font: 700 28px/1 var(--serif);
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: #8a8f99;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: #4d5563;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 30px 0 26px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--red-dark);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--red-dark);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.call-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  color: var(--red-dark);
  border: 1px solid var(--red);
  border-radius: 6px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #efe4db;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 245, 242, .05) 0%, rgba(250, 245, 242, .34) 42%, var(--bg) 96%),
    linear-gradient(90deg, rgba(55, 28, 12, .42), rgba(255, 255, 255, .12) 58%),
    url("assets/hero-sen-front.jpg") center top / cover;
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 48px));
  padding: 170px 0 0 58px;
}

.eyebrow {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero h1,
section h1,
section h2,
.menu-card h3,
.booking-form h3 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 670px;
  color: #fff;
  font-size: clamp(56px, 8vw, 88px);
  line-height: .92;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: keep-all;
}

.hero em {
  display: block;
  color: #412111;
  font-style: italic;
  font-weight: 700;
}

.hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px 0 36px;
  color: #303235;
  font-size: 19px;
  font-weight: 600;
}

.hero-actions,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-transform: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.primary {
  color: #fff;
  background: var(--red-dark);
}

.btn.ghost {
  color: #6d5a53;
  background: rgba(255, 255, 255, .45);
}

.btn.small {
  min-height: 50px;
  padding: 0 26px;
}

.social-btn {
  min-height: 54px;
  padding: 0 24px 0 16px;
  color: #fff;
  box-shadow: none;
}

.social-btn:hover {
  box-shadow: var(--shadow);
}

.zalo-button {
  background: var(--red-dark);
}

.facebook-button {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .38);
}

.social-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  min-width: 26px;
  color: #fff;
  background: transparent;
  border-radius: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.fb-icon {
  color: #fff;
  font-size: 21px;
}

.about-contact-card .facebook-button,
.combo-card .facebook-button {
  color: #6d5a53;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
}

.about-contact-card .facebook-button .social-icon,
.combo-card .facebook-button .social-icon {
  color: var(--red-dark);
}

.hotline-button {
  color: #fff;
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.hotline-button span {
  font-weight: 900;
}

.about-map-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 108px;
}

.map-embed {
  overflow: hidden;
  height: 430px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.btn.centered {
  display: flex;
  width: max-content;
  max-width: calc(100% - 48px);
  margin: 46px auto 0;
}

section {
  scroll-margin-top: 96px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: 90px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.split-section img {
  width: 100%;
  min-height: 300px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-position: center 42%;
}

.copy h2,
.section-heading h1,
.section-heading h2,
.about-hero h1,
.about-hero h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: keep-all;
}

.intro {
  grid-template-columns: minmax(440px, 1fr) minmax(360px, 560px);
  gap: clamp(44px, 6vw, 90px);
}

.intro .copy h2 {
  max-width: 680px;
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: 1.08;
}

.copy p,
.section-heading p,
.about-hero p,
.booking-form p {
  color: var(--muted);
  font-size: 18px;
}

.script {
  margin: 0 0 16px;
  color: var(--red);
  font: italic 22px var(--serif);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 12px 0 28px;
  margin: 0;
  list-style: none;
  color: #555a62;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  margin-right: 14px;
  color: var(--red-dark);
}

.featured,
.menu-section,
.space-section,
.about-section,
.contact-section,
.experience-section {
  padding: 96px 0;
  border-top: 1px solid rgba(231, 221, 216, .72);
}

.featured,
.menu-section,
.contact-section,
.experience-section {
  background: var(--paper);
}

.featured {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fffdfb 0%, #fbf5f2 100%);
}

.featured .section-heading {
  margin-bottom: 44px;
}

.featured .section-heading h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
}

.section-heading {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.wide {
  width: min(820px, calc(100% - 48px));
}

.divider {
  display: block;
  width: min(440px, 70%);
  height: 1px;
  margin: 42px auto 0;
  background: var(--line);
}

.dish-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.food-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 18px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.food-frame {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(60, 39, 31, .08);
}

.food-frame.large {
  grid-column: span 2;
  grid-row: span 2;
}

.food-frame.tall {
  grid-row: span 2;
}

.food-frame.wide {
  grid-column: span 2;
}

.food-frame img {
  width: 100%;
  height: 100%;
  transition: transform .35s ease;
}

.food-frame:hover img {
  transform: scale(1.04);
}

.service-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, #fffdfb 0%, #fbf5f2 100%);
  border-top: 1px solid rgba(231, 221, 216, .72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1080px, calc(100% - 72px));
  margin: 0 auto;
}

.service-grid article {
  min-height: 260px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(60, 39, 31, .07);
}

.service-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--red-dark);
  border-radius: 50%;
  font: 800 14px var(--sans);
}

.service-grid h3 {
  margin: 0 0 14px;
  color: #2b2421;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
}

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

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

.mini-card,
.menu-card,
.value-grid article,
.contact-card,
.booking-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(60, 39, 31, .07);
}

.mini-card {
  display: flex;
  min-height: 382px;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.mini-card:hover {
  border-color: rgba(170, 66, 78, .28);
  box-shadow: 0 18px 34px rgba(60, 39, 31, .12);
  transform: translateY(-4px);
}

.mini-card img {
  width: 100%;
  aspect-ratio: 1.36;
  object-position: center 38%;
}

.mini-card h3 {
  margin: 22px 22px 8px;
  color: #2b2421;
  font: 800 24px/1.08 var(--serif);
}

.mini-card p {
  flex: 1;
  margin: 0 22px 20px;
  color: #8a8f99;
  font-size: 16px;
}

.mini-card a {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 38px;
  margin: 0 22px 24px;
  padding: 0 16px;
  color: var(--red-dark);
  background: #fbf5f2;
  border: 1px solid rgba(170, 66, 78, .18);
  border-radius: 6px;
  font-weight: 800;
}

.filters {
  justify-content: center;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 48px;
}

.filters button {
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #6f6863;
  background: #fff;
  font: 800 15px var(--sans);
  cursor: pointer;
}

.filters button.active,
.filters button:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.menu-card {
  position: relative;
  overflow: hidden;
}

.menu-card.hidden {
  display: none;
}

.menu-card > img {
  width: 100%;
  aspect-ratio: 1.42;
  object-position: center 38%;
}

.badges {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 8px;
}

.badges span {
  padding: 5px 12px;
  color: #fff;
  background: #4d936b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.badges span:nth-child(2) {
  background: var(--red);
}

.menu-body {
  padding: 28px 26px 22px;
}

.menu-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.menu-title h3 {
  font-size: 30px;
  line-height: 1.08;
}

.menu-title strong {
  color: #8f5c4d;
  white-space: nowrap;
}

.menu-body p {
  min-height: 76px;
  color: #706a65;
  font-size: 17px;
}

.menu-body footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #88837f;
  font-weight: 800;
}

.menu-body button {
  width: 28px;
  height: 28px;
  color: var(--red);
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 50%;
  font-weight: 900;
  line-height: 20px;
}

.section-heading.compact {
  margin-bottom: 36px;
}

.menu-real-page {
  background:
    linear-gradient(180deg, #fffdfb 0%, #fbf5f2 100%);
}

.menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 58px;
}

.menu-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1;
  text-wrap: balance;
}

.menu-hero-copy p:not(.script) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.menu-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.menu-hero-photos {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 16px;
  align-items: end;
}

.menu-hero-photos img {
  width: 100%;
  min-height: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-hero-photos img:first-child {
  min-height: 430px;
}

.menu-hero-photos img:nth-child(2) {
  transform: translateY(34px);
}

.combo-card,
.extracted-menu-grid {
  width: min(1160px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.combo-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 34px;
  align-items: center;
  padding: 36px;
  margin-bottom: 86px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.combo-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.04;
}

.combo-copy p:not(.script) {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.combo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.combo-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.combo-points li {
  min-height: 128px;
  padding: 20px;
  background: #fbf5f2;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.combo-points strong,
.combo-points span {
  display: block;
}

.combo-points strong {
  margin-bottom: 8px;
  color: var(--red-dark);
  font-size: 18px;
}

.combo-points span {
  color: #706a65;
}

.extracted-menu-section {
  margin-bottom: 72px;
  scroll-margin-top: 108px;
}

.custom-tray-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(960px, calc(100% - 96px));
  margin: 0 auto 28px;
  padding: 24px 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(148, 28, 31, .97), rgba(170, 66, 78, .92));
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(75, 31, 27, .16);
}

.custom-tray-banner .script {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .86);
}

.custom-tray-banner h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.02;
}

.custom-tray-banner p:not(.script) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
}

.custom-tray-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.custom-tray-banner .ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
}

.menu-browser,
.dish-menu {
  position: relative;
  width: min(960px, calc(100% - 96px));
  margin: 0 auto;
}

.dish-filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 28px;
}

.dish-filter-nav button {
  min-height: 36px;
  padding: 0 18px;
  color: #554b45;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 800 13px var(--sans);
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.dish-filter-nav button:hover,
.dish-filter-nav button.active {
  color: #fff;
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 10px 20px rgba(148, 28, 31, .18);
}

.dish-card-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.dish-book-header {
  display: block;
  margin: 0 0 16px;
  padding: 0 76px;
  color: #5f3f38;
}

.dish-book-header div {
  min-width: 0;
  text-align: center;
}

.dish-book-header span,
.dish-book-header strong {
  display: block;
}

.dish-book-header span {
  color: #8d817a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  line-height: 1;
  text-transform: uppercase;
}

.dish-book-header strong {
  margin-top: 6px;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.dish-book-header button {
  position: absolute;
  top: calc(50% + 42px);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--red-dark);
  border: 0;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 24px rgba(148, 28, 31, .2);
}

.dish-book-header button[data-dish-page="prev"] {
  left: 18px;
}

.dish-book-header button[data-dish-page="next"] {
  right: 18px;
}

@media (min-width: 1180px) {
  .dish-book-header button[data-dish-page="prev"] {
    left: -72px;
  }

  .dish-book-header button[data-dish-page="next"] {
    right: -72px;
  }
}

.dish-swipe-hint {
  display: none;
}

.dish-book-spread {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(87, 43, 34, .1), transparent 12%, transparent 88%, rgba(87, 43, 34, .08)),
    #f4e6d8;
  border: 1px solid #e4d7cf;
  border-radius: 8px;
  box-shadow:
    0 22px 42px rgba(60, 39, 31, .16),
    inset 0 0 0 1px rgba(255, 255, 255, .5);
  cursor: grab;
  touch-action: pan-y;
  transform-origin: center center;
  transition: transform .28s ease, opacity .2s ease, box-shadow .28s ease;
}

.dish-book-spread:active {
  cursor: grabbing;
}

.dish-book-spread::after {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(155, 104, 83, .2);
  border-radius: 6px;
}

.dish-book-spread.book-turning {
  opacity: .74;
  box-shadow:
    0 24px 46px rgba(60, 39, 31, .2),
    inset 0 0 0 1px rgba(255, 255, 255, .5);
  transform: perspective(1000px) rotateY(-6deg) scale(.99);
}

.dish-book-page {
  position: relative;
  min-width: 0;
  padding: 34px 30px 30px;
  background:
    linear-gradient(180deg, rgba(255, 253, 251, .96), rgba(255, 247, 239, .96));
}

.dish-book-list-page {
  padding-right: 24px;
}

.dish-book-photo-page {
  display: grid;
  grid-template-rows: 1.18fr .9fr .9fr;
  gap: 16px;
  padding-left: 24px;
  border-left: 1px solid rgba(155, 104, 83, .18);
}

.dish-page-kicker {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 1;
  text-transform: uppercase;
}

.dish-book-list-page h3 {
  margin: 12px 0 22px;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1;
}

.dish-book-list-page ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.dish-book-list-page li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, auto);
  gap: 18px;
  align-items: baseline;
  min-height: 46px;
  padding: 10px 0 9px;
  border-bottom: 1px dotted rgba(112, 80, 68, .38);
}

.dish-book-list-page li span {
  min-width: 0;
  color: #312822;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
}

.dish-book-list-page li strong {
  color: var(--red-dark);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-align: right;
  white-space: normal;
}

.dish-book-list-page .dish-book-subheading {
  display: block;
  min-height: auto;
  margin-top: 12px;
  padding: 9px 0 5px;
  color: var(--gold);
  border-bottom: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.dish-book-photo-page figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(60, 39, 31, .14);
}

.dish-book-photo-page figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(84, 51, 42, .12);
}

.dish-book-photo-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-book-photo-page .featured-photo {
  min-height: 220px;
}

.dish-menu-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(60, 39, 31, .055);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dish-menu-card:hover {
  border-color: rgba(170, 66, 78, .28);
  box-shadow: 0 18px 34px rgba(60, 39, 31, .12);
  transform: translateY(-3px);
}

.dish-menu-card.hidden {
  display: none;
}

.dish-menu-card > img {
  width: 100%;
  height: 118px;
  object-position: center;
}

.dish-card-body {
  min-height: 88px;
  padding: 14px;
}

.dish-card-title {
  display: flex;
  min-height: 60px;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.dish-card-title h3 {
  margin: 0;
  color: #2b2421;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.08;
}

.dish-card-title strong {
  display: block;
  color: var(--red-dark);
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 1500px) {
  .menu-browser,
  .dish-menu {
    width: 960px;
  }
}

.menu-consult-card {
  margin-bottom: 0;
  background:
    linear-gradient(135deg, #fff 0%, #fbf5f2 100%);
}

.disabled-link {
  cursor: default;
  opacity: .72;
}

.contact-consult {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.consult-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.consult-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.consult-list li {
  padding: 16px 18px;
  background: #fbf5f2;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.consult-list strong,
.consult-list span {
  display: block;
}

.consult-list strong {
  color: var(--red-dark);
}

.consult-list span {
  color: var(--muted);
}

.about-redesign-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  padding: 0 0 64px;
  overflow: hidden;
  background: #201a16;
}

.about-hero-media {
  position: absolute;
  inset: 0;
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 20, 16, .74), rgba(28, 20, 16, .2) 58%, rgba(28, 20, 16, .48)),
    linear-gradient(180deg, rgba(28, 20, 16, .08), rgba(28, 20, 16, .72));
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-position: center 45%;
}

.about-hero-panel {
  position: relative;
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
}

.about-hero-panel .script {
  color: #f0c37b;
}

.about-hero-panel h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 76px);
  line-height: .98;
  text-wrap: balance;
}

.about-hero-panel p:not(.script) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  font-weight: 600;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.about-story-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.about-story-copy h2,
.about-contact-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.04;
}

.about-story-copy p:not(.script),
.about-contact-band p:not(.script) {
  color: var(--muted);
  font-size: 18px;
}

.about-food-stack {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 18px;
  align-items: end;
}

.about-food-stack img {
  width: 100%;
  min-height: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-food-stack img:first-child {
  min-height: 430px;
}

.about-food-stack img:nth-child(2) {
  transform: translateY(34px);
}

.about-strength-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 104px;
}

.about-strength-section article {
  min-height: 240px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(60, 39, 31, .07);
}

.about-strength-section span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 2px;
}

.about-strength-section h3 {
  margin: 0 0 12px;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.06;
}

.about-strength-section p {
  margin: 0;
  color: var(--muted);
}

.about-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 108px;
  padding: 38px;
  background: #fbf5f2;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-contact-card .btn {
  width: 100%;
}

.about-contact-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.about-contact-card strong {
  display: block;
  color: var(--ink);
}

.space-section {
  background: var(--bg);
}

.space-intro-panel {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1fr);
  gap: 0;
  width: min(1080px, calc(100% - 72px));
  margin: 0 auto 42px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(60, 39, 31, .07);
}

.space-intro-panel > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-position: center;
}

.space-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.space-intro-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.04;
  text-wrap: balance;
}

.space-intro-copy > p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.space-intro-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.space-intro-copy li {
  padding: 9px 14px;
  color: var(--red-dark);
  background: #fbf5f2;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  color: #7b5d54;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tagline::before,
.tagline::after {
  content: "♧";
  color: var(--red);
  font-size: 26px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 88px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1.84;
  object-position: center 40%;
}

.gallery img:nth-child(4),
.gallery img:nth-child(5) {
  grid-column: span 1;
}

.experience-section.compact {
  width: 100%;
  padding: 80px 0;
  margin-top: 24px;
  background: #fffdfb;
}

.experience-section {
  padding-top: 56px;
}

.experience-section .section-heading {
  margin-bottom: 40px;
}

.experience-shell {
  display: grid;
  grid-template-columns: minmax(260px, .36fr) minmax(0, .64fr);
  align-items: start;
  gap: clamp(32px, 5vw, 64px);
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.experience-copy {
  max-width: 420px;
  margin-bottom: 0;
}

.experience-copy h2 {
  margin: 0;
  font: 700 clamp(38px, 4.8vw, 58px)/1.04 var(--serif);
  text-wrap: balance;
}

.experience-copy p:not(.script) {
  color: var(--muted);
  font-size: 18px;
}

.experience-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 16px;
}

.experience-mosaic figure {
  margin: 0;
}

.experience-main {
  position: relative;
  grid-column: span 2;
  grid-row: span 2;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.experience-main img,
.experience-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-main img {
  object-position: center 48%;
}

.experience-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(60, 39, 31, .08);
}

.experience-tile.wide {
  grid-column: span 2;
}

.experience-tile img {
  object-position: center 45%;
}

.event {
  border-top: 1px solid var(--line);
  width: 100%;
  padding: 80px max(24px, calc((100vw - 1160px) / 2));
}

.event img {
  min-height: 390px;
}

.check-list.round li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 13px;
}

.about-section {
  padding-top: 0;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 540px);
  gap: 80px;
  align-items: center;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.about-hero h1 span,
.about-hero h2 span {
  display: block;
  color: var(--red);
}

.about-hero img {
  width: 100%;
  aspect-ratio: 1.08;
  border-radius: 6px;
  object-position: center 42%;
}

.philosophy {
  padding: 72px 0 96px;
  background: #f1ece8;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.value-grid article {
  padding: 30px;
}

.value-grid span {
  color: var(--red);
  font-size: 34px;
}

.value-grid h3 {
  margin: 18px 0 12px;
  font: 700 26px var(--serif);
}

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

.wide-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
}

.wide-card img {
  width: 100%;
  aspect-ratio: 1.9;
  object-position: center 38%;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-card,
.booking-form {
  padding: 36px;
}

.contact-card h3,
.site-footer h2,
.site-footer h3 {
  margin: 0 0 28px;
  font-family: var(--serif);
}

.contact-card p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 14px;
  color: var(--muted);
}

.contact-card span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #8b6d38;
  background: #f4eee4;
  border-radius: 8px;
}

.contact-card strong {
  display: block;
  color: #61564f;
  font-size: 12px;
  text-transform: uppercase;
}

.map {
  width: 100%;
  margin-top: 22px;
  border: 10px solid #fff;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(60, 39, 31, .07);
}

.booking-form h3 {
  font-size: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

label {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #5f5751;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  font: 16px var(--sans);
}

textarea {
  min-height: 96px;
  padding-top: 14px;
  resize: vertical;
}

.booking-form .btn {
  width: 100%;
  margin-top: 28px;
  border: 0;
  cursor: pointer;
}

.booking-form small,
.form-status {
  display: block;
  margin-top: 14px;
  color: #8a817b;
  text-align: center;
}

.form-status {
  color: var(--red-dark);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, .8fr) minmax(220px, .9fr);
  gap: 44px;
  padding: 58px max(32px, calc((100vw - 1120px) / 2));
  color: #e7ddd8;
  background:
    linear-gradient(135deg, rgba(148, 28, 31, .18), transparent 42%),
    #171412;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  margin-bottom: 16px;
}

.site-footer h2 {
  font-size: 34px;
  line-height: 1;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer a {
  width: max-content;
  max-width: 100%;
  color: #d7d1cc;
  transition: color .2s ease, transform .2s ease;
}

.site-footer a:hover {
  color: #fff;
  transform: translateX(3px);
}

.site-footer p {
  margin: 0 0 10px;
  color: #b9b0aa;
  line-height: 1.7;
}

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

  .brand strong {
    font-size: 22px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 10px 24px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .main-nav a::after {
    bottom: 8px;
  }

  .call-button {
    padding: 0 14px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding: 132px 24px 0;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(40px, 7vw, 52px);
    line-height: 1;
  }

  .split-section,
  .about-hero,
  .contact-grid,
  .about-story-section,
  .about-contact-band,
  .menu-hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro {
    width: min(760px, calc(100% - 48px));
  }

  .intro .copy h2 {
    max-width: 720px;
    font-size: clamp(36px, 7vw, 48px);
    line-height: 1.1;
  }

  .dish-row,
  .food-showcase,
  .menu-grid,
  .gallery,
  .value-grid,
  .extracted-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .space-intro-panel {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 48px));
  }

  .space-intro-panel > img {
    min-height: 280px;
  }

  .space-intro-copy {
    padding: 32px;
  }

  .menu-showcase-list {
    grid-template-columns: 1fr;
  }

  .menu-browser,
  .dish-menu {
    width: min(820px, calc(100% - 48px));
  }

  .custom-tray-banner {
    grid-template-columns: 1fr;
    width: min(820px, calc(100% - 48px));
  }

  .custom-tray-actions {
    justify-content: flex-start;
  }

  .menu-category-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .menu-list-card {
    grid-template-columns: 1fr;
  }

  .dish-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 48px));
  }

  .menu-card-media img {
    height: 220px;
  }

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

  .food-showcase {
    grid-auto-rows: 190px;
  }

  .combo-card {
    grid-template-columns: 1fr;
  }

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

  .experience-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }

  .experience-shell {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    max-width: 760px;
  }

  .wide-card {
    grid-column: span 2;
  }

  .about-redesign-hero {
    min-height: 660px;
  }

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

  .about-strength-section {
    grid-template-columns: 1fr;
  }
}

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

  .brand small,
  .call-button span {
    display: none;
  }

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

  .call-button {
    min-height: 38px;
    font-size: 13px;
  }

  .main-nav {
    top: 72px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(250, 245, 242, .05) 0%, rgba(250, 245, 242, .5) 48%, var(--bg) 100%),
      linear-gradient(90deg, rgba(55, 28, 12, .6), rgba(255, 255, 255, .1)),
      url("assets/hero-sen-front.jpg") center top / cover;
  }

  .hero-content {
    width: min(100% - 32px, 540px);
    padding: 118px 16px 0;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.02;
  }

  .eyebrow {
    letter-spacing: 3px;
  }

  .hero p:not(.eyebrow),
  .copy p,
  .section-heading p,
  .about-hero p,
  .booking-form p {
    font-size: 16px;
  }

  .copy h2,
  .section-heading h1,
  .section-heading h2,
  .about-hero h1,
  .about-hero h2 {
    font-size: clamp(32px, 8.6vw, 42px);
    line-height: 1.12;
  }

  .intro {
    width: min(100% - 32px, 560px);
  }

  .intro .copy h2 {
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 1.08;
  }

  .split-section,
  .featured,
  .service-section,
  .menu-section,
  .space-section,
  .contact-section,
  .experience-section,
  .about-hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-redesign-hero {
    min-height: 620px;
    padding-bottom: 46px;
  }

  .about-hero-panel {
    width: min(100% - 32px, 560px);
    margin: 0 auto;
  }

  .about-hero-panel h1 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.04;
  }

  .about-hero-panel p:not(.script),
  .about-story-copy p:not(.script),
  .about-contact-band p:not(.script) {
    font-size: 16px;
  }

  .about-hero-actions .btn {
    width: 100%;
  }

  .about-story-section {
    width: min(100% - 32px, 560px);
    padding: 64px 0;
  }

  .space-intro-panel {
    width: min(100% - 32px, 560px);
  }

  .space-intro-panel > img {
    min-height: 220px;
  }

  .space-intro-copy {
    padding: 24px;
  }

  .space-intro-copy h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .about-food-stack {
    grid-template-columns: 1fr;
  }

  .about-food-stack img,
  .about-food-stack img:first-child {
    min-height: 270px;
  }

  .about-food-stack img:nth-child(2) {
    transform: none;
  }

  .about-strength-section {
    width: min(100% - 32px, 560px);
    margin-bottom: 64px;
  }

  .about-strength-section article {
    min-height: auto;
    padding: 24px;
  }

  .about-contact-band {
    width: min(100% - 32px, 560px);
    margin-bottom: 64px;
    padding: 24px;
  }

  .about-map-section {
    width: min(100% - 32px, 560px);
    margin-bottom: 64px;
  }

  .map-embed {
    height: 340px;
  }

  .dish-row,
  .food-showcase,
  .menu-grid,
  .gallery,
  .value-grid,
  .form-row,
  .combo-points,
  .extracted-menu-grid,
  .site-footer {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }

  .food-showcase {
    width: min(100% - 32px, 560px);
    grid-auto-rows: 250px;
  }

  .food-frame.large,
  .food-frame.tall,
  .food-frame.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .combo-card {
    width: min(100% - 32px, 560px);
    padding: 24px;
    margin-bottom: 58px;
  }

  .menu-hero {
    width: min(100% - 32px, 560px);
    margin-bottom: 48px;
  }

  .menu-hero-copy h1 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.04;
  }

  .menu-hero-copy p:not(.script) {
    font-size: 16px;
  }

  .menu-hero-actions .btn {
    width: 100%;
  }

  .menu-hero-photos {
    grid-template-columns: 1fr;
  }

  .menu-hero-photos img,
  .menu-hero-photos img:first-child {
    min-height: 260px;
  }

  .menu-hero-photos img:nth-child(2) {
    transform: none;
  }

  .combo-actions .btn {
    width: 100%;
  }

  .menu-browser,
  .dish-menu,
  .extracted-menu-grid {
    width: min(100% - 28px, 560px);
  }

  .custom-tray-banner {
    gap: 16px;
    width: min(100% - 28px, 560px);
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 7px;
    box-shadow: 0 12px 24px rgba(75, 31, 27, .12);
  }

  .custom-tray-banner .script {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .custom-tray-banner h3 {
    margin-bottom: 6px;
    font-size: clamp(24px, 7vw, 31px);
    line-height: 1.08;
  }

  .custom-tray-banner p:not(.script) {
    font-size: 14px;
    line-height: 1.5;
  }

  .custom-tray-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-tray-actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
  }

  .service-grid {
    width: min(100% - 32px, 560px);
  }

  .service-grid article {
    min-height: auto;
    padding: 24px;
  }

  .service-actions .btn {
    width: min(100%, 320px);
  }

  .dish-filter-nav {
    position: sticky;
    top: 72px;
    z-index: 12;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: calc(100% + 28px);
    margin: 0 -14px 16px;
    padding: 10px 14px;
    background: rgba(251, 245, 242, .96);
    border-block: 1px solid rgba(231, 221, 216, .86);
    backdrop-filter: blur(10px);
    scrollbar-width: none;
  }

  .dish-filter-nav::-webkit-scrollbar {
    display: none;
  }

  .dish-filter-nav button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
    box-shadow: 0 6px 14px rgba(60, 39, 31, .045);
  }

  .dish-book-header {
    display: none;
  }

  .dish-swipe-hint {
    display: block;
    margin: 0 0 10px;
    color: #7b6c63;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
  }

  .dish-card-grid {
    display: none;
  }

  .dish-book-spread {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    min-height: 520px;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(87, 43, 34, .1), transparent 12%, transparent 88%, rgba(87, 43, 34, .08)),
      #f4e6d8;
    border: 1px solid #e4d7cf;
    border-radius: 8px;
    box-shadow:
      0 18px 32px rgba(60, 39, 31, .16),
      inset 0 0 0 1px rgba(255, 255, 255, .5);
    transform-origin: center center;
    touch-action: pan-y;
    transition: transform .28s ease, opacity .2s ease, box-shadow .28s ease;
  }

  .dish-book-spread::before {
    content: none;
  }

  .dish-book-spread::after {
    content: "";
    position: absolute;
    inset: 10px;
    pointer-events: none;
    border: 1px solid rgba(155, 104, 83, .2);
    border-radius: 6px;
  }

  .dish-book-spread.book-turning {
    opacity: .74;
    box-shadow:
      0 20px 36px rgba(60, 39, 31, .2),
      inset 0 0 0 1px rgba(255, 255, 255, .5);
    transform: perspective(900px) rotateY(-7deg) scale(.985);
  }

  .dish-book-page {
    position: relative;
    min-width: 0;
    padding: 18px 14px 16px;
    background:
      linear-gradient(180deg, rgba(255, 253, 251, .96), rgba(255, 247, 239, .96));
  }

  .dish-book-list-page {
    padding-right: 12px;
  }

  .dish-book-photo-page {
    display: grid;
    grid-template-rows: 1.15fr .86fr .86fr;
    gap: 10px;
    padding-left: 12px;
    border-left: 1px solid rgba(155, 104, 83, .18);
  }

  .dish-page-kicker {
    display: block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.6px;
    line-height: 1;
    text-transform: uppercase;
  }

  .dish-book-list-page h3 {
    margin: 8px 0 12px;
    color: var(--red-dark);
    font-family: var(--serif);
    font-size: clamp(24px, 6vw, 31px);
    line-height: 1;
  }

  .dish-book-list-page ul {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .dish-book-list-page li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(54px, auto);
    gap: 6px;
    align-items: baseline;
    min-height: 37px;
    padding: 8px 0 7px;
    border-bottom: 1px dotted rgba(112, 80, 68, .38);
  }

  .dish-book-list-page li span {
    min-width: 0;
    color: #312822;
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.12;
  }

  .dish-book-list-page li strong {
    color: var(--red-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-align: right;
    white-space: normal;
  }

  .dish-book-photo-page figure {
    position: relative;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(60, 39, 31, .12);
  }

  .dish-book-photo-page figure::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(84, 51, 42, .12);
  }

  .dish-book-photo-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .dish-book-photo-page .featured-photo {
    min-height: 154px;
  }

  .dish-book-header {
    display: none;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
    align-items: center;
    margin: 0 0 10px;
    padding: 10px 10px 12px;
    color: #5f3f38;
    background: #fffdfb;
    border: 1px solid #e4d7cf;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 8px 18px rgba(60, 39, 31, .06);
  }

  .dish-book-header div {
    min-width: 0;
    text-align: center;
  }

  .dish-book-header span,
  .dish-book-header strong {
    display: block;
  }

  .dish-book-header span {
    color: #8d817a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    line-height: 1;
    text-transform: uppercase;
  }

  .dish-book-header strong {
    margin-top: 5px;
    color: var(--red-dark);
    font-family: var(--serif);
    font-size: 25px;
    line-height: 1;
  }

  .dish-book-header button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--red-dark);
    border: 0;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
  }

  .dish-menu-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: auto;
    align-items: stretch;
    border-radius: 7px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 6px 14px rgba(60, 39, 31, .055);
  }

  .dish-menu-card:hover {
    transform: none;
  }

  .dish-menu-card > img {
    width: 96px;
    height: 100%;
    min-height: 96px;
    object-position: center;
  }

  .dish-card-body {
    display: flex;
    min-height: 96px;
    align-items: center;
    padding: 12px 14px;
  }

  .dish-card-title {
    width: 100%;
    min-height: 0;
    justify-content: center;
    gap: 8px;
  }

  .dish-card-title h3 {
    font-size: 20px;
    line-height: 1.12;
  }

  .dish-card-title strong {
    width: max-content;
    max-width: 100%;
    padding: 6px 10px;
    color: #fff;
    background: var(--red-dark);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1;
    white-space: normal;
  }

  .menu-category-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px;
    margin-bottom: 0;
    scrollbar-width: none;
  }

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

  .menu-category-nav button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .menu-category-nav button span {
    flex-basis: 28px;
    width: 28px;
    height: 24px;
  }

  .menu-list-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .menu-card-media {
    margin: 0;
  }

  .menu-card-media img {
    height: 190px;
    aspect-ratio: 1.55;
  }

  .menu-card-content {
    padding: 0;
  }

  .menu-list-card h3 {
    font-size: 28px;
  }

  .menu-list-card ul {
    grid-template-columns: 1fr;
  }

  .menu-list-card li {
    min-height: 94px;
    gap: 12px;
  }

  .menu-list-card strong {
    white-space: normal;
  }

  .experience-shell {
    width: min(100% - 32px, 560px);
  }

  .experience-copy h2 {
    font-size: clamp(34px, 9vw, 42px);
  }

  .experience-copy p:not(.script) {
    font-size: 16px;
  }

  .experience-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .experience-main,
  .experience-tile,
  .experience-tile.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .experience-main {
    min-height: 420px;
  }

  .wide-card {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .menu-title {
    display: block;
  }

  .menu-title h3 {
    margin-bottom: 10px;
  }

  .contact-card,
  .booking-form {
    padding: 24px;
  }

  .site-footer {
    gap: 28px;
    padding: 42px 18px;
  }
}

@media (max-width: 420px) {
  .section-heading.compact {
    width: min(100% - 28px, 560px);
    margin-bottom: 22px;
  }

  .section-heading.compact .script {
    margin-bottom: 8px;
  }

  .section-heading.compact h2 {
    font-size: clamp(30px, 8vw, 36px);
  }

  .section-heading.compact .divider {
    margin-top: 22px;
  }

  .custom-tray-actions {
    grid-template-columns: 1fr;
  }

  .dish-book-spread {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    min-height: 500px;
  }

  .dish-book-page {
    padding: 15px 10px 14px;
  }

  .dish-book-list-page {
    padding-right: 8px;
  }

  .dish-book-photo-page {
    gap: 8px;
    padding-left: 8px;
  }

  .dish-book-list-page h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .dish-book-list-page li {
    min-height: 35px;
    gap: 6px;
    padding: 7px 0 6px;
  }

  .dish-book-list-page li span {
    font-size: 14px;
  }

  .dish-book-list-page li strong {
    font-size: 11px;
  }

  .dish-book-photo-page figure {
    border-width: 3px;
  }

  .dish-menu-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .dish-menu-card > img {
    width: 86px;
    min-height: 92px;
  }

  .dish-card-body {
    min-height: 92px;
    padding: 10px 12px;
  }

  .dish-card-title h3 {
    font-size: 18px;
  }
}
