:root {
  --cream: #f7f0e6;
  --paper: #fffaf4;
  --brown: #5f4636;
  --dark: #2f2925;
  --muted: #786b62;
  --line: #dfd0c1;
  --accent: #bd8b69;
  --shadow: 0 18px 50px rgba(70, 49, 34, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 244, 0.92);
  border-bottom: 1px solid rgba(223, 208, 193, 0.8);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 11px; font-family: "Cormorant Garamond", serif; font-size: 1.45rem; font-weight: 700; }
.brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 50%; }
nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.5vw, 42px);
  font-size: 1.12rem;
  font-weight: 700;
}
nav a {
  padding: 9px 2px;
}
nav .order-nav {
  padding: 7px 19px 5px;
  border-radius: 999px;
  background: var(--brown);
  color: white;
  font-family: "Allura", cursive;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
}
nav a:hover { color: var(--accent); }
nav .order-nav:hover {
  color: white;
  background: var(--accent);
  transform: translateY(-1px);
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
}
.hero-copy {
  padding: clamp(64px, 9vw, 132px) clamp(28px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .77rem;
  font-weight: 700;
  color: var(--accent);
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
  margin-top: 0;
}
h1 { font-size: clamp(3.1rem, 6.4vw, 6.3rem); margin-bottom: 26px; max-width: 11ch; }
h2 { font-size: clamp(2.7rem, 5vw, 4.7rem); margin-bottom: 14px; }
h3 { font-size: 1.7rem; margin-bottom: 0; }
.hero-text { max-width: 560px; color: var(--muted); font-size: 1.08rem; margin: 0 0 30px; }
.hero-actions, .order-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(70, 49, 34, .14); }
.primary { color: white; background: var(--brown); }
.secondary { border: 1px solid var(--brown); background: transparent; }
.venmo { background: #1d74e8; color: white; }

.hero-image { min-height: 560px; background: #ddd; }
.hero-image img { height: 100%; object-fit: cover; }

.strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 3vw, 38px);
  padding: 17px 20px;
  background: var(--brown);
  color: white;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
  font-weight: 700;
}
.strip p { margin: 0; }

.section { padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 90px); }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); }

.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.menu-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.menu-card img { height: 300px; object-fit: cover; }
.menu-card > div { padding: 24px; }
.menu-line { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.menu-line strong { font-size: 1.2rem; color: var(--brown); }
.menu-card p { margin-bottom: 0; color: var(--muted); }

.macros {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.macros span,
.macros strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .78rem;
}
.macros span {
  background: var(--cream);
  color: var(--brown);
  font-weight: 700;
}
.macros strong {
  background: #f4eee8;
  color: var(--dark);
  font-weight: 600;
}

.warm { background: var(--cream); }
.gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1.2fr; gap: 14px; }
.gallery img { height: 380px; object-fit: cover; border-radius: 18px; }

.order-section { background: var(--dark); color: white; }
.order-card { max-width: 980px; margin: 0 auto; text-align: center; }
.order-card h2 {
  font-family: "Allura", cursive;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  line-height: .95;
  margin-bottom: 24px;
}
.order-card > p:not(.eyebrow) { color: #d7cdc5; max-width: 700px; margin: 0 auto 30px; }
.order-actions { justify-content: center; }
.details {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.details div { display: flex; flex-direction: column; gap: 6px; }
.details span { color: #bfaea1; font-size: .8rem; text-transform: uppercase; letter-spacing: .13em; }

footer {
  padding: 25px clamp(20px, 6vw, 90px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: #231f1c;
  color: #d8cec7;
  font-size: .9rem;
}
footer p { margin: 0; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 430px; order: -1; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img { height: 300px; }
}

@media (max-width: 620px) {
  .site-header nav { display: none; }
  .hero-copy { padding: 56px 22px 68px; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .strip { gap: 8px; flex-wrap: wrap; }
  .strip span { display: none; }
  .strip p { width: 100%; text-align: center; }
  .section { padding-left: 18px; padding-right: 18px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 330px; }
  .details { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
