/* ----------------------------
   BASE / GLOBAL
----------------------------- */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open{ overflow:hidden; }
img{ max-width:100%; }
a{
  color:inherit;
  text-decoration:none;
}
a:hover{ text-decoration:none; }
button{
  font:inherit;
  cursor:pointer;
}
.skip{
  position:absolute;
  left:-9999px;
  top:auto;
}
.skip:focus{
  left:1rem;
  top:1rem;
  z-index:2000;
  padding:.7rem 1rem;
  border-radius:12px;
  background:#fff;
  color:#111;
}
.wrap{
  width:min(1200px, calc(100% - 3rem));
  margin:0 auto;
}

/* ----------------------------
   NAV
----------------------------- */
.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1000;
  pointer-events:none;
}
.nav{
  width:min(1240px, calc(100% - 1.5rem));
  margin:1rem auto 0;
  padding:.8rem 1rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(15,13,11,.52);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 50px rgba(0,0,0,.28);
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:1rem;
  pointer-events:auto;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}
.nav.scrolled{
  background:rgba(15,13,11,.74);
  border-color:rgba(255,255,255,.16);
}
.nav-left,
.nav-center,
.nav-right{
  display:flex;
  align-items:center;
}
.nav-center{ justify-content:center; }
.nav-right{ justify-content:flex-end; gap:.55rem; }
.brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  min-width:0;
}
.brand-logo{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:999px;
}
.brand-text{
  display:flex;
  flex-direction:column;
  gap:.05rem;
  line-height:1;
}
.brand-name{
  font-size:.92rem;
  font-weight:900;
  letter-spacing:.18em;
}
.brand-sub{
  font-size:.64rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(243,239,232,.72);
}
.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
}
.nav-links a{
  font-weight:650;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.78rem;
  color:rgba(243,239,232,.9);
  padding:.48rem .72rem;
  border-radius:999px;
  border:1px solid transparent;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.nav-links a:hover{
  background:rgba(210,169,52,.10);
  border-color:rgba(210,169,52,.22);
  transform:translateY(-1px);
}
.nav-social{
  display:flex;
  align-items:center;
  gap:.35rem;
}
.icon-btn{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.12);
  line-height:0;
  font-size:0;
  padding:0;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.icon-btn:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.2);
  transform:translateY(-1px);
}
.icon-btn img{
  width:18px;
  height:18px;
  display:block;
  flex:0 0 auto;
}
.nav-toggle{
  display:none;
  width:44px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.12);
  color:var(--text);
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:rgba(243,239,232,.9);
  margin:4px auto;
  border-radius:999px;
}

/* ----------------------------
   HERO
----------------------------- */
.hero{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  display:grid;
  place-items:start start;
  isolation:isolate;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1000px 650px at 10% 10%, rgba(210,169,52,.22), transparent 60%),
    url("/_assets/media/images/IMG_001B.webp");
  background-size:cover;
  background-position:right center;
  transform:scale(1.03);
  z-index:-3;
  filter:saturate(1.05) contrast(1.08) brightness(.80) sepia(.12);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.4));
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:radial-gradient(1200px 900px at 50% 35%, rgba(0,0,0,.25), rgba(0,0,0,.78));
}
.hero-content{
  width:min(1100px, calc(100% - 3rem));
  margin:0 auto;
  padding-top:6.3rem;
  padding-bottom:3rem;
  text-align:center;
  transform:translate(var(--hero-shift-x), var(--hero-shift-y));
}
.hero-head{
  display:inline-block;
  margin:0 auto;
  text-align:left;
  width:fit-content;
}
.hero-title{
  margin:0;
  font-size:clamp(2.6rem, 5.5vw, 4.8rem);
  letter-spacing:.05em;
  text-transform:uppercase;
  font-weight:900;
  line-height:.98;
  white-space:nowrap;
  text-shadow:0 18px 50px rgba(0,0,0,.55);
}
.hero-lede{
  margin-top:1rem;
  color:rgba(243,239,232,.82);
  font-size:1rem;
  line-height:1.4;
  font-weight:600;
  letter-spacing:.02em;
  width:100%;
  text-align:right;
}
.hero-info{
  margin:2.5rem 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  align-items:center;
  color:rgba(243,239,232,.78);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
  font-size:18px;
  justify-content:center;
}
.hero-info a{ color:rgba(210,169,52,.95); }
.hero-info a:hover{ opacity:.92; }
.hero-info .dot{ color:rgba(243,239,232,.45); }
.hero-wave{
  position:absolute;
  inset:auto 0 0 0;
  height:90px;
  background:
    radial-gradient(120px 60px at 10% 100%, rgba(15,13,11,1), transparent 70%),
    radial-gradient(160px 70px at 35% 100%, rgba(15,13,11,1), transparent 70%),
    radial-gradient(220px 80px at 60% 100%, rgba(15,13,11,1), transparent 70%),
    radial-gradient(260px 90px at 85% 100%, rgba(15,13,11,1), transparent 70%),
    linear-gradient(180deg, transparent, rgba(15,13,11,1));
}

