:root {
  --flame-red: #E11D2A;
  --flame-orange: #FF7A00;
  --gold: #FFC107;
  --ink: #0B0B0C;
  --charcoal: #161618;
  --charcoal-2: #1f1f22;
  --cream: #FFF7EC;
  --muted: #b8b8bd;
  --white: #ffffff;
  --maxw: 1160px;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--cream);
  background: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, .brand-text {
  font-family: "Anton", "Inter", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: .5px;
  line-height: 1.05;
  text-transform: uppercase;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--gold); color: var(--ink); padding: 10px 16px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 12, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.brand-text { font-size: 1.15rem; color: var(--white); display: flex; flex-direction: column; line-height: 1; }
.brand-text small {
  font-family: "Inter", sans-serif; font-size: .58rem; letter-spacing: 3px;
  color: var(--gold); margin-top: 4px; font-weight: 700;
}

.primary-nav ul { display: flex; align-items: center; gap: 28px; }
.primary-nav a { font-weight: 600; font-size: .95rem; color: var(--cream); transition: color .2s; }
.primary-nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--flame-red); color: var(--white) !important;
  padding: 10px 18px; border-radius: 999px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--flame-orange); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--cream); border-radius: 2px; transition: .25s; }

/* Hero */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  background: linear-gradient(120deg, #0b0b0c 0%, #1a0c08 55%, #2a0f06 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(255, 122, 0, .28), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(225, 29, 42, .25), transparent 45%);
}
.hero-inner {
  position: relative; padding: 80px 22px;
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: 48px;
}
.hero-content { max-width: 620px; }
.hero-media { justify-self: end; }
.hero-media img {
  width: 100%; max-width: 560px; height: auto;
  border-radius: 18px; box-shadow: var(--shadow);
}
.eyebrow {
  font-weight: 800; letter-spacing: 4px; text-transform: uppercase;
  font-size: .78rem; color: var(--gold); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); color: var(--white); }
.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold), var(--flame-orange), var(--flame-red));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin: 24px 0 34px; font-size: 1.12rem; color: var(--muted); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-block; font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; transition: transform .15s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--flame-red); color: var(--white); }
.btn-primary:hover { background: var(--flame-orange); }
.btn-ghost { border: 2px solid rgba(255, 255, 255, .35); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Features */
.features { background: var(--charcoal); padding: 56px 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.feature { padding: 8px 4px; border-left: 3px solid var(--flame-orange); padding-left: 18px; }
.feature h2 { font-size: 1.25rem; color: var(--white); margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .95rem; }

/* Sections */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--white); margin: 6px 0 14px; }
.section-intro { color: var(--muted); }

/* Menu */
.menu { background: var(--ink); }
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.menu-card {
  background: var(--charcoal); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .05); transition: transform .2s;
}
.menu-card:hover { transform: translateY(-5px); }
.menu-card img { width: 100%; height: 230px; object-fit: cover; }
.menu-card-body { padding: 22px 22px 26px; }
.menu-card-body h3 { font-size: 1.35rem; color: var(--white); margin-bottom: 10px; }
.menu-card-body p { color: var(--muted); font-size: .95rem; }
.menu-card--cta {
  align-items: flex-start; justify-content: center;
  background: linear-gradient(135deg, #2a0f06, #1a0c08);
  border: 1px solid rgba(255, 122, 0, .3);
}
.menu-card--cta .btn { margin-top: 16px; }

/* About */
.about { background: var(--charcoal); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 460px; object-fit: cover; }
.about-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--white); margin: 6px 0 18px; }
.about-copy p { color: var(--muted); margin-bottom: 16px; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 22px; }
.about-list li { position: relative; padding-left: 26px; color: var(--cream); font-weight: 600; }
.about-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--ink);
  background: var(--gold); width: 18px; height: 18px; border-radius: 50%;
  font-size: .72rem; display: grid; place-items: center; top: 4px; font-weight: 800;
}

/* Gallery */
.gallery { background: var(--ink); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 16px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); margin: 0; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--wide { grid-column: span 2; grid-row: span 2; }

