:root {
  --green: #d7b75b;
  --green-soft: #312a1b;
  --wine: #d7b75b;
  --wine-dark: #3a2710;
  --red: #9b2f27;
  --red-soft: rgba(155, 47, 39, 0.2);
  --cream: #100f0c;
  --wood: #b88a3a;
  --paper: #171510;
  --ink: #f6ead2;
  --muted: #cbb98f;
  --line: rgba(215, 183, 91, 0.22);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(215, 183, 91, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(215, 183, 91, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #0b0a08 0%, #15130f 48%, #0e0c0a 100%);
  background-size: auto, 42px 42px, auto;
}

body.nav-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(215, 183, 91, 0.18), transparent 30%),
    #080705;
  transition: opacity 420ms ease, visibility 420ms ease;
  animation: loaderAutoHide 420ms ease 1100ms forwards;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: grid;
  place-items: center;
  gap: 18px;
}

.loader-mark img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 12px;
  background: #f7f0df;
  animation: loaderPulse 1200ms ease-in-out infinite;
}

.loader-mark span {
  width: 160px;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(215, 183, 91, 0.16);
  position: relative;
}

.loader-mark span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  border-radius: inherit;
  background: var(--green);
  animation: loaderBar 1200ms ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 12, 10, 0.94);
  backdrop-filter: blur(16px);
  animation: headerDrop 760ms ease both;
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 238px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  background: #f7f0df;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--wine);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--green);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.78rem 1.05rem;
  font-weight: 760;
  line-height: 1.1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(215, 183, 91, 0.18);
}

.button-primary {
  background: var(--wine);
  color: #11100d;
}

.button-secondary {
  background: #2b2417;
  color: var(--green);
  border-color: rgba(215, 183, 91, 0.42);
}

.button-outline {
  border-color: rgba(215, 183, 91, 0.38);
  background: rgba(255, 255, 255, 0.04);
  color: var(--green);
}

.button-light {
  background: #f3e7c8;
  color: var(--wine-dark);
}

.button-outline-light {
  border-color: rgba(255, 253, 248, 0.68);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: clamp(610px, calc(100svh - 76px), 790px);
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: #080705;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  padding: 0;
  opacity: 0.28;
  filter: saturate(1.18) contrast(1.08) brightness(0.72) blur(1px);
  transform: scale(1);
  animation: heroZoom 1800ms ease-out 180ms both;
  background:
    radial-gradient(circle at 76% 48%, rgba(215, 183, 91, 0.16), transparent 32%),
    #080705;
}

.hero-shade {
  background:
    radial-gradient(circle at 76% 44%, rgba(215, 183, 91, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.72) 0%, rgba(8, 7, 5, 0.28) 42%, rgba(8, 7, 5, 0.86) 100%),
    linear-gradient(90deg, rgba(7, 7, 5, 0.96) 0%, rgba(18, 13, 8, 0.82) 48%, rgba(7, 7, 5, 0.64) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(215, 183, 91, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, transparent, rgba(13, 11, 8, 0.96));
  background-size: 42px 42px, auto;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.74fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.hero-content {
  color: white;
  animation: heroCopyIn 900ms ease-out 360ms both;
}

.hero-content h1 {
  max-width: 760px;
  margin: 10px 0 16px;
  font-size: clamp(3rem, 6.1vw, 5.55rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.58);
}

.nowrap {
  white-space: nowrap;
}

.hero-content p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 253, 248, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1d296;
}

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

.hero-plate {
  position: relative;
  margin: 0;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-plate::before {
  content: "";
  position: absolute;
  inset: 4% 2% -2% 8%;
  border: 1px solid rgba(215, 183, 91, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(215, 183, 91, 0.055) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(215, 183, 91, 0.18), rgba(18, 15, 10, 0.82) 64%);
  background-size: 36px 36px, auto;
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.52);
}

.hero-plate img {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(215, 183, 91, 0.32);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.54);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.about-section {
  position: relative;
  width: 100%;
  padding: 94px 0;
  border-top: 1px solid rgba(215, 183, 91, 0.16);
  border-bottom: 1px solid rgba(215, 183, 91, 0.16);
  background:
    linear-gradient(90deg, rgba(215, 183, 91, 0.065) 1px, transparent 1px),
    linear-gradient(135deg, rgba(41, 32, 17, 0.72), rgba(13, 12, 9, 0.96) 48%, rgba(28, 22, 13, 0.82));
  background-size: 42px 42px, auto;
}

.about-section .split-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 78px);
}

.about-section .section-copy {
  position: relative;
  padding-left: 24px;
}

.about-section .section-copy::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 2px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--green), rgba(215, 183, 91, 0.08));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.section-copy h2 {
  margin: 8px 0 0;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.section-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.media-panel {
  margin: 0;
}

.about-media {
  position: relative;
  z-index: 0;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 24px -18px -22px 26px;
  z-index: -1;
  border: 1px solid rgba(215, 183, 91, 0.28);
  border-radius: 8px;
  background: rgba(8, 7, 5, 0.54);
}

.about-media::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -14px;
  width: 42%;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--green));
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background:
    radial-gradient(circle at center, rgba(215, 183, 91, 0.13), rgba(23, 19, 15, 0.96) 66%),
    #17130f;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 420ms ease, filter 420ms ease;
}

.about-media img {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 4;
  min-height: 440px;
  border: 1px solid rgba(215, 183, 91, 0.24);
  object-position: center;
}

.media-panel:hover img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

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

.dish-card,
.menu-text-card,
.form-panel,
.contact-card,
.cart-panel,
.opening-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 17, 14, 0.94);
  box-shadow: var(--shadow);
}

.dish-card {
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5);
}

.dish-card img {
  transition: transform 420ms ease, filter 420ms ease;
}

.dish-card:hover img {
  transform: scale(1.015);
  filter: saturate(1.1);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center 48%;
  padding: 0;
  background: #17130f;
}

.dish-card img.is-logo-image {
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background:
    radial-gradient(circle at center, rgba(215, 183, 91, 0.16), rgba(23, 19, 15, 0.96) 64%),
    #17130f;
}

.dish-body {
  padding: 18px;
}

.dish-body h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 1.35rem;
}

.dish-body p {
  min-height: 52px;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
}

.dish-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.dish-price {
  color: var(--wine);
  font-weight: 850;
}

.section-intro {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.pdf-menu-section {
  position: relative;
}

.pdf-menu-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(215, 183, 91, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(155, 47, 39, 0.18), transparent 42%),
    linear-gradient(90deg, rgba(215, 183, 91, 0.07) 1px, transparent 1px),
    rgba(18, 17, 14, 0.94);
  background-size: auto, 36px 36px, auto;
  box-shadow: var(--shadow);
}

.pdf-menu-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(215, 183, 91, 0.28);
  border-radius: 8px;
  padding: 0 12px;
  color: #f3e7c8;
  background: rgba(155, 47, 39, 0.26);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pdf-menu-panel h3 {
  margin: 14px 0 8px;
  color: var(--green);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.pdf-menu-panel p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pdf-menu-button {
  flex: 0 0 auto;
  min-width: 168px;
}

.menu-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.menu-page-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.58rem 0.84rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 780;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.menu-page-button:hover,
.menu-page-button:focus-visible {
  transform: translateY(-1px);
  color: var(--green);
}

.menu-page-button.is-active {
  background: var(--green);
  color: #11100d;
}

.menu-page-button[disabled] {
  cursor: not-allowed;
  opacity: 0.42;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.menu-text-list {
  display: grid;
  gap: 22px;
}

.menu-category {
  display: grid;
  gap: 12px;
}

.menu-category h3 {
  margin: 0;
  color: var(--green);
  font-size: 1.5rem;
}

.menu-items {
  display: grid;
  gap: 12px;
}

.menu-text-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-card-enter {
  animation: menuCardIn 460ms ease both;
}

.menu-text-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.48);
  border-color: rgba(215, 183, 91, 0.42);
}

.menu-text-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.menu-text-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.menu-text-top h4 {
  margin: 0;
  color: var(--green);
  font-size: 1.1rem;
}

.menu-text-top strong {
  color: var(--wine);
  white-space: nowrap;
}

.menu-text-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.menu-actions .button {
  min-height: 40px;
  padding: 0.62rem 0.82rem;
}

.cart-panel {
  position: sticky;
  top: 94px;
  padding: 20px;
}

.cart-head h3 {
  margin: 6px 0 0;
  color: var(--green);
  font-size: 1.45rem;
}

.cart-items {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(215, 183, 91, 0.1);
}

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

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

.cart-qty button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e0d0b;
  color: var(--green);
  font-weight: 850;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-weight: 850;
}

.cart-form {
  display: grid;
  gap: 10px;
}

.form-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.full {
  grid-column: 1 / -1;
}

label {
  color: var(--green);
  font-weight: 760;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e0d0b;
  color: var(--ink);
  padding: 0.92rem 1rem;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(123, 31, 42, 0.12);
}

textarea {
  resize: vertical;
}

.opening-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.opening-day {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(215, 183, 91, 0.1);
}

.opening-day span {
  font-weight: 850;
  color: var(--green);
}

.opening-day strong {
  text-align: right;
  color: var(--ink);
}

.opening-day.is-today {
  background: var(--green);
  color: #11100d;
}

.opening-day.is-today span,
.opening-day.is-today strong {
  color: #11100d;
}

.opening-note {
  color: var(--muted);
  margin: 14px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  padding: 24px;
}

.contact-card h3 {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 1.45rem;
}

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

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.map-panel iframe {
  width: 100%;
  min-height: 410px;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.site-footer {
  margin-top: 52px;
  padding: 34px 0 76px;
  color: var(--muted);
  border-top: 1px solid rgba(215, 183, 91, 0.18);
  background:
    linear-gradient(90deg, rgba(215, 183, 91, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #12100c 0%, #090807 100%);
  background-size: 42px 42px, auto;
}

.footer-inner,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.3fr 1.35fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 8px;
  background: #f7f0df;
}

.footer-brand p,
.footer-inner h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 850;
}

.footer-brand p {
  max-width: none;
  color: var(--ink);
  line-height: 1.35;
}

.footer-inner p,
.footer-inner a {
  margin: 5px 0;
  color: var(--muted);
  line-height: 1.45;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-inner p {
  white-space: normal;
}

.footer-inner a:hover {
  color: var(--green);
  transform: translateX(3px);
}

.footer-inner div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  align-items: center;
}

.footer-inner div:last-child h3 {
  flex-basis: 100%;
}

.footer-inner div:last-child a {
  margin: 0;
  white-space: nowrap;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid rgba(215, 183, 91, 0.2);
  color: rgba(203, 185, 143, 0.9);
}

.footer-bottom p {
  margin: 0;
}

.mobile-actions {
  display: none;
}

.header-cart-button {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  background: rgba(215, 183, 91, 0.12);
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(215, 183, 91, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cart-button:hover,
.header-cart-button:focus-visible,
.header-cart-button[aria-expanded="true"] {
  transform: translateY(-1px);
  background: var(--green);
  color: #11100d;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.header-cart-button svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #0d0c0a;
  border-radius: 999px;
  padding: 0 7px;
  background: #f3e7c8;
  color: #11100d;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.floating-cart-count[hidden],
.cart-preview-backdrop[hidden],
.cart-preview-panel[hidden] {
  display: none;
}

.header-cart-button.has-items {
  animation: cartButtonPop 260ms ease;
}

.cart-preview-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(4, 3, 2, 0.56);
  backdrop-filter: blur(4px);
}

.cart-preview-panel {
  position: fixed;
  top: 86px;
  right: 24px;
  z-index: 76;
  width: min(392px, calc(100vw - 32px));
  max-height: min(640px, calc(100svh - 132px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(215, 183, 91, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 27, 16, 0.96), rgba(12, 11, 9, 0.98)),
    var(--paper);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.62);
}

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

.cart-preview-head h3 {
  margin: 5px 0 0;
  color: var(--green);
  font-size: 1.25rem;
}

.cart-preview-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--green);
}

.cart-preview-close svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.cart-preview-items {
  display: grid;
  gap: 10px;
  overflow: auto;
  padding: 16px 18px;
}

.cart-preview-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(215, 183, 91, 0.16);
  border-radius: 8px;
  background: rgba(215, 183, 91, 0.08);
}

