:root{
  --bg: #13150f;
  --bg-alt: #181b13;
  --surface: #1d2117;
  --border: #2b301f;
  --text: #f2ecdd;
  --text-muted: #b6ae9a;
  --text-faint: #837c69;
  --accent: #c9a227;
  --accent-2: #7a2f2c;
  --radius-lg: 4px;
  --radius-sm: 4px;
  --ease: cubic-bezier(.16,.8,.24,1);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, Helvetica, Arial, sans-serif;
}
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } *{ animation-duration:.001ms !important; transition-duration:.001ms !important; } }
body{ margin:0; background:var(--bg); color:var(--text); font-family:var(--font-sans); line-height:1.6; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,p{ margin:0; }
.container{ width:100%; max-width:1100px; margin:0 auto; padding:0 clamp(20px,5vw,40px); }

.eyebrow{ display:inline-flex; align-items:center; gap:10px; font-size:12.5px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--accent); margin-bottom:18px; }
h1{ font-size:clamp(38px,6vw,66px); font-weight:600; letter-spacing:.01em; line-height:1.08; }
h2{ font-size:clamp(26px,3.6vw,38px); font-weight:600; letter-spacing:.005em; }
h3{ font-size:19px; font-weight:600; letter-spacing:.01em; }
.text-lead{ font-size:clamp(16px,1.8vw,18.5px); color:var(--text-muted); line-height:1.75; }

.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:15px 32px; border-radius:2px; font-weight:600; font-size:13.5px; letter-spacing:.06em; text-transform:uppercase; border:1.5px solid transparent; cursor:pointer; transition:transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease); }
.btn-primary{ background:var(--accent); color:#181b13; }
.btn-primary:hover{ transform:translateY(-2px); background:#dab547; }
.btn-ghost{ background:transparent; border-color:var(--border); color:var(--text); }
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }

.site-header{ position:sticky; top:0; z-index:50; background:rgba(19,21,15,.9); backdrop-filter:blur(10px); border-bottom:1px solid transparent; padding:22px 0; transition:border-color .3s var(--ease); }
.site-header.scrolled{ border-bottom-color:var(--border); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.logo{ font-weight:600; font-size:19px; letter-spacing:.08em; text-transform:uppercase; }
.logo span{ color:var(--accent); }
.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links a{ font-size:13.5px; font-weight:500; letter-spacing:.04em; text-transform:uppercase; color:var(--text-muted); transition:color .25s var(--ease); }
.nav-links a:hover{ color:var(--accent); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; background:none; border:1px solid var(--border); border-radius:2px; width:40px; height:40px; align-items:center; justify-content:center; cursor:pointer; color:var(--text); }
.nav-toggle svg{ width:18px; height:18px; }

.hero{ padding:150px 0 130px; text-align:center; position:relative; overflow:hidden; }
.hero-bg-photo{ position:absolute; inset:0; z-index:0; }
.hero-bg-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-bg-photo::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(13,15,10,.55), rgba(13,15,10,.88) 70%, var(--bg) 100%); }
.hero > .container{ position:relative; z-index:1; }
.ph-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-actions{ display:flex; gap:14px; justify-content:center; margin-top:34px; flex-wrap:wrap; }
.hero-divider{ width:60px; height:2px; background:var(--accent); margin:36px auto 0; }

.ph-photo{ position:relative; background:linear-gradient(160deg, rgba(201,162,39,.14), rgba(122,47,44,.16)); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.ph-photo svg{ width:26%; height:26%; color:var(--accent); opacity:.55; }
.ph-photo .ph-label{ position:absolute; bottom:10px; left:12px; font-size:10.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:var(--text-faint); background:rgba(19,21,15,.8); padding:4px 10px; }

.section{ padding:96px 0; }
.section-alt{ background:var(--bg-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section-header{ max-width:620px; margin:0 auto 52px; text-align:center; }

.grid{ display:grid; gap:22px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }

.dish-card{ display:flex; flex-direction:column; }
.dish-card .ph-photo{ aspect-ratio:4/3; margin-bottom:16px; }
.dish-row{ display:flex; justify-content:space-between; align-items:baseline; gap:10px; }
.dish-row strong{ color:var(--accent); font-weight:600; }
.dish-card p{ color:var(--text-muted); font-size:14px; margin-top:6px; }

.menu-group{ margin-bottom:48px; }
.menu-group h3{ color:var(--accent); text-transform:uppercase; letter-spacing:.1em; font-size:14px; margin-bottom:20px; }
.menu-item{ display:flex; justify-content:space-between; gap:16px; padding:14px 0; border-bottom:1px dashed var(--border); }
.menu-item-name{ font-weight:600; }
.menu-item-desc{ color:var(--text-faint); font-size:13.5px; margin-top:3px; }
.menu-item-price{ color:var(--accent); font-weight:600; white-space:nowrap; }

.info-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; text-align:center; }
.info-item strong{ display:block; font-size:15px; margin-bottom:6px; letter-spacing:.03em; }
.info-item span{ font-size:13.5px; color:var(--text-faint); }

.cta-banner{ padding:64px; background:var(--surface); border:1px solid var(--border); text-align:center; }
.cta-banner h2{ margin-bottom:14px; }
.cta-banner p{ color:var(--text-muted); margin-bottom:28px; }

.site-footer{ border-top:1px solid var(--border); padding:40px 0; }
.footer-row{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; font-size:13px; color:var(--text-faint); }
.demo-badge{ display:inline-flex; align-items:center; gap:6px; font-size:11.5px; font-weight:600; letter-spacing:.03em; color:var(--accent); background:var(--surface); border:1px solid var(--border); padding:5px 12px; }

.reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); transition-delay:var(--delay,0s); }
.reveal.is-visible{ opacity:1; transform:none; }

@media (max-width:980px){
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .info-row{ grid-template-columns:1fr; }
}
@media (max-width:720px){
  .nav-links{ position:fixed; top:0; right:0; height:100vh; width:min(300px,80vw); background:var(--bg-alt); border-left:1px solid var(--border); flex-direction:column; align-items:flex-start; justify-content:center; gap:26px; padding:40px; transform:translateX(100%); transition:transform .4s var(--ease); z-index:99; }
  .nav-links.open{ transform:translateX(0); }
  .nav-toggle{ display:flex; }
  .nav-cta .btn-ghost{ display:none; }
  .grid-3,.grid-2{ grid-template-columns:1fr; }
  .cta-banner{ padding:40px 22px; }
}
