
:root{
  --bg:#0f0f10;
  --bg2:#111214;
  --panel: rgba(14,14,16,.62);
  --panel2: rgba(12,12,14,.78);
  --text:#f4f1ea;
  --muted: rgba(244,241,234,.72);
  --line: rgba(244,241,234,.12);
  --burg:#5a0f1a;
  --burg2:#6b0f1a;
  --gold:#c8a96a;
  --gold2:#e1c98b;
  --shadow: 0 24px 70px rgba(0,0,0,.62);
  --radius: 20px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(90,15,26,.22), transparent 58%),
    radial-gradient(900px 520px at 85% 0%, rgba(200,169,106,.10), transparent 58%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  color: var(--text);
  overflow-x: hidden;
}

a{color:inherit}
img{max-width:100%; display:block}

.container{width:min(1120px, 92vw); margin:0 auto;}
.section{padding: 72px 0;}
.section.tight{padding: 44px 0;}
.section-header{display:flex; align-items:baseline; justify-content:space-between; gap:14px; flex-wrap:wrap; margin-bottom: 18px;}
.section-header h2{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing:.05em;
  font-size: clamp(22px, 3vw, 34px);
}
.section-header p{margin:0; color: var(--muted); max-width: 66ch; line-height:1.7}

.kicker{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(200,169,106,.92);
  font-weight: 900;
}

/* Top strip */
.topbar{
  position:sticky; top:0; z-index:1100;
  background: rgba(10,10,12,.74);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar .inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(244,241,234,.70);
  gap: 12px;
  flex-wrap: wrap;
}
.badge{display:inline-flex; align-items:center; gap:10px;}
.dot{
  width:7px; height:7px; border-radius:999px;
  background: linear-gradient(90deg, var(--burg2), var(--gold));
  box-shadow: 0 0 18px rgba(90,15,26,.35);
}

/* Nav */
.nav-shell{ position:sticky; top:44px; z-index:1050; padding: 12px 0 0; }
.navbar{
  border-radius: 999px;
  border: 1px solid rgba(244,241,234,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 38%), rgba(14,14,16,.62);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.07);
  overflow:hidden;
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; gap: 14px; padding: 10px 14px; }

.brand{ display:flex; align-items:center; gap: 12px; text-decoration:none; min-width:0; }
.wordmark{ line-height:1; }
.wordmark .top{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing:.26em;
  font-size: 16px;
}
.wordmark .sub{
  margin-top:6px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing:.04em;
  color: rgba(200,169,106,.95);
}

/* Links */
.nav-links{ display:flex; align-items:center; gap: 6px; }
.nav-link{
  position: relative;
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(244,241,234,.86);
  border:1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
  opacity:.9;
}
.nav-link:hover{
  opacity:1;
  background: rgba(0,0,0,.22);
  border-color: rgba(244,241,234,.10);
  transform: translateY(-1px);
}
.nav-link.active{
  opacity:1;
  color: rgba(225,201,139,.98);
}
.nav-link.active::after{
  content:"";
  position:absolute;
  left:14px; right:14px;
  bottom:6px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(200,169,106,.0), rgba(200,169,106,.95), rgba(200,169,106,.0));
  animation: underlineGlow 1.15s ease-out both;
}
@keyframes underlineGlow{
  from{ transform: scaleX(.2); opacity:.15 }
  to{ transform: scaleX(1); opacity:1 }
}

/* Buttons (luxury, not 2002) */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 950;
  letter-spacing:.12em;
  text-transform: uppercase;
  font-size: 12px;
  cursor:pointer;
  border: 1px solid rgba(200,169,106,.55);
  background: transparent;
  color: rgba(225,201,139,.96);
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(200,169,106,.08);
  box-shadow: 0 16px 40px rgba(200,169,106,.10);
  border-color: rgba(225,201,139,.72);
}
.btn:active{ transform: translateY(0px); }

