:root{
  --bg:#050814;
  --bg-alt:#0b1020;
  --card:#0f172a;
  --accent:#d4af37;
  --accent-soft:rgba(212,175,55,0.15);
  --text:#f9fafb;
  --muted:#9ca3af;
  --border:rgba(148,163,184,0.35);
  --maxw:1120px;
  --radius:14px;
  --shadow:0 18px 45px rgba(15,23,42,0.9);
  --font-sans:-apple-system,BlinkMacSystemFont,'Inter','SF Pro Text','Segoe UI',system-ui,sans-serif;
}
*,
*::before,
*::after{box-sizing:border-box;margin:0;padding:0;}
html,body{height:100%;}
body{
  font-family:var(--font-sans);
  background:radial-gradient(circle at top, #111827 0, #020617 55%, #000 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
main{position:relative;z-index:1;}
.container{max-width:var(--maxw);margin:0 auto;padding:0 20px;}

/* HEADER */
header.site-header{
  position:sticky;top:0;z-index:40;
  backdrop-filter:blur(16px);
  background:linear-gradient(90deg,rgba(15,23,42,0.96),rgba(15,23,42,0.85),rgba(15,23,42,0.96));
  border-bottom:1px solid rgba(148,163,184,0.3);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 20px;
}
.branding{display:flex;align-items:center;gap:12px;}
.branding img.logo{
  height:42px;width:auto;border-radius:9px;
  box-shadow:0 10px 25px rgba(0,0,0,0.7);
}
.brand-text{display:flex;flex-direction:column;}
.brand-title{font-weight:700;font-size:18px;letter-spacing:0.03em;}
.brand-tagline{font-size:12px;color:var(--muted);}
.nav-links{display:flex;align-items:center;gap:18px;font-size:14px;}
.nav-links a{
  padding:6px 10px;border-radius:999px;
  transition:background 0.16s ease,color 0.16s ease,transform 0.16s ease;
  color:var(--muted);
}
.nav-links a:hover{
  background:rgba(15,23,42,0.8);
  color:var(--text);
  transform:translateY(-1px);
}
.nav-links .cta{
  background:var(--accent);
  color:#020617;
  font-weight:600;
  box-shadow:0 8px 18px rgba(212,175,55,0.35);
}
.nav-links .cta:hover{
  background:#f5d46f;
  box-shadow:0 10px 22px rgba(212,175,55,0.45);
}
.nav-toggle{display:none;cursor:pointer;font-size:24px;color:var(--text);}

/* HERO */
.hero{
  margin:0 auto;
  padding:26px 0 40px;
}
.hero-inner{
  display:grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1fr);
  gap:26px;
  align-items:stretch;
}
.hero-copy{
  background:radial-gradient(circle at top left,rgba(212,175,55,0.08),rgba(15,23,42,0.98));
  border-radius:24px;
  padding:24px 22px 22px;
  border:1px solid rgba(148,163,184,0.45);
  box-shadow:var(--shadow);
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 10px;
  border-radius:999px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.12em;
  background:rgba(15,23,42,0.9);
  border:1px solid rgba(148,163,184,0.5);
  color:var(--muted);
}
.hero-eyebrow span.dot{
  width:6px;height:6px;border-radius:999px;
  background:radial-gradient(circle at 30% 20%,#fef9c3,#facc15,#b45309);
  box-shadow:0 0 0 3px rgba(250,204,21,0.18);
}
.hero h1{
  margin-top:14px;
  font-size:34px;
  line-height:1.05;
  letter-spacing:0.02em;
}
.hero-sub{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
}
.hero-cta-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-top:18px;
}
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 18px;
  border-radius:999px;
  background:var(--accent);
  color:#020617;
  font-weight:650;
  font-size:14px;
  border:none;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(212,175,55,0.4);
  transition:transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary:hover{
  transform:translateY(-1px);
  background:#f6d981;
  box-shadow:0 16px 40px rgba(212,175,55,0.6);
}
.btn-ghost{
  display:inline-flex;
  align-items:center;
  padding:9px 14px;
  border-radius:999px;
  border:1px dashed rgba(148,163,184,0.6);
  font-size:13px;
  color:var(--muted);
  gap:8px;
}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:22px;
  font-size:13px;
  color:var(--muted);
}
.hero-meta strong{color:var(--text);font-weight:600;}
.hero-badge{
  margin-top:18px;
  padding:10px 12px;
  border-radius:14px;
  background:linear-gradient(135deg,rgba(15,23,42,0.9),rgba(24,33,56,0.96));
  border:1px solid rgba(148,163,184,0.6);
  font-size:13px;
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.hero-badge-icon{font-size:18px;}
.hero-badge span.label{
  color:var(--accent);
  font-weight:600;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.12em;
}
.hero-badge p{
  margin-top:2px;
  color:var(--muted);
}

/* HERO MEDIA */
.hero-media{position:relative;}
.hero-card{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(148,163,184,0.55);
  background:#020617;
}
.hero-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  max-height:340px;
}
.hero-tag{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:9px 11px;
  border-radius:16px;
  background:rgba(15,23,42,0.85);
  backdrop-filter:blur(10px);
  border:1px solid rgba(148,163,184,0.7);
  font-size:11px;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.hero-tag strong{font-size:12px;}
.hero-tag span{color:var(--muted);}
.hero-floating-card{
  position:absolute;
  top:12px;
  right:-4px;
  padding:9px 11px;
  border-radius:16px;
  background:rgba(15,23,42,0.92);
  border:1px solid rgba(148,163,184,0.7);
  backdrop-filter:blur(12px);
  font-size:11px;
  box-shadow:0 14px 30px rgba(15,23,42,0.9);
}
.hero-floating-card strong{color:var(--accent);}

/* SECTIONS */
.section{
  margin:8px auto 0;
  padding:28px 0;
}
.section-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.section-kicker{
  font-size:11px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--accent);
}
.section-title{
  font-size:22px;
  letter-spacing:0.03em;
}
.section-sub{
  font-size:13px;
  color:var(--muted);
  max-width:480px;
}

