@font-face {
  font-family: "Inter";
  src: url("fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("fonts/cinzel-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("fonts/cinzel-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #070707;
  --bg-soft: #101010;
  --card: rgba(18, 18, 18, 0.92);
  --text: #f5efe2;
  --muted: #b8aa8a;
  --gold: #d4a63a;
  --gold-strong: #f1c35b;
  --border: rgba(212, 166, 58, 0.25);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --transition: all 0.25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212,166,58,0.07), transparent 30%),
    radial-gradient(circle at bottom right, rgba(212,166,58,0.05), transparent 25%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-strong); text-decoration: none; }
a:hover { color: #ffd980; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section { padding: 90px 0; position: relative; }
.section-heading { margin-bottom: 30px; }
.section-heading.center { text-align: center; }

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

h1, h2, h3, .brand-title {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); line-height: 1.08; margin: 0 0 18px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 12px; }
h3 { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(7, 7, 7, 0.88);
  border-bottom: 1px solid rgba(212, 166, 58, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.brand-title { display: block; font-size: 1.4rem; color: var(--gold-strong); }
.brand-subtitle { display: block; color: var(--muted); font-size: 0.85rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: var(--text);
  font-weight: 500;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-strong);
  margin: 5px 0;
}

.hero {
  padding-top: 70px;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #e7dcc5;
  max-width: 720px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.hero-badges span {
  border: 1px solid var(--border);
  background: rgba(212, 166, 58, 0.08);
  color: var(--gold-strong);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.hero-actions,
.menu-actions,
.contact-actions,
.cookie-banner__actions,
.external-content-actions,
.settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #121212;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 166, 58, 0.28);
  color: #111;
}
.btn-secondary,
.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(212, 166, 58, 0.08);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.hero-meta div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
}
.hero-meta strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero-card {
  background: linear-gradient(180deg, rgba(212,166,58,0.12), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.hero-card img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.deals-grid,
.about-highlights,
.footer-grid {
  display: grid;
  gap: 24px;
}
.deals-grid { grid-template-columns: repeat(3, 1fr); }

.deal-card,
.highlight-card,
.contact-card,
.hours-card,
.menu-category,
.allergens-box,
.legal-card,
.cookie-banner__inner,
.external-content-box,
.settings-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.deal-card,
.highlight-card,
.contact-card,
.hours-card,
.allergens-box,
.legal-card,
.settings-card {
  padding: 24px;
}

.deal-card { text-align: center; }
.deal-day {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  display: inline-block;
  margin-bottom: 10px;
}
.deal-price {
  font-size: 2rem;
  color: var(--gold-strong);
  font-weight: 700;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 30px;
}
.menu-column {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.menu-category { padding: 24px; }
.menu-category h3 {
  color: var(--gold-strong);
  border-bottom: 2px solid rgba(212,166,58,0.4);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menu-item:last-child { border-bottom: none; }
.menu-item h4 { margin: 0 0 4px; font-size: 1.05rem; }
.menu-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.menu-item span { color: var(--gold-strong); font-weight: 700; white-space: nowrap; }

.allergens-box { margin-top: 28px; }

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.about-highlights { grid-template-columns: 1fr; }

.hours-card { max-width: 700px; margin: 0 auto; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hours-row:last-child { border-bottom: none; }

.contact-item + .contact-item { margin-top: 18px; }

.map-wrap {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.external-content-box {
  min-height: 420px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(212,166,58,0.08), rgba(255,255,255,0.02)),
    rgba(10, 10, 10, 0.96);
  padding: 24px;
  text-align: center;
}
.external-content-content { max-width: 560px; }
.external-content-content h3 { color: var(--gold-strong); margin-bottom: 12px; }
.external-content-content p { color: #eadfcb; margin-bottom: 14px; }

.site-footer {
  border-top: 1px solid rgba(212, 166, 58, 0.15);
  background: #050505;
  padding-top: 50px;
}
.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(212,166,58,0.08);
  margin-top: 30px;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #111;
  font-weight: 900;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  z-index: -1;
}
.bg-glow-1 {
  width: 340px;
  height: 340px;
  background: var(--gold);
  top: -60px;
  left: -80px;
}
.bg-glow-2 {
  width: 280px;
  height: 280px;
  background: #ff8a00;
  bottom: 0;
  right: -60px;
}

.legal-main {
  min-height: 100vh;
  padding: 60px 0 80px;
}
.legal-card h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.legal-card h2 { margin-top: 30px; font-size: 1.4rem; }
.legal-card p,
.legal-card li { color: #eadfcb; }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 1200;
  padding: 0 12px;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(10, 10, 10, 0.96);
}
.cookie-banner__text p {
  margin: 8px 0 0;
  color: #eadfcb;
}

.settings-section { padding-top: 20px; }
.settings-card h2 { margin-bottom: 12px; }
.settings-card p { color: #eadfcb; }
.note-text { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 980px) {
  .hero-grid,
  .menu-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .deals-grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  .hero-visual { order: -1; }

  .main-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .main-nav.open { display: flex; }
  .menu-toggle { display: inline-block; }
  .hero-meta { grid-template-columns: 1fr; }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions,
  .external-content-actions,
  .settings-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner__actions .btn,
  .external-content-actions .btn,
  .settings-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .brand-subtitle { display: none; }
  .btn { width: 100%; }
  .menu-item { flex-direction: column; }
  .menu-item span { white-space: normal; }
  .contact-actions,
  .hero-actions,
  .menu-actions {
    flex-direction: column;
  }
  .cookie-banner { bottom: 10px; }
}
.menu-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0 24px;
}

.menu-overview-card {
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(212, 166, 58, 0.25);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.menu-overview-card h3 {
  color: #f1c35b;
  margin-bottom: 10px;
}

.menu-overview-card p {
  margin: 0;
  color: #eadfcb;
}

.menu-master-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 10px;
}

.menu-group-label {
  color: #d4a63a;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-left: 4px;
}

@media (max-width: 1200px) {
  .menu-overview-grid,
  .menu-master-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .menu-overview-grid,
  .menu-master-grid {
    grid-template-columns: 1fr;
  }
}