:root {
  color-scheme: light;
  --bg: #f8f5ee;
  --surface: #fffdf8;
  --surface-soft: #f0e7d8;
  --text: #17130f;
  --muted: #746b60;
  --line: rgba(30, 24, 17, 0.14);
  --gold: #d6b166;
  --gold-soft: #e9d3a8;
  --shadow: 0 28px 80px rgba(52, 36, 16, 0.12);
}

body.dark {
  color-scheme: dark;
  --bg: #080706;
  --surface: #11100e;
  --surface-soft: #191612;
  --text: #fff8ed;
  --muted: #b9afa2;
  --line: rgba(255, 239, 212, 0.14);
  --gold: #d6b166;
  --gold-soft: #6e542a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(183, 137, 67, 0.12), transparent 32%),
    linear-gradient(240deg, rgba(183, 137, 67, 0.08), transparent 30%);
  content: "";
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  min-height: 66px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #090806;
  object-fit: contain;
  padding: 6px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--gold);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.nav-links a:hover {
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  color: var(--text);
}

.header-actions {
  gap: 8px;
}

.theme-toggle {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.cart-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.cart-toggle span {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #14100a;
  font-size: 12px;
}

.theme-toggle:hover {
  background: color-mix(in srgb, var(--gold) 14%, transparent);
}

.theme-toggle svg {
  position: absolute;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.theme-toggle .moon {
  opacity: 0;
  transform: scale(0.75) rotate(-30deg);
}

body.dark .theme-toggle .sun {
  opacity: 0;
  transform: scale(0.75) rotate(30deg);
}

body.dark .theme-toggle .moon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0 20px;
  background: var(--gold);
  color: #14100a;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  box-shadow: 0 16px 34px color-mix(in srgb, var(--gold) 34%, transparent);
  transform: translateY(-2px);
}

.button.secondary {
  background: transparent;
  color: var(--text);
}

.button.compact {
  min-height: 44px;
  padding: 0 17px;
}

.hero {
  min-height: auto;
  padding: 128px 24px 62px;
}

.hero-inner,
.info-strip,
.section,
.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  min-height: min(620px, calc(100svh - 150px));
  grid-template-columns: minmax(0, 760px);
  gap: 0;
  align-items: center;
  justify-content: start;
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(64px, 11vw, 144px);
  line-height: 0.84;
}

.hero-subtitle {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--text);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.02;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
}

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

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.info-strip div {
  min-width: 0;
  padding: 24px;
  background: var(--surface);
}

.info-strip span,
.info-strip strong {
  display: block;
}

.info-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-strip strong {
  margin-top: 8px;
  font-size: clamp(17px, 2vw, 22px);
  overflow-wrap: anywhere;
}

.section {
  padding: 84px 0;
}

.menu-section {
  padding-top: 20px;
  scroll-margin-top: 106px;
}

.menu-section[hidden] {
  display: none;
}

.menu-section .section-heading {
  display: block;
}

.menu-section .section-heading h2 {
  max-width: 100%;
  font-size: clamp(34px, 5vw, 58px);
}

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

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5.8vw, 74px);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.feature-grid,
.menu-grid,
.location-grid,
.menu-accordion {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature,
.menu-card,
.menu-dropdown,
.feedback-panel,
.private-feedback,
.review-card,
.location-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow);
}

.feature {
  padding: 28px;
}

.feature span,
.menu-card .tag,
.location-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature h3,
.menu-card h3 {
  margin: 16px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.feature p,
.menu-card p,
.feedback-panel p,
.location-card strong,
.menu-note,
.footer {
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.menu-grid {
  grid-template-columns: repeat(3, 1fr);
}

.menu-card {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-3px);
}

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

.menu-card h3 {
  overflow-wrap: anywhere;
}

.menu-card p {
  margin: 0;
}

.single-price {
  display: block;
  margin-top: 18px;
  font-size: 20px;
}

.price-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

.price-pair span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
}

.price-pair small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-note {
  margin: 18px 0 0;
  font-size: 13px;
}

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

.menu-dropdown {
  overflow: hidden;
}

.menu-dropdown summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  min-height: 74px;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  color: var(--gold);
  cursor: pointer;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  list-style: none;
}

.menu-dropdown summary span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.menu-dropdown summary::-webkit-details-marker {
  display: none;
}

