:root {
  --ink: #071527;
  --ink-soft: #10233a;
  --panel: #112a42;
  --gold: #d9a441;
  --gold-bright: #f2c85b;
  --glossy-gold: linear-gradient(
    112deg,
    #7b3f05 0%,
    #d58a12 16%,
    #fff2a8 28%,
    #f6c13a 41%,
    #8a4305 52%,
    #ffe985 65%,
    #c87a0b 78%,
    #fff8bf 90%,
    #a65a08 100%
  );
  --cream: #fff7e7;
  --paper: #f7ead3;
  --red: #9b2d25;
  --green: #47715f;
  --shadow: 0 24px 60px rgba(3, 13, 25, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 8%, rgba(217, 164, 65, 0.16), transparent 26rem),
    linear-gradient(135deg, #071527 0%, #10233a 45%, #071527 100%);
  font-family: Inter, Arial, sans-serif;
}

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

a {
  color: inherit;
}

.brand-mark,
.brand strong,
.eyebrow,
.trust-strip strong,
.public-hours-row strong,
.basket h3,
.menu-card h3,
.order-help h3,
.menu-card .price,
.menu-item-button:hover .menu-item-name,
.deal-toggle:hover .menu-item-name,
.hours-row strong,
.add-product-panel h3,
.price-group h3,
.contact-card strong,
.contact-card label,
.success-page .success-note {
  color: var(--gold-bright);
  background: var(--glossy-gold);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 18px rgba(87, 43, 4, 0.3);
}

label,
.site-nav a:hover,
.site-footer p:first-child {
  color: var(--gold-bright);
  background: var(--glossy-gold);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

label input,
label select,
label textarea {
  background-image: none;
  -webkit-text-fill-color: var(--cream);
}

.hero .eyebrow {
  color: var(--cream);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}
.gold-spark-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.gold-spark-field span {
  position: absolute;
  bottom: -8vh;
  width: var(--spark-size, 4px);
  height: var(--spark-size, 4px);
  left: var(--spark-left, 50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 247, 204, 0.96), rgba(242, 200, 91, 0.82) 42%, rgba(217, 164, 65, 0) 72%);
  box-shadow: 0 0 12px rgba(242, 200, 91, 0.72);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.72);
  animation: spark-rise var(--spark-duration, 9s) linear infinite;
  animation-delay: var(--spark-delay, 0s);
}

@keyframes spark-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.58);
  }
  12% {
    opacity: 0.78;
  }
  58% {
    opacity: 0.58;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--spark-drift, 24px), -112vh, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gold-spark-field {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(7, 21, 39, 0.88);
  border-bottom: 1px solid rgba(217, 164, 65, 0.42);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: Cinzel, Georgia, serif;
  font-weight: 800;
}

.brand strong,
h1,
h2,
h3 {
  font-family: Cinzel, Georgia, serif;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
}

.brand small {
  color: rgba(255, 247, 231, 0.72);
}
/* Phase 3 brand system: crowned CE emblem and Caffe Elite Coffee House wordmark. */
.brand {
  flex: 0 1 278px;
}

.brand-logo {
  width: clamp(190px, 22vw, 278px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.footer-logo {
  width: min(252px, 78vw);
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.24));
}

.site-footer {
  align-items: center;
}

.promo-price:empty::before {
  content: "";
  display: block;
  width: 5.5ch;
  height: 1em;
}


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

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 247, 231, 0.86);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

.cart-toggle {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #091827;
  background: var(--gold-bright);
  border: 1px solid var(--gold);
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cart-toggle,
.button.primary,
.deal-chevron {
  color: #091827;
  background: var(--glossy-gold);
  background-size: 220% 100%;
  border-color: rgba(255, 242, 168, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -10px 18px rgba(106, 54, 2, 0.2),
    0 10px 22px rgba(242, 200, 91, 0.2);
  -webkit-text-fill-color: #091827;
}

.cart-toggle:hover,
.button.primary:hover,
.deal-chevron:hover {
  background-position: 80% 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -10px 18px rgba(106, 54, 2, 0.16),
    0 14px 28px rgba(242, 200, 91, 0.28);
}

.cart-count {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 6px;
  color: var(--cream);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.78rem;
}
.basket-burst-particle {
  position: fixed;
  z-index: 60;
  width: var(--burst-size, 8px);
  height: var(--burst-size, 8px);
  left: var(--burst-left, 0px);
  top: var(--burst-top, 0px);
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 248, 199, 0.98), rgba(242, 200, 91, 0.9) 48%, rgba(217, 164, 65, 0) 74%);
  box-shadow: 0 0 18px rgba(242, 200, 91, 0.92), 0 0 34px rgba(217, 164, 65, 0.34);
  animation: basket-burst 920ms cubic-bezier(0.12, 0.82, 0.22, 1) forwards;
}

.cart-count.is-bursting {
  animation: basket-count-pop 520ms ease-out;
}

@keyframes basket-burst {
  0% {
    opacity: 0.98;
    transform: translate3d(-50%, -50%, 0) scale(0.3);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--burst-x, 0px) - 50%), calc(var(--burst-y, 0px) - 50%), 0) scale(1.55);
  }
}

@keyframes basket-count-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.48);
    box-shadow: 0 0 28px rgba(242, 200, 91, 0.92), 0 0 46px rgba(217, 164, 65, 0.46);
  }
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .basket-burst-particle,
  .cart-count.is-bursting {
    animation: none;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-bright);
}

.cart-drawer {
  position: fixed;
  top: 82px;
  right: 14px;
  z-index: 40;
  width: min(340px, calc(100vw - 24px));
  max-height: calc(100vh - 104px);
  display: grid;
  grid-template-rows: auto minmax(0, auto) auto auto auto;
  gap: 14px;
  padding: 22px;
  overflow: auto;
  transform: translateX(calc(100% + 44px));
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(180deg, rgba(17, 42, 66, 0.98), rgba(8, 24, 42, 0.98));
  border: 1px solid rgba(217, 164, 65, 0.62);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    visibility 180ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.cart-drawer::before {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(217, 164, 65, 0.25);
  border-radius: 5px;
}

.cart-drawer-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.cart-drawer h2 {
  font-size: 2rem;
}

.cart-close {
  min-height: 38px;
  padding: 8px 10px;
  color: var(--cream);
  background: rgba(7, 21, 39, 0.72);
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(3, 10, 18, 0.38);
}

.cart-drawer ul {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cart-drawer li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 247, 231, 0.23);
}

.cart-drawer .basket-empty,
.cart-drawer .basket-total,
.cart-drawer #orderMessage,
.cart-drawer .checkout-button,
.cart-drawer .cart-note {
  position: relative;
  z-index: 1;
}

.basket-total {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 12px 0 2px;
  color: var(--gold-bright);
  border-top: 1px solid rgba(217, 164, 65, 0.38);
  font-size: 1.05rem;
  font-weight: 900;
}

.cart-note {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 247, 231, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 70px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(217, 164, 65, 0.32);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 2px solid rgba(217, 164, 65, 0.78);
  box-shadow: inset 0 0 0 6px rgba(7, 21, 39, 0.36);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.92) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 39, 0.94), rgba(7, 21, 39, 0.62) 46%, rgba(7, 21, 39, 0.22)),
    linear-gradient(0deg, rgba(7, 21, 39, 0.96), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(850px, 100%);
  padding: clamp(96px, 14vw, 150px) clamp(24px, 6vw, 84px) clamp(72px, 10vw, 112px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: 0.82;
  color: var(--cream);
  text-shadow: 0 5px 0 rgba(217, 164, 65, 0.3);
}

.hero h1 {
  background: var(--glossy-gold);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.12),
    0 6px 0 rgba(78, 38, 3, 0.28),
    0 22px 42px rgba(3, 13, 25, 0.64);
}

