:root{
  --bg:#071820;
  --ink:#0b1f2a;
  --paper:#fff7ee;
  --sand:#f3e3cf;
  --salsa:#e23d28;
  --lime:#7bdc65;
  --teal:#1ea7a1;
  --char:#0b0f12;
  --muted:#5b6b75;
  --card:#ffffff;
  --shadow: 0 12px 30px rgba(0,0,0,.18);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--char);
  background: linear-gradient(180deg, var(--ink) 0%, #0a1318 22%, #091118 100%);
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:18px; top:18px; width:auto; height:auto; padding:10px 12px; background:#fff; border-radius:10px; z-index:1000}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7, 24, 32, .72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex; align-items:center; gap:14px;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 260px}
.logo{
  width:44px; height:44px; border-radius:14px; object-fit:cover;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  background:#fff;
}
.logo.small{width:38px; height:38px; border-radius:12px}
.brand-name{
  font-weight:800;
  letter-spacing:.2px;
  color:#fff;
}
.brand-sub{font-size:12px; color: rgba(255,255,255,.72)}

.nav{display:flex; gap:16px; margin-left:auto; margin-right:12px}
.nav a{
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  color: rgba(255,255,255,.86);
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{background: rgba(255,255,255,.08)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
  border:1px solid transparent;
  gap:10px;
  transition: transform .08s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn-primary{background: var(--salsa); color:#fff}
.btn-primary:hover{opacity:.95}
.btn-secondary{background: var(--teal); color:#001316}
.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,.22);
  color:#fff;
}
.btn-ghost:hover{background: rgba(255,255,255,.08)}

.header-cta{display:flex; gap:10px; align-items:center}
.mobile-toggle{
  display:none;
  margin-left:auto;
  width:46px; height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.mobile-toggle span{
  display:block; height:2px; width:20px; background:#fff; margin:5px auto; border-radius:2px;
}

.mobile-nav{
  padding:12px 18px 18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:grid;
  gap:10px;
}
.mobile-nav a{
  text-decoration:none;
  color:#fff;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  padding:12px 12px;
  border-radius:14px;
  font-weight:700;
}

.hero{
  position:relative;
  color:#fff;
  padding:44px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:stretch;
}
.kicker{
  margin:0 0 10px;
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
  font-size:12px;
  letter-spacing:.3px;
}
.hero h1{
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height:1.02;
  margin: 6px 0 10px;
}
.lead{
  margin:0 0 18px;
  font-size: 16px;
  color: rgba(255,255,255,.86);
  max-width: 48ch;
}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px}
.hero-meta{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.meta-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:12px 12px;
}
.meta-label{font-size:11px; color: rgba(255,255,255,.72); font-weight:700; text-transform:uppercase; letter-spacing:.4px}
.meta-value{font-size:13px; margin-top:4px; color:#fff; font-weight:700}
.meta-value.link{text-decoration:underline; text-underline-offset:3px}

.hero-media{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.hero-photo{
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.hero-photo img{width:100%; height: 360px; object-fit:cover; display:block}

.hero-badges{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.badge{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:12px 12px;
}
.badge-title{font-weight:800; font-size:13px}
.badge-desc{font-size:12px; margin-top:6px; color: rgba(255,255,255,.78)}

.hero-wave{
  position:absolute; left:0; right:0; bottom:-1px; height:60px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,247,238,.14) 100%);
  clip-path: polygon(0 40%, 12% 55%, 25% 40%, 40% 62%, 55% 42%, 70% 62%, 85% 45%, 100% 58%, 100% 100%, 0 100%);
}

.section{
  padding:56px 0;
  background: var(--paper);
}
.section.alt{background: #f9efe3}
.section-head h2{
  margin:0 0 6px;
  font-size: 30px;
  letter-spacing:.2px;
}
.section-head p{
  margin:0;
  color: var(--muted);
  font-weight:600;
}
.section-head{margin-bottom:18px}

.card{
  background: var(--card);
  border-radius: var(--radius2);
  box-shadow: 0 10px 24px rgba(8, 17, 24, .10);
  border:1px solid rgba(11, 31, 42, .08);
  padding:18px;
}
.card.hidden{display:none}

.order-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.order-card h3{margin:0 0 8px}
.order-card p{margin:0 0 14px; color: var(--muted); font-weight:600}
.small{font-size:12px}
.hint{color: var(--muted)}

.menu-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.menu-cat h3{margin:0 0 12px}
.menu-item{
  display:flex; justify-content:space-between; gap:14px;
  padding:10px 0;
  border-top:1px dashed rgba(11,31,42,.14);
}
.menu-item:first-of-type{border-top:none; padding-top:0}
.menu-item-name{font-weight:800}
.menu-item-desc{font-size:12px; color: var(--muted); margin-top:4px; font-weight:600}
.menu-item-price{font-weight:800; color: var(--salsa)}

.menu-note{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
.menu-note img{width:100%; border-radius:18px; border:1px solid rgba(11,31,42,.10)}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.gallery a{
  display:block;
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(8, 17, 24, .10);
  border:1px solid rgba(11,31,42,.08);
}
.gallery img{width:100%; height:100%; object-fit:cover; display:block}
.g1{grid-column: span 7; aspect-ratio: 16/10}
.g2{grid-column: span 5; aspect-ratio: 16/10}
.g3{grid-column: span 5; aspect-ratio: 16/10}
.g4{grid-column: span 7; aspect-ratio: 16/10}

.location-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:14px;
  align-items:stretch;
}
.hours{margin:14px 0}
.hour-row{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 0;
  border-top:1px dashed rgba(11,31,42,.14);
  font-weight:700;
}
.hour-row:first-child{border-top:none; padding-top:0}
.map-card{padding:0; overflow:hidden}
.map-card iframe{width:100%; height:100%; min-height:320px; border:0}

.about-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.checklist{margin:0; padding-left:18px}
.checklist li{margin:10px 0; font-weight:700; color: var(--muted)}
.link{text-decoration:underline; text-underline-offset:3px}

.footer{
  background: #06131a;
  color:#fff;
  padding:22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:14px}
.footer-brand{display:flex; align-items:center; gap:12px}
.footer-right{display:flex; gap:14px; align-items:center}

code{
  background: rgba(11,31,42,.06);
  padding:2px 6px;
  border-radius:8px;
  border:1px solid rgba(11,31,42,.08);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; }
  .hero-photo img{height: 320px}
  .hero-meta{grid-template-columns:1fr; }
  .hero-badges{grid-template-columns:1fr; }
  .nav{display:none}
  .mobile-toggle{display:inline-block}
  .header-cta{display:none}
  .order-grid{grid-template-columns:1fr}
  .menu-grid{grid-template-columns:1fr}
  .menu-note{grid-template-columns:1fr}
  .location-grid{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns: 1fr}
  .g1,.g2,.g3,.g4{grid-column: span 12; aspect-ratio: 16/10}
}

