:root {
  --walnut: #251712;
  --charcoal: #121111;
  --cream: #f8efe0;
  --paper: #fff8ea;
  --burgundy: #6e1f2b;
  --burgundy-dark: #45121b;
  --gold: #c99a4a;
  --muted: #a89883;
  --ink: #241812;
  --white: #ffffff;
  --line: rgba(201, 154, 74, 0.24);
  --shadow: 0 28px 70px rgba(18, 17, 17, 0.26);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: 16px; top: -50px; z-index: 40; padding: 10px 14px; color: var(--white); background: var(--charcoal); }
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(18, 17, 17, 0.94);
  border-bottom: 1px solid rgba(201, 154, 74, 0.25);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; flex-direction: column; margin-right: auto; color: var(--white); text-decoration: none; line-height: 1.05; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; letter-spacing: 0.02em; }
.brand span { color: var(--gold); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.16em; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a { color: rgba(255,255,255,0.78); font-size: 0.88rem; font-weight: 800; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus, .site-nav a[aria-current="page"] { color: var(--gold); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 4px; background: transparent; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--cream); }
.button, .header-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 2px;
  font: inherit; font-weight: 900; text-decoration: none; cursor: pointer;
}
.button-primary, .header-cta { color: var(--charcoal); background: var(--gold); }
.button-primary:hover, .header-cta:hover { background: #e1b766; }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,0.62); background: rgba(255,255,255,0.08); }
.button-cream { color: var(--burgundy-dark); background: var(--paper); border-color: var(--line); }
.hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--charcoal); }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; opacity: 0.72; }
.hero-overlay { background: linear-gradient(90deg, rgba(18,17,17,.94), rgba(37,23,18,.68) 46%, rgba(18,17,17,.22)); }
.hero-content { position: relative; z-index: 1; max-width: 780px; padding: 128px 0 80px; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.04; letter-spacing: 0; }
.hero h1 { font-size: clamp(3.3rem, 7vw, 7rem); }
.hero p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,0.82); font-size: 1.08rem; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.section { padding: 94px 0; }
.section.dark { color: var(--cream); background: var(--walnut); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2, .split-copy h2, .page-hero h1, .cta-band h2 { font-size: clamp(2.2rem, 4.4vw, 4.5rem); }
.section-heading p, .split-copy p, .card p, .special-card p, .review-card p, .contact-card p, .page-hero p, .product-card p { color: #735f4b; }
.dark .section-heading p, .dark .card p, .site-footer p { color: rgba(248,239,224,0.72); }
.card-grid, .special-grid, .product-grid, .review-grid, .event-grid, .hours-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.card, .special-card, .review-card, .event-card, .contact-card, .newsletter, .promo-panel, .product-card, .form-panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  box-shadow: 0 18px 46px rgba(37,23,18,0.08);
}
.card img, .product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card div, .special-card, .review-card, .event-card, .contact-card, .newsletter, .product-card div, .form-panel { padding: 24px; }
.special-card { position: relative; min-height: 230px; display: grid; align-content: space-between; }
.special-card .deal { color: var(--burgundy); font-family: Georgia, "Times New Roman", serif; font-size: 2.5rem; font-weight: 900; line-height: 1; }
.tag { display: inline-flex; width: max-content; padding: 6px 10px; color: var(--gold); border: 1px solid var(--line); border-radius: 999px; font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.split-grid, .contact-grid, .footer-grid, .location-grid, .party-grid, .promo-grid {
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items: center;
}
.media-frame { padding: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }
.media-frame img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; border-radius: 6px; }
.feature-list { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.feature-list li { padding: 14px 16px; background: rgba(255,255,255,0.08); border: 1px solid rgba(201,154,74,.22); border-radius: 6px; }
.dark .feature-list li { color: var(--cream); }
.cta-band { padding: 58px 0; color: var(--white); background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy)); }
.cta-inner { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.page-hero { padding: 96px 0; color: var(--white); background: linear-gradient(135deg, var(--charcoal), var(--walnut)); border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 690px; color: rgba(248,239,224,0.76); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.filter-bar button { padding: 10px 14px; color: var(--burgundy-dark); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-weight: 900; cursor: pointer; }
.filter-bar button.is-active { color: var(--white); background: var(--burgundy); }
.flyer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.flyer-grid img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border: 8px solid var(--paper); box-shadow: var(--shadow); }
.hours-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.hours-grid div { padding: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; }
.contact-card a, .site-footer a { display: block; margin-top: 6px; color: inherit; text-decoration: none; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.full { grid-column: 1 / -1; }
label { display: grid; gap: 7px; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 48px; padding: 12px 13px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 4px; font: inherit; }
textarea { resize: vertical; }
.site-footer { padding: 48px 0; color: rgba(248,239,224,0.8); background: var(--charcoal); }
.footer-grid { align-items: start; grid-template-columns: 1.2fr 1fr 1fr; }
.site-footer strong { color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; }
.site-footer span { display: block; color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }
.newsletter-row { display: flex; gap: 10px; margin-top: 16px; }
.newsletter-row input { flex: 1; }
.has-prototype-notice {
  padding-bottom: 96px;
}
.prototype-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 14px max(18px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(37, 23, 18, 0.14);
  box-shadow: 0 -14px 40px rgba(18, 17, 17, 0.16);
}
.prototype-notice strong {
  display: inline;
  color: var(--burgundy);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.prototype-notice p {
  display: inline;
  margin: 0 0 0 10px;
  color: #58483a;
  font-size: 0.78rem;
  line-height: 1.55;
}

@media (max-width: 1020px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); display: none; padding: 12px; background: var(--charcoal); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .split-grid, .contact-grid, .footer-grid, .location-grid, .party-grid, .promo-grid { grid-template-columns: 1fr; gap: 30px; }
  .card-grid, .special-grid, .product-grid, .review-grid, .event-grid, .hours-grid, .flyer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1180px); }
  .header-inner { min-height: 70px; }
  .brand strong { font-size: 1.18rem; }
  .hero { min-height: 690px; }
  .hero-content { padding: 96px 0 48px; }
  .hero h1 { font-size: clamp(2.7rem, 15vw, 4.5rem); }
  .hero-actions, .hero-actions .button, .cta-actions, .cta-actions .button, .newsletter-row { width: 100%; }
  .newsletter-row { flex-direction: column; }
  .section, .page-hero { padding: 66px 0; }
  .card-grid, .special-grid, .product-grid, .review-grid, .event-grid, .hours-grid, .flyer-grid, .contact-form { grid-template-columns: 1fr; }
  .has-prototype-notice { padding-bottom: 68px; }
  .prototype-notice { padding: 6px 9px; }
  .prototype-notice strong,
  .prototype-notice p {
    display: block;
    margin-left: 0;
    font-size: 0.56rem;
    line-height: 1.22;
  }
  .prototype-notice strong {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }
  .prototype-notice p { margin-top: 1px; }
}