.hero-copy {
  width: min(620px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 247, 231, 0.88);
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #091827;
  background: var(--glossy-gold);
  background-size: 220% 100%;
  -webkit-text-fill-color: #091827;
}

.button.secondary {
  color: var(--cream);
  background: rgba(7, 21, 39, 0.48);
}

.button.stripe {
  color: #fff;
  background: #635bff;
  border-color: #8b85ff;
}

.button.stripe:hover {
  background: #5147e8;
}


.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(217, 164, 65, 0.34);
  border-bottom: 1px solid rgba(217, 164, 65, 0.35);
}

.trust-strip div {
  display: grid;
  gap: 5px;
  min-height: 86px;
  align-content: center;
  padding: 18px clamp(16px, 3vw, 34px);
  color: var(--cream);
  background: linear-gradient(180deg, rgba(17, 42, 66, 0.98), rgba(8, 24, 42, 0.98));
}

.trust-strip strong {
  color: var(--gold-bright);
  font-family: Cinzel, Georgia, serif;
  font-size: 1rem;
}

.trust-strip span {
  color: rgba(255, 247, 231, 0.74);
  line-height: 1.45;
}
.notice-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(217, 164, 65, 0.3);
  border-bottom: 1px solid rgba(217, 164, 65, 0.35);
}

.notice-band span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
  text-align: center;
}

.notice-band span.is-closed {
  color: var(--cream);
  background: var(--red);
}

.hours-public-card {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, rgba(17, 42, 66, 0.96), rgba(8, 24, 42, 0.96));
  border: 1px solid rgba(217, 164, 65, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hours-public-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(217, 164, 65, 0.25);
  border-radius: 5px;
}

.hours-disclosure {
  display: block;
}

.hours-disclosure summary {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  cursor: pointer;
  list-style: none;
}

.hours-disclosure summary::-webkit-details-marker {
  display: none;
}

.hours-disclosure summary strong {
  display: block;
  margin-bottom: 6px;
  background: var(--glossy-gold);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 22px rgba(87, 43, 4, 0.28);
}

.hours-disclosure summary small {
  display: block;
  color: rgba(255, 247, 231, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hours-disclosure-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #091827;
  background: var(--glossy-gold);
  border: 1px solid rgba(255, 242, 168, 0.68);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 10px 24px rgba(3, 13, 25, 0.3);
  font-weight: 900;
  transition: transform 180ms ease;
}

.hours-disclosure[open] .hours-disclosure-icon {
  transform: rotate(45deg);
}

.hours-disclosure-panel {
  position: relative;
  z-index: 1;
  padding-top: 14px;
  border-top: 1px solid rgba(217, 164, 65, 0.28);
}

.hours-public-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.public-hours-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 247, 231, 0.22);
}

.public-hours-row:last-child {
  border-bottom: 0;
}

.public-hours-row strong {
  color: var(--gold-bright);
}

.public-hours-row small {
  color: rgba(255, 247, 231, 0.68);
}

.public-hours-row.is-today {
  padding-inline: 10px;
  background: rgba(242, 200, 91, 0.08);
  border: 1px solid rgba(217, 164, 65, 0.32);
  border-radius: 6px;
}

.hours-note {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: rgba(255, 247, 231, 0.8);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 94px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
}

h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1;
}

.intro p:last-child,
.visit p {
  margin: 0;
  color: rgba(255, 247, 231, 0.78);
  font-size: 1.04rem;
  line-height: 1.75;
}

.feature-photo {
  padding-top: 0;
}

.feature-photo figure {
  position: relative;
  margin: 0;
  padding: 10px;
  background: linear-gradient(180deg, rgba(17, 42, 66, 0.96), rgba(8, 24, 42, 0.96));
  border: 1px solid rgba(217, 164, 65, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-photo figure::before {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(217, 164, 65, 0.25);
  border-radius: 5px;
}

.feature-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 5px;
}

.feature-photo figcaption {
  position: relative;
  z-index: 1;
  padding: 12px 4px 2px;
  color: rgba(255, 247, 231, 0.8);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(217, 164, 65, 0.36);
  padding-bottom: 18px;
}

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

.menu-card,
.order-panel,
.order-help,
.basket,
.photo-grid figure {
  position: relative;
  background: linear-gradient(180deg, rgba(17, 42, 66, 0.96), rgba(8, 24, 42, 0.96));
  border: 1px solid rgba(217, 164, 65, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-card {
  padding: 22px;
}

.menu-category-nav {
  display: flex;
  gap: 10px;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 4px 0 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(217, 164, 65, 0.64) rgba(7, 21, 39, 0.08);
}

.menu-category-nav a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(7, 21, 39, 0.08);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 180ms var(--ease-premium),
    border-color 180ms var(--ease-premium),
    background 180ms var(--ease-premium);
}

.menu-category-nav a:hover,
.menu-category-nav a:focus-visible {
  transform: translateY(-1px);
  color: #091827;
  background: var(--glossy-gold);
  border-color: rgba(217, 164, 65, 0.72);
  outline: 0;
}

.menu-card::before,
.order-panel::before,
.order-help::before,
.basket::before,
.photo-grid figure::before {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(217, 164, 65, 0.25);
  border-radius: 5px;
}

.menu-card h3,
.order-help h3,
.basket h3 {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 1.12rem;
}

.menu-card ul,
.basket ul {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-card li,
.basket li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 247, 231, 0.23);
}

.menu-card li:last-child,
.basket li:last-child {
  border-bottom: 0;
}

.menu-card .price {
  color: var(--gold-bright);
  font-weight: 800;
}

.menu-item-button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.menu-item-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.menu-item-name {
  overflow-wrap: anywhere;
}

.menu-item-description {
  color: rgba(255, 247, 231, 0.7);
  font-size: 0.88rem;
  line-height: 1.35;
}

.menu-item-button.has-image {
  grid-template-columns: minmax(0, 1fr) 116px;
  min-height: 106px;
  gap: 14px;
}

.menu-item-photo {
  width: 116px;
  height: 92px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid rgba(217, 164, 65, 0.45);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.menu-card--pasta .menu-item-button.has-image {
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
  min-height: 0;
}

.menu-card--pasta .menu-item-photo {
  order: -1;
  width: 100%;
  height: 184px;
}

.menu-item-button:hover .menu-item-name {
  color: var(--gold-bright);
}

.deal-builder {
  display: grid;
  gap: 0;
}

.deal-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.deal-toggle:hover .menu-item-name {
  color: var(--gold-bright);
}

.deal-chevron {
  align-self: center;
  padding: 7px 9px;
  color: #091827;
  background: var(--glossy-gold);
  background-size: 220% 100%;
  border: 1px solid rgba(255, 242, 168, 0.72);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  -webkit-text-fill-color: #091827;
}

.deal-panel {
  display: grid;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 220ms ease,
    opacity 180ms ease,
    padding-top 180ms ease;
}

.deal-builder.is-open .deal-panel {
  max-height: 520px;
  padding-top: 12px;
  opacity: 1;
}

.deal-fields {
  display: grid;
  gap: 10px;
}

.deal-fields label {
  display: grid;
  gap: 5px;
  color: rgba(255, 247, 231, 0.76);
  font-size: 0.88rem;
}

.deal-fields select {
  min-height: 40px;
  padding: 8px 10px;
  color: var(--cream);
  background: rgba(7, 21, 39, 0.76);
  border: 1px solid rgba(217, 164, 65, 0.36);
  border-radius: 6px;
  font: inherit;
}

.deal-add {
  justify-self: start;
  margin-top: 10px;
}

.menu-item-button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

.price.is-empty {
  color: rgba(255, 247, 231, 0.54);
  font-size: 0.85rem;
}

.order-layout,
.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
  align-items: start;
}

.order-panel,
.order-help,
.basket {
  padding: 24px;
}

.order-help {
  min-height: 100%;
}

.order-help p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: rgba(255, 247, 231, 0.76);
  line-height: 1.7;
}