.cart-preview-line h4,
.cart-preview-line p {
  margin: 0;
}

.cart-preview-line h4 {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.3;
}

.cart-preview-line p {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-preview-line-body {
  display: grid;
  gap: 8px;
}

.cart-preview-line-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-preview-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-weight: 850;
}

.cart-preview-checkout {
  margin: 0 18px 18px;
}

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

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

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(215, 183, 91, 0);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 28px rgba(215, 183, 91, 0.24);
  }
}

@keyframes loaderBar {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(245%);
  }
}

@keyframes loaderAutoHide {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cartButtonPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

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

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

@media (max-width: 1280px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    gap: 32px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 5.7vw, 4.95rem);
  }

  .hero-plate img {
    width: min(100%, 410px);
  }
}

@media (max-width: 1180px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner p {
    white-space: normal;
  }
}

@media (max-width: 1060px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    gap: 12px;
  }

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

  .contact-layout,
  .split-layout,
  .menu-layout {
    grid-template-columns: 1fr;
  }

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

  .cart-panel {
    position: static;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 72px 0;
  }

  .hero-plate {
    min-height: 340px;
  }

  .hero-plate img {
    width: min(100%, 430px);
  }
}

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

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 12px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(13, 12, 10, 0.98);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.42);
    transform: translateY(-125%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(31, 27, 22, 0.08);
  }

  .hero {
    min-height: auto;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 7, 0.9), rgba(20, 16, 10, 0.58) 52%, rgba(8, 8, 7, 0.86)),
      linear-gradient(90deg, rgba(8, 8, 7, 0.88), rgba(8, 8, 7, 0.32));
  }

  .hero-inner {
    padding: 58px 0;
  }

  .hero-plate {
    min-height: 300px;
  }

  .section {
    padding: 64px 0;
  }

  .about-section {
    padding: 72px 0;
  }

  .about-media img {
    min-height: 360px;
  }

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

  .full {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 78px;
  }

  .header-inner,
  .hero-content,
  .section,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: center;
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    padding: 46px 0;
  }

  .hero-plate {
    min-height: 260px;
  }

  .hero-plate img {
    width: min(100%, 340px);
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 11vw, 3rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .pdf-menu-panel {
    display: grid;
    gap: 20px;
  }

  .button {
    width: 100%;
  }

  .about-section .section-copy {
    padding-left: 18px;
  }

  .about-media::before {
    inset: 16px -8px -14px 14px;
  }

  .about-media::after {
    right: 14px;
    width: 52%;
  }

  .about-media img {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .dish-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .dish-card img {
    aspect-ratio: 1 / 1;
  }

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

  .menu-text-body {
    padding: 16px;
  }

  .menu-text-top {
    display: grid;
  }

  .opening-day {
    display: grid;
    gap: 4px;
  }

  .opening-day strong {
    text-align: left;
  }

  .mobile-actions {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 60;
    display: grid;
    width: 100vw;
    max-width: 100vw;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px;
    overflow: hidden;
    background: rgba(21, 17, 13, 0.96);
  }

  .mobile-actions a {
    min-width: 0;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--wine);
    color: #11100d;
    font-weight: 820;
    font-size: 0.86rem;
    white-space: nowrap;
  }

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

  .header-cart-button {
    width: 46px;
    height: 46px;
  }

  .header-cart-button svg {
    width: 25px;
    height: 25px;
  }

  .cart-preview-panel {
    top: 82px;
    right: 12px;
    width: calc(100vw - 24px);
    max-height: min(560px, calc(100svh - 178px));
  }
}

/* Sakurhan-inspired light hospitality refresh */
:root {
  --green: #8f251f;
  --green-soft: #f3ded4;
  --wine: #8f251f;
  --wine-dark: #541612;
  --red: #8f251f;
  --red-soft: rgba(143, 37, 31, 0.12);
  --cream: #f8f3ea;
  --wood: #b87a38;
  --paper: #fffaf1;
  --ink: #241c16;
  --muted: #6f6257;
  --line: rgba(36, 28, 22, 0.14);
  --shadow: 0 24px 70px rgba(83, 45, 18, 0.16);
  --radius: 8px;
}

body {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(36, 28, 22, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f8f3ea 0%, #fffaf1 48%, #f8f3ea 100%);
  background-size: 56px 56px, auto;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(36, 28, 22, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 28, 22, 0.025) 1px, transparent 1px);
  background-size: 18px 18px;
}

.page-loader {
  background: var(--cream);
}

.loader-mark img,
.brand-logo {
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(83, 45, 18, 0.12);
}

.loader-mark span {
  background: rgba(143, 37, 31, 0.16);
}

.loader-mark span::after {
  background: var(--wine);
}

.site-header {
  border-bottom: 1px solid rgba(36, 28, 22, 0.1);
  background: rgba(248, 243, 234, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(83, 45, 18, 0.08);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 72px;
}

.brand {
  min-width: 210px;
}

.brand-name {
  color: var(--wine);
  letter-spacing: 0;
}

.brand-subtitle,
.main-nav a {
  color: var(--muted);
}

.main-nav {
  gap: 20px;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 720;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--wine);
}

.button {
  border-radius: var(--radius);
  min-height: 44px;
  padding: 0.78rem 1.08rem;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(143, 37, 31, 0.17);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  background: var(--wine);
  color: #fffaf1;
}

.button-secondary,
.button-light {
  border-color: rgba(143, 37, 31, 0.2);
  background: #fffaf1;
  color: var(--wine);
}

.button-outline,
.button-outline-light {
  border-color: rgba(143, 37, 31, 0.36);
  background: rgba(255, 250, 241, 0.5);
  color: var(--wine);
}

.hero {
  min-height: calc(100dvh - 72px);
  overflow: hidden;
  background: var(--cream);
}

.hero-image {
  width: 50%;
  left: auto;
  right: 0;
  opacity: 1;
  filter: none;
  object-position: center;
  transform: none;
  animation: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(248, 243, 234, 0.98) 0%, rgba(248, 243, 234, 0.94) 42%, rgba(248, 243, 234, 0.2) 72%),
    linear-gradient(180deg, rgba(248, 243, 234, 0.18), rgba(248, 243, 234, 0.88));
}

.hero::after {
  display: none;
}

.hero-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: calc(100dvh - 72px);
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(48px, 8vw, 82px) 0;
}

.hero-content {
  width: min(620px, 100%);
  padding: 0;
  color: var(--ink);
  animation: heroCopyIn 720ms ease both;
}

