:root {
  --ink: #090807;
  --panel: #15110d;
  --panel-soft: #201913;
  --cream: #f7ecd8;
  --paper: #fffaf0;
  --gold: #d9a441;
  --gold-light: #f4d47c;
  --burgundy: #7a1f25;
  --muted: #c7b99f;
  --line: rgba(217, 164, 65, 0.35);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: fixed; top: -4rem; left: 1rem; z-index: 100; background: var(--paper); color: var(--ink); padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 8, 7, .94);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  width: min(1180px, calc(100% - 2rem));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; font-family: Arial, sans-serif; font-weight: 800; letter-spacing: .06em; }
.brand-mark { width: 46px; height: 46px; border: 2px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold-light); font-size: 1.25rem; }
.brand-copy { line-height: 1.05; }
.brand-copy span { display: block; }
.nav-toggle { display: none; border: 1px solid var(--line); background: transparent; color: var(--cream); border-radius: .3rem; padding: .55rem .75rem; font: inherit; }
.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a { text-decoration: none; font-family: Arial, sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-light); }
.nav-cta { border: 1px solid var(--gold); padding: .55rem .8rem; border-radius: .2rem; }

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  background: linear-gradient(90deg, rgba(7,6,5,.97) 0%, rgba(7,6,5,.88) 48%, rgba(7,6,5,.34) 100%), url("assets/IMG_5845.jpeg") center/cover;
  border-bottom: 1px solid var(--line);
}
.hero-inner { width: min(1180px, calc(100% - 2rem)); margin: auto; padding: 5rem 0; }
.hero-logo { width: min(590px, 100%); max-height: 460px; object-fit: contain; object-position: left center; border: 1px solid rgba(217,164,65,.55); box-shadow: 0 24px 70px rgba(0,0,0,.5); }
.eyebrow { margin: 0 0 .7rem; color: var(--gold-light); font-family: Arial, sans-serif; font-size: .83rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 { max-width: 800px; margin-bottom: 1rem; font-size: clamp(3rem, 8vw, 6.3rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2.1rem, 5vw, 4rem); }
h3 { font-size: 1.45rem; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.lead { max-width: 670px; margin: 0 0 2rem; color: #eee2ce; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .75rem 1.15rem; border: 1px solid var(--gold); border-radius: .2rem; background: var(--gold); color: #160f07; text-decoration: none; font-family: Arial, sans-serif; font-weight: 800; }
.button.secondary { background: transparent; color: var(--cream); }
.button:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); }

.quick-strip { background: var(--burgundy); }
.quick-grid { width: min(1180px, calc(100% - 2rem)); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-item { padding: 1.25rem; border-right: 1px solid rgba(255,255,255,.22); text-align: center; }
.quick-item:last-child { border-right: 0; }
.quick-item strong { display: block; font-family: Arial, sans-serif; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section.alt { background: var(--panel); }
.section.paper { background: var(--paper); color: #20160f; }
.container { width: min(1180px, calc(100% - 2rem)); margin: auto; }
.section-head { max-width: 760px; margin-bottom: 2.5rem; }
.section-head p { color: var(--muted); }
.paper .section-head p { color: #625548; }
.two-col { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.feature-img { width: 100%; min-height: 460px; object-fit: cover; border: 1px solid var(--line); box-shadow: var(--shadow); }
.note-rule { display: flex; align-items: center; gap: 1rem; color: var(--gold); margin: 1.2rem 0; }
.note-rule::before, .note-rule::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.ticks { list-style: none; padding: 0; margin: 1.5rem 0; }
.ticks li { margin: .55rem 0; padding-left: 1.5rem; position: relative; }
.ticks li::before { content: "♪"; position: absolute; left: 0; color: var(--gold); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card { background: var(--panel-soft); border: 1px solid var(--line); padding: 1.5rem; }
.paper .card { background: #fff; border-color: #d9c9ae; }
.card .price { float: right; color: var(--gold-light); font-family: Arial, sans-serif; font-weight: 800; }
.paper .card .price { color: var(--burgundy); }
.card p { margin-bottom: 0; color: var(--muted); }
.paper .card p { color: #6a5a49; }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.promo-grid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--line); }

.menu-poster-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 1rem; align-items: start; }
.menu-poster-grid a { display: block; overflow: hidden; border: 1px solid #d0b57d; background: #15110d; box-shadow: 0 12px 30px rgba(32,22,15,.16); }
.menu-poster-grid img { width: 100%; aspect-ratio: 3/4; object-fit: contain; background: #0b0907; transition: transform .25s ease; }
.menu-poster-grid a:hover img { transform: scale(1.018); }
.menu-actions { margin-top: 2rem; }
.button.secondary.dark { color: #20160f; border-color: #7a1f25; }
.interior-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; grid-template-rows: repeat(2, 260px); gap: .8rem; }
.interior-grid img { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--line); }
.interior-grid .interior-wide { grid-row: 1 / 3; }
.interior-action { margin-top: 1.5rem; }

.page-hero { padding: 5.5rem 0 3.5rem; background: radial-gradient(circle at 80% 20%, rgba(122,31,37,.6), transparent 34%), var(--panel); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(3rem, 7vw, 5.2rem); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.2rem; }

.menu-nav { position: sticky; top: 78px; z-index: 20; overflow-x: auto; white-space: nowrap; background: #100d0a; border-bottom: 1px solid var(--line); }
.menu-nav .container { display: flex; gap: 1.3rem; padding: .8rem 0; }
.menu-nav a { color: var(--gold-light); font-family: Arial, sans-serif; font-size: .84rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.menu-section { padding: 4rem 0; border-bottom: 1px solid var(--line); }
.menu-section h2 { color: var(--gold-light); }
.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem 2rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: .75rem 0; border-bottom: 1px dotted rgba(217,164,65,.28); }
.menu-item strong { font-size: 1.05rem; }
.menu-item .desc { display: block; margin-top: .15rem; color: var(--muted); font-size: .92rem; }
.menu-item .price { color: var(--gold-light); font-family: Arial, sans-serif; font-weight: 800; white-space: nowrap; }
.menu-note { margin-top: 1.5rem; padding: 1rem 1.2rem; border-left: 4px solid var(--gold); background: var(--panel-soft); }

.gallery { columns: 3 280px; column-gap: 1rem; }
.gallery figure { break-inside: avoid; margin: 0 0 1rem; position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.gallery img { width: 100%; height: auto; transition: transform .35s ease; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery figcaption { padding: .75rem 1rem; color: var(--muted); font-size: .9rem; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.contact-card { border: 1px solid var(--line); background: var(--panel-soft); padding: 1.5rem; }
.contact-card a { color: var(--gold-light); word-break: break-word; }
.map-link { min-height: 320px; display: grid; place-items: center; text-align: center; border: 1px solid var(--line); background: radial-gradient(circle, rgba(217,164,65,.14), transparent 56%), var(--panel); }

.site-footer { padding: 3rem 0; border-top: 1px solid var(--line); background: #050403; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; }
.site-footer h3 { color: var(--gold-light); }
.site-footer a { color: var(--cream); }
.small { color: var(--muted); font-size: .9rem; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 1rem; background: #0b0907; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .6rem; }
  .hero { min-height: 620px; background-position: 58% center; }
  .quick-grid, .card-grid, .promo-grid, .contact-grid, .footer-grid, .two-col { grid-template-columns: 1fr; }
  .menu-poster-grid { grid-template-columns: repeat(2, 1fr); }
  .interior-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 220px 220px; }
  .interior-grid .interior-wide { grid-column: 1 / 3; grid-row: auto; }
  .quick-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .menu-list { grid-template-columns: 1fr; }
  .feature-img { min-height: 340px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .brand-copy { font-size: .86rem; }
  h1 { font-size: 3.2rem; }
  .hero { min-height: 590px; }
  .hero-inner { padding: 3.5rem 0; }
  .hero-logo { max-height: none; }
  .menu-poster-grid { grid-template-columns: 1fr; }
  .interior-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .interior-grid .interior-wide { grid-column: auto; }
  .interior-grid img { height: auto; aspect-ratio: 4/3; }
  .button-row { display: grid; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
.gallery-section-heading{margin-top:3.5rem}