.menu-dropdown summary::after {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  margin-left: auto;
  content: "v";
  font-family: Inter, system-ui, sans-serif;
  font-size: 20px;
  transition: transform 0.2s ease;
}

.menu-dropdown[open] summary::after {
  transform: rotate(180deg);
}

.menu-dropdown summary small {
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
}

.menu-row.is-search-highlight {
  animation: searchGlow 1.9s ease;
}

.menu-row + .menu-row {
  border-top: 1px solid var(--line);
}

.menu-row h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.menu-row p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.menu-row strong {
  display: flex;
  min-width: 150px;
  justify-content: flex-end;
  gap: 8px;
  color: var(--text);
  font-size: 15px;
}

.menu-row strong span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--surface-soft);
  white-space: nowrap;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.add-cart {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--surface-soft);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.add-cart:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #14100a;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.46);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 45;
  display: grid;
  width: min(420px, 100%);
  height: 100svh;
  grid-template-rows: auto 1fr auto;
  border-left: 1px solid var(--line);
  background: var(--surface);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.28);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.floating-search {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  touch-action: none;
}

.search-fab {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--gold);
  color: #14100a;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  cursor: grab;
}

.search-fab:active {
  cursor: grabbing;
}

.search-fab svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.search-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  display: grid;
  width: min(340px, calc(100vw - 32px));
  max-height: min(460px, calc(100vh - 120px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

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

.search-panel label {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 16px;
}

.search-panel label span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-panel input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  background: var(--surface-soft);
  color: var(--text);
  font: inherit;
  font-weight: 750;
  outline: none;
}

.search-panel input:focus {
  border-color: var(--gold);
}

.search-results {
  display: grid;
  max-height: 330px;
  overflow: auto;
  padding: 8px;
}

.search-result {
  display: grid;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  padding: 12px;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.search-result:hover,
.search-result:focus {
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  outline: none;
}

.search-result strong {
  color: var(--text);
  font-size: 15px;
}

.search-result span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.search-empty {
  margin: 0;
  padding: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.cart-head h2 {
  margin: 0;
  font-size: 42px;
}

.cart-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cart-items {
  overflow: auto;
  padding: 12px 24px;
}

.cart-empty {
  margin: 0;
  padding: 28px 0;
  color: var(--muted);
  line-height: 1.6;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.cart-line h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
}

.cart-line p {
  margin: 5px 0 0;
  color: var(--muted);
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cart-summary {
  border-top: 1px solid var(--line);
  padding: 22px 24px 24px;
}

.cart-summary > div:not(.cart-options) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-options {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.cart-options label,
.cart-options fieldset {
  display: grid;
  gap: 7px;
  margin: 0;
}

.cart-options span,
.cart-options legend {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-options input[type="number"],
.cart-options input[type="text"],
.cart-options input[type="date"],
.time-selects select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--surface-soft);
  color: var(--text);
  font: inherit;
  font-weight: 750;
  color-scheme: dark;
}

body:not(.dark) .cart-options input[type="date"],
body:not(.dark) .time-selects select {
  color-scheme: light;
}

.cart-options input[type="date"] {
  width: 100%;
}

.cart-options input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.8;
  cursor: pointer;
  filter: sepia(1) saturate(2) hue-rotate(355deg);
}

.time-selects {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 8px;
}

.time-selects select {
  width: 100%;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 18px,
    calc(100% - 11px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.cart-options fieldset {
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.cart-options legend {
  grid-column: 1 / -1;
  padding: 0 6px;
}

.cart-options fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.cart-summary span,
.cart-summary p {
  color: var(--muted);
}

.cart-summary strong {
  color: var(--gold);
  font-size: 24px;
}

.cart-summary p {
  margin: 12px 0 18px;
  line-height: 1.5;
}

.cart-summary .button {
  width: 100%;
  margin-top: 10px;
}

.whatsapp-button {
  gap: 10px;
  background: #25d366;
  border-color: #25d366;
  color: #07140b;
}

.whatsapp-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #07140b;
}

.whatsapp-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feedback-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
}

.review-marquee,
.feedback-grid {
  margin-bottom: 14px;
}

.review-marquee {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.review-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: review-scroll 52s linear infinite;
}

.review-marquee:hover .review-track,
.review-marquee:focus-within .review-track {
  animation-play-state: paused;
}

.review-card {
  width: clamp(280px, 31vw, 390px);
  flex: 0 0 auto;
  padding: 26px;
  border-color: color-mix(in srgb, var(--gold) 70%, #000);
  background: var(--gold);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--gold) 25%, transparent);
}

.review-stars {
  color: #3a280b;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: 18px 0 22px;
  color: #171109;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.22;
}

.review-card cite {
  color: #493719;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

@keyframes review-scroll {
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.feedback-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.feedback-grid .feedback-panel {
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
}

.private-feedback {
  padding: clamp(28px, 4vw, 42px);
}

.private-feedback h3 {
  margin: 8px 0 22px;
  font-size: 34px;
}

.private-feedback fieldset {
  margin: 0 0 20px;
  border: 0;
  padding: 0;
}

.private-feedback legend,
.feedback-input > span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feedback-input {
  display: block;
  margin-bottom: 16px;
}

.feedback-input small,
.cart-options small {
  color: var(--gold);
  font-size: 10px;
}

.feedback-input input,
.feedback-input textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--surface-soft);
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating label {
  color: var(--line);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--gold);
}

.private-feedback .button {
  width: 100%;
}

.private-feedback .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hidden-field {
  display: none;
}

.feedback-panel h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.feedback-panel p {
  max-width: 590px;
  margin: 16px 0 0;
}

.location-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.location-card {
  padding: clamp(26px, 4vw, 42px);
}

.location-card strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
}

.map-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--surface-soft);
}

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

