:root {
  --bg: #090806;
  --panel: #14100b;
  --panel-2: #1d160d;
  --gold: #e6b84b;
  --gold-light: #ffe29a;
  --cream: #fff8e8;
  --muted: #c7bda7;
  --line: rgba(230, 184, 75, .28);
  --max: 1180px;
  --radius: 18px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 90% 0, rgba(230, 184, 75, .11), transparent 33rem),
    radial-gradient(circle at 0 35%, rgba(121, 56, 20, .10), transparent 30rem),
    var(--bg);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-light); }
a:hover { color: #fff; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; background: #fff; color: #000; padding: .7rem 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9, 8, 6, .91); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { color: #fff; text-decoration: none; letter-spacing: .16em; font-family: Georgia, serif; font-size: 1.12rem; font-weight: 700; }
.brand span { display: block; color: var(--gold); font: 600 .58rem/1.2 Inter, sans-serif; letter-spacing: .34em; margin-top: .25rem; }
.nav-toggle { display: none; border: 1px solid var(--line); background: transparent; color: #fff; border-radius: 10px; padding: .55rem .8rem; font: inherit; }
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a { color: var(--cream); text-decoration: none; padding: .55rem .66rem; font-weight: 650; font-size: .92rem; border-radius: 9px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: rgba(230, 184, 75, .12); color: var(--gold-light); }
.site-nav .nav-book { border: 1px solid var(--gold); margin-left: .35rem; }

.hero { min-height: 72vh; display: grid; align-items: end; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,4,3,.96) 0%, rgba(5,4,3,.76) 48%, rgba(5,4,3,.30) 100%), var(--hero) center/cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(transparent, var(--bg)); }
.hero-content { position: relative; z-index: 2; max-width: 750px; padding-block: clamp(6rem, 14vw, 11rem) 5rem; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 800; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.12; margin: 0 0 .8rem; }
h1 { font-size: clamp(2.7rem, 8vw, 6.2rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: 1.35rem; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #e8dfcc; max-width: 62ch; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .72rem 1.08rem; border-radius: 12px; background: var(--gold); color: #120d04; text-decoration: none; font-weight: 850; border: 1px solid var(--gold); }
.button:hover { background: var(--gold-light); color: #120d04; }
.button.secondary { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.4); }
.button.secondary:hover { border-color: var(--gold); color: var(--gold-light); }

.section { padding-block: clamp(3.8rem, 8vw, 7.5rem); }
.section.compact { padding-block: 3rem; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2rem; }
.section-head p { max-width: 54ch; color: var(--muted); margin: 0; }
.grid { display: grid; gap: 1rem; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(29,22,13,.96), rgba(13,11,8,.94)); border-radius: var(--radius); padding: 1.35rem; }
.card p:last-child { margin-bottom: 0; }
.card a.stretch { color: inherit; text-decoration: none; }
.card:hover { border-color: rgba(230,184,75,.55); }
.metric { color: var(--gold-light); font-size: 1.08rem; font-weight: 800; }
.muted, .note { color: var(--muted); }
.note { font-size: .9rem; }
.pill { display: inline-block; border: 1px solid var(--line); background: rgba(230,184,75,.07); color: var(--gold-light); padding: .28rem .7rem; border-radius: 999px; font-size: .78rem; font-weight: 750; margin: 0 .3rem .4rem 0; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.image-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 24px 65px rgba(0,0,0,.35); }
.image-frame img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.quick-info { margin: 0; padding: 0; list-style: none; }
.quick-info li { padding: .75rem 0; border-bottom: 1px solid rgba(230,184,75,.16); }
.quick-info strong { display: inline-block; min-width: 6.2rem; color: var(--gold-light); }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .65rem .15rem; border-bottom: 1px solid rgba(230,184,75,.15); }
.hours th { color: var(--gold-light); }
.hours td { text-align: right; }

.menu-section { scroll-margin-top: 95px; }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .65rem 2rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: .7rem; padding: .9rem 0; border-bottom: 1px dotted rgba(230,184,75,.3); }
.menu-item strong { display: block; }
.menu-item small { color: var(--muted); }
.price { color: var(--gold-light); font-weight: 850; }
.subnav { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2rem; }
.subnav a { text-decoration: none; border: 1px solid var(--line); border-radius: 999px; padding: .45rem .75rem; }

.offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.1rem; }
.offer { overflow: hidden; padding: 0; }
.offer img { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: #050403; }
.offer.copy-first img { aspect-ratio: auto; }
.offer-copy { padding: 1.35rem; }

.gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 230px; gap: .75rem; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); }
.gallery img:first-child { grid-row: span 2; }

.cta-band { border-block: 1px solid var(--line); background: linear-gradient(100deg, rgba(230,184,75,.14), rgba(121,56,20,.08)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 2.2rem; }
.cta-inner h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin: 0; }

.breadcrumb { padding-top: 1.2rem; color: var(--muted); font-size: .9rem; }
.breadcrumb a { color: var(--muted); }
.page-hero { padding-block: clamp(4.5rem, 9vw, 8rem) 3.5rem; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.65rem, 7vw, 5.3rem); max-width: 15ch; }
.page-hero p { color: var(--muted); max-width: 66ch; font-size: 1.12rem; }

.site-footer { border-top: 1px solid var(--line); padding-block: 3.2rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 2rem; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }
.legal { border-top: 1px solid rgba(230,184,75,.14); margin-top: 2.4rem; padding-top: 1.1rem; color: #9f9583; font-size: .82rem; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: #0c0a07; border-bottom: 1px solid var(--line); padding: 1rem; flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .site-nav .nav-book { margin: .3rem 0 0; text-align: center; }
  .grid.three, .grid.four { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img:first-child { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 640px) {
  .hero { min-height: 650px; }
  .hero::before { background: linear-gradient(rgba(5,4,3,.68), rgba(5,4,3,.94)), var(--hero) 64% center/cover no-repeat; }
  .grid.two, .grid.three, .grid.four, .menu-grid, .offer-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-head, .cta-inner { display: block; }
  .cta-inner .button-row { margin-top: 1.2rem; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery img:first-child { grid-column: auto; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