.form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-weight: 800;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: 6px;
  padding: 12px;
  color: var(--cream);
  background: rgba(7, 21, 39, 0.72);
  font: inherit;
}

textarea {
  resize: vertical;
}

.basket-empty {
  margin: 14px 0;
  color: rgba(255, 247, 231, 0.68);
}

.remove-item {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--cream);
  background: rgba(155, 45, 37, 0.68);
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: 6px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.remove-item:hover {
  background: var(--red);
}

#orderMessage {
  position: relative;
  z-index: 1;
  margin-top: 16px;
}

.checkout-button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 2px;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.photo-grid figure {
  margin: 0;
  padding: 10px;
}

.photo-grid img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 5px;
}

.photo-grid figcaption {
  position: relative;
  z-index: 1;
  padding: 12px 4px 2px;
  color: rgba(255, 247, 231, 0.8);
}

.visit {
  width: min(1180px, calc(100% - 36px));
  border-top: 1px solid rgba(217, 164, 65, 0.35);
}

.visit iframe {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(217, 164, 65, 0.52);
  border-radius: 8px;
  background: var(--paper);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.success-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 24px;
}

.success-page h1 {
  font-size: clamp(4rem, 13vw, 9rem);
}

.success-page p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 0;
  color: rgba(255, 247, 231, 0.82);
  font-size: 1.15rem;
  line-height: 1.7;
}

.success-page .success-note {
  color: var(--gold-bright);
  font-weight: 800;
}

.admin-page h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
}

.admin-hero p:not(.eyebrow),
.admin-message {
  color: rgba(255, 247, 231, 0.8);
  line-height: 1.7;
}

.admin-login {
  padding-top: 0;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.admin-accordion {
  position: relative;
  background: linear-gradient(180deg, rgba(17, 42, 66, 0.96), rgba(8, 24, 42, 0.96));
  border: 1px solid rgba(217, 164, 65, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.admin-accordion summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  color: var(--gold-bright);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.admin-accordion summary::-webkit-details-marker {
  display: none;
}

.admin-accordion summary::after {
  content: "+";
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #091827;
  background: var(--gold-bright);
  border-radius: 6px;
}

.admin-accordion[open] summary::after {
  content: "-";
}

.admin-accordion summary small {
  color: rgba(255, 247, 231, 0.7);
  font-weight: 700;
}

.admin-accordion > .order-panel,
.admin-accordion > form.order-panel {
  margin: 0 12px 12px;
  box-shadow: none;
}

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

.admin-switches {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.admin-switches label {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--cream);
}

.admin-switches input {
  width: 20px;
  height: 20px;
}

.marketing-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 247, 231, 0.82);
}

.marketing-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.hours-table {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.hours-row {
  display: grid;
  grid-template-columns: 110px repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 247, 231, 0.2);
}

.hours-row strong {
  color: var(--gold-bright);
}

.price-editor,
.orders-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.add-product-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px;
  background: rgba(7, 21, 39, 0.42);
  border: 1px solid rgba(217, 164, 65, 0.24);
  border-radius: 6px;
}

.add-product-panel h3 {
  margin: 0;
  color: var(--gold-bright);
  font-size: 1rem;
}

.price-group {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: rgba(7, 21, 39, 0.42);
  border: 1px solid rgba(217, 164, 65, 0.24);
  border-radius: 6px;
}

.price-group h3 {
  margin: 0;
  color: var(--gold-bright);
  font-size: 1rem;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px auto;
  gap: 10px;
  align-items: center;
}

.price-row span {
  color: var(--cream);
}

.price-row small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 247, 231, 0.58);
  font-size: 0.72rem;
}

.price-row input {
  min-height: 38px;
  padding: 8px 10px;
}

.remove-product {
  min-width: 82px;
}

.order-history-card {
  padding: 14px;
  background: rgba(7, 21, 39, 0.54);
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 6px;
}

.contacts-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-card {
  padding: 14px;
  background: rgba(7, 21, 39, 0.54);
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 6px;
}

.contact-card strong {
  color: var(--gold-bright);
}

.contact-card p {
  margin: 8px 0 0;
}

.order-card-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  color: var(--gold-bright);
  font-weight: 800;
}

.order-card-head > div {
  display: grid;
  gap: 8px;
}

