:root {
  --bg: #0b0b0b;
  --bg-soft: #151515;
  --panel: #1f1f1f;
  --text: #fff8e8;
  --muted: #d8d0be;
  --gold: #f8c820;
  --gold-2: #fff06b;
  --red: #c91f1f;
  --red-dark: #8f1414;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 0, 0, .38);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(248, 200, 32, .14), transparent 28rem),
    radial-gradient(circle at 100% 12%, rgba(201, 31, 31, .18), transparent 30rem),
    linear-gradient(180deg, #090909 0%, #151515 48%, #0d0d0d 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.mobile-cta-space { padding-bottom: 74px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem clamp(1rem, 4vw, 3rem);
  background: rgba(12, 12, 12, .84);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 1000; letter-spacing: .02em; text-transform: uppercase; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand span { color: var(--gold); text-shadow: 0 2px 0 #000; }
.main-nav { display: flex; align-items: center; gap: .35rem; }
.main-nav a { padding: .72rem .9rem; color: var(--muted); font-weight: 900; border-radius: 999px; transition: .18s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); background: rgba(255, 255, 255, .08); }
.main-nav .nav-cta { color: #111; background: linear-gradient(135deg, var(--gold), var(--gold-2)); box-shadow: 0 10px 24px rgba(248, 200, 32, .18); }
.main-nav .nav-cta:hover { color: #111; transform: translateY(-1px); }
.nav-toggle { display: none; background: transparent; border: 0; padding: .5rem; }
.nav-toggle span { display: block; width: 26px; height: 3px; margin: 5px 0; background: var(--gold); border-radius: 2px; }

.hero, .section, .page-hero { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.hero {
  position: relative;
  min-height: clamp(700px, 86vh, 960px);
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  align-items: end;
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  overflow: hidden;
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  background: #0d0d0d;
  isolation: isolate;
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(92deg, rgba(8, 8, 8, .86) 0%, rgba(8, 8, 8, .8) 22%, rgba(8, 8, 8, .62) 42%, rgba(8, 8, 8, .36) 62%, rgba(8, 8, 8, .16) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, .08) 0%, rgba(8, 8, 8, .3) 48%, rgba(8, 8, 8, .58) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -22% -10%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  background: radial-gradient(circle, rgba(248, 200, 32, .22) 0%, rgba(201, 31, 31, .16) 48%, transparent 72%);
  filter: blur(28px);
}
.eyebrow { margin: 0 0 .85rem; color: var(--gold); font-weight: 1000; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; }
h1, h2, h3 { line-height: 1.05; margin: 0; }
h1 { font-size: clamp(3rem, 6.15vw, 5.7rem); letter-spacing: -.06em; max-width: 9.5ch; }
h2 { font-size: clamp(2rem, 4vw, 3.9rem); letter-spacing: -.045em; }
h3 { font-size: 1.24rem; letter-spacing: -.02em; }
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
  padding: .2rem 0 0;
}
.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow { text-shadow: 0 10px 30px rgba(0, 0, 0, .42); }
.hero-text { max-width: 620px; font-size: clamp(1.02rem, 1.45vw, 1.16rem); color: rgba(255, 248, 232, .9); }
.hero-proof { max-width: 620px; margin: .9rem 0 0; color: #ffe676; font-weight: 850; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.55rem; }
.hero-actions.compact { margin-top: 1rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: .85rem 1.35rem; border-radius: 999px; font-weight: 1000; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #111; background: linear-gradient(135deg, var(--gold), var(--gold-2)); box-shadow: 0 12px 30px rgba(248, 200, 32, .25); }
.btn-secondary { color: var(--white); border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .08); backdrop-filter: blur(10px); }
.btn-red { color: var(--white); background: linear-gradient(135deg, var(--red), var(--red-dark)); box-shadow: 0 12px 30px rgba(201, 31, 31, .25); }
.quick-facts { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.45rem; }
.quick-facts span, .tag, .value-list span, .mini-badge { display: inline-flex; align-items: center; border: 1px solid rgba(248, 200, 32, .38); background: rgba(9, 9, 9, .26); backdrop-filter: blur(8px); color: #ffe676; border-radius: 999px; padding: .42rem .72rem; font-weight: 900; font-size: .82rem; }
.hours-card {
  position: absolute;
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  z-index: 2;
  padding: 1rem 1.15rem;
  background: rgba(12, 12, 12, .5);
  border: 1px solid rgba(248, 200, 32, .28);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hours-card strong { display: block; color: var(--gold); text-transform: uppercase; }
.hours-card span { color: var(--white); font-weight: 900; }
.section { padding: clamp(2.4rem, 5vw, 4.2rem) 0; }
.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; align-items: end; }
.intro-grid p:first-child { font-size: 1.18rem; }
.local-seo-copy { margin-top: .75rem; font-size: 1rem; color: #cfc5ae; }
.centered { text-align: center; max-width: 760px; margin: 0 auto 1.7rem; }
.featured-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.feature-card { display: flex; flex-direction: column; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); overflow: hidden; }
.feature-card img { width: 100%; height: 250px; object-fit: contain; padding: .5rem; }
.feature-card div { padding: .75rem; display: flex; flex-direction: column; flex: 1; }
.feature-card h3 { margin: .8rem 0 .5rem; font-size: clamp(1.45rem, 2.25vw, 2rem); }
.feature-card p { margin-bottom: 1rem; }
.card-actions { margin-top: auto; display: flex !important; flex-direction: row !important; align-items: center; justify-content: space-between; gap: .75rem; padding: 0 !important; }
.feature-card a, .text-link { color: var(--gold); font-weight: 1000; }
.mini-btn { display: inline-flex; align-items: center; justify-content: center; color: #111 !important; background: linear-gradient(135deg, var(--gold), var(--gold-2)); border-radius: 999px; padding: .6rem .85rem; line-height: 1; white-space: nowrap; box-shadow: 0 8px 20px rgba(248, 200, 32, .16); }
.trust-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem; margin-top: 1.35rem; }
.trust-card { padding: 1rem; border-radius: 18px; background: rgba(10,10,10,.34); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.08); box-shadow: 0 10px 22px rgba(0,0,0,.16); }
.trust-card strong { display: block; color: var(--white); }
.trust-card span { color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.dark-panel { width: min(var(--max), calc(100% - 2rem)); background: linear-gradient(135deg, rgba(201, 31, 31, .18), rgba(248, 200, 32, .1)); border: 1px solid rgba(255,255,255,.1); border-radius: calc(var(--radius) + 10px); padding: clamp(2rem, 5vw, 4rem); }
.reviews { display: grid; gap: 1rem; }
blockquote { margin: 0; padding: 1.2rem; background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; color: var(--white); font-weight: 800; }
cite { display: block; color: var(--gold); margin-top: .6rem; font-style: normal; }
.order-strip { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; background: linear-gradient(135deg, rgba(248, 200, 32, .18), rgba(201, 31, 31, .12)); border: 1px solid rgba(248, 200, 32, .25); border-radius: calc(var(--radius) + 8px); padding: clamp(1.5rem, 4vw, 3rem); margin-bottom: 3rem; }
.order-strip h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.order-links { display: flex; gap: .8rem; flex-wrap: wrap; }
.delivery-platforms { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.delivery-platforms a { color: var(--gold); font-weight: 900; padding: .45rem .7rem; border-radius: 999px; background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.08); }
.page-hero { padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2rem, 5vw, 4rem); text-align: center; }
.page-hero h1 { max-width: 12ch; margin: 0 auto; }
.page-hero p:not(.eyebrow) { max-width: 740px; margin: 1rem auto 0; font-size: 1.15rem; }
.menu-layout { display: grid; grid-template-columns: 230px 1fr; gap: 2rem; align-items: start; }
.menu-sidebar { position: sticky; top: 94px; display: grid; gap: .45rem; padding: 1rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; }
.menu-sidebar a { padding: .65rem .75rem; border-radius: 12px; color: var(--muted); font-weight: 900; }
.menu-sidebar a:hover { background: rgba(248, 200, 32, .13); color: var(--gold); }
.menu-content { display: grid; gap: 2.5rem; }
.menu-section { scroll-margin-top: 110px; padding: clamp(1.25rem, 3vw, 2rem); background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); }
.menu-section > h2, .menu-section .section-heading h2 { margin-bottom: 1rem; font-size: clamp(1.9rem, 3vw, 3rem); }
.menu-note { margin-top: -.3rem; color: #f0e0b5; }
.menu-note.special { color: #79ff51; font-weight: 900; }
.menu-items { display: grid; gap: .7rem; }
.menu-items.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.menu-item { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding: 1rem; background: rgba(0,0,0,.24); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; }
.menu-item h3 { font-size: 1.08rem; }
.menu-item p { margin: .35rem 0 0; font-size: .95rem; }
.menu-item span { color: var(--gold); font-weight: 1000; white-space: nowrap; font-size: 1.08rem; }
.photo-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.photo-card { background: rgba(0,0,0,.24); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 1rem; }
.photo-card img { height: 220px; width: 100%; object-fit: contain; }
.photo-card h3 { margin-top: .6rem; }
.photo-card span { color: var(--gold); font-weight: 1000; }
.board-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.board-grid a { display: block; background: var(--panel); border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.rounded-img { border-radius: var(--radius); background: rgba(255,255,255,.05); box-shadow: var(--shadow); }
.value-list { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.gallery-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-strip img { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: .5rem; height: 280px; width: 100%; object-fit: contain; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 1rem; align-items: stretch; }
.contact-card { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2rem); }
.highlight-card { background: linear-gradient(135deg, rgba(248, 200, 32, .16), rgba(201, 31, 31, .13)); }
.contact-card a:not(.btn) { color: var(--gold); font-weight: 1000; }
.delivery-list { display: grid; gap: .7rem; }
.delivery-list a { padding: .8rem .95rem; border-radius: 14px; background: rgba(0,0,0,.24); border: 1px solid rgba(255,255,255,.08); color: var(--white); font-weight: 900; }
.delivery-list a:hover { border-color: rgba(248, 200, 32, .55); }
.map-placeholder { min-height: 380px; display: grid; place-items: center; text-align: center; border-radius: calc(var(--radius) + 8px); border: 1px solid rgba(248, 200, 32, .24); background: linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.58)), radial-gradient(circle at 50% 50%, rgba(248, 200, 32, .2), rgba(201, 31, 31, .16), rgba(255,255,255,.04)); }
.site-footer { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; padding: 3rem 0; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer img { width: 90px; }
.site-footer h3 { color: var(--gold); margin-bottom: .65rem; }
.site-footer p { margin: 0; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--gold); }
.mobile-cta { display: none; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .main-nav { position: absolute; inset: 100% 1rem auto 1rem; display: none; flex-direction: column; align-items: stretch; padding: 1rem; background: rgba(14,14,14,.98); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { text-align: center; }
  .hero, .intro-grid, .split, .menu-layout, .contact-grid, .site-footer { grid-template-columns: 1fr; }
  .hero { min-height: 760px; padding: 1.6rem 1.2rem 1.35rem; text-align: left; align-items: end; grid-template-columns: 1fr; }
  .hero-photo-bg img { object-position: center center; }
  .hero::before { background: linear-gradient(180deg, rgba(7, 7, 7, .18) 0%, rgba(7, 7, 7, .52) 32%, rgba(7, 7, 7, .86) 68%, rgba(7, 7, 7, .97) 100%); }
  .hero::after { width: 72%; inset: auto auto -16% -12%; }
  .hero-copy { max-width: none; }
  .hero h1, .hero-text, .hero-proof { margin-left: 0; margin-right: 0; }
  .hero-actions, .quick-facts { justify-content: flex-start; }
  .order-links { justify-content: center; }
  .featured-grid, .photo-card-grid, .board-grid, .gallery-strip, .trust-row { grid-template-columns: 1fr; }
  .feature-card img { height: 300px; }
  .menu-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .order-strip { flex-direction: column; text-align: center; }
}
@media (max-width: 620px) {
  .brand span { display: none; }
  .brand img { width: 52px; height: 52px; }
  h1 { font-size: clamp(2.6rem, 16vw, 4.4rem); }
  .menu-items.two-col { grid-template-columns: 1fr; }
  .menu-item { flex-direction: column; gap: .35rem; }
  .menu-sidebar { grid-template-columns: 1fr; }
  .hero { min-height: 640px; padding: 1rem 1rem 1.25rem; }
  .hero-photo-bg img { object-position: center top; }
  .hero-copy { padding: .25rem 0 0; }
  .hero h1 { max-width: 8.5ch; }
  .hero-actions { gap: .7rem; }
  .quick-facts { gap: .45rem; }
  .hours-card { right: 1rem; bottom: 1rem; padding: .85rem 1rem; }
  .stacked-mobile { flex-direction: column; }
  .btn { width: 100%; }
  .mobile-cta { position: fixed; display: grid; grid-template-columns: repeat(3, 1fr); left: 0; right: 0; bottom: 0; z-index: 60; background: rgba(10,10,10,.96); border-top: 1px solid rgba(248, 200, 32, .35); box-shadow: 0 -12px 30px rgba(0,0,0,.42); }
  .mobile-cta a { min-height: 64px; display: grid; place-items: center; text-align: center; font-size: .9rem; font-weight: 1000; color: var(--white); border-right: 1px solid rgba(255,255,255,.1); }
  .mobile-cta a:first-child { color: #111; background: linear-gradient(135deg, var(--gold), var(--gold-2)); }
  .mobile-cta a:last-child { border-right: 0; }
}
