:root {
  --site-bg: #0f1113;
  --site-bg-soft: #171a1d;
  --site-surface: rgba(24, 27, 30, 0.88);
  --site-surface-strong: #1b1f23;
  --site-border: rgba(255, 255, 255, 0.08);
  --site-text: #f6f0e6;
  --site-text-soft: rgba(246, 240, 230, 0.72);
  --site-text-dim: rgba(246, 240, 230, 0.52);
  --site-accent: #d8a13d;
  --site-accent-strong: #f3c56c;
  --site-accent-dark: #271b0a;
  --site-danger: #d36d6d;
  --site-shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
  --site-radius-xl: 30px;
  --site-radius-lg: 22px;
  --site-radius-md: 16px;
  --site-radius-sm: 12px;
  --site-max: 1200px;
}

html {
  scroll-behavior: smooth;
}

body.site-body,
body.menu-body {
  margin: 0;
  color: var(--site-text);
  background:
    radial-gradient(circle at top left, rgba(216, 161, 61, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(101, 60, 23, 0.24), transparent 28%),
    linear-gradient(180deg, #0f1113 0%, #14181b 48%, #101214 100%);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.site-shell,
.menu-shell {
  width: min(var(--site-max), calc(100% - 32px));
  margin: 0 auto;
}

.site-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(11, 13, 15, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-topbar .site-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--site-text);
  text-decoration: none;
}

.brand-lockup img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  color: var(--site-text-dim);
  font-size: 0.9rem;
}

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

.site-nav a,
.site-nav button {
  border: 0;
  background: transparent;
  color: var(--site-text-soft);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav button:hover,
.site-nav a.is-active {
  color: var(--site-text);
  background: rgba(255, 255, 255, 0.06);
}

.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.site-cta:hover {
  transform: translateY(-1px);
}

.site-cta.primary {
  background: linear-gradient(135deg, var(--site-accent) 0%, var(--site-accent-strong) 100%);
  color: #131313;
  font-weight: 700;
}

.site-cta.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--site-text);
  border-color: rgba(255, 255, 255, 0.08);
}

.site-cta.ghost {
  background: transparent;
  color: var(--site-text);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero {
  padding: 48px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-card,
.info-card,
.showcase-card,
.menu-group-card,
.location-card,
.gallery-card,
.contact-card,
.feature-card,
.stat-card,
.menu-state,
.menu-side-card {
  background: var(--site-surface);
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius-xl);
  box-shadow: var(--site-shadow);
}

.hero-card {
  padding: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216, 161, 61, 0.15);
  color: var(--site-accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.hero h1,
.menu-hero-card h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
  color: #fff8ef;
}

.hero p,
.menu-hero-copy {
  color: var(--site-text-soft);
  font-size: 1.04rem;
  line-height: 1.75;
  max-width: 58ch;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--site-radius-lg);
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  color: #fff8ef;
}

.stat-card span {
  display: block;
  margin-top: 4px;
  color: var(--site-text-dim);
  font-size: 0.92rem;
}

.hero-visual,
.menu-side-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-visual img,
.menu-side-image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.hero-visual-copy,
.menu-side-content {
  padding: 24px;
}

.hero-visual-copy h2,
.menu-side-content h2 {
  margin-bottom: 8px;
  color: #fff8ef;
}

.hero-visual-copy p,
.menu-side-content p {
  margin: 0;
  color: var(--site-text-soft);
  line-height: 1.65;
}

.section {
  padding: 28px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  color: #fff8ef;
}

.section-head p {
  margin: 0;
  color: var(--site-text-soft);
  max-width: 52ch;
  line-height: 1.7;
}

.locations-grid,
.feature-grid,
.showcase-grid,
.gallery-grid,
.contact-grid,
.menu-groups {
  display: grid;
  gap: 22px;
}

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

.feature-grid,
.showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.location-card,
.feature-card,
.showcase-card,
.contact-card {
  padding: 24px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--site-text-soft);
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.location-card.is-current {
  border-color: rgba(216, 161, 61, 0.28);
  box-shadow: 0 0 0 1px rgba(216, 161, 61, 0.14), var(--site-shadow);
}