/* Order */
.order { background: var(--charcoal); }
.order-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 760px; margin: 0 auto; }
.order-card {
  background: var(--charcoal-2); border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius); padding: 34px 28px; transition: transform .2s, border-color .2s;
}
.order-card:hover { transform: translateY(-5px); border-color: var(--flame-orange); }
.order-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 8px; }
.order-card p { color: var(--muted); margin-bottom: 18px; }
.order-link { color: var(--gold); font-weight: 700; }

/* Visit */
.visit { background: var(--ink); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.visit-info h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--white); margin: 6px 0 22px; }
.visit-line { color: var(--muted); margin-bottom: 18px; }
.visit-line strong { color: var(--gold); font-family: "Anton", sans-serif; letter-spacing: 1px; font-size: 1.05rem; }
.visit-info address { font-style: normal; }
.visit-info .btn { margin-top: 6px; }
.visit-map {
  border-radius: var(--radius); overflow: hidden; min-height: 380px;
  box-shadow: var(--shadow); border: 1px solid rgba(255, 255, 255, .08);
}

/* Footer */
.site-footer { background: var(--charcoal); border-top: 1px solid rgba(255, 255, 255, .08); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand img { width: 56px; height: 56px; border-radius: 8px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); max-width: 320px; }
.footer-nav h2, .footer-contact h2 { font-size: 1.05rem; color: var(--white); margin-bottom: 14px; letter-spacing: 1px; }
.footer-nav li { margin-bottom: 9px; }
.footer-nav a { color: var(--muted); transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact address { font-style: normal; color: var(--muted); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-bottom p { color: var(--muted); font-size: .88rem; }

/* Landing pages */
.hero--area { min-height: 70vh; }
.breadcrumb { padding-top: 18px; padding-bottom: 4px; color: var(--muted); font-size: .85rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.container.narrow { max-width: 820px; }
.prose { color: var(--muted); font-size: 1.05rem; margin-bottom: 18px; }
.areas { background: var(--ink); }
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.area-card {
  background: var(--charcoal-2); border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius); padding: 26px 22px; transition: transform .2s, border-color .2s;
}
.area-card:hover { transform: translateY(-4px); border-color: var(--flame-orange); }
.area-card h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 10px; }

.prose strong { color: var(--cream); }

/* Steps */
.steps-section { background: var(--charcoal); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--charcoal-2); border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius); padding: 30px 26px; position: relative;
}
.step-num {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--flame-red); color: var(--white); font-family: "Anton", sans-serif;
  font-size: 1.2rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .96rem; }
.centered-cta { text-align: center; margin-top: 38px; }

/* Trust list */
.trust-list { display: grid; gap: 14px; }
.trust-list li {
  color: var(--muted); font-size: 1.05rem; padding-left: 30px; position: relative;
}
.trust-list li::before {
  content: "✓"; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--gold);
  color: var(--ink); font-size: .72rem; font-weight: 800; display: grid; place-items: center;
}
.trust-list strong { color: var(--cream); }

/* FAQ */
.faq { background: var(--charcoal); }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--charcoal-2); border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius); padding: 4px 24px;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 0; font-weight: 700;
  color: var(--white); font-size: 1.05rem; display: flex; justify-content: space-between;
  gap: 16px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--gold); font-size: 1.5rem; font-weight: 700;
  transition: transform .2s; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 0 22px; margin: 0; }

/* Homepage areas section */
.areas-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; padding: 64px 22px; }
  .hero-content { max-width: 640px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-media { justify-self: center; order: -1; }
  .hero-media img { max-width: 460px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-list { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .about-media img { height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--ink); border-bottom: 1px solid rgba(255, 255, 255, .1);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .primary-nav.open { max-height: 420px; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 0; }
  .primary-nav li { padding: 4px 22px; }
  .primary-nav a { display: block; padding: 12px 0; }
  .nav-cta { display: inline-block; text-align: center; margin: 8px 22px; }
  .order-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
  .area-grid, .areas-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