.order-status {
  width: fit-content;
  padding: 5px 9px;
  color: var(--cream);
  background: rgba(255, 247, 231, 0.12);
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 999px;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.order-status.is-paid,
.order-status.is-completed {
  color: #e8fff3;
  background: rgba(71, 113, 95, 0.45);
}

.order-status.is-preparing {
  color: #091827;
  background: var(--gold-bright);
}

.order-status.is-cancelled {
  background: rgba(155, 45, 37, 0.72);
}

.order-history-card p {
  margin: 8px 0;
  color: rgba(255, 247, 231, 0.82);
}

.order-history-card pre {
  white-space: pre-wrap;
  margin: 10px 0 0;
  color: rgba(255, 247, 231, 0.86);
  font: inherit;
  font-size: 0.92rem;
}

.order-tools,
.order-actions {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

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

.order-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.status-button {
  min-height: 38px;
  padding: 8px;
  color: var(--cream);
  background: rgba(7, 21, 39, 0.7);
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 6px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.status-button.is-active,
.status-button:disabled {
  color: #091827;
  background: var(--gold-bright);
  cursor: default;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--ink);
    border: 1px solid rgba(217, 164, 65, 0.48);
    border-radius: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header--admin {
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-header--admin .is-admin-nav {
    position: static;
    display: flex;
    flex: 1 0 100%;
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .site-header--admin .is-admin-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .cart-toggle {
    order: 2;
    margin-left: auto;
  }

  .trust-strip,
  .notice-band,
  .intro,
  .order-layout,
  .visit,
  .admin-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small,
  .cart-icon {
    display: none;
  }

  .cart-toggle,
  .nav-toggle {
    width: 44px;
    min-width: 44px;
    padding-inline: 8px;
  }

  .cart-count {
    margin: 0 auto;
  }

  .cart-drawer {
    top: 72px;
    right: 10px;
    left: auto;
    width: min(292px, calc(100vw - 24px));
    max-height: 64vh;
    gap: 10px;
    padding: 16px;
  }

  .cart-drawer h2 {
    font-size: 1.35rem;
    margin: 0;
  }

  .cart-drawer-head {
    gap: 10px;
  }

  .cart-close {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.84rem;
  }

  .cart-drawer li {
    padding: 8px 0;
    font-size: 0.9rem;
  }

  .cart-drawer #orderMessage {
    max-height: 104px;
    font-size: 0.82rem;
  }

  .cart-note {
    display: none;
  }

  .basket-total {
    padding-top: 10px;
    font-size: 0.98rem;
  }

  .hero::before {
    inset: 10px;
  }

  .hero-content {
    padding-inline: 24px;
  }

  h1 {
    font-size: clamp(3.4rem, 20vw, 5.5rem);
  }

  .menu-grid,
  .form-grid,
  .photo-grid,
  .admin-switches,
  .hours-row,
  .price-row,
  .public-hours-row,
  .order-tools,
  .order-actions {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .menu-item-button.has-image {
    grid-template-columns: minmax(0, 1fr) 104px;
    align-items: center;
    min-height: 100px;
  }

  .menu-item-photo {
    order: initial;
    width: 104px;
    height: 92px;
  }

  .menu-card--pasta .menu-item-button.has-image {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .menu-card--pasta .menu-item-photo {
    order: -1;
    width: 100%;
    height: 178px;
  }
}

/* Premium conversion pass: mobile-first hierarchy, lighter surfaces and softer motion. */
:root {
  --surface: #fffaf0;
  --surface-soft: #f7f0e4;
  --surface-line: rgba(7, 21, 39, 0.1);
  --copy-dark: #132235;
  --copy-muted: #667085;
  --premium-radius: 18px;
  --premium-shadow: 0 20px 70px rgba(7, 21, 39, 0.12);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  color: var(--copy-dark);
  background:
    radial-gradient(circle at 18% 6%, rgba(242, 200, 91, 0.16), transparent 28rem),
    linear-gradient(180deg, #fffaf0 0%, #f7f0e4 38%, #ffffff 100%);
  font-size: 16px;
  line-height: 1.6;
}

.gold-spark-field {
  z-index: 0;
  opacity: 0.42;
}

.site-header {
  background: rgba(7, 21, 39, 0.9);
  box-shadow: 0 12px 38px rgba(7, 21, 39, 0.16);
}

.brand small {
  color: #ffffff;
}

.site-nav a,
.cart-drawer,
.hero,
.menu-card,
.order-panel,
.order-help,
.basket,
.photo-grid figure,
.hours-public-card {
  color: var(--cream);
}

.hero {
  min-height: min(760px, calc(100svh - 70px));
  align-items: center;
  border-bottom: 0;
}

.hero::before {
  inset: clamp(14px, 3vw, 26px);
  border-radius: 22px;
  border-width: 1px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 247, 231, 0.12),
    0 28px 90px rgba(7, 21, 39, 0.28);
}

.hero-media img {
  opacity: 0.55;
  filter: saturate(1.02) contrast(1.02);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(7, 21, 39, 0.9), rgba(7, 21, 39, 0.58) 50%, rgba(7, 21, 39, 0.16)),
    linear-gradient(0deg, rgba(7, 21, 39, 0.84), rgba(7, 21, 39, 0.05) 68%);
}

.hero-content {
  width: min(760px, 100%);
  padding: clamp(104px, 17vw, 170px) clamp(24px, 6vw, 92px) clamp(72px, 11vw, 122px);
}

h1 {
  font-size: clamp(4rem, 15vw, 10.8rem);
}

.hero-copy {
  width: min(560px, 100%);
  margin-top: 28px;
  color: rgba(255, 250, 240, 0.92);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  line-height: 1.5;
}

.button {
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 999px;
  transition:
    transform 180ms var(--ease-premium),
    box-shadow 180ms var(--ease-premium),
    background-position 220ms var(--ease-premium),
    border-color 180ms var(--ease-premium);
}

.button:hover,
.cart-toggle:hover,
.deal-chevron:hover {
  transform: translateY(-1px);
}

.button:active,
.cart-toggle:active,
.deal-chevron:active {
  transform: translateY(0) scale(0.99);
}

.button.secondary,
.button.ghost,
.button.outline {
  color: var(--cream);
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 247, 231, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button.outline {
  color: var(--copy-dark);
  background: rgba(255, 250, 240, 0.9);
  border-color: rgba(217, 164, 65, 0.55);
}

.section {
  width: min(1160px, calc(100% - 32px));
  padding: clamp(58px, 9vw, 112px) 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  align-items: start;
  margin-bottom: clamp(26px, 5vw, 44px);
  padding-bottom: 0;
  border-bottom: 0;
}

.section-heading--center {
  width: min(780px, 100%);
  margin-inline: auto;
  text-align: center;
}

.section-intro {
  margin: 0;
  color: var(--copy-muted);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1.75;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.4rem, 8vw, 5.7rem);
  line-height: 0.95;
}

.signature-section,
.collection-flow,
.gallery {
  position: relative;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.signature-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 430px;
  background: #071527;
  border: 1px solid rgba(217, 164, 65, 0.22);
  border-radius: var(--premium-radius);
  box-shadow: var(--premium-shadow);
  isolation: isolate;
  transition:
    transform 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium);
}

.signature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 164, 65, 0.55);
  box-shadow: 0 28px 90px rgba(7, 21, 39, 0.2);
}

.signature-photo,
.signature-placeholder {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-placeholder {
  display: grid;
  place-items: center;
  color: rgba(242, 200, 91, 0.3);
  font-family: Cinzel, Georgia, serif;
  font-size: 7rem;
  background:
    radial-gradient(circle at 30% 18%, rgba(242, 200, 91, 0.2), transparent 18rem),
    linear-gradient(145deg, #112a42, #071527);
}

.signature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 21, 39, 0.04), rgba(7, 21, 39, 0.74) 46%, rgba(7, 21, 39, 0.94)),
    linear-gradient(90deg, rgba(7, 21, 39, 0.58), transparent);
}

.signature-card-body {
  align-self: end;
  display: grid;
  gap: 12px;
  padding: 22px;
  color: var(--cream);
}

.signature-badge {
  width: fit-content;
  padding: 7px 10px;
  color: #091827;
  background: var(--glossy-gold);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.signature-card h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.08;
}

.signature-card p {
  margin: 0;
  color: rgba(255, 247, 231, 0.76);
  line-height: 1.6;
}

.signature-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
}

.signature-card-foot strong {
  color: var(--gold-bright);
  font-size: 1.28rem;
}

.signature-card-foot .button {
  width: auto;
  min-height: 44px;
  padding: 10px 16px;
}

.reason-section,
.hours-section,
.order-section,
.visit {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background: #ffffff;
}

.trust-strip {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border: 0;
}

.trust-strip div,
.collection-steps article {
  min-height: 0;
  padding: clamp(22px, 4vw, 34px);
  color: var(--copy-dark);
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--premium-radius);
  box-shadow: 0 18px 60px rgba(7, 21, 39, 0.08);
}

.trust-strip span,
.collection-steps p,
.visit p,
.order-help p,
.intro p:last-child {
  color: var(--copy-muted);
}

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

.collection-steps article {
  display: grid;
  gap: 10px;
}

.collection-steps span {
  width: fit-content;
  color: var(--gold-bright);
  font-weight: 900;
}

.collection-steps h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.3rem;
}

.collection-steps p {
  margin: 0;
}

.notice-band {
  width: min(1160px, 100%);
  margin: clamp(18px, 4vw, 30px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: transparent;
  border: 0;
}

.notice-band span {
  min-height: 54px;
  border: 1px solid rgba(217, 164, 65, 0.2);
  border-radius: 999px;
  background: #fffaf0;
}

.hours-section .section-heading,
.order-section .section-heading,
.visit > div {
  width: min(1160px, 100%);
  margin-inline: auto;
}

.hours-public-card,
.order-panel,
.order-help,
.menu-card,
.photo-grid figure {
  border-radius: var(--premium-radius);
}

.hours-public-card {
  width: min(860px, 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, #112a42, #071527);
}

.menu-section {
  width: min(1280px, calc(100% - 32px));
}

.menu-grid {
  gap: clamp(18px, 2.5vw, 28px);
}

.menu-card {
  padding: clamp(20px, 3vw, 28px);
  scroll-margin-top: 96px;
  transition:
    transform 200ms var(--ease-premium),
    box-shadow 200ms var(--ease-premium),
    border-color 200ms var(--ease-premium);
}

.menu-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 164, 65, 0.68);
}