.location-card h3,
.feature-card h3,
.showcase-card h3,
.contact-card h3 {
  color: #fff8ef;
}

.location-card p,
.feature-card p,
.showcase-card p,
.contact-card p {
  color: var(--site-text-soft);
  line-height: 1.7;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(216, 161, 61, 0.14);
  color: var(--site-accent-strong);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.showcase-card img,
.gallery-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.showcase-card {
  padding: 0;
  overflow: hidden;
}

.showcase-card img {
  height: 230px;
}

.showcase-copy {
  padding: 22px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 20px;
}

.gallery-card img {
  height: 220px;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.contact-card li {
  display: flex;
  gap: 12px;
  align-items: start;
  color: var(--site-text-soft);
  margin-bottom: 14px;
}

.contact-card li i {
  color: var(--site-accent-strong);
  margin-top: 5px;
}

.contact-map {
  min-height: 100%;
  overflow: hidden;
  padding: 0;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.18) contrast(1.04);
}

.site-footer {
  padding: 18px 0 44px;
  color: var(--site-text-dim);
  text-align: center;
}

.site-footer strong {
  color: var(--site-text-soft);
}

.menu-shell {
  padding: 42px 0 56px;
}

.menu-hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 26px;
  margin-bottom: 28px;
}

.menu-hero-card {
  padding: 36px;
}

.menu-updated {
  margin-top: 18px;
  color: var(--site-text-dim);
  font-size: 0.92rem;
}

.menu-local-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.menu-local-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--site-text);
  text-decoration: none;
  transition: 0.2s ease;
}

.menu-local-pill:hover,
.menu-local-pill.is-active {
  background: linear-gradient(135deg, var(--site-accent) 0%, var(--site-accent-strong) 100%);
  border-color: transparent;
  color: #121212;
}

.menu-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--site-text);
  text-decoration: none;
}

.menu-state {
  padding: 18px 20px;
  border-radius: var(--site-radius-lg);
  margin-bottom: 24px;
}

.menu-state.is-error {
  border-color: rgba(211, 109, 109, 0.28);
  background: rgba(101, 24, 24, 0.34);
}

.menu-group-card {
  padding: 24px;
}

.menu-group-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-group-head h3 {
  margin: 0;
  color: #fff8ef;
  font-size: 1.8rem;
}

.menu-group-head span {
  color: var(--site-text-dim);
}

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

.menu-item {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.menu-item-photo,
.menu-item-photo-empty {
  width: 112px;
  height: 112px;
  border-radius: 18px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(216, 161, 61, 0.16), rgba(255, 255, 255, 0.04));
}

.menu-item-photo-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--site-accent-strong);
  font-size: 2rem;
  font-weight: 700;
}

.menu-item-copy h4 {
  margin: 0 0 6px;
  color: #fff8ef;
  font-size: 1.1rem;
}

.menu-item-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(216, 161, 61, 0.16);
  color: var(--site-accent-strong);
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.menu-item-meta {
  color: var(--site-text-dim);
  font-size: 0.92rem;
}

.menu-item-price {
  color: var(--site-accent-strong);
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .hero-grid,
  .menu-hero,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .site-topbar .site-shell {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .hero-stats,
  .locations-grid,
  .menu-items {
    grid-template-columns: 1fr;
  }

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

  .menu-item {
    grid-template-columns: 88px 1fr;
  }

  .menu-item-photo,
  .menu-item-photo-empty {
    width: 88px;
    height: 88px;
  }

  .menu-item-price {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .site-shell,
  .menu-shell {
    width: min(var(--site-max), calc(100% - 20px));
  }

  .hero-card,
  .menu-hero-card,
  .location-card,
  .feature-card,
  .showcase-copy,
  .contact-card,
  .menu-group-card {
    padding: 20px;
  }

  .hero h1,
  .menu-hero-card h1 {
    font-size: 2.35rem;
  }

  .gallery-grid,
  .feature-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    height: 200px;
  }
}