.card{
  background:linear-gradient(145deg,rgba(15,23,42,0.96),#020617);
  border-radius:var(--radius);
  border:1px solid rgba(148,163,184,0.6);
  padding:18px 18px 16px;
  box-shadow:0 16px 38px rgba(15,23,42,0.95);
}

/* ABOUT */
.about-layout{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,0.85fr);
  gap:22px;
}
.about-body{
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
}
.about-body p + p{margin-top:10px;}
.about-tagline{
  margin-top:14px;
  font-weight:650;
  color:var(--accent);
  font-size:15px;
}
.about-sidebar{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.badge-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:12px;
}
.badge-pill{
  padding:7px 10px;
  border-radius:999px;
  background:rgba(15,23,42,0.95);
  border:1px solid rgba(148,163,184,0.6);
  color:var(--muted);
}
.badge-pill span{
  color:var(--accent);
  font-weight:600;
}
.food-highlight{
  margin-top:16px;
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
}
.btn-menu{
  margin-top:16px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:rgba(212,175,55,0.08);
  font-size:13px;
  font-weight:600;
}
.btn-menu:hover{
  background:rgba(212,175,55,0.16);
}

/* GALLERY GRID */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}
.gallery-grid img{
  border-radius:12px;
  height:160px;
  object-fit:cover;
  border:1px solid rgba(15,23,42,0.9);
}
.gallery-grid img.large{
  grid-column:span 2;
  height:210px;
}
.gallery-grid img.tall{
  height:230px;
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,1.1fr);
  gap:22px;
}
.contact-card p{
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
}
.contact-list{
  margin-top:12px;
  font-size:13px;
  color:var(--muted);
}
.contact-list div + div{margin-top:6px;}
.contact-list span.label{
  color:var(--accent);
  font-weight:600;
}
.form-card{
  background:linear-gradient(145deg,#020617,rgba(15,23,42,0.98));
}
form label{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.13em;
  margin-bottom:4px;
  color:var(--muted);
}
form input, form textarea{
  width:100%;
  padding:8px 10px;
  border-radius:9px;
  border:1px solid rgba(148,163,184,0.6);
  background:rgba(15,23,42,0.7);
  color:var(--text);
  font-size:13px;
  margin-bottom:12px;
}
form input:focus, form textarea:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 1px rgba(212,175,55,0.5);
}
form textarea{min-height:92px;resize:vertical;}
.map-wrapper{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(148,163,184,0.6);
  box-shadow:0 16px 40px rgba(15,23,42,0.95);
}
.map-wrapper iframe{
  width:100%;height:100%;min-height:280px;border:0;
}

/* FOOTER */
.site-footer{
  background:radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
  border-top:1px solid rgba(148,163,184,0.5);
  margin-top:30px;
}
.footer-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:16px 20px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  font-size:12px;
  color:var(--muted);
}
.footer-hours{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.footer-contact{
  text-align:right;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.footer-contact a{
  color:var(--accent);
}
.social-links{
  display:flex;
  gap:10px;
  justify-content:flex-end;
}
.social-links a{
  padding:4px 7px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.6);
  font-size:11px;
}

/* LOADER */
#loader{
  position:fixed;
  inset:0;
  background:radial-gradient(circle at top,#111827 0,#020617 55%,#000 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
  z-index:999;
  transition:opacity 0.45s ease,visibility 0.45s ease;
}
#loader.hidden{
  opacity:0;
  visibility:hidden;
}
.loader-pint{
  width:40px;
  height:60px;
  border:2px solid #e5e7eb;
  border-radius:10px 10px 6px 6px;
  position:relative;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.8);
}
.loader-pint::before{
  content:"";
  position:absolute;
  inset:75% 0 0 0;
  background:linear-gradient(180deg,#facc15,#eab308,#b45309);
  animation:fillPint 1.4s ease-in-out infinite alternate;
}
.loader-pint::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:8px;
  background:rgba(255,255,255,0.9);
}
.loader-text{
  font-size:12px;
  color:var(--muted);
  letter-spacing:0.18em;
  text-transform:uppercase;
}

@keyframes fillPint{
  from{inset:75% 0 0 0;}
  to{inset:10% 0 0 0;}
}

/* RESPONSIVE */
@media(max-width:920px){
  .header-inner{padding:8px 14px;}
  .nav-links{display:none;}
  .nav-toggle{display:block;}
  .nav-links.open{
    position:absolute;
    inset:48px 12px auto 12px;
    background:rgba(15,23,42,0.98);
    border-radius:14px;
    border:1px solid rgba(148,163,184,0.6);
    padding:10px 10px;
    display:flex;
    flex-direction:column;
    gap:6px;
  }
  .hero-inner{
    grid-template-columns:minmax(0,1fr);
  }
  .hero-card img{max-height:260px;}
  .about-layout,
  .contact-grid{
    grid-template-columns:minmax(0,1fr);
  }
  .gallery-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
  }
  .footer-contact{text-align:left;}
  .social-links{justify-content:flex-start;}
}