.hero .eyebrow,
.section-kicker,
.pdf-menu-label {
  color: var(--wine);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-content h1 {
  max-width: 610px;
  margin: 14px 0 18px;
  color: var(--ink);
  font-size: clamp(3.2rem, 6.2vw, 5.45rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-content h1 span {
  display: block;
}

.hero-content p {
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-actions {
  margin-top: 26px;
  gap: 12px;
}

.hero-plate {
  display: grid;
  min-height: min(560px, 64dvh);
  border: 1px solid rgba(143, 37, 31, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-plate::before {
  display: none;
}

.hero-plate img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.section {
  width: min(1240px, calc(100% - 40px));
  padding: clamp(76px, 10vw, 128px) 0;
}

.about-section {
  padding-top: clamp(72px, 9vw, 112px);
}

.split-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(30px, 7vw, 84px);
  align-items: center;
}

.section-copy,
.section-heading {
  color: var(--ink);
}

.section-copy h2,
.section-heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-copy p:not(.section-kicker),
.section-intro,
.pdf-menu-panel p,
.contact-card p,
.opening-note {
  color: var(--muted);
}

.section-copy p:not(.section-kicker) {
  font-size: 1.04rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 0 30px;
  text-align: left;
}

.section-heading .section-kicker {
  display: none;
}

.media-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(36, 28, 22, 0.12);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.media-panel::before,
.media-panel::after {
  display: none;
}

.media-panel img {
  border-radius: var(--radius);
  min-height: 520px;
}

.specialties-section {
  padding-top: 30px;
}

.dish-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 16px;
}

.dish-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(36, 28, 22, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(83, 45, 18, 0.1);
}

.dish-card:nth-child(1) {
  grid-row: span 2;
}

.dish-card:nth-child(4) {
  grid-column: span 2;
}

.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dish-card:nth-child(1) img {
  aspect-ratio: 1 / 1.05;
}

.dish-body {
  padding: 18px;
}

.dish-body h3,
.menu-category h3,
.cart-head h3,
.contact-card h3,
.cart-preview-head h3 {
  color: var(--ink);
  letter-spacing: 0;
}

.dish-body p,
.menu-text-body p,
.cart-empty,
.cart-line p,
.cart-preview-line p {
  color: var(--muted);
}

.dish-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.dish-price {
  color: var(--wine);
  font-weight: 900;
}

.pdf-menu-section,
.online-order-section,
.reservation-section,
.opening-section,
.contact-section {
  border-top: 1px solid rgba(36, 28, 22, 0.08);
}

.pdf-menu-panel,
.form-panel,
.contact-card,
.cart-panel,
.opening-list,
.menu-text-card {
  border: 1px solid rgba(36, 28, 22, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 16px 40px rgba(83, 45, 18, 0.1);
}

.pdf-menu-panel {
  align-items: center;
  border-color: rgba(143, 37, 31, 0.16);
  background:
    linear-gradient(135deg, rgba(143, 37, 31, 0.08), rgba(255, 250, 241, 0.92) 46%),
    var(--paper);
}

.pdf-menu-panel h3 {
  color: var(--ink);
}

.menu-pager {
  margin-top: 24px;
  gap: 8px;
}

.menu-page-button {
  border-radius: var(--radius);
  border-color: rgba(143, 37, 31, 0.22);
  background: rgba(255, 250, 241, 0.72);
  color: var(--wine);
  font-weight: 760;
}

.menu-page-button:hover,
.menu-page-button:focus-visible,
.menu-page-button.is-active {
  border-color: var(--wine);
  background: var(--wine);
  color: #fffaf1;
}

.menu-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 18px;
}

.menu-category {
  display: grid;
  gap: 18px;
}

.menu-category h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.menu-items {
  gap: 12px;
}

.menu-text-card {
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-text-card:hover {
  border-color: rgba(143, 37, 31, 0.32);
  transform: translateY(-2px);
}

.menu-text-body {
  padding: 18px;
}

.menu-text-top {
  gap: 16px;
}

.menu-text-top h4 {
  color: var(--ink);
  font-size: 1.03rem;
}

.menu-text-top strong {
  color: var(--wine);
}

.menu-actions {
  margin-top: 14px;
}

.cart-panel {
  top: 94px;
  background: var(--paper);
}

.cart-qty button,
.cart-preview-close,
.header-cart-button {
  border-radius: var(--radius);
  border-color: rgba(143, 37, 31, 0.24);
  background: rgba(255, 250, 241, 0.82);
  color: var(--wine);
}

.cart-qty button:hover,
.cart-preview-close:hover,
.header-cart-button:hover,
.header-cart-button:focus-visible,
.header-cart-button[aria-expanded="true"] {
  background: var(--wine);
  color: #fffaf1;
}

.cart-total,
.cart-preview-total {
  color: var(--ink);
  border-color: rgba(36, 28, 22, 0.12);
}

.form-row input,
.form-row textarea,
.cart-form input,
.cart-form textarea {
  border-radius: var(--radius);
  border: 1px solid rgba(36, 28, 22, 0.14);
  background: #fffdf7;
  color: var(--ink);
}

.form-row input:focus,
.form-row textarea:focus,
.cart-form input:focus,
.cart-form textarea:focus {
  outline: 3px solid rgba(143, 37, 31, 0.16);
  border-color: rgba(143, 37, 31, 0.46);
}

.opening-list {
  overflow: hidden;
}

.opening-day {
  border-color: rgba(36, 28, 22, 0.09);
  background: transparent;
}

.opening-day.is-today {
  border-color: rgba(143, 37, 31, 0.18);
  background: rgba(143, 37, 31, 0.08);
}

.opening-day span,
.opening-day strong {
  color: var(--ink);
}

.contact-layout {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
}

.map-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(36, 28, 22, 0.12);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  border-radius: var(--radius);
}

.site-footer {
  border-top: 1px solid rgba(36, 28, 22, 0.12);
  background: #241c16;
  color: #fffaf1;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 250, 241, 0.72);
}

.site-footer h3,
.footer-brand p {
  color: #fffaf1;
}

.footer-bottom {
  border-top-color: rgba(255, 250, 241, 0.14);
}

.mobile-actions {
  background: rgba(248, 243, 234, 0.96);
  border-top: 1px solid rgba(36, 28, 22, 0.12);
  box-shadow: 0 -12px 34px rgba(83, 45, 18, 0.12);
}

.mobile-actions a {
  background: var(--wine);
  color: #fffaf1;
}

.cart-preview-backdrop {
  background: rgba(36, 28, 22, 0.28);
}

.cart-preview-panel {
  border-color: rgba(36, 28, 22, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(36, 28, 22, 0.2);
}

.cart-preview-line {
  border-color: rgba(36, 28, 22, 0.1);
  background: rgba(248, 243, 234, 0.72);
}

@media (prefers-color-scheme: dark) {
  :root {
    --cream: #191410;
    --paper: #211a15;
    --ink: #fff4e6;
    --muted: #cdbca7;
    --line: rgba(255, 244, 230, 0.14);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  body {
    background:
      linear-gradient(90deg, rgba(255, 244, 230, 0.035) 1px, transparent 1px),
      linear-gradient(180deg, #191410 0%, #211a15 50%, #17120f 100%);
  }

  .site-header,
  .mobile-actions {
    background: rgba(25, 20, 16, 0.92);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(25, 20, 16, 0.98) 0%, rgba(25, 20, 16, 0.94) 42%, rgba(25, 20, 16, 0.26) 74%),
      linear-gradient(180deg, rgba(25, 20, 16, 0.18), rgba(25, 20, 16, 0.9));
  }

  .button-secondary,
  .button-light,
  .button-outline,
  .button-outline-light,
  .menu-page-button,
  .cart-qty button,
  .cart-preview-close,
  .header-cart-button {
    background: rgba(255, 244, 230, 0.08);
  }

  .pdf-menu-panel,
  .form-panel,
  .contact-card,
  .cart-panel,
  .opening-list,
  .menu-text-card,
  .dish-card,
  .cart-preview-panel {
    background: rgba(33, 26, 21, 0.92);
    border-color: rgba(255, 244, 230, 0.12);
  }

  .form-row input,
  .form-row textarea,
  .cart-form input,
  .cart-form textarea {
    background: #191410;
    border-color: rgba(255, 244, 230, 0.14);
  }
}

@media (max-width: 1180px) {
  .hero-image {
    width: 58%;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.82fr;
  }

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

  .dish-card:nth-child(1),
  .dish-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .header-inner {
    width: min(100% - 28px, 1240px);
  }

  .main-nav {
    top: 72px;
    background: rgba(248, 243, 234, 0.98);
  }

  .nav-toggle {
    border-color: rgba(143, 37, 31, 0.24);
    background: rgba(255, 250, 241, 0.7);
  }

  .nav-toggle span {
    background: var(--wine);
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    width: 100%;
    opacity: 0.2;
  }

  .hero-shade {
    background: rgba(248, 243, 234, 0.88);
  }

  .hero-inner,
  .split-layout,
  .menu-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 54px 0 70px;
  }

  .hero-plate {
    min-height: 360px;
  }

  .cart-panel {
    position: static;
  }

  .media-panel img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .hero-inner,
  .section,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1240px);
  }

  .brand {
    min-width: 0;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 2.7rem);
    line-height: 1;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-actions,
  .menu-actions,
  .dish-meta,
  .contact-actions {
    display: grid;
  }

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

  .section {
    padding: 62px 0;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .pdf-menu-panel,
  .form-panel,
  .contact-card,
  .cart-panel,
  .opening-list,
  .menu-text-card {
    box-shadow: 0 12px 30px rgba(83, 45, 18, 0.09);
  }

  .cart-preview-panel {
    top: 84px;
  }
}

/* Source-faithful Sakurhan layout pass */
:root {
  --red: #8f1d21;
  --red-deep: #5e1014;
  --charcoal: #11100e;
  --ink: #1b1714;
  --ivory: #fbf4e8;
  --washi: #efe0c8;
  --paper: #fffaf0;
  --gold: #c6a15b;
  --sage: #596b55;
  --muted: #7b7065;
  --line: rgba(27, 23, 20, 0.16);
  --shadow: 0 22px 60px rgba(12, 10, 8, 0.18);
  --shadow-dark: 0 22px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --header-height: 78px;
  --green: var(--red);
  --wine: var(--red);
  --wine-dark: var(--red-deep);
  --cream: var(--ivory);
  --wood: var(--gold);
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 29, 33, 0.12), transparent 26rem),
    radial-gradient(circle at 82% 0%, rgba(198, 161, 91, 0.12), transparent 24rem),
    linear-gradient(120deg, rgba(255, 250, 240, 0.9), rgba(239, 224, 200, 0.56)),
    var(--ivory);
}

body::before {
  opacity: 0.42;
  background-image:
    linear-gradient(90deg, rgba(17, 16, 14, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 16, 14, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.45) 0 1px, transparent 2px);
  background-size: 28px 28px, 28px 28px, 18px 18px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background:
    radial-gradient(circle at 100% 150%, transparent 23%, var(--red) 24%, transparent 27%, transparent 33%, var(--red) 34%, transparent 37%, transparent 43%, var(--red) 44%, transparent 47%),
    radial-gradient(circle at 0 150%, transparent 23%, var(--red) 24%, transparent 27%, transparent 33%, var(--red) 34%, transparent 37%, transparent 43%, var(--red) 44%, transparent 47%);
  background-size: 72px 38px;
}

.petal-layer {
  position: fixed;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -24px;
  width: 12px;
  height: 18px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(255, 232, 232, 0.94), rgba(224, 111, 117, 0.74));
  opacity: 0.56;
  transform: rotate(24deg);
  animation: petalFall linear infinite;
}

.petal:nth-child(1) {
  left: 8%;
  --drift: 80px;
  animation-duration: 18s;
  animation-delay: -8s;
}

.petal:nth-child(2) {
  left: 23%;
  --drift: -110px;
  animation-duration: 22s;
  animation-delay: -14s;
}

.petal:nth-child(3) {
  left: 44%;
  --drift: 92px;
  animation-duration: 20s;
  animation-delay: -4s;
}

.petal:nth-child(4) {
  left: 67%;
  --drift: -72px;
  animation-duration: 24s;
  animation-delay: -17s;
}

.petal:nth-child(5) {
  left: 82%;
  --drift: 105px;
  animation-duration: 19s;
  animation-delay: -10s;
}

.petal:nth-child(6) {
  left: 94%;
  --drift: -88px;
  animation-duration: 26s;
  animation-delay: -2s;
}

@keyframes petalFall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(var(--drift), 48vh, 0) rotate(180deg);
  }
  100% {
    transform: translate3d(calc(var(--drift) * -0.45), 108vh, 0) rotate(360deg);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--ivory);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(17, 16, 14, 0.82), rgba(17, 16, 14, 0.18));
  box-shadow: none;
}

.header-inner {
  width: min(1180px, calc(100% - 2rem));
  min-height: var(--header-height);
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ivory);
}

.brand-name {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
}

.brand-subtitle,
.main-nav a {
  color: rgba(251, 244, 232, 0.78);
  font-family: Arial, sans-serif;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

.main-nav a,
.header-cta {
  white-space: nowrap;
}

.header-cart-button {
  width: 56px;
  height: 56px;
  border-color: rgba(198, 161, 91, 0.22);
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.header-cart-button:hover,
.header-cart-button:focus-visible,
.header-cart-button[aria-expanded="true"] {
  color: var(--charcoal);
  background: #d2b265;
}

.button {
  min-height: 50px;
  border-radius: var(--radius);
  font-family: Arial, sans-serif;
}

.button-primary {
  color: var(--charcoal);
  background: var(--gold);
  box-shadow: 0 16px 36px rgba(198, 161, 91, 0.25);
}

.button-secondary,
.button-light,
.button-outline,
.button-outline-light {
  color: var(--ivory);
  border-color: rgba(251, 244, 232, 0.46);
  background: rgba(251, 244, 232, 0.08);
  backdrop-filter: blur(10px);
}

.hero {
  min-height: calc(100dvh - 120px);
  display: grid;
  place-items: center;
  color: var(--ivory);
  isolation: isolate;
  background: var(--charcoal);
}

.hero-image {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-position: center;
  filter: saturate(0.9) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.8), rgba(17, 16, 14, 0.48) 52%, rgba(94, 16, 20, 0.7)),
    radial-gradient(circle at 50% 43%, rgba(143, 29, 33, 0.58) 0 9rem, transparent 9.1rem);
  mix-blend-mode: normal;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(251, 244, 232, 0.12), transparent),
    radial-gradient(circle at 78% 78%, rgba(251, 244, 232, 0.34), transparent 9rem);
  opacity: 0.72;
}

.hero::after {
  display: block;
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 108px;
  z-index: 1;
  background: linear-gradient(0deg, var(--ivory) 0%, rgba(251, 244, 232, 0.72) 38%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1020px, calc(100% - 2rem));
  min-height: calc(100dvh - 120px);
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  margin: var(--header-height) auto 0;
  padding: 4.8rem 0 5.6rem;
  text-align: center;
}

.hero-content {
  width: min(980px, 100%);
  color: var(--ivory);
}

.hero-logo {
  display: block;
  width: 124px;
  height: 124px;
  margin: 0 auto 1.1rem;
  object-fit: cover;
  border: 1px solid rgba(251, 244, 232, 0.4);
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.34);
}

.hero .eyebrow {
  margin: 0 0 0.8rem;
  color: rgba(251, 244, 232, 0.82);
  font-family: Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: none;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(3.1rem, 7vw, 5.6rem);
  line-height: 0.95;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
}

.hero-content p:not(.eyebrow) {
  max-width: 760px;
  margin: 1.15rem auto 0;
  color: rgba(251, 244, 232, 0.9);
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
}

.hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

.hero-ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.15rem;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: rgba(251, 244, 232, 0.78);
}

.hero-ribbon span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(251, 244, 232, 0.18);
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.32);
  backdrop-filter: blur(10px);
}

.hero-plate {
  display: none;
}

.section-title,
.section-heading h2,
.section-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.section-copy p:not(.section-kicker),
.section-intro,
.dish-body p,
.menu-text-body p,
.pdf-menu-panel p,
.contact-card p,
.opening-note,
.form-row label,
.cart-form label,
.opening-day,
.site-footer p,
.site-footer a {
  font-family: Arial, sans-serif;
}

.specialties-section {
  padding-top: clamp(56px, 7vw, 86px);
}

.online-order-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1240px) / 2));
  color: var(--ivory);
  background: var(--charcoal);
  border-top: 0;
}

