:root {
  --primary: #18392b;
  --accent: #e9a23b;
  --background: #f7f2e9;
  --surface: #fffdf8;
  --text: #20302a;
  --muted: #68756f;
  --radius: 20px;
  --shadow: 0 14px 40px rgba(24, 57, 43, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; color: var(--text); background: var(--background); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; }
a { color: inherit; }
img { display: block; width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; }
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }

.hero { min-height: 470px; display: grid; align-items: end; padding: 70px 0 52px; color: white; background: linear-gradient(90deg, rgba(15,42,31,.95), rgba(15,42,31,.55)), url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1400&q=75") center/cover; }
.hero__content { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.hero h1 { max-width: 720px; margin-bottom: 14px; font-family: Georgia, serif; font-size: clamp(2.7rem, 9vw, 5.5rem); letter-spacing: -.04em; }
.hero__description { max-width: 590px; margin-bottom: 26px; color: rgba(255,255,255,.88); font-size: 1.05rem; }
.eyebrow { display: inline-block; margin-bottom: 12px; color: #ffd698; font-size: .76rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow--dark { color: var(--primary); }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 22px; border-radius: 999px; font-weight: 800; text-decoration: none; }
.button--light { color: var(--primary); background: var(--surface); }

.category-nav { position: sticky; z-index: 10; top: 0; overflow: hidden; border-bottom: 1px solid rgba(24,57,43,.1); background: rgba(247,242,233,.94); backdrop-filter: blur(10px); }
.category-nav__scroll { display: flex; width: min(1120px, calc(100% - 20px)); margin: auto; padding: 12px 0; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.category-nav__scroll::-webkit-scrollbar { display: none; }
.category-link { flex: 0 0 auto; padding: 9px 16px; border: 1px solid rgba(24,57,43,.13); border-radius: 999px; background: var(--surface); font-size: .88rem; font-weight: 750; text-decoration: none; }

.menu-intro { display: grid; gap: 8px; padding: 56px 0 24px; }
.menu-intro h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2rem, 6vw, 3.2rem); }
.menu-intro p { color: var(--muted); }
.menu-sections { display: grid; gap: 52px; }
.menu-category h2 { margin-bottom: 20px; font-family: Georgia, serif; font-size: 1.8rem; }
.product-grid { display: grid; gap: 18px; }
.product { overflow: hidden; border: 1px solid rgba(24,57,43,.08); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.product__image { aspect-ratio: 16/10; object-fit: cover; background: #e6dfd3; }
.product__body { padding: 19px; }
.product__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.product h3 { margin-bottom: 8px; font-size: 1.1rem; }
.product__price { flex: 0 0 auto; color: var(--primary); font-weight: 850; }
.product__description { min-height: 48px; margin-bottom: 17px; color: var(--muted); font-size: .91rem; }
.product__order { display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-size: .88rem; font-weight: 800; text-decoration: none; }

.info { display: grid; gap: 16px; padding: 70px 0; }
.info-card { padding: 25px; border-radius: var(--radius); background: var(--primary); color: white; }
.info-card h2 { margin-bottom: 12px; font-family: Georgia, serif; font-size: 1.45rem; }
.info-card p, .info-card__row { color: rgba(255,255,255,.78); }
.info-card__row { display: flex; justify-content: space-between; gap: 16px; font-size: .9rem; }
.info-card__icon { display: block; margin-bottom: 22px; color: var(--accent); font-size: 1.8rem; }
.text-link { color: #ffd698; font-weight: 750; }
.qr-card { display: flex; align-items: center; gap: 20px; }
.qr-card p { margin-bottom: 0; }
.qr-placeholder { flex: 0 0 94px; aspect-ratio: 1; display: grid; place-items: center; border: 9px solid white; background: repeating-conic-gradient(#18392b 0 25%, white 0 50%) 0/18px 18px; box-shadow: inset 0 0 0 4px #18392b; }
.qr-placeholder span { display: grid; width: 42px; aspect-ratio: 1; place-items: center; background: white; color: var(--primary); font-size: .7rem; font-weight: 900; }

footer { padding: 34px 16px 96px; text-align: center; }
footer p { color: var(--muted); font-size: .9rem; }
.whatsapp-float { position: fixed; z-index: 20; right: 16px; bottom: 16px; display: flex; min-height: 50px; align-items: center; gap: 8px; padding: 0 18px; border-radius: 999px; background: #1ea952; color: white; box-shadow: 0 10px 30px rgba(8,92,42,.3); font-weight: 800; text-decoration: none; }

@media (min-width: 680px) {
  .menu-intro { grid-template-columns: 1fr auto; align-items: end; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .info { grid-template-columns: repeat(2, 1fr); }
  .qr-card { grid-column: 1 / -1; }
}
@media (min-width: 980px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .info { grid-template-columns: repeat(3, 1fr); }
  .qr-card { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