/* ----------------------------
   UTIL / BUTTONS / CARDS
----------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.95rem 1.25rem;
  border-radius:999px;
  font-weight:750;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:.78rem;
  border:1px solid transparent;
  box-shadow:0 16px 45px rgba(0,0,0,.35);
}
.btn-primary{
  background:linear-gradient(135deg, var(--gold), var(--gold2));
  color:#1b130e;
  border-color:rgba(255,255,255,.20);
}
.btn-primary:hover{ filter:brightness(1.03); }
.eyebrow{
  margin:0 0 .65rem;
  color:rgba(210,169,52,.95);
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:.76rem;
  font-weight:800;
}
.card-surface,
.info-block{
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.18));
  box-shadow:var(--shadow);
}

/* ----------------------------
   SECTIONS
----------------------------- */
.section{
  position:relative;
  padding:5.5rem 0;
  content-visibility:auto;
  contain-intrinsic-size:1000px;
}
.section-screen{
  min-height:100vh;
  min-height:100svh;
  display:flex;
  align-items:flex-start;
}
.section-screen > .wrap,
.section-screen > .contact-overlay + .wrap,
.section-screen > .menu-bg + .wrap{
  width:100%;
}
.section-head{
  display:grid;
  gap:.6rem;
  margin-bottom:2.2rem;
}
.section-head h2{
  margin:0;
  font-size:clamp(2rem, 3.2vw, 2.6rem);
  letter-spacing:.08em;
  text-transform:uppercase;
}
.section-head p{
  margin:0;
  max-width:70ch;
  color:var(--muted);
  line-height:1.7;
}

/* ----------------------------
   ABOUT
----------------------------- */
.section-about{
  overflow:hidden;
  background:radial-gradient(1000px 650px at 70% 0%, rgba(210,169,52,.10), transparent 60%);
}
.section-about::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(15,13,11,.92), rgba(15,13,11,.82)),
    url("/_assets/media/images/IMG_4195.webp");
  background-size:cover;
  background-position:center 85%;
  background-repeat:no-repeat;
  opacity:.35;
  filter:blur(1px) saturate(.9) contrast(1.05);
  transform:scale(1.03);
}
.about-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:2rem;
  align-items:start;
}
.about-copy p{
  margin:0 0 1rem 0;
  color:rgba(243,239,232,.80);
  line-height:1.75;
}
.about-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin-top:1.2rem;
}
.pill{
  padding:.5rem .8rem;
  border-radius:999px;
  border:1px solid rgba(210,169,52,.25);
  background:rgba(210,169,52,.08);
  font-weight:650;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.7rem;
}
.about-media{
  --g:.75rem;
  --mainH:300px;
  --bottomH:160px;
  border-radius:20px;
  padding:.75rem;
  background:linear-gradient(135deg, rgba(207,211,214,.10), rgba(0,0,0,.22));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:var(--g);
}
.about-media-left{
  display:grid;
  grid-template-rows:var(--mainH) var(--bottomH);
  gap:var(--g);
  min-width:0;
}
.about-main{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  display:block;
  cursor:pointer;
}
.about-bottom{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:var(--g);
  height:var(--bottomH);
}
.about-media-right{
  display:grid;
  grid-template-rows:repeat(3, 1fr);
  gap:var(--g);
  min-width:0;
  height:calc(var(--mainH) + var(--g) + var(--bottomH));
}
.about-thumb{
  border:0;
  padding:0;
  background:none;
  cursor:pointer;
  border-radius:16px;
  height:100%;
  overflow:hidden;
}
.about-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  transition:transform .22s ease, filter .22s ease;
}
.about-thumb:hover img{
  transform:scale(1.02);
  filter:brightness(1.05);
}

