:root {
  --accent: #cd2026;
  --accent-dark: #a8181d;
  --dark: #3d1f08;
  --dark-deep: #2a1408;
  --cream: #fff2e6;
  --cream-deep: #ffe6cc;
  --white: #ffffff;
  --ink: #2a1408;
  --ink-soft: #5c4634;
  --divider: rgba(61, 31, 8, 0.12);
  --radius: 10px;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Chivo', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--divider);
}

.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a:not(.nav-cta) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 180ms ease;
}

.nav-links a:not(.nav-cta):hover { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
  padding: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 150ms ease;
  min-height: 44px;
}

.btn-filled {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-filled:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-filled-light {
  background: var(--white);
  color: var(--dark-deep);
  border-color: var(--white);
}
.btn-filled-light:hover { background: var(--cream); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow.dark { color: var(--ink-soft); }
.eyebrow.accent { color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 110px;
  text-align: center;
}

.grill-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 38px,
    rgba(205, 32, 38, 0.04) 38px,
    rgba(205, 32, 38, 0.04) 40px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.hero .eyebrow { color: var(--accent); }

.hero-title {
  font-weight: 900;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--dark-deep);
  margin-bottom: 18px;
}

.hero-sub {
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Trust ---------- */
.trust {
  background: var(--white);
  padding: 42px 24px;
}

.trust-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pill {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  border: 1px solid var(--divider);
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--cream);
}

/* ---------- Section head ---------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark-deep);
}
.section-title.left { text-align: left; }

/* ---------- Menu ---------- */
.menu {
  background: var(--cream);
  padding: 90px 24px 100px;
}

.menu-list {
  max-width: 720px;
  margin: 0 auto;
}

.menu-group { margin-bottom: 48px; }

.menu-cat {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 8px;
}

.menu-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--divider);
}

.menu-name {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-deep);
}

.menu-name .dots {
  flex: 1;
  border-bottom: 1px dotted var(--divider);
  transform: translateY(-4px);
}

.menu-name .price {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.menu-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 6px;
  max-width: 90%;
}

.menu-note {
  margin-top: 36px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

/* ---------- Kitchen ---------- */
.kitchen {
  background: var(--white);
  padding: 90px 24px;
}

.kitchen-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.kitchen-text p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 18px 0 24px;
  max-width: 480px;
}

.kitchen-list {
  list-style: none;
}

.kitchen-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
  font-weight: 500;
  color: var(--dark-deep);
  font-size: 0.95rem;
}

.kitchen-graphic {
  display: flex;
  justify-content: center;
  color: var(--accent);
}

.kitchen-graphic svg {
  width: 100%;
  max-width: 240px;
  height: auto;
  opacity: 0.85;
}

/* ---------- About ---------- */
.about {
  background: var(--cream-deep);
  padding: 90px 24px;
}

.about-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-inner .eyebrow { color: var(--accent); }

.about p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-top: 20px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--dark-deep);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 38px,
    rgba(255, 255, 255, 0.025) 38px,
    rgba(255, 255, 255, 0.025) 40px
  );
  pointer-events: none;
}

.final-inner { position: relative; }

.final-title {
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.final-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.final-ctas { position: relative; }

.newsletter-block {
  position: relative;
  max-width: 460px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.newsletter-title {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter-block p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  min-height: 44px;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--cream-deep);
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: block;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  padding: 5px 0;
  transition: color 180ms ease;
}

.footer-col a:hover { color: var(--white); }

.footer-col p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* ---------- Mobile ---------- */
@media (max-width: 700px) {
  .nav-toggle { display: flex; align-items: center; }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--divider);
    transform: translateY(-130%);
    transition: transform 280ms ease;
    z-index: 99;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links a:not(.nav-cta) {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--divider);
  }

  .nav-cta { margin-top: 16px; text-align: center; }

  .kitchen-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kitchen-graphic { order: -1; }
  .kitchen-graphic svg { max-width: 160px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .newsletter-form { flex-direction: column; }

  .hero-ctas .btn { width: 100%; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 70px 20px 80px; }
  .menu, .kitchen, .about { padding: 60px 20px; }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}