:root {
  --demo-bg: #0b0b0b;
  --demo-surface: #141414;
  --demo-surface-2: #1a1a1a;
  --demo-border: rgba(255, 255, 255, 0.12);
  --demo-text: #f6efe5;
  --demo-text-dim: rgba(246, 239, 229, 0.72);
  --demo-accent: #d4af37;
  --demo-accent-soft: rgba(212, 175, 55, 0.16);
  --demo-shadow: 0 24px 72px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 30%),
    linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
  color: var(--demo-text);
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 11, 11, 0.94);
  border-bottom: 1px solid var(--demo-border);
  backdrop-filter: blur(20px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--demo-accent);
  display: inline-block;
  box-shadow: 6px 6px 0 var(--demo-accent-soft);
}

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

.brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--demo-text-dim);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.94rem;
  color: var(--demo-text-dim);
}

.site-nav a:hover {
  color: var(--demo-text);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--demo-accent);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  line-height: 0.96;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.4rem);
  max-width: 12ch;
}

.hero-text,
.story-copy p,
.widget-note p,
.footer-copy,
.feature-card p,
.menu-card p,
.hero-card-body p {
  color: var(--demo-text-dim);
  line-height: 1.7;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 58ch;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.demo-btn {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid var(--demo-border);
  font-size: 0.94rem;
  font-weight: 600;
  text-align: center;
}

.demo-btn-primary {
  background: var(--demo-accent);
  color: #111;
  border-color: transparent;
}

.demo-btn-secondary {
  background: transparent;
  color: var(--demo-text);
}

.hero-card,
.menu-card,
.feature-card,
.widget-note {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--demo-border);
  box-shadow: var(--demo-shadow);
}

.hero-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: 260px 1fr;
}

.hero-card-photo {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.14), rgba(7, 7, 7, 0.44)),
    linear-gradient(135deg, rgba(212, 175, 55, 0.22), transparent 58%),
    url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1200&q=80") center/cover;
  border-bottom: 1px solid var(--demo-border);
}

.hero-card-body {
  padding: 24px;
}

.hero-card-label,
.menu-type {
  margin: 0;
  color: var(--demo-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.hero-card-body h2,
.menu-card h3,
.feature-card h3 {
  margin: 12px 0 0;
  font-size: 1.65rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}

.section {
  padding: 48px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--demo-border);
  border-bottom: 1px solid var(--demo-border);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

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

.menu-card,
.feature-card {
  padding: 24px;
}

.menu-card span {
  display: inline-block;
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--demo-accent);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.widget-note {
  padding: 28px;
}

.code-block {
  display: block;
  margin-top: 18px;
  padding: 18px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--demo-border);
  color: var(--demo-text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  line-height: 1.7;
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid var(--demo-border);
  padding: 28px 0 56px;
}

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

@media (max-width: 960px) {
  .hero-grid,
  .story-grid,
  .menu-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    grid-template-rows: 220px 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .header-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 14px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .demo-btn {
    width: 100%;
  }
}