/* ----------------------------
   MENU
----------------------------- */

.section-menu{
  overflow:hidden;
  background:
    radial-gradient(950px 600px at 20% 0%, rgba(107,63,42,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.25));
}
.section-menu::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(15,13,11,.92), rgba(15,13,11,.82)),
    url("/_assets/media/images/IMG_4195.webp");
  background-size:cover;
  background-position:center 85%;
  background-repeat:no-repeat;
  opacity:.35;
  filter:blur(1px) saturate(.9) contrast(1.05);
  transform:scale(1.03);
}
.menu-bg{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}
.menu-bg-grid{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  grid-template-rows:repeat(2, 1fr);
}
.menu-bg-tile{
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  filter:saturate(.95) contrast(1.05) brightness(.70);
  transform:scale(1.02);
}
.menu-bg-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 600px at 30% 10%, rgba(210,169,52,.14), transparent 60%),
    radial-gradient(900px 600px at 80% 40%, rgba(107,63,42,.22), transparent 62%),
    linear-gradient(180deg, rgba(15,13,11,.70), rgba(15,13,11,.88));
  backdrop-filter:blur(2px);
}
.menu-inner{
  position:relative;
  z-index:1;
}
.menu-layout{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.25rem;
  align-items:stretch;
}
.menu-cta,
.daily-specials{
  padding:1.5rem;
}
.menu-cta{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:1.5rem;
}
.menu-cta h3,
.daily-specials h3{
  margin:0 0 .75rem;
  font-size:clamp(1.45rem, 2.2vw, 1.9rem);
  line-height:1.15;
}
.menu-cta p,
.daily-specials p{
  margin:0;
  color:rgba(243,239,232,.78);
  line-height:1.7;
}
.menu-note{
  margin:1rem 0 0 0;
  color:rgba(243,239,232,.70);
  font-size:.92rem;
  line-height:1.6;
}
.menu-note a{
  color:rgba(210,169,52,.95);
  font-weight:700;
}
.daily-specials-head{
  margin-bottom:1rem;
}
.specials-table-wrap{
  overflow:auto;
}
.specials-table{
  width:100%;
  border-collapse:collapse;
}
.specials-table thead th{
  padding:0 0 .9rem;
  text-align:left;
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(210,169,52,.95);
  border-bottom:1px solid rgba(255,255,255,.14);
}
.specials-table tbody td{
  padding:1rem .3rem 1rem 0;
  vertical-align:top;
  border-bottom:1px dashed rgba(255,255,255,.12);
  color:rgba(243,239,232,.82);
  line-height:1.5;
}
.specials-table tbody tr:last-child td{
  border-bottom:0;
  padding-bottom:.2rem;
}
.specials-table tbody td:first-child{
  width:18%;
  min-width:92px;
  font-weight:800;
  color:rgba(243,239,232,.96);
}
.specials-table tbody tr.is-today td:first-child{
  color:rgba(210,169,52,.98);
}

