/* Design polish layered after the generated Tailwind bundle. */
:root {
  --chef-cream: #f9f7f2;
  --chef-charcoal: #1a1a1a;
  --chef-gold: #d4af37;
  --chef-shadow-lift: 0 24px 70px rgba(26, 26, 26, .16);
  --chef-radius: 8px;
}

html { text-rendering: optimizeLegibility; }
body { line-height: 1.55; }
::selection { background: rgba(212, 175, 55, .28); color: var(--chef-charcoal); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--chef-gold);
  outline-offset: 4px;
}

.gold-bar-left::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin-left: 58px;
  background: rgba(191, 106, 61, .55);
}

.luxury-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 10px 28px rgba(0, 0, 0, .16);
}

.luxury-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
  pointer-events: none;
}

.luxury-link:hover::after { transform: translateX(120%); }

.section-card {
  border-radius: var(--chef-radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.section-card-light {
  border-radius: var(--chef-radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7), 0 18px 44px rgba(26, 26, 26, .06);
}

#drawer { box-shadow: -28px 0 80px rgba(26, 26, 26, .18); }
nav { transform: translateZ(0); }
nav a, nav button { min-height: 40px; align-items: center; }
nav.scrolled { box-shadow: 0 10px 36px rgba(0, 0, 0, .18); }

.nav-link { position: relative; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: .12em;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .2s ease, transform .2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: .55;
  transform: scaleX(1);
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(10, 8, 5, .70), rgba(10, 8, 5, .36) 45%, rgba(10, 8, 5, .84));
}

.hero-copy { max-width: 980px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 14px; }
.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(212, 175, 55, .72);
}

.hover-zoom img { transition: transform .75s cubic-bezier(.25, .46, .45, .94), filter .75s ease; }

.dish-frame { position: relative; padding: 10px; background: var(--chef-cream); border: 1px solid rgba(212, 175, 55, .5); }
.dish-frame::before {
  content: ""; position: absolute; inset: 4px; pointer-events: none;
  border: 1px solid rgba(212, 175, 55, .35);
}
.dish-frame .corner { position: absolute; width: 14px; height: 14px; border-color: var(--chef-gold); z-index: 1; }
.dish-frame .corner-tl { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.dish-frame .corner-tr { top: -1px; right: -1px; border-top: 2px solid; border-right: 2px solid; }
.dish-frame .corner-bl { bottom: -1px; left: -1px; border-bottom: 2px solid; border-left: 2px solid; }
.dish-frame .corner-br { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }

.zone-featured {
  background: linear-gradient(180deg, #303030 0%, #232323 100%);
  border-top: 2px solid var(--chef-gold);
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, .14);
}

.mcard {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(26, 26, 26, .08);
  border-radius: var(--chef-radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75), 0 12px 34px rgba(26, 26, 26, .055);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.mcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--chef-shadow-lift);
  border-color: rgba(212, 175, 55, .32);
}

.mcard > div:last-child { flex: 1; }
.mcard button { border-radius: 999px; min-width: 36px; }
.mcard .qty-display { font-variant-numeric: tabular-nums; }
.mcard h3 { text-wrap: balance; }
.mt-auto { margin-top: auto; }

.snav {
  box-shadow: 0 8px 24px rgba(26, 26, 26, .05);
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.snav::-webkit-scrollbar { display: none; }
.snav a { scroll-snap-align: start; }

.panel {
  background: linear-gradient(180deg, #fff 0%, #fffefb 100%);
  border-radius: var(--chef-radius);
  box-shadow: 0 1px 2px rgba(26, 26, 26, .02), 0 18px 46px rgba(26, 26, 26, .06);
}

.field { border-radius: 6px; }
.cta { border-radius: 6px; }

@media (max-width: 767px) {
  .hero-kicker::before,
  .hero-kicker::after { width: 20px; }
  .hero-img { object-position: center center; }
  #drawer { width: min(100vw, 28rem); }
  .mcard { border-radius: 6px; }
}

/* ── FAQ accordion ── */
.faq-list {
  border-top: 1px solid rgba(26, 26, 26, .10);
  border-bottom: 1px solid rgba(26, 26, 26, .10);
}
.faq-item + .faq-item { border-top: 1px solid rgba(26, 26, 26, .10); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-size: 1.125rem; line-height: 1.35; }
@media (min-width: 768px) {
  .faq-item summary { padding: 1.75rem 0; }
  .faq-q { font-size: 1.25rem; }
}
.faq-plus {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform .3s ease;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-a { margin: 0 0 1.5rem; padding-right: 2.5rem; }

@media (prefers-reduced-motion: reduce) {
  .faq-plus { transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