.online-order-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background:
    radial-gradient(circle at 100% 150%, transparent 23%, var(--gold) 24%, transparent 27%, transparent 33%, var(--gold) 34%, transparent 37%, transparent 43%, var(--gold) 44%, transparent 47%),
    radial-gradient(circle at 0 150%, transparent 23%, var(--gold) 24%, transparent 27%, transparent 33%, var(--gold) 34%, transparent 37%, transparent 43%, var(--gold) 44%, transparent 47%);
  background-size: 76px 40px;
}

.online-order-section .section-heading,
.online-order-section .section-heading h2 {
  color: var(--ivory);
}

.online-order-section .section-intro {
  color: rgba(251, 244, 232, 0.72);
}

.online-order-section .menu-page-button {
  color: rgba(251, 244, 232, 0.82);
  border-color: rgba(251, 244, 232, 0.16);
  background: rgba(251, 244, 232, 0.07);
}

.online-order-section .menu-page-button:hover,
.online-order-section .menu-page-button:focus-visible,
.online-order-section .menu-page-button.is-active {
  color: var(--charcoal);
  border-color: var(--gold);
  background: var(--gold);
}

.online-order-section .menu-text-card,
.online-order-section .cart-panel {
  border-color: rgba(251, 244, 232, 0.12);
  background:
    linear-gradient(135deg, rgba(251, 244, 232, 0.1), rgba(143, 29, 33, 0.12)),
    rgba(17, 16, 14, 0.45);
  box-shadow: var(--shadow-dark);
}

.online-order-section .menu-category h3,
.online-order-section .menu-text-top h4,
.online-order-section .cart-head h3,
.online-order-section .cart-total {
  color: var(--ivory);
}

.online-order-section .menu-text-body p,
.online-order-section .cart-empty,
.online-order-section .cart-line p {
  color: rgba(251, 244, 232, 0.66);
}

.online-order-section .menu-text-top strong,
.online-order-section .cart-total strong {
  color: var(--gold);
}

.online-order-section .button-outline,
.online-order-section .button-secondary {
  color: var(--ivory);
  border-color: rgba(198, 161, 91, 0.45);
  background: rgba(251, 244, 232, 0.08);
}

.online-order-section .cart-form input,
.online-order-section .cart-form textarea {
  color: var(--ivory);
  border-color: rgba(251, 244, 232, 0.14);
  background: rgba(17, 16, 14, 0.5);
}

.pdf-menu-panel {
  background:
    linear-gradient(135deg, rgba(143, 29, 33, 0.1), rgba(198, 161, 91, 0.12)),
    var(--paper);
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(17, 16, 14, 0.96), rgba(94, 16, 20, 0.92)),
    var(--charcoal);
}

@media (max-height: 760px) and (min-width: 921px) {
  .hero-logo {
    width: 96px;
    height: 96px;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.35rem);
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .hero-ribbon {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: rgba(17, 16, 14, 0.92);
  }

  .main-nav {
    top: var(--header-height);
    background: rgba(17, 16, 14, 0.98);
  }

  .nav-toggle {
    border-color: rgba(251, 244, 232, 0.22);
    background: rgba(251, 244, 232, 0.08);
  }

  .nav-toggle span {
    background: var(--gold);
  }

  .hero-inner {
    min-height: calc(100dvh - 96px);
    padding: 4rem 0 4.8rem;
  }

  .hero-logo {
    width: 104px;
    height: 104px;
  }

  .hero-content h1 {
    font-size: clamp(2.7rem, 10vw, 3.8rem);
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1.08rem;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .header-cart-button {
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 24px, 1020px);
    min-height: auto;
    padding: 3.7rem 0 4.3rem;
  }

  .hero-logo {
    width: 88px;
    height: 88px;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.2vw, 2.95rem);
    line-height: 1;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1rem;
  }

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

  .online-order-section {
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .petal-layer {
    display: none;
  }
}

/* Harmony and order-board refinement */
:root {
  --red: #8d2b25;
  --red-deep: #4f1714;
  --charcoal: #17120f;
  --ink: #241812;
  --ivory: #fbf5e9;
  --washi: #f2e4cd;
  --paper: #fffaf1;
  --gold: #c49a4a;
  --gold-soft: #ead0a0;
  --muted: #74675b;
  --line: rgba(96, 56, 33, 0.15);
  --shadow: 0 18px 48px rgba(78, 42, 20, 0.14);
  --shadow-dark: 0 22px 70px rgba(0, 0, 0, 0.32);
}

body {
  background:
    radial-gradient(circle at 16% 10%, rgba(141, 43, 37, 0.1), transparent 24rem),
    radial-gradient(circle at 86% 4%, rgba(196, 154, 74, 0.12), transparent 22rem),
    linear-gradient(120deg, #fbf5e9 0%, #f6ead7 46%, #fbf5e9 100%);
}

body::before {
  opacity: 0.18;
  background-size: 42px 42px, 42px 42px, 22px 22px;
}

body::after {
  opacity: 0.055;
  background-size: 88px 46px;
}

.petal {
  opacity: 0.36;
}

.button-primary,
.header-cart-button,
.mobile-actions a {
  background: linear-gradient(180deg, #d4af63, var(--gold));
  color: #1f1711;
}

.button-secondary,
.button-light,
.button-outline,
.button-outline-light {
  color: var(--red-deep);
  border-color: rgba(141, 43, 37, 0.28);
  background: rgba(255, 250, 241, 0.78);
  backdrop-filter: none;
}

.hero .button-secondary,
.hero .button-light,
.hero .button-outline,
.hero .button-outline-light {
  color: var(--ivory);
  border-color: rgba(251, 245, 233, 0.5);
  background: rgba(251, 245, 233, 0.1);
  backdrop-filter: blur(10px);
}

.section,
.about-section,
.pdf-menu-section,
.reservation-section,
.opening-section,
.contact-section {
  background: transparent;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2,
.section-copy h2 {
  color: var(--ink);
}

.section-intro,
.section-copy p:not(.section-kicker),
.opening-note {
  color: var(--muted);
}

.media-panel,
.pdf-menu-panel,
.form-panel,
.contact-card,
.opening-list {
  color: var(--ink);
  border: 1px solid rgba(96, 56, 33, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(250, 239, 218, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.specialties-section .section-heading {
  max-width: 680px;
}

.dish-grid {
  grid-template-columns: 1.05fr 0.95fr;
  grid-auto-flow: dense;
  align-items: stretch;
  gap: 18px;
}

.dish-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1fr);
  min-height: 260px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(96, 56, 33, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(247, 233, 207, 0.9)),
    var(--paper);
  box-shadow: var(--shadow);
}

.dish-card:nth-child(1),
.dish-card:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
}

.dish-card:nth-child(3) {
  grid-row: span 2;
}

.dish-card img,
.dish-card:nth-child(1) img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: auto;
  object-fit: cover;
}

.dish-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.dish-body h3 {
  color: var(--ink);
  font-size: clamp(1.28rem, 2.3vw, 1.8rem);
  line-height: 1.08;
}

.dish-body p {
  color: var(--muted);
}

.dish-price {
  color: var(--red);
}

.opening-list {
  padding: 12px;
}

.opening-day {
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
}

.opening-day + .opening-day {
  margin-top: 4px;
}

.opening-day span,
.opening-day strong {
  color: var(--ink);
}

.opening-day.is-today {
  border: 1px solid rgba(141, 43, 37, 0.22);
  background: rgba(141, 43, 37, 0.08);
}

.online-order-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(196, 154, 74, 0.12), transparent 28rem),
    linear-gradient(180deg, #1b1511 0%, #120f0c 100%);
}

.online-order-section::before {
  opacity: 0.055;
}

.online-order-section .section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.online-order-section .section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.menu-pager {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 22px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scrollbar-width: thin;
}

.menu-page-button {
  flex: 0 0 auto;
}

.online-order-section .menu-page-button {
  min-height: 40px;
  border-radius: 999px;
  color: rgba(251, 245, 233, 0.8);
  border-color: rgba(251, 245, 233, 0.13);
  background: rgba(251, 245, 233, 0.055);
}

.online-order-section .menu-page-button:first-child,
.online-order-section .menu-page-button:last-child {
  color: var(--gold-soft);
  border-color: rgba(196, 154, 74, 0.26);
}

.online-order-section .menu-page-button.is-active {
  color: #1e1711;
  border-color: var(--gold);
  background: linear-gradient(180deg, #d6b15f, var(--gold));
}

.menu-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: 24px;
}

.menu-category h3 {
  margin-bottom: 16px;
  color: var(--ivory);
}

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

.online-order-section .menu-text-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  min-height: 178px;
  overflow: hidden;
  border-color: rgba(251, 245, 233, 0.12);
  background:
    linear-gradient(135deg, rgba(251, 245, 233, 0.07), rgba(141, 43, 37, 0.11)),
    rgba(32, 24, 19, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.online-order-section .menu-text-card:hover {
  border-color: rgba(196, 154, 74, 0.42);
  background:
    linear-gradient(135deg, rgba(251, 245, 233, 0.09), rgba(141, 43, 37, 0.14)),
    rgba(38, 28, 22, 0.84);
}

.menu-item-thumb {
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
  background: rgba(251, 245, 233, 0.08);
}

.menu-item-thumb.is-logo-image {
  object-fit: contain;
  padding: 18px;
}

.menu-text-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}

.menu-item-category {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--gold-soft);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.online-order-section .menu-text-top {
  align-items: start;
}

.online-order-section .menu-text-top h4 {
  color: var(--ivory);
  font-size: 1.02rem;
  line-height: 1.24;
}

.online-order-section .menu-text-top strong {
  color: var(--gold);
  white-space: nowrap;
}

.online-order-section .menu-text-body p {
  color: rgba(251, 245, 233, 0.62);
  font-size: 0.9rem;
  line-height: 1.48;
}

.menu-actions {
  display: flex;
  gap: 8px;
  margin-top: 0;
}

.menu-actions .button {
  min-height: 38px;
  padding: 0.58rem 0.7rem;
  font-size: 0.78rem;
}

.online-order-section .cart-panel {
  border-color: rgba(196, 154, 74, 0.22);
  background:
    linear-gradient(180deg, rgba(42, 31, 24, 0.98), rgba(25, 19, 15, 0.98)),
    var(--charcoal);
}

.online-order-section .cart-form label {
  color: var(--gold-soft);
}

.online-order-section .cart-form input,
.online-order-section .cart-form textarea {
  color: var(--ivory);
  background: rgba(12, 10, 8, 0.56);
}

.online-order-section .cart-total {
  border-top: 1px solid rgba(251, 245, 233, 0.12);
}

@media (max-width: 1100px) {
  .menu-layout,
  .menu-items {
    grid-template-columns: 1fr;
  }

  .online-order-section .menu-text-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  .dish-grid,
  .dish-card {
    grid-template-columns: 1fr;
  }

  .dish-card:nth-child(3) {
    grid-row: span 1;
  }

  .dish-card img,
  .dish-card:nth-child(1) img {
    height: auto;
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .menu-pager {
    margin-inline: -2px;
  }

  .online-order-section .menu-text-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 168px;
  }

  .menu-item-thumb {
    min-height: 168px;
  }

  .menu-text-body {
    padding: 13px;
  }

  .online-order-section .menu-text-top {
    display: grid;
    gap: 8px;
  }

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

  .menu-actions .button {
    width: 100%;
  }

  .opening-list {
    padding: 8px;
  }

  .opening-day {
    padding: 12px;
  }
}

/* Premium v2: unified restaurant design system */
:root {
  --aq-ink: #241914;
  --aq-espresso: #17110e;
  --aq-panel: #fffaf1;
  --aq-paper: #fbf4e8;
  --aq-paper-deep: #f1e1c9;
  --aq-red: #8b2d28;
  --aq-red-deep: #541a17;
  --aq-gold: #c59b4d;
  --aq-gold-soft: #ead2a3;
  --aq-sage: #556553;
  --aq-muted: #73665b;
  --aq-line: rgba(88, 52, 31, 0.14);
  --aq-radius: 14px;
  --aq-radius-sm: 9px;
  --aq-ease: cubic-bezier(0.32, 0.72, 0, 1);
  --red: var(--aq-red);
  --red-deep: var(--aq-red-deep);
  --charcoal: var(--aq-espresso);
  --ink: var(--aq-ink);
  --ivory: var(--aq-paper);
  --paper: var(--aq-panel);
  --gold: var(--aq-gold);
  --muted: var(--aq-muted);
  --radius: var(--aq-radius-sm);
}

body {
  color: var(--aq-ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 45, 40, 0.08), transparent 25rem),
    radial-gradient(circle at 88% 6%, rgba(197, 155, 77, 0.1), transparent 24rem),
    linear-gradient(135deg, #fcf6eb 0%, #f6ead8 52%, #fcf6eb 100%);
}

body::before {
  opacity: 0.11;
  background-size: 52px 52px, 52px 52px, 26px 26px;
}

body::after {
  opacity: 0.035;
}

.petal {
  opacity: 0.28;
}

.site-header {
  height: 92px;
  padding-top: 14px;
  background: transparent;
}

.header-inner {
  width: min(1230px, calc(100% - 28px));
  min-height: 64px;
  padding: 0 12px 0 14px;
  border: 1px solid rgba(251, 244, 232, 0.14);
  border-radius: 999px;
  background: rgba(23, 17, 14, 0.76);
  box-shadow: 0 22px 70px rgba(24, 15, 10, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  gap: 10px;
  min-width: 188px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.brand-name {
  font-size: 1.08rem;
}

.brand-subtitle {
  font-size: 0.72rem;
  line-height: 1.05;
}

.main-nav {
  gap: 16px;
}

.main-nav a {
  color: rgba(251, 244, 232, 0.78);
  font-size: 0.83rem;
  font-weight: 760;
}

.header-cta {
  min-height: 48px;
  padding-inline: 22px;
  border-radius: 999px;
}

.header-cart-button {
  width: 48px;
  height: 48px;
}

.button {
  border-radius: 999px;
  transition: transform 320ms var(--aq-ease), box-shadow 320ms var(--aq-ease), background-color 320ms var(--aq-ease), border-color 320ms var(--aq-ease), color 320ms var(--aq-ease);
}

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

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #dfbf74 0%, var(--aq-gold) 100%);
  box-shadow: 0 16px 38px rgba(138, 92, 24, 0.2);
}

.button-outline,
.button-secondary,
.button-light,
.button-outline-light {
  border-color: rgba(139, 45, 40, 0.22);
  color: var(--aq-red-deep);
  background: rgba(255, 250, 241, 0.86);
}

.hero {
  min-height: 100dvh;
}

.hero-image {
  filter: saturate(0.86) contrast(1.02) brightness(0.92);
}

.hero-shade {
  background:
    radial-gradient(circle at 50% 42%, rgba(139, 45, 40, 0.5) 0 9rem, transparent 9.1rem),
    linear-gradient(90deg, rgba(18, 13, 10, 0.8), rgba(18, 13, 10, 0.5) 50%, rgba(84, 26, 23, 0.68));
}

.hero::before {
  opacity: 0.42;
}

.hero-inner {
  min-height: calc(100dvh - 20px);
  margin-top: 0;
  padding: 7rem 0 5.8rem;
}

.hero-logo {
  width: 112px;
  height: 112px;
}

.hero .eyebrow {
  color: rgba(251, 244, 232, 0.82);
}

.hero-content h1 {
  font-size: clamp(3.6rem, 7vw, 6.15rem);
  line-height: 0.92;
}

.hero-content p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(251, 244, 232, 0.84);
}

.hero-ribbon span {
  border-color: rgba(251, 244, 232, 0.14);
  background: rgba(23, 17, 14, 0.34);
}

.section {
  width: min(1230px, calc(100% - 44px));
  padding: clamp(84px, 10vw, 132px) 0;
}

.section-heading h2,
.section-copy h2 {
  color: var(--aq-ink);
  letter-spacing: 0;
}

.section-intro,
.section-copy p:not(.section-kicker) {
  color: var(--aq-muted);
}

.split-layout {
  gap: clamp(36px, 6vw, 78px);
}

.media-panel,
.pdf-menu-panel,
.form-panel,
.contact-card,
.opening-list {
  border: 1px solid var(--aq-line);
  border-radius: var(--aq-radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(248, 235, 211, 0.92)),
    var(--aq-panel);
  box-shadow: 0 22px 70px rgba(88, 52, 31, 0.11);
}

.media-panel img,
.map-panel,
.map-panel iframe {
  border-radius: calc(var(--aq-radius) - 2px);
}

/* Keep the complete about image visible at its natural proportions. */
.media-panel.about-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
}