.menu-card h3 {
  font-size: 1.28rem;
}

.menu-card-intro {
  position: relative;
  z-index: 1;
  margin: -8px 0 16px;
  color: rgba(255, 247, 231, 0.74);
  font-size: 0.9rem;
  line-height: 1.55;
}

.menu-item-head {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  min-width: 0;
}

.item-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 19px;
  padding: 3px 7px;
  color: #091827;
  background: var(--glossy-gold);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-text-fill-color: #091827;
}

.menu-item-ingredients {
  color: rgba(255, 247, 231, 0.58);
  font-size: 0.78rem;
  line-height: 1.35;
}

.menu-item-description--secondary {
  color: rgba(255, 247, 231, 0.62);
}

.menu-item-button,
.deal-toggle {
  min-height: 54px;
}

.menu-item-button:hover,
.deal-toggle:hover {
  transform: translateX(2px);
}

.menu-item-name {
  font-size: 1.02rem;
  font-weight: 700;
}

.menu-item-description {
  font-size: 0.92rem;
}

.menu-card .price {
  font-size: 1.06rem;
}

.menu-item-photo {
  border-radius: 12px;
}

.order-layout,
.visit {
  width: min(1160px, 100%);
  margin-inline: auto;
}

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

.order-panel,
.order-help {
  background: #ffffff;
  color: var(--copy-dark);
  border-color: rgba(7, 21, 39, 0.08);
  box-shadow: var(--premium-shadow);
}

.order-panel::before,
.order-help::before {
  border-color: rgba(217, 164, 65, 0.16);
}

.order-help h3,
label {
  color: var(--copy-dark);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.marketing-consent {
  color: var(--copy-muted);
}

input,
select,
textarea,
.deal-fields select {
  color: var(--copy-dark);
  background: #fffaf0;
  border-color: rgba(7, 21, 39, 0.14);
  border-radius: 12px;
}

label input,
label select,
label textarea {
  -webkit-text-fill-color: var(--copy-dark);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(217, 164, 65, 0.72);
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.14);
  outline: 0;
}

.gallery {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.gallery .photo-grid {
  width: min(980px, 100%);
  margin: 0 auto;
}

.photo-grid figure {
  background: #ffffff;
  border-color: rgba(7, 21, 39, 0.08);
}

.photo-grid img {
  border-radius: 14px;
}

.photo-grid figcaption {
  color: var(--copy-muted);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(22px, 4vw, 44px);
}

.visit iframe {
  min-height: 420px;
  border: 0;
  border-radius: var(--premium-radius);
  box-shadow: var(--premium-shadow);
}

.site-footer {
  background: #071527;
  color: var(--cream);
}

@media (max-width: 980px) {
  .signature-grid,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(7, 21, 39, 0.32), rgba(7, 21, 39, 0.94)),
      linear-gradient(90deg, rgba(7, 21, 39, 0.72), rgba(7, 21, 39, 0.36));
  }

  .hero-content {
    padding: 104px 24px 74px;
  }

  .hero-actions {
    display: grid;
  }

  .signature-grid,
  .trust-strip,
  .collection-steps,
  .notice-band,
  .menu-grid,
  .order-layout,
  .visit {
    grid-template-columns: 1fr;
  }

  .signature-card {
    min-height: 390px;
  }

  .menu-section {
    width: min(100% - 24px, 1280px);
  }

  .menu-card {
    padding: 22px;
  }

  .menu-item-button.has-image {
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 14px;
  }

  .menu-item-photo {
    width: 120px;
    height: 96px;
  }

  .menu-card--pasta .menu-item-photo {
    height: 210px;
  }

  .cart-drawer {
    width: min(340px, calc(100vw - 20px));
    max-height: 72vh;
  }
}

@media (max-width: 460px) {
  .section {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 4.8rem);
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .signature-card {
    min-height: 360px;
  }

  .signature-card-body {
    padding: 20px;
  }

  .signature-card-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .signature-card-foot .button {
    width: 100%;
  }
}


/* New menu boards: compact premium rail for uploaded menu artwork. */
.menu-board-section {
  width: min(1280px, calc(100% - 32px));
}

.menu-board-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(292px, 380px);
  gap: clamp(16px, 2.4vw, 24px);
  overflow-x: auto;
  padding: 4px 4px 20px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(217, 164, 65, 0.68) rgba(7, 21, 39, 0.08);
}

.menu-board-card {
  scroll-snap-align: start;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 10px 10px 16px;
  color: var(--copy-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 21, 39, 0.09);
  border-radius: var(--premium-radius);
  box-shadow: var(--premium-shadow);
  text-decoration: none;
  transition:
    transform 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium);
}

.menu-board-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 164, 65, 0.55);
  box-shadow: 0 26px 86px rgba(7, 21, 39, 0.16);
}

.menu-board-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #fffaf0;
  border: 1px solid rgba(217, 164, 65, 0.18);
  border-radius: 14px;
}

.menu-board-card span {
  width: fit-content;
  margin-top: 4px;
  padding: 6px 10px;
  color: #091827;
  background: var(--glossy-gold);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  -webkit-text-fill-color: #091827;
}

.menu-board-card strong {
  color: var(--ink);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.16rem, 2vw, 1.44rem);
  line-height: 1.08;
}

.menu-board-card small {
  color: var(--copy-muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .menu-board-section {
    width: min(100% - 24px, 1280px);
  }

  .menu-board-rail {
    grid-auto-columns: minmax(276px, 86vw);
    margin-inline: -4px;
    padding-inline: 4px;
  }
}

/* Phase 1 homepage direction: editorial new-product preview. */
.new-at-section {
  width: min(1220px, calc(100% - 32px));
  padding-top: clamp(56px, 8vw, 96px);
}

.new-at-heading {
  margin-bottom: clamp(28px, 5vw, 52px);
}

.promo-feature {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.22);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(7, 21, 39, 0.14);
  isolation: isolate;
}

.promo-feature::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(255, 247, 231, 0.16);
  border-radius: 16px;
  pointer-events: none;
}

.promo-feature--hero {
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  min-height: 520px;
  color: var(--cream);
  background:
    radial-gradient(circle at 14% 16%, rgba(242, 200, 91, 0.16), transparent 22rem),
    linear-gradient(135deg, #071527 0%, #10233a 54%, #071527 100%);
}

.promo-feature-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 18px;
  min-width: 0;
  padding: clamp(24px, 5vw, 56px);
}

.promo-kicker {
  width: fit-content;
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-feature h3 {
  margin: 0;
  color: inherit;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2.1rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}
.promo-feature--hero h3 {
  font-size: clamp(2.25rem, 4.4vw, 4.25rem);
}

.promo-feature p {
  margin: 0;
  line-height: 1.65;
}

.promo-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 800;
}

.promo-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: rgba(255, 247, 231, 0.86);
  list-style: none;
}

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

.promo-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-bright);
  box-shadow: 0 0 16px rgba(242, 200, 91, 0.42);
}