.map-card a {
  z-index: 2;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 28px 0 38px;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 132px;
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    border-top: 1px solid var(--line);
    padding-top: 5px;
  }

  .nav-links a {
    flex: 1;
    padding: 8px 10px;
    text-align: center;
  }

  .hero {
    padding-top: 158px;
    padding-bottom: 44px;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .info-strip,
  .feature-grid,
  .menu-grid,
  .feedback-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .feedback-panel {
    display: block;
  }

  .feedback-panel .button {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-track {
    animation: none;
  }

  .review-marquee {
    overflow-x: auto;
    mask-image: none;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 124px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 7px 8px 5px;
  }

  .brand small,
  .button.compact {
    display: none;
  }

  .cart-toggle {
    padding: 0 11px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

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

  .header-actions {
    gap: 5px;
  }

  .cart-toggle,
  .theme-toggle {
    min-height: 40px;
    height: 40px;
  }

  .theme-toggle {
    width: 40px;
  }

  .nav-links {
    margin-top: 4px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero {
    padding: 148px 12px 34px;
  }

  .hero-inner,
  .info-strip,
  .section,
  .footer {
    width: calc(100% - 24px);
  }

  .hero h1 {
    font-size: clamp(56px, 18vw, 70px);
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: clamp(28px, 8.6vw, 34px);
    line-height: 1.08;
  }

  .hero-copy,
  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    width: min(100%, 330px);
  }

  .hero-subtitle,
  .hero-text {
    max-width: 320px;
  }

  .hero-actions .button,
  .location-actions .button,
  .feedback-panel .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .menu-section {
    padding-top: 8px;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: clamp(32px, 9.2vw, 42px);
    line-height: 1.04;
  }

  .feature,
  .menu-card,
  .menu-dropdown summary,
  .info-strip div,
  .location-card {
    padding: 22px;
  }

  .menu-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 22px;
  }

  .menu-row strong {
    min-width: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .menu-actions {
    justify-content: flex-start;
  }

  .menu-dropdown summary {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 68px;
    gap: 10px;
    font-size: clamp(24px, 7.2vw, 30px);
  }

  .menu-dropdown summary small {
    display: none;
  }

  .map-card {
    min-height: 320px;
  }

  .footer {
    display: grid;
  }

  .floating-search {
    right: 14px;
    bottom: 14px;
  }

  .search-fab {
    width: 48px;
    height: 48px;
  }
}

@keyframes searchGlow {
  0% {
    background: color-mix(in srgb, var(--gold) 30%, transparent);
    box-shadow: inset 0 0 0 1px var(--gold), 0 0 0 rgba(214, 177, 102, 0);
  }

  35% {
    background: color-mix(in srgb, var(--gold) 20%, transparent);
    box-shadow: inset 0 0 0 1px var(--gold), 0 0 36px rgba(214, 177, 102, 0.32);
  }

  100% {
    background: transparent;
    box-shadow: inset 0 0 0 0 transparent, 0 0 0 rgba(214, 177, 102, 0);
  }
}
