:root {
  --brand-gold: #f4b942;
  --brand-amber: #f59e0b;
  --brand-dark: #111827;
  --brand-deep: #0b0f16;
  --brand-sand: #f7f2ea;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #faf7f2 0%, #ffffff 24%, #f8fafc 100%);
  color: #0f172a;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  letter-spacing: -0.02em;
}

img {
  display: block;
}

.hero-overlay {
  background: linear-gradient(120deg, rgba(8, 12, 18, 0.82), rgba(17, 24, 39, 0.58), rgba(120, 53, 15, 0.42));
}

.premium-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.premium-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.soft-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.gold-ring {
  box-shadow: 0 0 0 1px rgba(244, 185, 66, 0.18), 0 20px 45px rgba(15, 23, 42, 0.08);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  font-weight: 900;
}

.section-copy {
  font-size: clamp(1rem, 1.7vw, 1.125rem);
  line-height: 1.85;
  color: #475569;
}

.pill-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pill-scroll::-webkit-scrollbar {
  display: none;
}

.featured-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
}

.featured-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.18));
  pointer-events: none;
}

.menu-grid-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

.desktop-only {
  display: none;
}

.mobile-safe-space {
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
}

@media (max-width: 640px) {
  .section-heading {
    font-size: clamp(1.9rem, 8.2vw, 2.45rem);
    line-height: 1.08;
  }

  .premium-card,
  .soft-panel,
  .featured-image-frame {
    border-radius: 1.5rem;
  }
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}