.promo-price {
  color: var(--gold-bright);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
}

.promo-price span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 247, 231, 0.74);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promo-media {
  position: relative;
  z-index: 1;
  min-width: 0;
  height: 100%;
  margin: 0;
  background: #071527;
}

.promo-feature--hero .promo-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 21, 39, 0.94) 0%, rgba(7, 21, 39, 0.74) 54%, rgba(7, 21, 39, 0) 74%);
  pointer-events: none;
}

.promo-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms var(--ease-premium);
}

.promo-feature--hero .promo-media img {
  object-position: 100% center;
}

.promo-feature:hover .promo-media img {
  transform: scale(1.025);
}

.promo-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: clamp(18px, 3vw, 28px);
}

.promo-feature--compact {
  grid-template-rows: auto 1fr;
  color: var(--copy-dark);
  background: #fff;
}

.promo-feature--compact::before {
  border-color: rgba(7, 21, 39, 0.08);
}

.promo-feature--compact .promo-media {
  height: auto;
}

.promo-feature--compact .promo-media img {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.promo-feature--compact .promo-feature-copy {
  align-content: start;
}

.promo-feature--compact .promo-kicker,
.promo-feature--compact .promo-price {
  color: var(--gold);
}

.promo-feature--compact .promo-list,
.promo-feature--compact .promo-feature-copy > p:not(.promo-kicker):not(.promo-price):not(.promo-subtitle) {
  color: var(--copy-muted);
}

.promo-feature--compact .promo-list li::before {
  background: var(--gold);
}

.promo-feature--compact .button {
  justify-self: start;
}

.promo-feature--bolognese {
  background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
}

.promo-feature--autumn {
  background:
    radial-gradient(circle at 84% 18%, rgba(177, 81, 29, 0.15), transparent 18rem),
    linear-gradient(180deg, #fff8ec 0%, #fff 100%);
}

.promo-feature--autumn .promo-kicker {
  color: #8d3f18;
}

@media (max-width: 980px) {
  .promo-feature--hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .promo-feature--hero .promo-media {
    order: -1;
  }

  .promo-feature--hero .promo-media img {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .promo-duo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .new-at-section {
    width: min(100% - 24px, 1220px);
    padding-top: 52px;
  }

  .promo-feature {
    border-radius: 18px;
  }

  .promo-feature::before {
    inset: 8px;
    border-radius: 13px;
  }

  .promo-feature-copy {
    gap: 14px;
    padding: 24px;
  }

  .promo-feature h3 {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .promo-list {
    gap: 8px;
  }
}
@media (max-width: 520px) {
  .promo-feature--hero .promo-media img,
  .promo-feature--compact .promo-media img {
    aspect-ratio: 16 / 9;
  }

  .promo-feature-copy {
    padding: 22px;
  }

  .promo-feature--compact .button {
    justify-self: stretch;
  }
}
/* Keep supplied final promotional artwork visible without destructive cropping. */
.promo-feature--hero .promo-media img {
  object-fit: contain;
  object-position: center;
  background: #071527;
}

.promo-feature--compact .promo-media img {
  object-fit: cover;
  object-position: center;
}

.promo-feature--autumn .promo-media img {
  object-position: center 48%;
}

@media (max-width: 620px) {
  .brand {
    flex: 1 1 auto;
    max-width: calc(100vw - 132px);
  }

  .brand-logo {
    width: clamp(142px, 48vw, 188px);
  }

  .site-header {
    min-height: 68px;
  }

  .footer-logo {
    width: min(220px, 80vw);
  }
}
.promo-feature--hero .promo-media {
  align-self: center;
  height: auto;
}

.promo-feature--hero .promo-media img {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  object-fit: cover;
}
/* Final approved promotional artwork: preserve the full 16:9 composition. */
.promo-feature--hero .promo-media img,
.promo-feature--compact .promo-media img,
.promo-feature--autumn .promo-media img {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #071527;
}
/* Final menu deals and supplied brand artwork. */
.brand {
  flex-basis: 172px;
}

.brand-logo {
  display: block;
  width: clamp(148px, 15vw, 172px);
  border-radius: 3px;
  filter: none;
}

.footer-logo {
  width: min(184px, 62vw);
  border-radius: 3px;
  filter: none;
}

.deal-builder.has-image {
  gap: 14px;
}

.deal-artwork {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 64 / 45;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: 12px;
  background: #fffaf0;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.menu-item-button[data-product-id="pasta-bolognese-bowl"] .menu-item-photo {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #071527;
}

@media (max-width: 620px) {
  .brand {
    flex-basis: 118px;
    max-width: 118px;
  }

  .brand-logo {
    width: 118px;
  }

  .deal-artwork {
    border-radius: 10px;
  }
}
/* Phase 4: compact editorial homepage and category menu browser. */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

#top,
#home,
#new-at,
#signature,
#menu,
#collection,
#story,
#hours,
#visit {
  scroll-margin-top: 94px;
}

.brand {
  position: relative;
  z-index: 2;
  flex: 0 1 210px;
  width: 210px;
  min-height: 58px;
  padding: 4px;
  border-radius: 8px;
  transition:
    background-color 180ms ease,
    transform 180ms var(--ease-premium);
}

.brand-logo {
  width: 100%;
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
  transition: opacity 180ms ease;
}

.brand:hover {
  background: rgba(255, 247, 231, 0.05);
  transform: translateY(-1px);
}

.brand:hover .brand-logo {
  opacity: 0.94;
}

.brand:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.hero {
  min-height: clamp(540px, 72vh, 660px);
}

.hero-content {
  width: min(920px, 100%);
  padding: clamp(100px, 12vw, 136px) clamp(24px, 6vw, 84px) clamp(64px, 8vw, 88px);
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  line-height: 1.02;
}

.hero-copy {
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

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

.new-at-section {
  width: min(1180px, calc(100% - 32px));
  padding-block: clamp(64px, 8vw, 92px);
}

.new-at-heading {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.new-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.new-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  color: var(--copy-dark);
  background: #fffaf0;
  border: 1px solid rgba(7, 21, 39, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(7, 21, 39, 0.1);
  transition:
    transform 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium);
}

.new-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 164, 65, 0.58);
  box-shadow: 0 24px 64px rgba(7, 21, 39, 0.14);
}

.new-product-card--autumn {
  background: #fff7ec;
}

.new-product-media {
  margin: 0;
  background: #071527;
}

.new-product-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

.new-product-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 9px;
  padding: 20px;
}

.new-product-kicker {
  margin: 0;
  color: #9a670f;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.new-product-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  line-height: 1.1;
}

.new-product-summary {
  margin: 0;
  color: var(--copy-muted);
  line-height: 1.5;
}

.new-product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
}

.new-product-footer .promo-price {
  margin: 0;
  color: #9a670f;
  font-size: 1.5rem;
  line-height: 1;
}

