:root {
  --ink: #15110f;
  --ink-soft: #211a17;
  --paper: #f6f0e5;
  --cream: #fffaf1;
  --gold: #f2b632;
  --gold-light: #ffd66f;
  --red: #b62e25;
  --red-bright: #dc3d2e;
  --green: #31c46d;
  --muted: #726860;
  --line: rgba(21, 17, 15, .14);
  --white: #fff;
  --shadow: 0 26px 70px rgba(38, 24, 15, .17);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .2em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(21, 17, 15, .9);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); }
.brand img { width: 46px; height: 46px; }
.brand span { display: grid; line-height: 1; }
.brand strong { color: var(--gold); font-size: 1rem; letter-spacing: .15em; }
.brand small { margin-top: 5px; font-size: .62rem; font-weight: 800; letter-spacing: .26em; }
.site-nav { display: flex; align-items: center; gap: 27px; color: rgba(255,255,255,.78); font-size: .91rem; font-weight: 800; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.nav-order { padding: 11px 18px; border-radius: 999px; background: var(--gold); color: var(--ink) !important; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--white); }

.hero {
  position: relative;
  min-height: 900px;
  padding: 155px 0 100px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    radial-gradient(circle at 80% 20%, rgba(220,61,46,.58), transparent 28%),
    radial-gradient(circle at 12% 92%, rgba(242,182,50,.25), transparent 24%),
    linear-gradient(120deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0/42px 42px,
    linear-gradient(30deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0/42px 42px;
}
.hero-grid { position: relative; display: grid; grid-template-columns: .98fr 1.02fr; gap: 76px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.8vw, 7.45rem);
  line-height: .89;
  letter-spacing: -.058em;
  text-wrap: balance;
}
.hero h1 span { color: var(--gold); }
.hero-intro { max-width: 650px; margin: 30px 0; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.6vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-primary { background: var(--red-bright); color: var(--white); box-shadow: 0 14px 30px rgba(220,61,46,.27); }
.button-primary:hover { background: #ef4938; }
.button-secondary { border: 1px solid rgba(255,255,255,.28); color: var(--white); background: rgba(255,255,255,.04); }
.button-dark { background: var(--ink); color: var(--white); }
.hero-contact { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 34px; }
.hero-contact a { display: grid; }
.hero-contact span { color: rgba(255,255,255,.5); font-size: .73rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.hero-contact strong { font-size: 1.05rem; }

.hero-visual { position: relative; min-height: 630px; }
.hero-photo {
  position: absolute;
  inset: 0 0 0 70px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 48% 48% 32px 32px;
  box-shadow: 0 45px 90px rgba(0,0,0,.45);
}
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.3)); pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-mini-photo {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 22px;
  width: 210px;
  aspect-ratio: .86;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--ink);
  border-radius: 26px;
  box-shadow: 0 24px 55px rgba(0,0,0,.4);
  transform: rotate(-4deg);
}
.hero-mini-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  z-index: 4;
  top: 38px;
  left: 20px;
  display: grid;
  width: 122px;
  height: 122px;
  place-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 18px 35px rgba(0,0,0,.25);
}
.hero-badge b { font-family: Georgia, serif; font-size: 2rem; line-height: 1; }
.hero-badge span { max-width: 80px; margin-top: 4px; font-size: .67rem; font-weight: 900; line-height: 1.15; text-transform: uppercase; }
.hero-stamp { position: absolute; z-index: 4; right: -33px; bottom: 50px; padding: 14px 18px; border-left: 5px solid var(--gold); background: rgba(21,17,15,.9); font-size: .68rem; font-weight: 950; letter-spacing: .15em; line-height: 1.45; }

.quick-bar { position: relative; z-index: 5; margin-top: -36px; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border-radius: 24px; background: var(--cream); box-shadow: var(--shadow); }
.quick-grid a { display: flex; gap: 18px; align-items: center; padding: 28px 30px; border-right: 1px solid var(--line); }
.quick-grid a:last-child { border-right: 0; }
.quick-grid b { color: var(--red); font-size: .78rem; }
.quick-grid span { display: grid; color: var(--muted); font-size: .88rem; }
.quick-grid strong { color: var(--ink); font-size: 1rem; }

.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: end; margin-bottom: 54px; }
.section-heading h2, .lunchbox-copy h2, .delivery-copy h2, .order-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 5vw, 4.9rem);
  line-height: .95;
  letter-spacing: -.047em;
}
.section-heading > p { max-width: 530px; margin: 0; color: var(--muted); }

