:root {
  color-scheme: light;
  --ink: #18201d;
  --muted: #5b6760;
  --paper: #fffdf8;
  --line: #e2ddd1;
  --green: #17665b;
  --blue: #1b5d89;
  --tomato: #b53b2f;
  --gold: #c59b46;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  min-height: 64px;
  padding: 0 20px;
}

.brand {
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 650;
}

.hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(20, 32, 30, 0.78), rgba(20, 32, 30, 0.25)),
    url("assets/hero.png") center / cover;
  display: flex;
  min-height: min(680px, calc(100vh - 64px));
  padding: 72px 20px;
}

.hero-copy {
  color: #fffdf8;
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.25rem, 10vw, 7rem);
  line-height: 0.9;
  margin: 0;
}

.summary {
  font-size: 1.2rem;
  margin: 20px 0 0;
  max-width: 560px;
}

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

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  padding: 0 18px;
}

.primary {
  background: var(--gold);
  color: #111;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
}

.section {
  margin: 0 auto;
  max-width: 1120px;
  padding: 76px 20px;
}

.intro,
.split-section {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  margin: 0;
}

.intro > p,
.split-section p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.menu-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 28px;
}

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

.menu-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  min-height: 220px;
  padding: 20px;
}

.menu-card h3 {
  color: var(--green);
  font-size: 1.25rem;
  margin: 0 0 14px;
}

.menu-item {
  border-top: 1px solid #eee8dc;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px 0;
}

.menu-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.menu-item strong {
  display: block;
}

.menu-item span {
  color: var(--muted);
  display: block;
  font-size: 0.92rem;
  margin-top: 2px;
}

.price {
  color: var(--tomato);
  font-weight: 850;
  white-space: nowrap;
}

.contact-panel {
  border-left: 4px solid var(--blue);
  background: #f5f0e6;
  border-radius: 8px;
  padding: 24px;
}

.contact-panel h3 {
  margin: 0 0 14px;
}

.contact-panel a,
.contact-panel p {
  display: block;
  margin: 10px 0 0;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 24px 20px;
}

.menu-page {
  background: #ebe7df;
  overflow-x: hidden;
}

.menu-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 0.95rem;
  font-weight: 700;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.menu-document {
  margin: 0 auto;
  max-width: 794px;
  padding: 16px 0 32px;
}

.menu-document img {
  aspect-ratio: 794 / 1123;
  background: #fff;
  display: block;
  height: auto;
  margin: 0 auto 16px;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 760px) {
  .nav {
    align-items: start;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  .nav-links {
    gap: 12px;
  }

  .menu-header {
    min-height: 52px;
    padding: 0 14px;
  }

  .menu-document {
    padding: 0 0 16px;
  }

  .menu-document img {
    margin-bottom: 8px;
  }

  .hero {
    min-height: 560px;
    padding: 56px 20px;
  }

  .intro,
  .split-section,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 20px;
  }
}