.new-product-footer .promo-price span {
  display: inline;
  margin: 0 4px 0 0;
  color: var(--copy-muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.new-product-footer .button {
  width: auto;
  min-height: 44px;
  padding: 10px 14px;
  white-space: nowrap;
}

.signature-section {
  padding-block: clamp(64px, 8vw, 92px);
}

.signature-card {
  min-height: 350px;
  border-radius: 8px;
}

.signature-card-body {
  padding: 20px;
}

.menu-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(68px, 8vw, 96px) max(18px, calc((100vw - 1160px) / 2));
  background: #f7f0e4;
  border-block: 1px solid rgba(7, 21, 39, 0.08);
}

.menu-section > .section-heading,
.menu-category-nav,
.menu-grid {
  width: min(1160px, 100%);
  margin-inline: auto;
}

.menu-category-nav {
  position: sticky;
  top: 86px;
  z-index: 12;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 24px;
  padding: 10px;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 10px;
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(7, 21, 39, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 21, 39, 0.1);
  backdrop-filter: blur(14px);
}

.menu-category-tab {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--copy-dark);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.menu-category-tab:hover {
  color: var(--ink);
  background: rgba(217, 164, 65, 0.12);
  border-color: rgba(217, 164, 65, 0.28);
}

.menu-category-tab.is-active {
  color: #071527;
  background: var(--glossy-gold);
  border-color: rgba(217, 164, 65, 0.72);
  box-shadow: 0 8px 18px rgba(154, 103, 15, 0.2);
}

.menu-category-tab:focus-visible {
  outline: 2px solid #071527;
  outline-offset: 2px;
}

.menu-grid {
  display: block;
}

.menu-card {
  position: relative;
  padding: 0;
  color: var(--copy-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

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

.menu-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.menu-card-heading {
  margin-bottom: 22px;
}

.menu-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.menu-card-intro {
  margin: 6px 0 0;
  color: var(--copy-muted);
  font-size: 1rem;
}

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

.menu-card li {
  min-width: 0;
  padding: 0;
  border: 0;
}

.menu-card--meal-deals > ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}

.menu-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  min-height: 218px;
  height: 100%;
  overflow: hidden;
  color: var(--copy-dark);
  background: #fffaf0;
  border: 1px solid rgba(7, 21, 39, 0.11);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 21, 39, 0.08);
  transition:
    transform 180ms var(--ease-premium),
    border-color 180ms var(--ease-premium),
    box-shadow 180ms var(--ease-premium);
}

.menu-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 164, 65, 0.5);
  box-shadow: 0 18px 42px rgba(7, 21, 39, 0.12);
}

.menu-product-image,
.deal-artwork {
  display: block;
  width: 100%;
  height: 154px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  background: #071527;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.menu-product-card--deal .menu-product-image {
  object-fit: contain;
  background: #fffaf0;
}

.menu-product-card[data-product-id="pasta-bolognese-bowl"] .menu-product-image {
  object-fit: contain;
  background: #071527;
}

.menu-product-body {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto 1fr;
  gap: 10px;
  min-width: 0;
  padding: 18px;
}

.menu-item-head {
  align-items: flex-start;
}

.menu-item-name {
  margin: 0;
  color: var(--ink);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.22;
  overflow-wrap: normal;
}

.menu-item-description,
.menu-item-description--secondary {
  margin: 0;
  color: var(--copy-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.menu-product-ingredients {
  color: var(--copy-muted);
  font-size: 0.82rem;
}

.menu-product-ingredients summary {
  width: fit-content;
  color: #8a5d10;
  font-weight: 800;
  cursor: pointer;
}

.menu-product-ingredients p {
  margin: 6px 0 0;
  line-height: 1.4;
}

.menu-product-footer {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.menu-card .price {
  color: #9a670f;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.menu-product-footer .button {
  width: auto;
  min-width: 82px;
  min-height: 42px;
  padding: 9px 14px;
}

.menu-product-footer .button.outline {
  color: #071527;
  background: transparent;
  border-color: rgba(7, 21, 39, 0.34);
  -webkit-text-fill-color: #071527;
}

.menu-product-footer .button.outline:hover {
  color: #071527;
  background: rgba(217, 164, 65, 0.12);
  border-color: rgba(154, 103, 15, 0.62);
}

.deal-builder.has-image {
  gap: 0;
}

.deal-toggle {
  display: inline-flex;
  grid-template-columns: none;
  gap: 0;
  justify-content: center;
  transform: none;
}

.deal-toggle:hover {
  transform: translateY(-1px);
}

.deal-panel {
  max-height: 0;
}

.deal-builder.is-open .deal-panel {
  max-height: 620px;
  padding-top: 12px;
}

.deal-fields label {
  color: var(--copy-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.deal-fields select {
  min-height: 44px;
  color: var(--copy-dark);
  background: #ffffff;
  border-color: rgba(7, 21, 39, 0.16);
}

.deal-add {
  width: 100%;
  justify-self: stretch;
  margin-top: 12px;
}

.collection-flow,
.order-section,
.reason-section,
.hours-section,
.gallery,
.visit {
  padding-top: clamp(68px, 8vw, 96px);
  padding-bottom: clamp(68px, 8vw, 96px);
}

.collection-flow {
  background: #ffffff;
}

.reason-section,
.hours-section {
  border-top: 1px solid rgba(7, 21, 39, 0.07);
}

.footer-logo {
  width: min(210px, 70vw);
  border-radius: 0;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.22));
}

@media (max-width: 980px) {
  .menu-card > ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-card--meal-deals > ul {
    max-width: none;
  }
}

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

  #top,
  #home,
  #new-at,
  #signature,
  #menu,
  #collection,
  #story,
  #hours,
  #visit {
    scroll-margin-top: 78px;
  }

  .hero {
    min-height: 540px;
  }

  .hero-content {
    padding: 92px 24px 58px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11vw, 4.4rem);
  }

  .new-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .new-product-body {
    padding: 16px;
  }

  .new-product-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .new-product-footer .button {
    width: 100%;
  }

  .signature-card {
    min-height: 330px;
  }

  .menu-section {
    width: 100%;
    padding-inline: 12px;
  }

  .menu-category-nav {
    top: 72px;
    border-radius: 6px;
  }

  .menu-card {
    padding: 0;
  }
}

@media (max-width: 680px) {
  .new-product-grid {
    grid-template-columns: 1fr;
  }

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

  .new-product-body {
    padding: 18px;
  }

  .signature-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 82vw);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    margin-inline: -12px;
    padding: 2px 12px 18px;
    scroll-padding-inline: 12px;
    scroll-snap-type: x proximity;
  }

  .signature-card {
    min-height: 340px;
    scroll-snap-align: start;
  }

  .menu-card > ul,
  .menu-card--meal-deals > ul {
    grid-template-columns: 1fr;
  }

  .menu-product-card {
    min-height: 0;
  }

  .menu-product-image,
  .deal-artwork {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  .menu-product-footer .button {
    width: auto;
  }
}

@media (max-width: 620px) {
  .brand {
    flex: 0 1 148px;
    width: 148px;
    max-width: 148px;
    min-height: 48px;
  }

  .brand-logo {
    width: 100%;
  }

  .site-header {
    min-height: 68px;
  }

  .menu-category-tab {
    min-height: 44px;
    padding-inline: 13px;
  }
}

@media (max-width: 390px) {
  .brand {
    flex-basis: 132px;
    width: 132px;
    max-width: 132px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding-inline: 20px;
  }
}
/* Phase 5: final visual polish */
#new-at .eyebrow,
#signature .eyebrow,
#menu .eyebrow,
#collection .eyebrow,
#order .eyebrow,
#story .eyebrow,
#hours .eyebrow,
#gallery .eyebrow,
#visit .eyebrow,
.collection-steps article > span {
  color: #865b13;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.menu-card .price {
  color: #865b13;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.trust-strip strong {
  color: var(--ink);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.order-section .button.secondary,
.menu-product-footer .button.outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(7, 21, 39, 0.34);
  -webkit-text-fill-color: currentColor;
}