.menu-section { background: var(--paper); }
.featured-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.food-card { position: relative; min-height: 550px; overflow: hidden; border-radius: var(--radius); background: var(--ink); box-shadow: 0 15px 50px rgba(48,29,16,.13); }
.food-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.food-card:hover img { transform: scale(1.055); }
.food-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.14) 48%, rgba(0,0,0,.94) 100%); }
.food-card-overlay { position: absolute; z-index: 2; inset: auto 0 0; padding: 28px; color: var(--white); }
.food-card-overlay > span { color: var(--gold-light); font-size: .72rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.food-card-overlay h3 { margin: 8px 0 5px; font-family: Georgia, serif; font-size: 2rem; line-height: 1; }
.food-card-overlay p { min-height: 3em; margin: 0 0 20px; color: rgba(255,255,255,.68); }
.food-card-overlay > div { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.food-card-overlay strong { color: var(--gold); font-family: Georgia, serif; font-size: 2rem; }
.food-card-overlay a { padding: 9px 13px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .84rem; font-weight: 900; }

.price-menu { margin-top: 28px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); box-shadow: 0 22px 65px rgba(41,25,15,.08); }
.price-menu-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 26px; margin-bottom: 26px; }
.price-menu-head h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.04em; }
.image-open { border: 0; cursor: pointer; }
.price-menu-head .image-open { padding: 11px 16px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: .84rem; font-weight: 900; }
.price-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 36px; margin-bottom: 30px; }
.price-list > div { display: flex; gap: 20px; align-items: center; justify-content: space-between; padding: 19px 0; border-bottom: 1px solid var(--line); }
.price-list span { display: grid; }
.price-list b { font-size: 1.02rem; }
.price-list small { margin-top: 3px; color: var(--muted); }
.price-list strong { color: var(--red); font-family: Georgia, serif; font-size: 1.6rem; white-space: nowrap; }

.gallery-section { background: var(--ink); color: var(--white); }
.light-heading .eyebrow { color: var(--gold); }
.light-heading > p { color: rgba(255,255,255,.58); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 270px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 22px; background: var(--ink-soft); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.68)); }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.08); }
.gallery-item span { position: absolute; z-index: 2; left: 18px; bottom: 15px; color: var(--white); font-weight: 900; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.lunchbox-section { background: var(--cream); }
.lunchbox-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 74px; align-items: center; }
.lunchbox-visual { position: relative; }
.lunchbox-visual > img { width: 100%; min-height: 560px; object-fit: cover; border-radius: 36px 36px 36px 130px; box-shadow: var(--shadow); }
.lunchbox-price { position: absolute; right: -25px; bottom: 36px; display: grid; width: 172px; min-height: 172px; place-content: center; border: 9px solid var(--cream); border-radius: 50%; background: var(--red); color: var(--white); text-align: center; box-shadow: 0 18px 40px rgba(0,0,0,.24); }
.lunchbox-price span { color: var(--gold-light); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.lunchbox-price strong { font-family: Georgia, serif; font-size: 3rem; line-height: 1; }
.lunchbox-price small { color: rgba(255,255,255,.7); }
.lunchbox-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.lunchbox-copy ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; padding: 0; margin: 26px 0; list-style: none; }
.lunchbox-copy li { position: relative; padding-left: 28px; font-weight: 800; }
.lunchbox-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--red); }
.small-note { font-size: .88rem !important; }

.delivery-section { background: #e3c48b; }
.delivery-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.delivery-copy > p:not(.eyebrow) { color: #5f5148; font-size: 1.05rem; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 30px 0 22px; }
.contact-cards a { display: grid; padding: 19px 20px; border: 1px solid rgba(21,17,15,.16); border-radius: 18px; background: rgba(255,255,255,.46); }
.contact-cards span { color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-cards strong { margin-top: 3px; font-size: 1.15rem; }
.location-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.location-pills span { padding: 9px 14px; border-radius: 999px; background: var(--ink); color: var(--white); font-size: .84rem; font-weight: 800; }
.delivery-photo { position: relative; }
.delivery-photo img { width: 100%; max-height: 650px; object-fit: cover; border-radius: 38px 130px 38px 38px; box-shadow: var(--shadow); }
.delivery-label { position: absolute; left: -28px; bottom: 36px; display: grid; padding: 16px 20px; border-left: 6px solid var(--gold); background: var(--ink); color: var(--white); box-shadow: 0 18px 38px rgba(0,0,0,.2); }
.delivery-label b { letter-spacing: .12em; }
.delivery-label span { color: rgba(255,255,255,.62); font-size: .84rem; }

.order-section { background: var(--red); }
.order-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; padding: 58px; border-radius: 34px; background: var(--ink); color: var(--white); box-shadow: 0 35px 80px rgba(76,29,10,.3); }
.order-copy .eyebrow { color: var(--gold); }
.order-copy p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.order-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.order-form label { display: grid; gap: 8px; color: rgba(255,255,255,.72); font-size: .84rem; font-weight: 800; }
.order-form input, .order-form select, .order-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; outline: 0; background: rgba(255,255,255,.07); color: var(--white); padding: 14px 15px; }
.order-form select option { color: var(--ink); }
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(242,182,50,.14); }
.order-form textarea { resize: vertical; }
.form-full { grid-column: 1 / -1; }
.form-status { min-height: 1.4em; margin: 0; color: var(--gold); font-size: .85rem; }