.btn.solid{
  border-color: rgba(90,15,26,.25);
  background: linear-gradient(90deg, rgba(90,15,26,.92), rgba(107,15,26,.92));
  color: rgba(244,241,234,.95);
  box-shadow: 0 18px 50px rgba(90,15,26,.22);
}
.btn.solid:hover{ background: linear-gradient(90deg, rgba(90,15,26,.98), rgba(107,15,26,.98)); border-color: rgba(244,241,234,.10); }

.menu-btn{
  display:none;
  width:46px; height:46px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(244,241,234,.14);
  align-items:center; justify-content:center;
  /* icon container */
  padding: 0;
}

/* SVG hamburger (consistent across browsers) */
.menu-btn svg.hamburger{ width:22px; height:22px; display:block; }
.menu-btn svg.hamburger line{ stroke: rgba(244,241,234,.92); stroke-width: 2.2; stroke-linecap: round; }



.mobile-panel{
  display:none;
  position: fixed;
  top: 124px;
  left: 4vw;
  right: 4vw;
  z-index: 2000;
  border-radius: 22px;
  border:1px solid rgba(244,241,234,.14);
  background: rgba(10,10,12,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0,0,0,.75);
  padding: 14px;
}
.mobile-panel.open{display:block;}
.mobile-panel a{
  display:flex; align-items:center; justify-content:space-between;
  text-decoration:none;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(20,20,24,.58);
  border:1px solid rgba(244,241,234,.10);
  font-weight: 900;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size: 12px;
}
.mobile-panel a span{opacity:.7; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;}

/* Hero (medium height) */
.hero{
  position:relative;
  padding: 54px 0 28px;
}
.hero-bg{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(17,18,20,.10), rgba(17,18,20,.86)),
    radial-gradient(1200px 640px at 70% 0%, rgba(90,15,26,.34), transparent 65%),
    radial-gradient(900px 520px at 22% 30%, rgba(200,169,106,.14), transparent 62%),
    url("assets/photos/steak-tray.jpg") center/cover no-repeat;
  filter: saturate(1.02) contrast(1.06);
}
.hero .content{ position:relative; padding: 34px 0 16px; }
.hero h1{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 950;
  letter-spacing:.06em;
  font-size: clamp(36px, 4.6vw, 58px);
}
.hero .gold-line{
  width: 220px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(200,169,106,.0), rgba(200,169,106,.95), rgba(200,169,106,.0));
  margin: 14px 0 14px;
}
.hero .tag{
  margin:0;
  color: rgba(244,241,234,.76);
  font-weight: 650;
  line-height:1.75;
  max-width: 62ch;
}
.hero .cta{ margin-top: 22px; display:flex; gap: 12px; flex-wrap:wrap; }

.pills{ margin-top: 18px; display:flex; gap:10px; flex-wrap:wrap; }
.pill{
  padding: 10px 12px;
  border-radius: 999px;
  border:1px solid rgba(244,241,234,.12);
  background: rgba(0,0,0,.14);
  color: rgba(244,241,234,.72);
  font-size: 13px;
  letter-spacing:.06em;
}

/* Layout blocks */
.grid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
@media (max-width: 980px){ .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 680px){ .grid{ grid-template-columns: 1fr; } }

.card{
  border-radius: var(--radius);
  border:1px solid rgba(244,241,234,.10);
  background: rgba(0,0,0,.18);
  overflow:hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,.46);
  transform: translateZ(0);
}
.card.hover:hover .media img{ transform: scale(1.035); }
.card.hover:hover{ border-color: rgba(200,169,106,.20); }

.media{ aspect-ratio: 4/3; background: rgba(0,0,0,.20); overflow:hidden; }
.media img{ width:100%; height:100%; object-fit:cover; display:block; transform: scale(1.0); transition: transform .35s ease; }
.card-body{ padding: 16px 18px 18px; background: rgba(10,10,12,.42); border-top: 1px solid rgba(244,241,234,.08); }
.card-body h3{ margin:0 0 8px; font-weight: 950; letter-spacing:.03em; }
.card-body p{ margin:0; color: rgba(244,241,234,.68); line-height:1.65; font-weight: 600; font-size: 13px; }

