:root {
  color-scheme: light;
  --bg: #5f1d16;
  --bg-deep: #35110d;
  --panel: rgba(255, 246, 229, 0.92);
  --panel-strong: #fff4df;
  --text: #2f160f;
  --muted: #7b564a;
  --accent: #c58a2c;
  --accent-soft: rgba(197, 138, 44, 0.16);
  --border: rgba(70, 24, 18, 0.14);
  --shadow: 0 22px 60px rgba(36, 10, 7, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 192, 101, 0.28), transparent 36%),
    linear-gradient(180deg, #8d2929 0%, var(--bg) 42%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: Baskerville, "Palatino Linotype", "Book Antiqua", serif;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(1480px, calc(100vw - 12px));
  margin: 0 auto;
  padding: 8px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 244, 223, 0.98), rgba(255, 241, 215, 0.92)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(197, 138, 44, 0.28), transparent 68%);
  pointer-events: none;
}

.hero-media {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.hero-media picture,
.menu-card picture {
  display: block;
}

.hero-media img {
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(66, 21, 15, 0.18);
}

.hero-copy {
  max-width: 100%;
}

.eyebrow,
.section-kicker {
  margin: 0 0 6px;
  color: var(--muted);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2 {
  margin: 0;
  line-height: 1;
  color: #4a160f;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(2.1rem, 3.6vw, 3.35rem);
  letter-spacing: -0.03em;
}

.intro {
  max-width: 52rem;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.section-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(83, 34, 22, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: #5a2215;
  text-decoration: none;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.section-nav a:hover,
.section-nav a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(197, 138, 44, 0.42);
  background: #fff;
}

.content {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.menu-group {
  overflow: hidden;
  padding: 16px 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.98), rgba(255, 242, 221, 0.94));
  box-shadow: var(--shadow);
  content-visibility: auto;
}

.section-head {
  margin-bottom: 12px;
  padding: 0 2px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.menu-grid {
  display: grid;
  gap: 10px;
}

.menu-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--panel-strong);
  box-shadow: 0 14px 28px rgba(66, 21, 15, 0.1);
}

.menu-card img {
  width: 100%;
  height: auto;
  background: var(--accent-soft);
}

@media (min-width: 1024px) {
  .hero h1 {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: 100vw;
    padding: 4px 0 28px;
  }

  .hero {
    margin: 0 4px;
    padding: 12px;
    border-radius: 22px;
  }

  .menu-group {
    padding: 12px 0 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .hero-media {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .hero-media img {
    height: auto;
    border-radius: 16px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 9.8vw, 3rem);
    white-space: normal;
  }

  .intro {
    margin-top: 12px;
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .section-nav {
    gap: 8px;
    margin-top: 16px;
  }

  .section-nav a {
    width: 100%;
    justify-content: center;
  }

  .content {
    gap: 8px;
    margin-top: 8px;
  }

  .section-head {
    margin-bottom: 8px;
    padding: 0 10px;
  }

  .menu-grid {
    gap: 6px;
  }

  .menu-card {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
