:root {
  --bg: #fff8ed;
  --text: #2f1f14;
  --muted: #7c6756;
  --accent: #c2410c;
  --accent-dark: #7c2d12;
  --card: #ffffff;
  --border: #f1d6bd;
  --shadow: 0 24px 80px rgba(124, 45, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(251, 146, 60, 0.25), transparent 24rem),
    var(--bg);
}

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

.container {
  width: min(1100px, calc(100% - 32px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(255, 248, 237, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.3rem;
  font-weight: 900;
}

.links {
  display: flex;
  gap: 24px;
  font-weight: 800;
  color: var(--muted);
}

.hero {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.9rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero p:not(.eyebrow),
.story-card p,
.menu-card p,
.stats span {
  color: var(--muted);
  line-height: 1.65;
}

.btn {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  padding: 14px 22px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  margin-top: 12px;
}

.plate {
  min-height: 430px;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.48)),
    radial-gradient(circle, #fed7aa, #fb923c);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.plate span {
  font-size: 11rem;
  filter: drop-shadow(0 30px 34px rgba(124, 45, 18, 0.25));
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 76px;
}

.stats article,
.menu-card,
.story-card,
.booking {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 14px 40px rgba(124, 45, 18, 0.08);
}

.stats article {
  padding: 24px;
  display: grid;
  gap: 6px;
}

.stats strong {
  font-size: 2rem;
}

.section {
  padding-bottom: 86px;
}

.section-title {
  margin-bottom: 24px;
}

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

.menu-card {
  padding: 26px;
}

.menu-card span {
  font-size: 3rem;
}

.menu-card strong {
  color: var(--accent-dark);
  font-size: 1.2rem;
}

.story {
  padding-bottom: 86px;
}

.story-card {
  padding: clamp(28px, 5vw, 56px);
  max-width: 760px;
}

.booking {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 70px;
}

.booking h2 {
  margin-bottom: 0;
}

.footer {
  text-align: center;
  color: var(--muted);
  padding: 28px 16px;
  border-top: 1px solid var(--border);
}

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

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

@media (max-width: 560px) {
  .links {
    display: none;
  }

  .plate span {
    font-size: 7rem;
  }
}