/* ----------------------------
   CONTACT
----------------------------- */
.section-contact{
  --contact-card-h:154px;
  --contact-gap:1.25rem;
  overflow:hidden;
  background:url("/_assets/media/images/IMG_4021.webp") center center / cover no-repeat;
}
.contact-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1000px 650px at 80% 15%, rgba(210,169,52,.12), transparent 60%),
    linear-gradient(180deg, rgba(15,13,11,.78), rgba(15,13,11,.88));
}
.contact-inner{
  position:relative;
  z-index:1;
}
.contact-grid{
  display:grid;
  gap:1.25rem;
}
.contact-main-grid{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
  gap:1.25rem;
  align-items:stretch;
}
.contact-left-stack{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:1.25rem;
}
.info-block{
  padding:1.2rem 1.2rem;
}
.info-card{
  min-height:0;
  display:flex;
  flex-direction:column;
}
.contact-left-stack .info-card{
  min-height:var(--contact-card-h);
}
.info-block-hours{
  min-height:calc((var(--contact-card-h) * 2) + var(--contact-gap));
  height:100%;
}
.info-block h3{
  margin:0 0 .45rem 0;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.85rem;
  color:rgba(243,239,232,.85);
}
.info-block p{
  margin:0;
  color:rgba(243,239,232,.78);
  line-height:1.7;
}
.subtle-copy{
  margin-top:.5rem !important;
  color:rgba(243,239,232,.66) !important;
  font-size:.94rem;
}
.contact-link{
  color:rgba(210,169,52,.95);
  font-weight:800;
  font-size:1.25rem;
  letter-spacing:.04em;
}
.visit-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:1.25rem;
}
.visit-addr p{
  margin:0;
  color:rgba(243,239,232,.78);
  line-height:1.7;
}
.visit-maps{
  display:flex;
  flex-direction:row;
  gap:.65rem;
  text-align:right;
  align-items:flex-start;
  white-space:nowrap;
}
.map-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.12);
}
.map-link img{
  width:34px;
  height:34px;
  display:block;
  object-fit:contain;
}
.info-block-hours .hours{
  margin-top:.15rem;
}
.hours{
  display:grid;
  gap:.35rem;
}
.hr{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding-bottom:.35rem;
  border-bottom:1px dashed rgba(255,255,255,.14);
  color:rgba(243,239,232,.78);
}
.hr:last-child{ border-bottom:0; }
.hr span:first-child{
  font-weight:750;
  color:rgba(243,239,232,.86);
}
.hours-row.today{ font-weight:700; }
.hours-row.today.open-now{ color:#22c55e; }
.hours-row.today.closed-now{ color:#ef4444; }
.map-embed{
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  box-shadow:var(--shadow);
}
.map-embed-wide{
  width:100%;
  min-height:380px;
}
.map-embed iframe{
  width:100%;
  height:100%;
  min-height:380px;
  border:0;
  filter:saturate(0.95) contrast(1.05);
}

/* ----------------------------
   FOOTER / LIGHTBOX
----------------------------- */
.footer{
  padding:1.5rem 0 2rem;
  background:linear-gradient(180deg, rgba(15,13,11,1), rgba(11,10,8,1));
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
}
.footer p{
  margin:0;
  color:rgba(243,239,232,.72);
  line-height:1.6;
}
.footer a{
  color:rgba(210,169,52,.95);
}
.lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
.lightbox.is-open{ display:block; }
.lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(6px);
}
.lightbox-dialog{
  position:relative;
  height:100%;
  width:100%;
  display:grid;
  place-items:center;
  padding:1.5rem;
}
.lightbox-content{
  position:relative;
  width:min(1100px, 92vw);
  max-height:86vh;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 30px 90px rgba(0,0,0,.65);
  background:rgba(0,0,0,.35);
}
.lightbox-img{
  width:100%;
  height:100%;
  max-height:86vh;
  object-fit:contain;
  display:block;
  background:rgba(0,0,0,.25);
}
.lightbox-close{
  position:absolute;
  top:10px;
  right:10px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.35);
  color:rgba(243,239,232,.95);
  display:grid;
  place-items:center;
  font-size:22px;
  line-height:1;
}
.lightbox-close:hover{
  background:rgba(210,169,52,.10);
  border-color:rgba(210,169,52,.28);
}
