:root {
  color-scheme: light;
  --ink: #27150d;
  --muted: #6d5d53;
  --paper: #fffaf3;
  --surface: #ffffff;
  --line: #ead9c5;
  --garlic: #f5d46f;
  --chili: #b73327;
  --leaf: #4f6f48;
  --deep: #3a1f12;
  --shadow: 0 18px 50px rgba(58, 31, 18, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 243, 0.86);
  border-bottom: 1px solid rgba(234, 217, 197, 0.75);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--chili);
}

.nav-links { display: flex; justify-content: center; gap: 24px; color: var(--muted); font-size: 0.94rem; }
.nav-links a:hover { color: var(--chili); }
.header-cta, .primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
}
.header-cta, .primary-button { color: #fff; background: var(--chili); box-shadow: 0 12px 30px rgba(183, 51, 39, 0.24); }
.secondary-button { border: 1px solid rgba(255, 255, 255, 0.6); color: #fff; background: rgba(255, 255, 255, 0.12); }

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 6vw, 80px) 72px;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(39, 21, 13, 0.84), rgba(39, 21, 13, 0.45) 42%, rgba(39, 21, 13, 0.08)); }
.hero-content { position: relative; max-width: 650px; color: #fff; }
.eyebrow { margin: 0 0 12px; color: var(--garlic); font-size: 0.78rem; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(3.5rem, 10vw, 8.5rem); line-height: 0.88; letter-spacing: 0; }
.hero-copy { max-width: 560px; margin: 24px 0 0; color: rgba(255, 255, 255, 0.88); font-size: clamp(1rem, 2vw, 1.24rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.product-strip article { min-height: 190px; padding: clamp(22px, 4vw, 42px); background: var(--surface); }
.product-strip span { color: var(--chili); font-weight: 900; }
.product-strip h2 { margin: 16px 0 10px; font-size: clamp(1.2rem, 2vw, 1.55rem); }
.product-strip p, .menu-item p, .contact p { color: var(--muted); line-height: 1.65; }

.gallery-section, .menu-section, .steps, .contact { padding: clamp(54px, 8vw, 96px) clamp(18px, 6vw, 80px); }
.section-heading { max-width: 680px; margin-bottom: 30px; }
.section-heading h2, .contact h2 { margin: 0; font-size: clamp(2rem, 5vw, 4.2rem); line-height: 1; letter-spacing: 0; }
.gallery-section { background: #fff4e5; }
.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, 28vw);
  gap: 14px;
}
.photo-grid figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
}
.photo-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.photo-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  background: rgba(39, 21, 13, 0.72);
  font-weight: 800;
}
.photo-feature { grid-row: span 2; }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.menu-item { display: flex; min-height: 230px; flex-direction: column; justify-content: space-between; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow); }
.menu-item h3 { margin: 0 0 10px; font-size: 1.25rem; }
.menu-item strong { align-self: flex-start; padding: 8px 12px; border-radius: 999px; color: var(--deep); background: #f9e6ab; }

.steps { background: var(--deep); color: #fff; }
.steps ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; padding: 0; margin: 0; list-style: none; counter-reset: step; }
.steps li { counter-increment: step; min-height: 140px; padding: 24px; border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; color: rgba(255,255,255,0.86); }
.steps li::before { content: counter(step, decimal-leading-zero); display: block; margin-bottom: 18px; color: var(--garlic); font-weight: 900; }

.contact { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 28px; background: #f7ead8; }
.contact div { max-width: 720px; }
footer { display: flex; justify-content: space-between; gap: 18px; padding: 26px clamp(18px, 6vw, 80px); color: var(--muted); border-top: 1px solid var(--line); }

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { min-height: 88svh; padding-top: 104px; }
  .hero-image { object-position: 58% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(39, 21, 13, 0.88), rgba(39, 21, 13, 0.5)); }
  .product-strip, .photo-grid, .menu-grid, .steps ol, .contact { grid-template-columns: 1fr; }
  .photo-grid { grid-auto-rows: auto; }
  .photo-grid figure { aspect-ratio: 4 / 3; }
  .photo-feature { grid-row: auto; }
  .contact { align-items: start; }
  footer { flex-direction: column; }
}

@media (max-width: 480px) {
  .brand span:last-child { max-width: 120px; }
  .header-cta { min-width: 74px; padding-inline: 12px; }
  .hero-actions a { width: 100%; }
}
