:root {
  --color-bg: #fff8ec;
  --color-surface: #ffffff;
  --color-surface-warm: #fff1cc;
  --color-ink: #241914;
  --color-muted: #6d5a50;
  --color-red: #b92f28;
  --color-red-dark: #761d18;
  --color-yellow: #f2ca3a;
  --color-yellow-soft: #ffe68b;
  --color-green: #15803d;
  --color-border: #ead9bf;
  --shadow-soft: 0 24px 70px rgba(85, 38, 19, .14);
  --shadow-card: 0 16px 38px rgba(85, 38, 19, .1);
  --radius: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 4px;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px max(16px, calc((100vw - var(--max-width)) / 2));
  background: rgba(255, 248, 236, .92);
  border-bottom: 1px solid rgba(185, 47, 40, .12);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-red-dark);
  text-decoration: none;
}

.brand-mark strong,
h1,
h2,
h3 {
  font-family: "Outfit", Arial, sans-serif;
  line-height: 1.05;
}

.brand-mark strong {
  display: block;
  font-size: 1rem;
}

.brand-mark small {
  display: block;
  color: var(--color-muted);
  font-size: .78rem;
  line-height: 1.2;
}

.brand-seal {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-red);
  color: #fff8ec;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--color-muted);
  font-size: .94rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--color-red-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover {
  box-shadow: 0 12px 28px rgba(85, 38, 19, .16);
}

.button-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: .92rem;
}

.button-whatsapp {
  background: var(--color-green);
  color: white;
}

.button-whatsapp:hover {
  background: #0f6b31;
}

.button-outline {
  background: transparent;
  border-color: rgba(118, 29, 24, .24);
  color: var(--color-red-dark);
}

.button-outline:hover {
  border-color: var(--color-red);
  background: #fff6df;
}

.button-light {
  background: #fff8ec;
  color: var(--color-red-dark);
}

.button-light:hover {
  background: var(--color-yellow-soft);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section-band {
  background:
    linear-gradient(180deg, #fff5dc 0%, var(--color-bg) 100%);
}

.hero {
  padding: 54px 0 72px;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 40px;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-red);
  font-family: "Outfit", Arial, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--color-yellow-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--color-red-dark);
  font-size: 2.7rem;
  font-weight: 800;
}

h2 {
  margin-bottom: 14px;
  color: var(--color-red-dark);
  font-size: 2rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  color: var(--color-ink);
  font-size: 1.2rem;
}

.hero-lede,
.section-heading p,
.menu-card p,
.contact-card p {
  color: var(--color-muted);
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.quick-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 640px;
  margin: 0;
}

.quick-facts div {
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
}

.quick-facts dt {
  color: var(--color-muted);
  font-size: .82rem;
  font-weight: 700;
}

.quick-facts dd {
  margin: 2px 0 0;
  color: var(--color-ink);
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
}

.hero-menu {
  margin: 0;
}

.hero-menu img {
  width: 100%;
  max-width: 430px;
  height: auto;
  max-height: 660px;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-menu figcaption {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: .9rem;
  text-align: center;
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 30px;
}

.menu-grid {
  display: grid;
  gap: 16px;
}

.menu-card,
.contact-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.menu-card {
  padding: 22px;
}

.menu-card strong {
  display: inline-block;
  color: var(--color-red-dark);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.28rem;
}

.menu-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--color-yellow-soft);
  color: var(--color-red-dark);
  font-size: .78rem;
  font-weight: 800;
}

.order-band {
  padding: 58px 0;
  background: var(--color-red-dark);
  color: #fff8ec;
}

.order-grid {
  display: grid;
  align-items: center;
  gap: 24px;
}

.order-band h2 {
  color: #fff8ec;
}

.order-band p {
  max-width: 690px;
  margin-bottom: 0;
  color: #ffe8b0;
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 24px;
}

.contact-card a {
  color: var(--color-red-dark);
  font-weight: 800;
  text-decoration-color: rgba(185, 47, 40, .36);
  text-underline-offset: 4px;
}

.contact-card a:hover {
  color: var(--color-red);
}

.contact-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--color-red);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-footer {
  padding: 28px 0;
  background: #201511;
  color: #f8e8ca;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:first-child {
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
}

.footer-inner p:last-child {
  color: #d9c2a3;
  font-size: .92rem;
}

@media (min-width: 640px) {
  .quick-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card-wide {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr);
    gap: 56px;
  }

  .hero-menu {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .quick-facts {
    grid-column: 1;
  }

  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .order-grid {
    grid-template-columns: 1fr auto;
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .header-actions {
    gap: 8px;
  }

  .nav-link {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-mark small {
    display: none;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero {
    padding-top: 40px;
  }

  .button {
    width: 100%;
  }

  .button-small {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
