
:root {
  --bg: #100b09;
  --bg-soft: #19110d;
  --panel: #fffaf2;
  --panel-alt: #f5eadb;
  --text: #2c211b;
  --muted: #6d5d51;
  --white: #fff;
  --gold: #b9823b;
  --gold-light: #d8aa62;
  --spice: #8f3025;
  --green: #243b2e;
  --shadow: 0 24px 60px rgba(0,0,0,.22);
  --radius: 24px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fffaf2;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16, 11, 9, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216,170,98,.18);
}
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { width: 146px; height: auto; }
.nav-toggle { display: none; border: 1px solid rgba(255,255,255,.2); color: var(--white); background: transparent; border-radius: 999px; padding: 8px 12px; }
.nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: nowrap; justify-content: flex-end; }
.nav-links a { color: rgba(255,255,255,.86); text-decoration: none; font-size: 14px; padding: 10px 11px; border-radius: 999px; transition: .2s ease; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(216,170,98,.18); text-decoration: none; }
.hero { position: relative; min-height: 620px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--bg); }
.hero.hero-compact { min-height: 520px; }
.hero-media { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 900ms ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.04); }
.hero::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(16,11,9,.86), rgba(16,11,9,.55), rgba(16,11,9,.35)), radial-gradient(circle at 30% 30%, rgba(185,130,59,.22), transparent 34%); }
.hero-content { position: relative; z-index: 2; padding: 120px 0 90px; max-width: 720px; }
.eyebrow { color: var(--gold-light); text-transform: uppercase; letter-spacing: .22em; font-weight: 700; font-size: 12px; margin-bottom: 16px; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 7vw, 86px); line-height: .95; margin: 0 0 22px; letter-spacing: -.04em; }
.hero p { font-size: clamp(18px, 2vw, 23px); color: rgba(255,255,255,.9); max-width: 640px; margin: 0 0 28px; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 750; border: 1px solid transparent; transition: .2s ease; }
.btn-primary { background: var(--gold); color: #170f0b; }
.btn-primary:hover { background: var(--gold-light); text-decoration: none; transform: translateY(-1px); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); }
.btn-secondary:hover { background: rgba(255,255,255,.16); text-decoration: none; }
.btn-dark { background: var(--bg); color: var(--white); }
.btn-outline { border-color: rgba(143,48,37,.3); color: var(--spice); background: transparent; }
.btn-outline:hover { background: rgba(143,48,37,.08); text-decoration:none; }
.section { padding: 86px 0; }
.section.alt { background: var(--panel-alt); }
.section.dark { background: var(--bg); color: var(--white); }
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker { color: var(--spice); text-transform: uppercase; letter-spacing: .18em; font-weight: 800; font-size: 12px; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 5vw, 56px); line-height: 1.02; margin: 8px 0 14px; letter-spacing: -.03em; }
h3 { font-size: 22px; margin: 0 0 8px; }
.lead { font-size: 19px; color: var(--muted); }
.dark .lead { color: rgba(255,255,255,.72); }
.grid { display: grid; gap: 22px; }
.grid.locations { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: var(--panel); border: 1px solid rgba(44,33,27,.08); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 34px rgba(44,33,27,.08); }
.card-media { height: 220px; overflow: hidden; background: #2a1b14; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 24px; }
.card-body p { color: var(--muted); margin: 0 0 16px; }
.meta-list { display: grid; gap: 10px; margin: 18px 0; padding: 0; list-style: none; color: var(--muted); }
.meta-list strong { color: var(--text); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width:100%; height: 460px; object-fit: cover; }
.menu-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 24px; background: var(--green); color: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.menu-panel p { color: rgba(255,255,255,.76); margin: 0; }
.menu-panel .button-row { justify-content: flex-end; align-items: center; flex-wrap: nowrap; }
.menu-panel .btn { min-width: 178px; }
.menu-panel h2 { max-width: 780px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gallery-item { border: 0; padding: 0; cursor: pointer; border-radius: 18px; overflow: hidden; background: #2a1b14; aspect-ratio: 4 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.details-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: stretch; }
.details-card { background: var(--panel); border-radius: var(--radius); padding: 30px; box-shadow: 0 12px 34px rgba(44,33,27,.08); }
.details-card address { font-style: normal; color: var(--muted); }
.map-frame { min-height: 430px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 0; width: 100%; height: 100%; }
.event-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.event-list li { background: rgba(185,130,59,.12); border: 1px solid rgba(185,130,59,.2); padding: 14px 16px; border-radius: 999px; text-align: center; font-weight: 700; }

.location-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.location-pill { display: grid; gap: 6px; padding: 18px 20px; border-radius: 999px; text-align: center; text-decoration: none; background: rgba(185,130,59,.12); border: 1px solid rgba(185,130,59,.22); color: var(--text); transition: .2s ease; }
.location-pill strong { font-size: 18px; }
.location-pill span { color: var(--muted); font-size: 14px; line-height: 1.35; }
.location-pill:hover { background: rgba(185,130,59,.2); transform: translateY(-1px); text-decoration: none; }
.about-split { grid-template-columns: 1.08fr .92fr; align-items: start; }
.about-text p { margin: 0 0 16px; color: var(--muted); font-size: 17px; }
.video-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--bg); position: sticky; top: 104px; }
.about-video { width: 100%; display: block; aspect-ratio: 16 / 9; background: var(--bg); object-fit: cover; }
.awards-section { background: #3f3f3e; }
.awards-section .section-kicker { color: var(--gold-light); }
.awards-section h2 { color: var(--gold-light); }
.awards-section .lead { color: rgba(255,255,255,.9); font-weight: 650; }
.awards-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px; align-items: start; margin-top: 26px; }
.award-card { text-align: center; }
.award-card .stars { color: #e42525; letter-spacing: .18em; font-weight: 900; margin-bottom: 18px; }
.award-card img { width: 184px; height: 184px; object-fit: cover; border-radius: 999px; margin: 0 auto 16px; border: 2px solid rgba(255,255,255,.12); box-shadow: 0 18px 42px rgba(0,0,0,.25); }
.award-card p { color: rgba(255,255,255,.88); font-weight: 700; margin: 0 auto; max-width: 260px; }
.diners-head { margin-top: 54px; margin-bottom: 22px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.testimonial-grid blockquote { margin: 0; color: rgba(255,255,255,.92); font-weight: 750; text-align: center; line-height: 1.5; }

.footer { background: #0b0705; color: rgba(255,255,255,.72); padding: 34px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer a { color: var(--gold-light); }
.footer-logo { width: 168px; max-height: 52px; object-fit: contain; }
.legacy-note { padding: 70px 0; text-align:center; }
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; background: rgba(0,0,0,.82); padding: 24px; }
.modal.open { display: grid; }
.modal img { max-height: 86vh; max-width: 92vw; border-radius: 12px; box-shadow: var(--shadow); }
.modal button { position: fixed; top: 18px; right: 18px; border: 0; border-radius: 999px; background: var(--white); color: var(--text); padding: 10px 14px; font-weight: 800; cursor:pointer; }
@media (max-width: 980px) {
  .grid.locations, .location-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .details-grid, .about-split { grid-template-columns: 1fr; }
  .video-card { position: static; }
  .event-list, .awards-row, .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
  .navbar { min-height: 68px; }
  .logo img { width: 126px; }
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; left: 16px; right: 16px; top: 76px; background: rgba(16,11,9,.98); border: 1px solid rgba(216,170,98,.18); border-radius: 18px; padding: 12px; flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .hero, .hero.hero-compact { min-height: 560px; }
  .hero-content { padding: 98px 0 70px; }
  .grid.locations, .gallery-grid, .location-list, .awards-row, .testimonial-grid { grid-template-columns: 1fr; }
  .menu-panel { display: flex; align-items: flex-start; flex-direction: column; }
  .menu-panel .button-row { flex-wrap: wrap; justify-content: flex-start; }
  .menu-panel .btn { width: 100%; min-width: 0; }
  .section { padding: 62px 0; }
  .card-media { height: 210px; }
}