.specialties-section {
  width: min(1230px, calc(100% - 44px));
}

.specialties-section .section-heading {
  margin-bottom: 34px;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dish-card,
.dish-card:nth-child(1),
.dish-card:nth-child(4) {
  display: grid;
  grid-template-columns: minmax(180px, 0.84fr) minmax(0, 1fr);
  min-height: 292px;
  border: 1px solid rgba(88, 52, 31, 0.15);
  border-radius: var(--aq-radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(248, 235, 211, 0.88)),
    var(--aq-panel);
  box-shadow: 0 18px 54px rgba(88, 52, 31, 0.1);
}

.dish-card:nth-child(3) {
  grid-row: span 1;
}

.dish-card img,
.dish-card:nth-child(1) img {
  height: 100%;
  min-height: 292px;
  opacity: 1;
  object-position: var(--dish-focus, 50% 50%);
}

.dish-body {
  padding: 24px;
}

.dish-body h3 {
  color: var(--aq-ink);
}

.dish-body p {
  color: var(--aq-muted);
  font-size: 0.98rem;
}

.dish-meta {
  align-items: end;
}

.dish-price {
  color: var(--aq-red);
  font-size: 1.05rem;
}

.pdf-menu-panel {
  align-items: center;
}

.pdf-menu-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.pdf-menu-panel .button-outline {
  color: var(--aq-ink);
  border-color: rgba(58, 46, 37, 0.18);
  background: rgba(255, 250, 241, 0.68);
}

.online-order-section {
  position: relative;
  width: 100%;
  padding: clamp(88px, 9vw, 124px) max(24px, calc((100vw - 1230px) / 2));
  background:
    radial-gradient(circle at 18% 10%, rgba(197, 155, 77, 0.14), transparent 28rem),
    radial-gradient(circle at 90% 24%, rgba(139, 45, 40, 0.16), transparent 24rem),
    linear-gradient(180deg, #1d1511 0%, #120f0c 100%);
}

.online-order-section .section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.online-order-section .section-heading h2 {
  color: var(--aq-paper);
}

.online-order-section .section-intro {
  color: rgba(251, 244, 232, 0.7);
}

.menu-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(100%, 860px);
  max-width: 100%;
  margin: 24px auto 0;
  overflow: visible;
  padding: 8px;
  border: 1px solid rgba(251, 244, 232, 0.1);
  border-radius: 999px;
  background: rgba(251, 244, 232, 0.055);
}

.online-order-section .menu-page-button {
  flex: 1 1 112px;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(251, 244, 232, 0.78);
  border-color: rgba(251, 244, 232, 0.12);
  background: rgba(251, 244, 232, 0.055);
}

.online-order-section .menu-page-step {
  flex-basis: 96px;
  flex-grow: 0.65;
  color: var(--aq-gold-soft);
  border-color: rgba(197, 155, 77, 0.24);
}

.online-order-section .menu-page-button.is-active {
  color: #1e1711;
  border-color: transparent;
  background: linear-gradient(180deg, #dfbf74, var(--aq-gold));
}

.menu-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 386px);
  gap: 24px;
}

.menu-category h3 {
  margin: 0 0 18px;
  color: var(--aq-paper);
}

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

.online-order-section .menu-text-card {
  display: grid;
  grid-template-columns: minmax(158px, 34%) minmax(0, 1fr);
  min-height: 220px;
  border: 1px solid rgba(251, 244, 232, 0.1);
  border-radius: var(--aq-radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251, 244, 232, 0.075), rgba(139, 45, 40, 0.12)),
    rgba(42, 30, 24, 0.74);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.online-order-section .menu-text-card:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 155, 77, 0.42);
}

.menu-item-thumb {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: var(--dish-focus, 50% 50%);
}

.menu-text-body {
  padding: 17px;
}