.split{ display:grid; grid-template-columns: 1.08fr .92fr; gap: 18px; align-items: stretch; }
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; } }
.panel{
  border-radius: var(--radius);
  border:1px solid rgba(244,241,234,.10);
  background: rgba(0,0,0,.16);
  box-shadow: 0 18px 55px rgba(0,0,0,.46);
  overflow:hidden;
}
.panel.pad{ padding: 22px 22px 26px; }
.panel h3{ margin:10px 0 10px; font-family: ui-serif, Georgia, "Times New Roman", serif; font-size: 26px; letter-spacing:.04em; }
.panel p{ margin:0; color: var(--muted); line-height:1.8; }

.hr{
  height:1px;
  background: linear-gradient(90deg, rgba(244,241,234,0), rgba(244,241,234,.12), rgba(244,241,234,0));
  margin: 18px 0;
}

/* Menu layout (unique page feel) */
.menu-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 900px){ .menu-wrap{ grid-template-columns: 1fr; } }

.menu-card{
  border-radius: var(--radius);
  border:1px solid rgba(244,241,234,.10);
  background: rgba(0,0,0,.16);
  overflow:hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,.46);
}
.menu-card .top{
  display:flex; align-items:flex-end; justify-content:space-between; gap: 12px;
  padding: 16px 18px 12px;
}
.menu-card .top h3{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing:.04em;
}
.menu-card .top .price{
  font-weight: 950;
  letter-spacing:.08em;
  color: rgba(225,201,139,.95);
}
.menu-list{ padding: 0 18px 18px; display:grid; gap: 12px; }
.menu-item{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(244,241,234,.10);
  background: rgba(20,20,24,.45);
}
.menu-item .row{
  display:flex; align-items:baseline; justify-content:space-between; gap: 12px;
}
.menu-item .name{
  font-weight: 950;
  letter-spacing:.02em;
}
.menu-item .dots{
  flex:1;
  height: 1px;
  margin: 0 10px;
  background: radial-gradient(circle, rgba(244,241,234,.22) 0.8px, rgba(0,0,0,0) 0.9px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  transform: translateY(-2px);
  opacity:.55;
}
.menu-item .p{
  margin-top: 6px;
  color: rgba(244,241,234,.66);
  font-size: 13px;
  line-height:1.65;
  font-weight: 600;
}

/* Experience gallery (unique page feel) */
.masonry{
  display:grid;
  grid-template-columns: 1.25fr .75fr .95fr;
  gap: 18px;
}
.masonry .tall{ grid-row: span 2; }
@media (max-width: 980px){
  .masonry{ grid-template-columns: 1fr 1fr; }
  .masonry .tall{ grid-row: span 1; }
}
@media (max-width: 680px){
  .masonry{ grid-template-columns: 1fr; }
}

/* Forms */
.form{ display:grid; gap: 12px; }
.field{ display:grid; gap: 8px; }
label{
  font-size: 12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(244,241,234,.70);
  font-weight: 900;
}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(244,241,234,.12);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
  font-weight: 650;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(200,169,106,.50);
  box-shadow: 0 0 0 4px rgba(200,169,106,.10);
}
textarea{ min-height: 120px; resize: vertical; }

.footer{
  padding: 28px 0 40px;
  border-top: 1px solid rgba(244,241,234,.10);
  color: rgba(244,241,234,.70);
}
.footer .cols{ display:grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
@media (max-width: 900px){ .footer .cols{ grid-template-columns: 1fr; } }
.small{ font-size: 12px; letter-spacing:.06em; line-height:1.7; color: rgba(244,241,234,.66); }

/* Motion */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0px);
}

@media (max-width: 900px){
  .nav-links{ display:none; }
  .navbar .btn{ display:none; }
  .menu-btn{ display:flex; }
  .wordmark .top{ font-size: 14px; }
  .wordmark .sub{ font-size: 12px; }
}

/* =============================
   Refinements (spacing + mobile)
   ============================= */

