:root {
  --cream: #f7ecd2;
  --paper: #fffaf0;
  --brown: #2a1710;
  --brown-soft: #5a3a2c;
  --gold: #d8a64b;
  --line: rgba(42, 23, 16, 0.18);
  --shadow: 0 24px 70px rgba(42, 23, 16, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--brown);
  background: radial-gradient(circle at top, #fff9ec 0, var(--cream) 45%, #f2dfbb 100%);
  font-family: Inter, system-ui, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 250, 240, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brown);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}
nav { display: flex; gap: clamp(12px, 2vw, 28px); }
nav a, .footer-links a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 700;
}
nav a:hover, .footer-links a:hover { color: var(--gold); }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 9vw, 120px) clamp(18px, 4vw, 64px);
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brown-soft);
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
  margin: 0;
}
h1 { font-size: clamp(3.4rem, 8vw, 7.5rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.5rem, 5vw, 4.6rem); letter-spacing: -0.04em; }
h3 { font-size: 2rem; }

.hero-text {
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
  color: var(--brown-soft);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button, button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--brown);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.primary, button { background: var(--brown); color: var(--paper); }
.secondary { color: var(--brown); background: transparent; }

.hero-logo-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 8%;
}
.hero-logo-card img { width: 100%; border-radius: 50%; mix-blend-mode: multiply; }

.feature-strip, .section, .split-section, .order-panel, footer {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 64px);
  padding-right: clamp(18px, 4vw, 64px);
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 48px;
}
.feature-strip div {
  background: rgba(255, 250, 240, 0.68);
  border: 1px solid var(--line);
  padding: 24px;
}
.feature-strip strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.7rem; }
.feature-strip span { color: var(--brown-soft); }

.section, .split-section, .order-panel { padding-top: 72px; padding-bottom: 72px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.menu-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.76);
  border-radius: 28px;
}
.menu-card p { color: var(--brown-soft); line-height: 1.55; }
.menu-card span { font-weight: 900; font-size: 1.15rem; }

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.split-section > p { font-size: 1.18rem; line-height: 1.75; color: var(--brown-soft); }

.order-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 40px;
  box-shadow: var(--shadow);
  margin-top: 42px;
  margin-bottom: 72px;
}
.order-panel > p { color: var(--brown-soft); }
form { display: grid; gap: 16px; margin-top: 28px; }
label { display: grid; gap: 8px; font-weight: 800; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  font: inherit;
  color: var(--brown);
  background: #fffdf8;
}
textarea { min-height: 130px; resize: vertical; }
button { width: fit-content; font: inherit; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 38px;
  padding-bottom: 38px;
  border-top: 1px solid var(--line);
}
.footer-links { display: grid; gap: 10px; text-align: right; }

@media (max-width: 820px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { flex-wrap: wrap; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero-logo-card { max-width: 460px; margin: 0 auto; }
  .feature-strip, .menu-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
  .footer-links { text-align: left; }
}