.menu-item-category {
  margin-bottom: 8px;
  color: var(--aq-gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.online-order-section .menu-text-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
}

.online-order-section .menu-text-top h4 {
  color: var(--aq-paper);
  font-size: 1rem;
  line-height: 1.22;
}

.online-order-section .menu-text-top strong {
  color: var(--aq-gold);
}

.online-order-section .menu-text-body p {
  color: rgba(251, 244, 232, 0.62);
  font-size: 0.88rem;
}

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

.menu-actions .button {
  min-height: 37px;
  padding: 0.55rem 0.74rem;
  font-size: 0.76rem;
}

.online-order-section .menu-actions .button-outline {
  color: #1e1711;
  border-color: transparent;
  background: linear-gradient(180deg, #dcb96d, var(--aq-gold));
}

.online-order-section .menu-actions .button-secondary {
  color: rgba(251, 244, 232, 0.84);
  border-color: rgba(251, 244, 232, 0.16);
  background: rgba(251, 244, 232, 0.055);
}

.online-order-section .cart-panel {
  border: 1px solid rgba(197, 155, 77, 0.22);
  border-radius: var(--aq-radius);
  background:
    linear-gradient(180deg, rgba(50, 36, 28, 0.98), rgba(25, 19, 15, 0.98)),
    var(--aq-espresso);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.online-order-section .cart-head .section-kicker,
.online-order-section .cart-form label {
  color: var(--aq-gold-soft);
}

.online-order-section .cart-form input,
.online-order-section .cart-form textarea {
  border-color: rgba(251, 244, 232, 0.12);
  color: var(--aq-paper);
  background: rgba(10, 8, 6, 0.44);
}

.opening-section {
  padding-top: clamp(90px, 10vw, 138px);
}

.opening-list {
  padding: 14px;
}

.opening-day {
  min-height: 58px;
  border-radius: var(--aq-radius-sm);
}

.opening-day.is-today {
  border-color: rgba(139, 45, 40, 0.2);
  background: rgba(139, 45, 40, 0.075);
}

.mobile-actions {
  background: rgba(252, 246, 235, 0.92);
  backdrop-filter: blur(16px);
}

@media (max-width: 1120px) {
  .header-inner {
    width: min(100% - 24px, 1230px);
  }

  .main-nav {
    gap: 11px;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

  .menu-layout,
  .menu-items {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 78px;
    padding-top: 0;
    background: rgba(23, 17, 14, 0.9);
  }

  .header-inner {
    width: min(100% - 20px, 1230px);
    min-height: 78px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .main-nav {
    top: 78px;
  }

  .hero-inner {
    padding-top: 6rem;
  }

  .dish-grid,
  .dish-card,
  .dish-card:nth-child(1),
  .dish-card:nth-child(4) {
    grid-template-columns: 1fr;
  }

  .dish-card img,
  .dish-card:nth-child(1) img {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .section,
  .specialties-section {
    width: min(100% - 24px, 1230px);
    padding-block: 66px;
  }

  .hero-logo {
    width: 82px;
    height: 82px;
  }

  .hero-content h1 {
    font-size: clamp(2.35rem, 10vw, 2.9rem);
  }

  .hero-content p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .pdf-menu-panel,
  .pdf-menu-actions {
    display: grid;
    width: 100%;
  }

  .pdf-menu-actions {
    justify-content: stretch;
  }

  .online-order-section {
    padding: 70px 12px;
  }

  .menu-pager {
    width: 100%;
    border-radius: 22px;
    padding: 7px;
  }

  .online-order-section .menu-page-button {
    flex-basis: calc(50% - 6px);
    padding-inline: 10px;
  }

  .online-order-section .menu-text-card {
    grid-template-columns: 124px minmax(0, 1fr);
    min-height: 214px;
  }

  .menu-item-thumb {
    min-height: 214px;
  }

  .menu-text-body {
    padding: 13px;
  }

  .online-order-section .menu-text-top {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .menu-actions .button {
    width: 100%;
  }
}

/* Light pass: keep the restaurant site warm and remove dark panels. */
.pdf-menu-stack {
  display: none;
}

.menu-view-page {
  min-height: 100dvh;
  color: var(--aq-ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(197, 155, 77, 0.13), transparent 28rem),
    linear-gradient(180deg, rgba(255, 250, 241, 0.97), rgba(249, 238, 218, 0.96)),
    var(--aq-paper);
}

.menu-view-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1230px, calc(100% - 44px));
  margin: 14px auto 0;
  border: 1px solid rgba(58, 46, 37, 0.16);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 18px 52px rgba(88, 52, 31, 0.16);
  backdrop-filter: blur(18px);
}

.menu-view-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.menu-view-main {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 112px) 0 80px;
}

.menu-view-hero {
  margin-bottom: 28px;
}

.menu-view-hero h1 {
  margin: 8px 0 12px;
  color: var(--aq-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.menu-view-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 0;
  color: var(--aq-muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.menu-view-stack {
  display: grid;
  gap: 26px;
  width: min(860px, 100%);
  margin: 30px auto 0;
}

.menu-view-sheet {
  overflow: hidden;
  border: 1px solid rgba(58, 46, 37, 0.14);
  border-radius: var(--aq-radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(248, 235, 211, 0.94)),
    var(--aq-panel);
  box-shadow: 0 22px 70px rgba(88, 52, 31, 0.12);
}

.menu-view-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(58, 46, 37, 0.12);
  color: var(--aq-ink);
  font-weight: 850;
}

.menu-view-sheet-head a {
  color: var(--aq-red);
  font-size: 0.9rem;
  font-weight: 850;
}

.menu-view-sheet img {
  display: block;
  width: 100%;
  aspect-ratio: 724 / 1024;
  height: auto;
  background: #fffaf1;
}

.site-header {
  color: var(--aq-ink);
}

.header-inner {
  border-color: rgba(58, 46, 37, 0.16);
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 18px 52px rgba(88, 52, 31, 0.16);
}

.brand-text strong,
.main-nav a {
  color: var(--aq-ink);
}

.brand-text span {
  color: var(--aq-muted);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--aq-red);
}

.header-cart-button {
  color: var(--aq-ink);
  background: linear-gradient(180deg, #dfbf74, var(--aq-gold));
}

.online-order-section {
  color: var(--aq-ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(197, 155, 77, 0.13), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(139, 45, 40, 0.08), transparent 25rem),
    linear-gradient(180deg, rgba(255, 250, 241, 0.97), rgba(249, 238, 218, 0.96)),
    var(--aq-paper);
}

.online-order-section::before {
  opacity: 0.28;
}

.online-order-section .section-heading h2,
.online-order-section .menu-category h3,
.online-order-section .menu-text-top h4,
.online-order-section .cart-head h3,
.online-order-section .cart-total {
  color: var(--aq-ink);
}

.online-order-section .section-intro,
.online-order-section .menu-text-body p,
.online-order-section .cart-empty,
.online-order-section .cart-line p {
  color: var(--aq-muted);
}

.online-order-section .section-kicker,
.online-order-section .menu-item-category,
.online-order-section .cart-form label,
.online-order-section .menu-text-top strong,
.online-order-section .cart-total strong {
  color: var(--aq-red);
}

.menu-pager {
  border-color: rgba(58, 46, 37, 0.13);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 16px 40px rgba(88, 52, 31, 0.08);
}

.online-order-section .menu-page-button {
  color: var(--aq-ink);
  border-color: rgba(58, 46, 37, 0.14);
  background: rgba(255, 250, 241, 0.82);
}

.online-order-section .menu-page-step {
  color: var(--aq-red);
  border-color: rgba(139, 45, 40, 0.18);
}

.online-order-section .menu-page-button:hover,
.online-order-section .menu-page-button:focus-visible {
  color: var(--aq-ink);
  border-color: rgba(197, 155, 77, 0.5);
  background: rgba(241, 222, 186, 0.92);
}

.online-order-section .menu-page-button.is-active {
  color: #1e1711;
  background: linear-gradient(180deg, #dfbf74, var(--aq-gold));
}

.online-order-section .menu-text-card,
.online-order-section .cart-panel,
.form-panel,
.contact-card,
.cart-preview-panel {
  border-color: rgba(58, 46, 37, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(248, 235, 211, 0.92)),
    var(--aq-panel);
  box-shadow: 0 20px 62px rgba(88, 52, 31, 0.12);
}

.online-order-section .menu-text-card:hover {
  border-color: rgba(197, 155, 77, 0.46);
  box-shadow: 0 24px 66px rgba(88, 52, 31, 0.16);
}

.online-order-section .menu-actions .button-secondary,
.contact-actions .button-secondary,
.cart-preview-close {
  color: var(--aq-ink);
  border-color: rgba(58, 46, 37, 0.16);
  background: rgba(255, 250, 241, 0.78);
}

.form-row label,
.cart-form label {
  color: var(--aq-red);
}

.form-row input,
.form-row textarea,
.cart-form input,
.cart-form textarea {
  color: var(--aq-ink);
  border-color: rgba(58, 46, 37, 0.18);
  background: rgba(255, 250, 241, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form-row input::placeholder,
.form-row textarea::placeholder,
.cart-form input::placeholder,
.cart-form textarea::placeholder {
  color: rgba(58, 46, 37, 0.48);
}

.form-row input:focus,
.form-row textarea:focus,
.cart-form input:focus,
.cart-form textarea:focus {
  border-color: rgba(197, 155, 77, 0.7);
  box-shadow: 0 0 0 3px rgba(197, 155, 77, 0.22);
}

.cart-line,
.cart-preview-line {
  border-color: rgba(58, 46, 37, 0.12);
}

.cart-qty button {
  color: var(--aq-ink);
  border-color: rgba(58, 46, 37, 0.16);
  background: rgba(255, 250, 241, 0.8);
}

.cart-preview-backdrop {
  background: rgba(58, 46, 37, 0.28);
}

.site-footer {
  color: var(--aq-ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(197, 155, 77, 0.16), transparent 26rem),
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(242, 227, 201, 0.96)),
    var(--aq-paper);
}

.site-footer::before {
  opacity: 0.12;
}

.site-footer p,
.site-footer a,
.footer-brand p {
  color: var(--aq-muted);
}

.site-footer h3,
.footer-inner h3 {
  color: var(--aq-ink);
}

.footer-inner,
.footer-bottom {
  border-color: rgba(58, 46, 37, 0.13);
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--aq-red);
}

@media (max-width: 900px) {
  .site-header {
    background: rgba(255, 250, 241, 0.94);
  }

  .header-inner {
    background: transparent;
    box-shadow: none;
  }

  .mobile-menu-toggle {
    color: var(--aq-ink);
    border-color: rgba(58, 46, 37, 0.18);
    background: rgba(255, 250, 241, 0.78);
  }

  .main-nav {
    background: rgba(255, 250, 241, 0.98);
    border-color: rgba(58, 46, 37, 0.12);
  }
}

@media (max-width: 620px) {
  .menu-view-header {
    align-items: stretch;
    border-radius: var(--aq-radius);
    flex-direction: column;
    width: min(100% - 24px, 1230px);
  }

  .menu-view-nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .menu-view-main {
    width: min(100% - 24px, 980px);
    padding-top: 54px;
  }

  .menu-view-hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  .menu-view-stack {
    gap: 18px;
  }

  .menu-view-sheet-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

.brand-name,
.brand-subtitle {
  color: var(--aq-ink);
}

.online-order-section .cart-form input,
.online-order-section .cart-form textarea,
.cart-preview-panel input,
.cart-preview-panel textarea {
  color-scheme: light;
  color: var(--aq-ink);
  border-color: rgba(58, 46, 37, 0.18);
  background: #fffaf1;
}

.online-order-section .cart-form input:focus,
.online-order-section .cart-form textarea:focus {
  border-color: rgba(197, 155, 77, 0.72);
  box-shadow: 0 0 0 3px rgba(197, 155, 77, 0.24);
}

.nav-toggle {
  color: var(--aq-ink);
  border-color: rgba(58, 46, 37, 0.18);
  background: rgba(255, 250, 241, 0.78);
}

.nav-toggle span {
  background: var(--aq-ink);
}

.online-order-section .menu-page-button,
.online-order-section .menu-category h3,
.online-order-section .menu-item-category {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-variant-ligatures: none;
  text-rendering: geometricPrecision;
}

.online-order-section .menu-page-button {
  white-space: nowrap;
}

.online-order-section .menu-category h3 {
  font-weight: 850;
}

.online-order-section .menu-item-thumb {
  align-self: stretch;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: auto;
  margin: 0;
  object-fit: cover;
  object-position: var(--dish-focus, center);
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.online-order-section .menu-item-thumb.is-logo-image {
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: transparent;
}

@media (max-width: 620px) {
  .online-order-section .menu-item-thumb {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .online-order-section .menu-item-thumb.is-logo-image {
    padding: 0;
  }
}

.dish-card,
.dish-card:nth-child(1),
.dish-card:nth-child(4) {
  display: flex;
  min-height: auto;
}

.dish-card img,
.dish-card:nth-child(1) img,
.online-order-section .menu-item-thumb {
  display: none;
}

.dish-body {
  width: 100%;
  min-height: 0;
}

.online-order-section .menu-item-category {
  display: none;
}

.dish-body p,
.online-order-section .menu-text-body p {
  display: block;
  margin: 0;
  color: rgba(36, 25, 20, 0.68);
  font-size: 0.94rem;
  line-height: 1.52;
}

.online-order-section .menu-text-body p {
  color: #241914;
}

.online-order-section .menu-text-card {
  align-self: start;
  grid-template-columns: minmax(0, 1fr);
  grid-row-end: span var(--menu-card-rows, auto);
  min-height: auto;
}

.online-order-section .menu-items {
  align-items: start;
  grid-auto-flow: dense;
  grid-auto-rows: 8px;
}

.online-order-section .menu-text-body {
  gap: 16px;
  justify-content: flex-start;
  padding: 18px;
}

.online-order-section .menu-text-top {
  align-items: flex-start;
}

.online-order-section .menu-text-top h4 {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.online-order-section .menu-text-top strong,
.dish-price {
  font-size: 1.08rem;
  font-variant-numeric: tabular-nums;
}

.online-order-section .menu-text-card:hover,
.online-order-section .menu-text-card:focus-within {
  border-color: rgba(197, 155, 77, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.99), rgba(247, 231, 201, 0.96)),
    var(--aq-panel);
  box-shadow: 0 18px 42px rgba(88, 52, 31, 0.16);
}

.online-order-section .menu-text-card:hover .menu-text-top h4,
.online-order-section .menu-text-card:focus-within .menu-text-top h4,
.online-order-section .menu-text-card:hover .menu-text-body p,
.online-order-section .menu-text-card:focus-within .menu-text-body p {
  color: var(--aq-ink);
}

.online-order-section .menu-text-card:hover .menu-text-top strong,
.online-order-section .menu-text-card:focus-within .menu-text-top strong {
  color: var(--aq-red);
}

.online-order-section .menu-text-card.is-attention {
  border-color: rgba(139, 45, 40, 0.52);
  box-shadow: 0 0 0 3px rgba(197, 155, 77, 0.2), 0 20px 54px rgba(88, 52, 31, 0.18);
}

.menu-option-groups {
  display: grid;
  gap: 12px;
}

.menu-option-group {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(58, 46, 37, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.66);
}

.menu-option-group legend {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  color: var(--aq-ink);
  font-weight: 850;
}

.menu-option-group legend em {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--aq-red);
  background: rgba(139, 45, 40, 0.08);
  font-size: 0.72rem;
  font-style: normal;
}

.menu-option-hint,
.menu-option-error,
.cart-option-text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.menu-option-hint {
  color: rgba(36, 25, 20, 0.66);
}

.menu-option-list {
  display: grid;
  gap: 6px;
}

.menu-option-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 8px 0;
  color: var(--aq-ink);
  border-top: 1px solid rgba(58, 46, 37, 0.08);
}

.menu-option-row:first-child {
  border-top: 0;
}

.menu-option-row span {
  display: grid;
  gap: 2px;
}

.menu-option-row strong {
  font-size: 0.94rem;
}

.menu-option-row small {
  color: var(--aq-red);
  font-size: 0.86rem;
}

.menu-option-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--aq-red);
}

.menu-option-error {
  display: none;
  color: var(--aq-red);
  font-weight: 750;
}

.menu-option-group.has-error {
  border-color: rgba(139, 45, 40, 0.48);
  background: rgba(139, 45, 40, 0.055);
}

.menu-option-group.has-error .menu-option-error {
  display: block;
}

.cart-option-text {
  color: rgba(36, 25, 20, 0.68);
}

.menu-view-pdf {
  display: grid;
  gap: 16px;
  width: min(960px, 100%);
  margin: 30px auto 0;
}

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

.menu-view-pdf-frame {
  width: 100%;
  min-height: 82dvh;
  border: 1px solid rgba(58, 46, 37, 0.14);
  border-radius: var(--aq-radius);
  background: #fffaf1;
  box-shadow: 0 22px 70px rgba(88, 52, 31, 0.12);
}

@media (max-width: 620px) {
  .menu-view-pdf-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .menu-view-pdf-frame {
    min-height: 76dvh;
  }
}

/* Compact order board */
.online-order-section {
  --order-gold: #c59b4d;
  --order-gold-bright: #dfbf74;
  --order-gold-deep: #8f6728;
  --order-gold-soft: rgba(197, 155, 77, 0.12);
  padding: clamp(64px, 8vw, 104px) 20px;
  color: var(--aq-ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(244, 231, 207, 0.96)),
    var(--aq-paper);
}

.online-order-section::before {
  opacity: 0.08;
}

.online-order-section .section-heading {
  display: grid;
  width: min(1120px, 100%);
  max-width: none;
  margin: 0 auto 26px;
  gap: 14px;
  text-align: left;
}

.online-order-section .section-heading h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--aq-ink);
  font-size: clamp(2.25rem, 6vw, 4.2rem);
  line-height: 0.98;
}

.online-order-section .section-intro {
  max-width: 56ch;
  margin: 0;
  color: rgba(36, 25, 20, 0.68);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.order-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 760px;
  margin-top: 4px;
}

.order-flow span {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: rgba(36, 25, 20, 0.74);
  border: 1px solid rgba(58, 46, 37, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  font-size: 0.92rem;
  font-weight: 750;
}

.order-flow strong {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--aq-ink);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--order-gold-bright), var(--order-gold));
  font-size: 0.78rem;
}

.online-order-section .menu-pager {
  display: flex;
  width: 100%;
  max-width: 1120px;
  gap: 8px;
  align-items: center;
  margin: 6px 0 0;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid rgba(58, 46, 37, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: none;
  scrollbar-width: thin;
}

.online-order-section .menu-page-button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 14px;
  color: rgba(36, 25, 20, 0.78);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 800;
}

.online-order-section .menu-page-step {
  color: var(--order-gold-deep);
  background: var(--order-gold-soft);
}

.online-order-section .menu-page-button:hover,
.online-order-section .menu-page-button:focus-visible {
  color: var(--aq-ink);
  border-color: rgba(197, 155, 77, 0.46);
  background: rgba(255, 250, 241, 0.9);
}

.online-order-section .menu-page-button.is-active {
  color: var(--aq-ink);
  border-color: transparent;
  background: linear-gradient(180deg, var(--order-gold-bright), var(--order-gold));
}

.online-order-section .menu-layout {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 22px;
  align-items: start;
  margin: 0 auto;
}

.online-order-section .menu-category {
  display: grid;
  gap: 14px;
}

.online-order-section .menu-category h3 {
  margin: 0;
  color: var(--order-gold-deep);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.online-order-section .menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  grid-auto-rows: 6px;
}

.online-order-section .menu-text-card {
  overflow: hidden;
  border: 1px solid rgba(58, 46, 37, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 10px 28px rgba(88, 52, 31, 0.08);
  transition: transform 180ms var(--aq-ease), border-color 180ms var(--aq-ease), box-shadow 180ms var(--aq-ease);
}

.online-order-section .menu-text-card:hover,
.online-order-section .menu-text-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(197, 155, 77, 0.46);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 16px 36px rgba(88, 52, 31, 0.12);
}

.online-order-section .menu-text-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.online-order-section .menu-text-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
}

.online-order-section .menu-text-top h4 {
  margin: 0;
  color: var(--aq-ink);
  font-size: 1.05rem;
  line-height: 1.22;
}

.online-order-section .menu-text-top strong {
  color: var(--order-gold-deep);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.online-order-section .menu-text-body p {
  color: rgba(36, 25, 20, 0.68);
  font-size: 0.92rem;
  line-height: 1.48;
}

.online-order-section .menu-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.online-order-section .menu-actions .button {
  width: 100%;
  min-height: 40px;
  justify-content: center;
  padding: 10px 12px;
  font-size: 0.86rem;
}

.online-order-section .menu-actions .button-outline {
  color: var(--aq-ink);
  border-color: transparent;
  background: linear-gradient(180deg, var(--order-gold-bright), var(--order-gold));
}

.online-order-section .menu-actions .button-outline:hover,
.online-order-section .menu-actions .button-outline:focus-visible {
  color: var(--aq-ink);
  background: linear-gradient(180deg, #e8c982, #b98935);
}

.online-order-section .menu-actions .button-secondary {
  color: var(--aq-ink);
  border-color: rgba(58, 46, 37, 0.14);
  background: rgba(255, 250, 241, 0.72);
}

.online-order-section .cart-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(58, 46, 37, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 38px rgba(88, 52, 31, 0.12);
}

.online-order-section .cart-head {
  display: grid;
  gap: 3px;
}

.online-order-section .cart-head h3 {
  margin: 0;
  color: var(--aq-ink);
  font-size: 1.35rem;
}

.online-order-section .cart-empty {
  margin: 0;
  padding: 14px;
  color: rgba(36, 25, 20, 0.64);
  border-radius: 8px;
  background: var(--order-gold-soft);
}

.online-order-section .cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-color: rgba(58, 46, 37, 0.1);
}

.online-order-section .cart-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  color: var(--aq-ink);
  border-top: 1px solid rgba(58, 46, 37, 0.12);
  font-size: 1.05rem;
}

.online-order-section .cart-total strong {
  color: var(--order-gold-deep);
}

.online-order-section .cart-form {
  display: grid;
  gap: 9px;
}

.online-order-section .cart-form label {
  color: rgba(36, 25, 20, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.online-order-section .cart-form input,
.online-order-section .cart-form textarea {
  min-height: 42px;
  color: var(--aq-ink);
  border: 1px solid rgba(58, 46, 37, 0.14);
  border-radius: 8px;
  background: #fffaf1;
}

.online-order-section .cart-form textarea {
  min-height: 84px;
  resize: vertical;
}

.online-order-section .cart-form .button {
  margin-top: 4px;
  min-height: 46px;
}

.online-order-section .cart-form .button-primary {
  color: var(--aq-ink);
  background: linear-gradient(180deg, var(--order-gold-bright), var(--order-gold));
}

.online-order-section .cart-form .button-primary:hover,
.online-order-section .cart-form .button-primary:focus-visible {
  color: var(--aq-ink);
  background: linear-gradient(180deg, #e8c982, #b98935);
}

@media (max-width: 980px) {
  .online-order-section .menu-layout {
    grid-template-columns: 1fr;
  }

  .online-order-section .cart-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .online-order-section {
    padding: 54px 14px 72px;
  }

  .order-flow {
    grid-template-columns: 1fr;
  }

  .online-order-section .menu-pager {
    border-radius: 8px;
  }

  .online-order-section .menu-page-button {
    min-height: 40px;
  }

  .online-order-section .menu-items {
    grid-template-columns: 1fr;
  }

  .online-order-section .menu-text-body,
  .online-order-section .cart-panel {
    padding: 14px;
  }

  .online-order-section .menu-text-top {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* Beer actions use the same primary action language as the rest of the menu. */
.online-order-section .alcohol-add-button,
.online-order-section .alcohol-add-button.button-outline {
  display: inline-flex;
  flex: 0 0 auto;
  width: auto;
  min-width: 132px;
  height: auto;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  color: var(--aq-ink);
  background: linear-gradient(180deg, var(--order-gold-bright), var(--order-gold));
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.online-order-section .alcohol-add-button:hover,
.online-order-section .alcohol-add-button:focus-visible,
.online-order-section .alcohol-add-button.button-outline:hover,
.online-order-section .alcohol-add-button.button-outline:focus-visible {
  color: var(--aq-ink);
  background: linear-gradient(180deg, #e8c982, #b98935);
  transform: translateY(-1px);
}

.online-order-section .alcohol-add-button:focus-visible {
  outline: 3px solid rgba(112, 69, 30, 0.3);
  outline-offset: 3px;
}

.online-order-section .alcohol-add-button:active {
  transform: scale(0.98);
}

@media (max-width: 520px) {
  .online-order-section .alcohol-menu-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .online-order-section .alcohol-add-button,
  .online-order-section .alcohol-add-button.button-outline {
    width: 100%;
  }
}

/* Alcohol menu: compact ordering rows inspired by a printed drinks list. */
.online-order-section .menu-items:has(.alcohol-menu-row) {
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 0;
  border-top: 1px solid rgba(58, 46, 37, 0.12);
}

.online-order-section .alcohol-menu-row {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 44px);
  min-height: 150px;
  padding: clamp(22px, 3vw, 34px) clamp(18px, 3vw, 30px);
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(58, 46, 37, 0.12);
  border-radius: 0;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: none;
}

.online-order-section .alcohol-menu-row:hover,
.online-order-section .alcohol-menu-row:focus-within {
  transform: none;
  border-color: rgba(58, 46, 37, 0.18);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: none;
}

.alcohol-menu-content {
  min-width: 0;
}

.online-order-section .alcohol-menu-content h4 {
  margin: 0 0 9px;
  color: var(--aq-ink);
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.online-order-section .alcohol-menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 8px;
  margin: 0;
  color: rgba(36, 25, 20, 0.58);
  font-size: clamp(0.9rem, 1.7vw, 1.05rem);
  line-height: 1.45;
  font-variant-numeric: tabular-nums;
}

.online-order-section .alcohol-menu-meta strong {
  color: var(--aq-ink);
  font-weight: 750;
}

.online-order-section .alcohol-menu-volume {
  margin: 7px 0 0;
  color: rgba(36, 25, 20, 0.72);
  font-size: 0.98rem;
  line-height: 1.4;
}

.online-order-section .alcohol-menu-note {
  margin: 4px 0 0;
  color: rgba(36, 25, 20, 0.62);
  font-size: 0.82rem;
  line-height: 1.4;
}

.alcohol-add-button {
  display: inline-grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--aq-ink);
  background: var(--order-gold-bright);
  box-shadow: 0 5px 8px rgba(88, 52, 31, 0.16);
  cursor: pointer;
  transition: transform 160ms var(--aq-ease), background-color 160ms var(--aq-ease);
}

.alcohol-add-button span {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-1px);
}

.alcohol-add-button:hover,
.alcohol-add-button:focus-visible {
  background: var(--order-gold);
  transform: translateY(-2px);
}

.alcohol-add-button:focus-visible {
  outline: 3px solid rgba(112, 69, 30, 0.34);
  outline-offset: 3px;
}

.alcohol-add-button:active {
  transform: scale(0.96);
}

@media (max-width: 720px) {
  .online-order-section .alcohol-menu-row {
    min-height: 132px;
    padding: 20px 14px;
  }

  .alcohol-add-button {
    width: 48px;
    height: 48px;
  }

  .online-order-section .alcohol-menu-note {
    max-width: 34ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .alcohol-add-button {
    transition: none;
  }
}

/* Unified order-menu system: food cards, option rows and compact drinks. */
.online-order-section .menu-category {
  gap: 18px;
}

.online-order-section .menu-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px 12px;
  border-bottom: 1px solid rgba(58, 46, 37, 0.13);
}

.online-order-section .menu-category-heading h3 {
  margin: 0;
  color: var(--aq-ink);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.online-order-section .menu-category-heading p {
  margin: 0;
  color: rgba(36, 25, 20, 0.58);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.online-order-section [data-menu-kind="food"] .menu-items {
  gap: 16px;
}

.online-order-section [data-menu-kind="food"] .menu-text-card {
  border: 1px solid rgba(58, 46, 37, 0.13);
  border-radius: 12px;
  background: #fffdf9;
  box-shadow: 0 4px 8px rgba(88, 52, 31, 0.06);
}

.online-order-section [data-menu-kind="food"] .menu-text-card:hover,
.online-order-section [data-menu-kind="food"] .menu-text-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(139, 45, 40, 0.32);
  background: #fffdf9;
  box-shadow: 0 5px 8px rgba(88, 52, 31, 0.1);
}

.online-order-section [data-menu-kind="food"] .menu-text-body {
  gap: 15px;
  padding: clamp(17px, 2.4vw, 22px);
}

.online-order-section [data-menu-kind="food"] .menu-text-top {
  align-items: start;
}

.online-order-section [data-menu-kind="food"] .menu-text-top h4 {
  color: var(--aq-ink);
  font-size: clamp(1.04rem, 1.8vw, 1.18rem);
  line-height: 1.28;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

.online-order-section .menu-choice-summary {
  margin: 5px 0 0;
  color: var(--aq-red);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.3;
}

.online-order-section [data-menu-kind="food"] .menu-text-top > strong {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--aq-red);
  font-size: 1.08rem;
  line-height: 1.2;
}

.online-order-section .menu-text-top > strong small {
  color: rgba(36, 25, 20, 0.56);
  font-size: 0.7rem;
  font-weight: 700;
}

.online-order-section [data-menu-kind="food"] .menu-item-description {
  margin: 0;
  color: rgba(36, 25, 20, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.online-order-section [data-menu-kind="food"] .menu-option-groups {
  gap: 17px;
  padding-top: 3px;
}

.online-order-section [data-menu-kind="food"] .menu-option-group {
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.online-order-section [data-menu-kind="food"] .menu-option-group legend {
  padding-top: 14px;
  border-top: 1px solid rgba(58, 46, 37, 0.11);
  font-size: 0.94rem;
}

.online-order-section [data-menu-kind="food"] .menu-option-group legend em {
  padding: 3px 7px;
  border: 1px solid rgba(139, 45, 40, 0.18);
  border-radius: 999px;
  background: transparent;
  font-size: 0.66rem;
}

.online-order-section [data-menu-kind="food"] .menu-option-hint {
  color: rgba(36, 25, 20, 0.54);
  font-size: 0.76rem;
}

.online-order-section [data-menu-kind="food"] .menu-option-list {
  gap: 3px;
}

.online-order-section [data-menu-kind="food"] .menu-option-row {
  min-height: 46px;
  padding: 9px 10px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 150ms var(--aq-ease);
}

.online-order-section [data-menu-kind="food"] .menu-option-row:hover {
  background: rgba(197, 155, 77, 0.09);
}

.online-order-section [data-menu-kind="food"] .menu-option-row:has(input:checked) {
  color: var(--aq-ink);
  background: rgba(197, 155, 77, 0.16);
}

.online-order-section [data-menu-kind="food"] .menu-option-row input {
  width: 20px;
  height: 20px;
}

.online-order-section [data-menu-kind="food"] .menu-actions {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 9px;
  padding-top: 3px;
}

.online-order-section [data-menu-kind="food"] .menu-actions .button {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.online-order-section [data-menu-kind="drinks"] .menu-items {
  grid-template-columns: 1fr;
  gap: 0;
  grid-auto-rows: auto;
  border-top: 1px solid rgba(58, 46, 37, 0.11);
}

.online-order-section .homemade-drink-row {
  grid-column: 1 / -1;
  grid-row-end: auto;
  border: 0;
  border-bottom: 1px solid rgba(58, 46, 37, 0.11);
  border-radius: 0;
  background: rgba(255, 253, 248, 0.68);
  box-shadow: none;
}

.online-order-section .alcohol-menu-row {
  grid-row-end: auto;
}

.online-order-section .homemade-drink-row:hover,
.online-order-section .homemade-drink-row:focus-within {
  transform: none;
  border-color: rgba(58, 46, 37, 0.16);
  background: #fffdf9;
  box-shadow: none;
}

.online-order-section .homemade-drink-row .menu-text-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  align-items: center;
  padding: 18px 16px;
}

.online-order-section .homemade-drink-row .menu-text-top,
.online-order-section .homemade-drink-row .menu-actions {
  display: contents;
}

.online-order-section .homemade-drink-row .menu-text-top h4 {
  color: var(--aq-ink);
  font-size: 1.04rem;
}

.online-order-section .homemade-drink-row .menu-text-top > strong {
  grid-column: 2;
  grid-row: 1;
  color: var(--aq-red);
}

.online-order-section .homemade-drink-row .menu-item-description {
  grid-column: 1;
  margin: 0;
  color: rgba(36, 25, 20, 0.62);
  font-size: 0.84rem;
}

.online-order-section .homemade-drink-row .menu-actions .button-outline {
  grid-column: 2;
  grid-row: 2;
  width: auto;
  min-width: 112px;
  min-height: 40px;
}

.online-order-section .homemade-drink-row .menu-actions .button-secondary {
  display: none;
}

@media (max-width: 720px) {
  .online-order-section .menu-category-heading {
    align-items: center;
  }

  .online-order-section [data-menu-kind="food"] .menu-actions {
    grid-template-columns: 1fr;
  }

  .online-order-section .homemade-drink-row .menu-text-body {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 16px 12px;
  }

  .online-order-section .homemade-drink-row .menu-actions .button-outline {
    min-width: 96px;
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .online-order-section [data-menu-kind="food"] .menu-text-card,
  .online-order-section [data-menu-kind="food"] .menu-option-row {
    transition: none;
  }
}

/* Cohesion pass: one continuous menu rhythm across every category. */
.online-order-section .menu-category {
  --menu-space-xs: 8px;
  --menu-space-sm: 12px;
  --menu-space-md: 16px;
  --menu-space-lg: 24px;
}

.online-order-section .menu-category .menu-items,
.online-order-section [data-menu-kind="food"] .menu-items,
.online-order-section [data-menu-kind="drinks"] .menu-items,
.online-order-section .menu-items:has(.alcohol-menu-row) {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(58, 46, 37, 0.13);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.82);
}

.online-order-section .menu-category .menu-text-card,
.online-order-section [data-menu-kind="food"] .menu-text-card,
.online-order-section .homemade-drink-row,
.online-order-section .alcohol-menu-row {
  display: block;
  grid-column: 1;
  grid-row-end: auto;
  min-height: 0;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(58, 46, 37, 0.11);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.online-order-section .menu-category .menu-text-card:last-child,
.online-order-section .alcohol-menu-row:last-child {
  border-bottom: 0;
}

.online-order-section .menu-category .menu-text-card:hover,
.online-order-section .menu-category .menu-text-card:focus-within,
.online-order-section [data-menu-kind="food"] .menu-text-card:hover,
.online-order-section [data-menu-kind="food"] .menu-text-card:focus-within,
.online-order-section .homemade-drink-row:hover,
.online-order-section .homemade-drink-row:focus-within,
.online-order-section .alcohol-menu-row:hover,
.online-order-section .alcohol-menu-row:focus-within {
  border-color: rgba(58, 46, 37, 0.11);
  background: rgba(197, 155, 77, 0.065);
  box-shadow: none;
  transform: none;
}

.online-order-section .menu-category .menu-text-body,
.online-order-section [data-menu-kind="food"] .menu-text-body {
  gap: var(--menu-space-sm);
  padding: var(--menu-space-lg);
}

.online-order-section [data-menu-kind="food"] .menu-text-top {
  gap: var(--menu-space-md);
}

.online-order-section [data-menu-kind="food"] .menu-item-description {
  max-width: 68ch;
}

.online-order-section [data-menu-kind="food"] .menu-option-groups {
  gap: var(--menu-space-lg);
  margin-top: var(--menu-space-xs);
}

.online-order-section [data-menu-kind="food"] .menu-option-group legend {
  padding-top: var(--menu-space-md);
}

.online-order-section [data-menu-kind="food"] .menu-option-row {
  padding: 10px var(--menu-space-sm);
}

.online-order-section [data-menu-kind="food"] .menu-actions {
  display: flex;
  justify-content: flex-start;
  gap: var(--menu-space-xs);
  padding-top: var(--menu-space-xs);
}

.online-order-section [data-menu-kind="food"] .menu-actions .button {
  width: auto;
  min-width: 156px;
}

.online-order-section .homemade-drink-row .menu-text-body {
  padding: var(--menu-space-md) var(--menu-space-lg);
}

.online-order-section .alcohol-menu-row {
  display: flex;
  min-height: 0;
  padding: var(--menu-space-lg);
}

.online-order-section .alcohol-menu-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.online-order-section .alcohol-menu-actions .button-outline {
  width: auto;
  min-width: 132px;
  max-width: 156px;
  min-height: 44px;
  color: var(--aq-ink);
  border-color: transparent;
  background: linear-gradient(180deg, var(--order-gold-bright), var(--order-gold));
  opacity: 1;
}

.online-order-section .alcohol-menu-actions .button-outline:hover,
.online-order-section .alcohol-menu-actions .button-outline:focus-visible {
  color: var(--aq-ink);
  background: linear-gradient(180deg, #e8c982, #b98935);
}

.online-order-section .menu-category-heading {
  padding-inline: 0;
}

@media (max-width: 720px) {
  .online-order-section .menu-category .menu-text-body,
  .online-order-section [data-menu-kind="food"] .menu-text-body,
  .online-order-section .homemade-drink-row .menu-text-body,
  .online-order-section .alcohol-menu-row {
    padding: var(--menu-space-md);
  }

  .online-order-section [data-menu-kind="food"] .menu-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .online-order-section [data-menu-kind="food"] .menu-actions .button {
    width: 100%;
    min-width: 0;
  }

  .online-order-section .alcohol-menu-actions {
    width: auto;
    align-self: flex-start;
  }

  .online-order-section .alcohol-menu-actions .button-outline {
    width: auto;
    min-width: 132px;
  }
}
.form-status {
  min-height: 1.5em;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  color: #287a45;
}

.form-status[data-state="error"] {
  color: #b63b32;
}