/* Slightly more breathing room across the board */
.section .eyebrow{margin-bottom:12px;}
.section h2{margin-bottom:14px;}

/* Prevent any accidental horizontal scroll on mobile */
html, body{overflow-x:hidden;}

@media (max-width: 720px){
  /* Keep the topbar a single line so the sticky nav offset stays correct */
  .topbar{height:44px;}
  .topbar .inner{
    flex-wrap:nowrap;
    white-space:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    padding:0;
    gap:14px;
  }
  .topbar .inner::-webkit-scrollbar{display:none;}

  /* More comfortable page gutters */
  .container{width:min(92vw, 1180px);}

  /* More breathing room on mobile sections + panels */
  .section{padding: 44px 0;}
  .panel{padding: 22px;}
  .form-grid{gap:16px;}

  /* Hero: scale down text + stack CTAs cleanly */
  .hero{padding-top:30px;}
  .hero h1{font-size:clamp(34px, 8.5vw, 48px); letter-spacing:-0.01em;}
  .hero .sub{font-size:16px;}
  .hero .cta{flex-direction:column; align-items:stretch;}
  .hero .cta .btn{width:100%; justify-content:center;}

  /* Pills wrap nicely */
  .pills{flex-wrap:wrap;}

  /* Make cards feel less cramped */
  .card-body{padding:18px 18px 20px;}
}

@media (max-width: 420px){
  .nav-shell{padding:10px 0 12px;}
  .brand{gap:10px;}
  .logo-badge{width:40px; height:40px;}

  /* Reduce long headline wrapping weirdness */
  .hero h1{font-size:clamp(30px, 9vw, 44px);}
}

@media (max-width: 720px){
  footer .grid{grid-template-columns:1fr; gap:18px;}
}


/* =========================
   SHARED MOBILE NAV FIXES
   ========================= */
:root{
  --mobile-panel-top: 124px;
}

@media (max-width:900px){
  .nav-row{
    gap:10px;
  }

  .brand{
    flex:1 1 auto;
    min-width:0;
  }

  .nav-row > .btn{
    display:inline-flex !important;
    order:2;
    margin-left:auto;
    margin-right:10px;
    padding:10px 14px;
    font-size:11px;
    flex-shrink:0;
    min-height:44px;
    white-space:nowrap;
  }

  .menu-btn{
    display:flex !important;
    order:3;
    flex-shrink:0;
  }

  .mobile-panel{
    position:fixed !important;
    top:var(--mobile-panel-top) !important;
    left:4vw !important;
    right:4vw !important;
    bottom:auto !important;
    z-index:2000 !important;
    display:flex !important;
    flex-direction:column !important;
    gap:10px !important;
    max-height:calc(100dvh - var(--mobile-panel-top) - 4vw) !important;
    overflow:auto !important;
    -webkit-overflow-scrolling:touch !important;
    border-radius:22px !important;
    padding:14px !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transform:translateY(-8px) !important;
    transition:opacity .18s ease, transform .18s ease, visibility .18s ease !important;
  }

  .mobile-panel.open{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
    transform:translateY(0) !important;
  }

  .mobile-panel a{
    width:100%;
    min-height:52px;
  }

  .mobile-panel a.active{
    color: rgba(225,201,139,.98);
    border-color: rgba(200,169,106,.35);
    background: rgba(90,15,26,.28);
  }

  body.menu-open{
    overflow:hidden;
  }
}

@media (max-width:600px){
  .wordmark .top{
    font-size:13px;
    letter-spacing:.18em;
  }

  .wordmark .sub{
    font-size:11px;
  }

  .nav-row > .btn{
    padding:9px 12px;
    font-size:10px;
    min-height:42px;
    margin-right:8px;
  }

  .menu-btn{
    width:42px;
    height:42px;
  }
}

@media (min-width:901px){
  body.menu-open{
    overflow-x:hidden;
  }

  .mobile-panel{
    max-height:none !important;
    overflow:visible !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
    transform:none !important;
  }
}
