:root {
  --ink: #211322;
  --deep: #32162f;
  --plum: #5c244f;
  --gold: #f2b84b;
  --cream: #fff7eb;
  --paper: #ffffff;
  --muted: #765f73;
  --line: rgba(33, 19, 34, .12);
  --shadow: 0 18px 50px rgba(33, 19, 34, .14);
  --radius: 26px;
}
* { 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: linear-gradient(180deg, #fffaf2 0%, #f8ecdc 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 54px);
  background: rgba(255, 247, 235, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.02em; }
.brand img { width: 46px; height: 46px; border-radius: 999px; box-shadow: 0 8px 24px rgba(33,19,34,.16); }
nav { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 14px; }
nav a { padding: 10px 14px; border-radius: 999px; }
nav a:hover { background: var(--ink); color: white; }
.hero { max-width: 1120px; margin: 0 auto; padding: clamp(20px, 4vw, 46px) clamp(16px, 4vw, 28px) 0; }
.hero-banner {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--deep);
}
.hero-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  margin: clamp(20px, 4vw, 34px) auto 0;
  padding: clamp(20px, 4vw, 38px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-logo { width: 170px; height: 170px; border-radius: 50%; object-fit: cover; box-shadow: 0 14px 36px rgba(33,19,34,.18); }
.eyebrow { margin: 0 0 8px; color: var(--plum); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 14px; font-size: clamp(36px, 6vw, 68px); line-height: .94; letter-spacing: -.06em; }
h2 { margin-bottom: 0; font-size: clamp(32px, 5vw, 52px); line-height: 1; letter-spacing: -.045em; }
h3 { margin-bottom: 10px; font-size: 23px; line-height: 1.08; letter-spacing: -.03em; }
.intro { max-width: 650px; margin-bottom: 24px; color: var(--muted); font-size: clamp(16px, 2vw, 19px); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions.center { justify-content: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(33,19,34,.16); }
.button.primary { background: var(--ink); color: white; }
.button.secondary { background: var(--gold); color: var(--ink); }
.button.is-placeholder { opacity: .72; cursor: not-allowed; }
.section { max-width: 1120px; margin: 0 auto; padding: clamp(50px, 8vw, 86px) clamp(16px, 4vw, 28px) 0; }
.section-title { margin-bottom: 22px; }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.menu-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(33,19,34,.08);
}
.menu-card.featured { background: linear-gradient(145deg, var(--ink), var(--plum)); color: white; }
.menu-card p { color: var(--muted); line-height: 1.55; }
.menu-card.featured p { color: rgba(255,255,255,.78); }
.menu-card strong { color: var(--plum); font-size: 18px; }
.menu-card.featured strong { color: var(--gold); }
.order-section { max-width: 920px; margin: 0 auto; padding: clamp(50px, 8vw, 86px) clamp(16px, 4vw, 28px); }
.order-box {
  padding: clamp(26px, 5vw, 48px);
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.order-box p:not(.eyebrow) { max-width: 680px; margin: 16px auto 24px; color: var(--muted); line-height: 1.65; }
.site-footer {
  padding: 34px clamp(16px, 4vw, 54px);
  text-align: center;
  color: rgba(255,255,255,.78);
  background: var(--ink);
}
.site-footer p { margin: 0 0 8px; }
.site-footer strong { color: white; }
.site-footer a { color: var(--gold); font-weight: 900; }
@media (max-width: 820px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { width: 100%; justify-content: space-between; }
  nav a { padding: 9px 10px; }
  .hero-card { grid-template-columns: 1fr; text-align: center; }
  .hero-logo { margin: 0 auto; width: 132px; height: 132px; }
  .hero-actions { justify-content: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { min-height: auto; }
}
@media (max-width: 520px) {
  .brand span { font-size: 16px; }
  nav { font-size: 13px; gap: 4px; }
  h1 { font-size: 38px; }
  .button { width: 100%; }
  .hero-card, .order-box, .menu-card { border-radius: 22px; }
}
