
:root {
  --sand: #efe2ce;
  --paper: #f8f4ed;
  --clay: #af3c13;
  --ink: #27231f;
  --muted: #756c63;
  --line: rgba(39, 35, 31, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.hero { position: relative; min-height: 92svh; overflow: hidden; padding: 24px; background: radial-gradient(circle at 78% 22%, rgba(175,60,19,.18), transparent 34%), linear-gradient(145deg, #f4e9d8 0%, #ead7bd 100%); }
.topbar { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.brand, .footer-brand { font-family: "Gilda Display", serif; font-size: 28px; letter-spacing: .26em; }
.nav-link { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding-top: 18vh; }
.eyebrow { margin: 0 0 18px; color: var(--clay); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: "Gilda Display", serif; font-weight: 400; line-height: .96; }
h1 { max-width: 820px; font-size: clamp(56px, 10vw, 122px); }
.hero-text { max-width: 480px; margin: 28px 0 32px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.primary-button { display: inline-flex; padding: 15px 22px; border-radius: 999px; color: #fff; background: var(--clay); font-size: 14px; font-weight: 600; }
.hero-mark { position: absolute; right: -10px; bottom: -40px; color: rgba(175,60,19,.08); font-family: "Gilda Display", serif; font-size: clamp(140px, 28vw, 390px); letter-spacing: .08em; white-space: nowrap; }
main { padding: 96px 22px; }
.intro, .menu-section { width: min(1180px, 100%); margin: 0 auto; }
.intro { padding-bottom: 52px; }
.intro h2, .section-heading h2 { font-size: clamp(42px, 7vw, 78px); }
.intro > p:last-child { max-width: 520px; color: var(--muted); line-height: 1.7; }
.category-strip { position: sticky; z-index: 20; top: 0; display: flex; gap: 10px; width: min(1180px, 100%); margin: 0 auto 92px; padding: 14px 0; overflow-x: auto; background: rgba(248,244,237,.92); backdrop-filter: blur(12px); }
.category-strip a { flex: 0 0 auto; padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; }
.menu-section { padding: 28px 0 96px; scroll-margin-top: 80px; }
.section-heading { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 22px; padding-top: 28px; }
.dish-card { min-width: 0; }
.image-button { width: 100%; padding: 0; border: 0; border-radius: 20px; overflow: hidden; cursor: zoom-in; background: var(--sand); }
.dish-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease; }
.image-button:hover .dish-image { transform: scale(1.025); }
.dish-copy { padding: 15px 4px 0; }
.dish-copy h3 { margin: 0; font-family: "Gilda Display", serif; font-size: 25px; font-weight: 400; }
footer { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 54px 24px 24px; color: #f8f4ed; background: var(--ink); }
footer p { margin: 8px 0; }
.copyright { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.55); font-size: 12px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.lightbox { width: min(94vw, 1100px); padding: 0; border: 0; border-radius: 18px; overflow: hidden; color: #fff; background: #171513; }
.lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; background: #111; }
.lightbox p { margin: 0; padding: 18px 22px 22px; font-family: "Gilda Display", serif; font-size: 24px; }
.close-lightbox { position: absolute; top: 10px; right: 12px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: #fff; background: rgba(0,0,0,.5); font-size: 28px; cursor: pointer; }
@media (max-width: 720px) {
  .hero { min-height: 88svh; padding: 20px; }
  .hero-content { padding-top: 18vh; }
  h1 { font-size: clamp(52px, 17vw, 78px); }
  main { padding: 72px 16px; }
  .category-strip { margin-bottom: 64px; }
  .menu-grid { grid-template-columns: 1fr; gap: 36px; }
}