.order-section .button.secondary:hover {
  background: rgba(217, 164, 65, 0.1);
  border-color: #865b13;
}
.cart-drawer h2 {
  color: var(--cream);
  font-size: 1.5rem;
}

.collection-steps article {
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 12px;
}

.collection-steps article > span {
  grid-row: 1 / 3;
}

.collection-steps article > p {
  grid-column: 2;
}

.collection-steps article,
.trust-strip div,
.order-section .order-panel,
.order-section .order-help {
  border-radius: 8px;
}

.order-section .order-panel::before,
.order-section .order-help::before {
  display: none;
}
.new-at-section {
  padding-block: clamp(54px, 6vw, 76px);
}

.new-at-heading {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.new-at-heading h2,
.signature-section .section-heading h2 {
  font-size: 3rem;
}

.signature-section .section-heading {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.new-product-grid {
  gap: clamp(14px, 2vw, 20px);
}

.new-product-card {
  border-color: rgba(7, 21, 39, 0.1);
  box-shadow: 0 12px 32px rgba(7, 21, 39, 0.075);
}

.new-product-media {
  background: #f7efe2;
}

.new-product-body {
  min-width: 0;
  gap: 8px;
  padding: 18px;
}

.new-product-card h3 {
  font-size: 1.5rem;
  line-height: 1.08;
}

.new-product-summary {
  font-size: 0.92rem;
  line-height: 1.45;
}

.new-product-footer {
  gap: 10px;
  margin-top: 2px;
}

.new-product-footer .promo-price {
  font-size: 1.35rem;
}

.new-product-footer .button {
  min-height: 42px;
  padding: 9px 13px;
}

.signature-section {
  padding-top: clamp(56px, 6vw, 72px);
  padding-bottom: clamp(56px, 6vw, 72px);
}

.signature-card {
  min-height: 350px;
  box-shadow: 0 18px 54px rgba(7, 21, 39, 0.15);
}

.signature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 66px rgba(7, 21, 39, 0.18);
}

.signature-card-body {
  gap: 9px;
  padding: 20px;
}

.signature-badge {
  padding: 5px 9px;
  font-size: 0.68rem;
}

.signature-card h3 {
  font-size: 1.5rem;
  line-height: 1.12;
}

.signature-card p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.signature-card-foot {
  margin-top: 2px;
}

.signature-card-foot strong {
  font-size: 1.18rem;
}

.menu-category-nav {
  margin-bottom: 20px;
  padding: 8px;
  box-shadow: 0 10px 28px rgba(7, 21, 39, 0.09);
}

.menu-category-tab {
  padding: 9px 13px;
}

.menu-category-tab.is-active {
  font-weight: 900;
  box-shadow:
    inset 0 0 0 1px rgba(7, 21, 39, 0.24),
    0 6px 16px rgba(154, 103, 15, 0.18);
}

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

.menu-card h3 {
  font-size: 2.25rem;
}

.menu-card > ul {
  gap: 16px;
}

.menu-product-card {
  min-height: 204px;
  border-color: rgba(7, 21, 39, 0.1);
  box-shadow: 0 10px 28px rgba(7, 21, 39, 0.07);
}

.menu-product-card:hover {
  box-shadow: 0 15px 36px rgba(7, 21, 39, 0.1);
}

.menu-product-image,
.deal-artwork {
  height: 148px;
}

.menu-product-body {
  gap: 8px;
  padding: 16px;
}

.menu-item-name {
  font-size: 1.03rem;
}

.menu-item-description,
.menu-item-description--secondary {
  line-height: 1.42;
}

.menu-product-footer {
  padding-top: 4px;
}

.menu-card .price {
  font-size: 1.1rem;
}

.collection-flow,
.order-section,
.reason-section,
.hours-section,
.gallery,
.visit {
  padding-top: clamp(54px, 6vw, 76px);
  padding-bottom: clamp(54px, 6vw, 76px);
}

.collection-flow,
.reason-section,
.hours-section,
.visit {
  background: #fbf7ef;
}

.collection-flow .section-heading,
.order-section .section-heading,
.reason-section .section-heading,
.hours-section .section-heading,
.gallery .section-heading {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.collection-flow .section-heading h2,
.order-section .section-heading h2,
.reason-section .section-heading h2,
.hours-section .section-heading h2,
.gallery .section-heading h2 {
  font-size: 3rem;
}

.collection-steps,
.trust-strip {
  gap: 14px;
}

.collection-steps article,
.trust-strip div {
  padding: clamp(18px, 2.6vw, 24px);
  box-shadow: 0 12px 34px rgba(7, 21, 39, 0.07);
}

.collection-steps article {
  gap: 8px;
}

.notice-band {
  margin-top: 18px;
  gap: 10px;
}

.order-layout {
  gap: 16px;
}

.order-section .order-panel,
.order-section .order-help {
  padding: 20px;
  background: #fffaf0;
  box-shadow: 0 12px 34px rgba(7, 21, 39, 0.07);
}

.order-section .order-help {
  min-height: 0;
}

.order-section .order-help h3 {
  margin-bottom: 12px;
}

.order-section .order-help p {
  margin-bottom: 10px;
  line-height: 1.55;
}

.order-section .form-grid {
  gap: 14px;
}

.visit {
  gap: clamp(22px, 3vw, 36px);
}

.visit h2 {
  font-size: 2.75rem;
  line-height: 1;
}

.visit iframe {
  min-height: 350px;
}

.site-footer {
  padding-block: 24px;
}

@media (max-width: 980px) {
  .signature-card {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .new-at-heading h2,
  .signature-section .section-heading h2,
  .collection-flow .section-heading h2,
  .order-section .section-heading h2,
  .reason-section .section-heading h2,
  .hours-section .section-heading h2,
  .gallery .section-heading h2,
  .visit h2 {
    font-size: 2.15rem;
  }

  .order-section .section-heading h2 {
    font-size: 1.75rem;
    line-height: 1.12;
  }

  .order-section textarea {
    min-height: 108px;
  }

  .menu-card h3 {
    font-size: 1.75rem;
  }
  .new-at-section,
  .signature-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .new-product-body {
    padding: 14px;
  }

  .new-product-footer {
    align-items: center;
    flex-direction: row;
  }

  .new-product-footer .button {
    width: auto;
  }

  .collection-flow,
  .order-section,
  .reason-section,
  .hours-section,
  .gallery,
  .visit {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .collection-steps article,
  .trust-strip div,
  .order-section .order-panel,
  .order-section .order-help {
    padding: 18px;
  }

  .order-layout,
  .collection-steps,
  .trust-strip {
    gap: 12px;
  }

  .visit iframe {
    min-height: 340px;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .new-product-card h3 {
    font-size: 1.3rem;
  }

  .new-product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .new-product-footer .button {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .menu-product-card {
    min-height: 0;
  }
  .new-product-body {
    gap: 7px;
    padding: 14px 15px 15px;
  }

  .new-product-card h3 {
    font-size: 1.3rem;
  }

  .new-product-summary {
    font-size: 0.88rem;
  }

  .new-product-footer .promo-price {
    font-size: 1.2rem;
  }

  .new-product-footer .button {
    min-width: 0;
    padding-inline: 11px;
    font-size: 0.84rem;
  }

  .signature-card {
    min-height: 318px;
  }

  .signature-card-body {
    padding: 18px;
  }

  .menu-category-nav {
    margin-bottom: 18px;
    scroll-padding-inline: 8px;
  }

  .menu-product-body {
    padding: 15px;
  }

  .order-section .form-grid {
    gap: 12px;
  }
}