.site-footer { padding: 66px 0 34px; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1.05fr; gap: 34px; }
.footer-brand { margin-bottom: 14px; }
.footer-grid p { color: rgba(255,255,255,.46); }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 7px; }
.footer-title { margin: 0 0 8px; color: var(--gold) !important; font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: .78rem; }
.footer-bottom p { margin: 0; }

.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: inline-flex; gap: 11px; align-items: center; min-height: 54px; padding: 12px 18px; border: 2px solid var(--ink); border-radius: 999px; background: var(--green); color: #082610; box-shadow: 0 12px 36px rgba(0,0,0,.24); font-weight: 900; }
.whatsapp-float b { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); }

.lightbox { width: min(1000px, calc(100% - 32px)); max-height: calc(100vh - 32px); padding: 0; border: 0; border-radius: 22px; background: #0b0908; box-shadow: 0 40px 100px rgba(0,0,0,.6); overflow: hidden; }
.lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: calc(100vh - 32px); object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; top: 12px; right: 12px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(0,0,0,.66); color: var(--white); font-size: 1.55rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .hero { min-height: auto; }
  .hero-grid, .lunchbox-grid, .delivery-grid, .order-panel { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-intro { margin-inline: auto; }
  .hero-actions, .hero-contact { justify-content: center; }
  .hero-visual { max-width: 660px; width: 100%; margin-inline: auto; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid a { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-grid a:last-child { border-bottom: 0; }
  .featured-menu-grid { grid-template-columns: 1fr 1fr; }
  .food-card:last-child { grid-column: 1 / -1; min-height: 500px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-wide { grid-column: span 2; }
  .lunchbox-visual { max-width: 720px; margin-inline: auto; }
  .delivery-photo { max-width: 720px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 82px 0; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 78px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: #1b1715; box-shadow: 0 24px 50px rgba(0,0,0,.34); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 8px; }
  .nav-order { text-align: center; }
  .hero { padding-top: 130px; }
  .hero h1 { font-size: clamp(3.6rem, 17vw, 6rem); }
  .hero-grid { gap: 48px; }
  .hero-visual { min-height: 520px; }
  .hero-photo { left: 24px; }
  .hero-mini-photo { width: 155px; }
  .hero-badge { top: 12px; left: 0; width: 96px; height: 96px; }
  .hero-badge b { font-size: 1.55rem; }
  .hero-stamp { right: -8px; bottom: 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .featured-menu-grid { grid-template-columns: 1fr; }
  .food-card, .food-card:last-child { grid-column: auto; min-height: 510px; }
  .price-menu { padding: 26px 20px; }
  .price-menu-head { flex-direction: column; }
  .price-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }
  .lunchbox-visual > img { min-height: 430px; border-radius: 28px 28px 28px 90px; }
  .lunchbox-price { right: -4px; bottom: 18px; width: 145px; min-height: 145px; }
  .lunchbox-copy ul { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .delivery-photo img { border-radius: 28px 88px 28px 28px; }
  .delivery-label { left: -6px; }
  .order-panel { padding: 34px 24px; }
  .order-form { grid-template-columns: 1fr; }
  .order-form > * { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 58px; height: 58px; padding: 0; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-visual { min-height: 440px; }
  .hero-photo { inset: 0 0 0 12px; }
  .hero-mini-photo { width: 128px; border-width: 5px; }
  .hero-stamp { display: none; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .gallery-wide, .gallery-tall { grid-column: auto; grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
