:root {
  --ink: #24211c;
  --muted: #6d665d;
  --paper: #fffaf2;
  --white: #ffffff;
  --sage: #7d8b6f;
  --olive: #596348;
  --wine: #7b2735;
  --gold: #c38c3f;
  --clay: #b96f4a;
  --line: #e8ddce;
  --shadow: 0 18px 50px rgba(52, 42, 30, 0.14);
  --page-gutter: clamp(24px, 5vw, 72px);
  --content-max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 9px 16px;
  background: var(--olive);
  color: #fffdf8;
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 10px max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img { width: 118px; height: auto; }
.nav { display: flex; justify-content: center; align-items: center; gap: 4px; font-size: 13px; font-weight: 720; color: #39332b; }
.nav a { padding: 9px 8px; border: 1px solid transparent; border-radius: 999px; white-space: nowrap; }
.nav a:hover, .nav a.active { border-color: var(--line); background: #fff; color: var(--wine); box-shadow: 0 6px 18px rgba(52,42,30,.07); }

.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1.1;
}
.header-cta, .button.primary { background: var(--wine); color: white; }
.button.secondary { background: rgba(255, 255, 255, 0.88); color: var(--ink); border-color: rgba(255,255,255,0.8); }
.text-link { display: inline-flex; margin-top: 10px; color: var(--wine); font-weight: 800; border-bottom: 2px solid var(--gold); }

.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 6px; background: white; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--ink); }

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: grid;
  align-items: end;
  padding: clamp(36px, 7vw, 96px) max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  overflow: hidden;
  color: white;
}
.hero-media { position: absolute; inset: 0; display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 6px; background: #111; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.76; filter: saturate(0.95) contrast(1.04); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25, 18, 12, 0.82), rgba(25, 18, 12, 0.36) 58%, rgba(25, 18, 12, 0.08)); }
.hero-copy { position: relative; z-index: 1; max-width: 780px; padding-bottom: 30px; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-weight: 850; text-transform: uppercase; font-size: 12px; }
.hero h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.02; }
.hero h1 { font-size: clamp(48px, 8vw, 106px); max-width: 850px; }
.hero p { font-size: clamp(18px, 2.1vw, 24px); line-height: 1.48; max-width: 680px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-panel { position: absolute; right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2)); bottom: 28px; z-index: 2; width: min(360px, calc(100% - 48px)); padding: 18px; background: rgba(255, 250, 242, 0.95); color: var(--ink); border: 1px solid rgba(255,255,255,0.5); border-radius: 6px; box-shadow: var(--shadow); }
.hero-panel strong, .hero-panel span { display: block; }
.hero-panel span { margin-top: 6px; color: var(--muted); line-height: 1.5; }

.section { padding: clamp(58px, 8vw, 108px) max(var(--page-gutter), calc((100vw - var(--content-max)) / 2)); }
.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: clamp(56px, 8vw, 104px) max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  color: white;
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.04);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 18, 13, 0.82), rgba(24, 18, 13, 0.38) 62%, rgba(24, 18, 13, 0.1));
}
.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 500;
  line-height: 1.03;
}
.page-hero p:not(.eyebrow) {
  max-width: 690px;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.5;
}
.page-main > .section:first-of-type {
  padding-top: clamp(50px, 7vw, 86px);
}
.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background: #f0f3ed;
}
.page-cta h2 {
  font-size: clamp(30px, 4vw, 52px);
}
.page-cta p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.section-heading { max-width: 850px; margin-bottom: 34px; }
.section-heading h2, .split-band h2, .about-section h2, .contact-section h2 { font-size: clamp(32px, 4.8vw, 62px); }
.section-heading p:not(.eyebrow), .split-band p, .about-section p, .contact-section p, .feature-row p, .image-led p { color: var(--muted); font-size: 17px; line-height: 1.72; }

.intro-grid, .service-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.intro-grid article, .blog-grid article, .contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(52,42,30,.07);
}
.intro-grid h3, .service-grid h3, .blog-grid h3, .about-section h3 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 500; }
.intro-grid p { color: var(--muted); line-height: 1.65; margin: 0; }

.event-paths { background: #fbf3e8; }
.feature-row, .image-led, .split-band, .about-section, .contact-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.feature-row img, .image-led img, .split-band img, .about-media img, .venue-layout img, .menu-display img, .blog-grid img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.feature-row img, .image-led img, .split-band img { aspect-ratio: 1.2 / 1; }
.split-band { background: #f0f3ed; }
.split-band img { order: 2; }
.special-events { background: #fffaf2; }
.image-led img { aspect-ratio: 1.55 / 1; }

.menu-section { background: #fffdf8; color: var(--ink); }
.menu-section .section-heading p:not(.eyebrow) { color: var(--muted); }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.tab, .filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}
.menu-section .tab { background: white; color: var(--ink); border-color: var(--line); }
.tab.active, .filter.active { background: var(--gold); color: #20170d; border-color: var(--gold); }
.menu-display { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: center; background: white; border: 1px solid var(--line); border-radius: 6px; padding: 18px; box-shadow: 0 10px 28px rgba(52,42,30,.07); }
.menu-display img { aspect-ratio: 1.35 / 1; }
.menu-display h3 { margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 34px; font-weight: 500; }
.menu-display p, .menu-display li { color: var(--muted); line-height: 1.65; }
.menu-display ul { columns: 2; padding-left: 18px; }
.menu-directory { background: #fffaf2; }
.directory-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.directory-grid a {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.directory-grid span { color: var(--clay); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.directory-grid strong { font-family: Georgia, "Times New Roman", serif; font-size: 24px; line-height: 1.2; font-weight: 500; }

.compact-hero { min-height: 340px; }
.legacy-menu-section { background: #fffdf8; }
.refined-menu-section { padding-top: clamp(42px, 6vw, 78px); }
.legacy-menu-content { max-width: 1040px; margin: 0 auto; color: var(--ink); overflow: visible; }
.legacy-menu-content *, .legacy-menu-content *::before, .legacy-menu-content *::after { min-width: 0; }
.legacy-menu-content .wrapper { max-width: 100%; }
.legacy-menu-content .menus_con, .legacy-menu-content .items-con { display: grid; gap: 24px; max-width: 100%; }
.refined-menu-content .menus_con {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 4vw, 44px);
}
#navtabs-container.legacy-menu-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  position: sticky;
  top: 104px;
  max-width: 100%;
  max-height: calc(100vh - 128px);
  overflow: auto;
  contain: inline-size;
  margin: 0;
  padding: 16px;
  list-style: none;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--line);
  border-radius: 6px;
}
#navtabs-container.legacy-menu-index h2,
#navtabs-container.legacy-menu-index h3 {
  margin: 14px 0 5px;
  color: var(--wine);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}
#navtabs-container.legacy-menu-index li:first-child h2,
#navtabs-container.legacy-menu-index li:first-child h3 { margin-top: 0; }
#navtabs-container.legacy-menu-index a {
  display: block;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  border: 1px solid transparent;
  border-radius: 6px;
}
#navtabs-container.legacy-menu-index a:hover,
#navtabs-container.legacy-menu-index a.active {
  background: #fff;
  border-color: var(--line);
  color: var(--wine);
}
.legacy-menu-content .item {
  display: block;
  scroll-margin-top: 110px;
  margin: 0;
  padding: clamp(20px, 4vw, 34px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(52,42,30,.05);
}
.legacy-menu-content .menu-item-content { display: grid; gap: 8px; }
.legacy-menu-content h3 { margin: 0 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 4vw, 42px); font-weight: 500; line-height: 1.12; text-align: left !important; }
.legacy-menu-content h4 { margin: 24px 0 10px; color: var(--wine); font-size: 18px; line-height: 1.25; text-align: left !important; }
.legacy-menu-content p { margin: 0 0 12px; color: var(--muted); line-height: 1.62; text-align: left !important; }
.legacy-menu-content strong, .legacy-menu-content b { color: var(--ink); }
.legacy-menu-content table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.legacy-menu-content td { padding: 13px 10px; vertical-align: top; border-bottom: 1px solid var(--line); line-height: 1.55; }
.legacy-menu-content p,
.legacy-menu-content li,
.legacy-menu-content a,
.legacy-menu-content td,
.legacy-menu-content h2,
.legacy-menu-content h3,
.legacy-menu-content h4,
.legacy-menu-content h5 { overflow-wrap: anywhere; }
.legacy-menu-content img { max-height: 180px; width: auto; object-fit: contain; }
.legacy-menu-content .border-boxes {
  margin: 18px 0;
  padding: 18px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
}
.legacy-menu-content .border-boxes .border-boxes {
  margin: 14px 0 0;
  padding: 0 0 0 16px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.legacy-menu-content .text,
.legacy-menu-content p.text,
.legacy-menu-content div.text {
  margin: 8px 0 14px;
  padding: 10px 12px;
  background: #fffaf2;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
  text-transform: none;
}
.legacy-menu-content .cold,
.legacy-menu-content .padd,
.legacy-menu-content .sides,
.legacy-menu-content .subme {
  color: var(--wine);
  letter-spacing: 0;
  text-transform: none;
}
.legacy-menu-content h2.padd,
.legacy-menu-content h3.cold {
  margin: 28px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.18;
}
.legacy-menu-content .btn_menu {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 8px;
  padding: 10px 14px;
  background: var(--wine);
  color: white;
  border-radius: 6px;
  font-weight: 800;
}
.legacy-menu-content ul.legacy-menu-index:not(#navtabs-container) {
  position: static;
  display: block;
  max-height: none;
  margin: 0 0 14px;
  padding: 0 0 0 20px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  list-style: disc;
}
.legacy-menu-content ul.legacy-menu-index:not(#navtabs-container) li {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.6;
}
.menu-library-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.menu-library-grid a strong { font-size: 16px; line-height: 1.35; }

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 5vw, 72px);
  max-width: 980px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.service-grid article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.service-grid span { color: var(--clay); font-weight: 900; font-size: 12px; letter-spacing: 0.08em; }
.service-grid h3 { margin: 0; font-size: 21px; line-height: 1.22; }

.about-section { background: #fff; }
.about-media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-media img:first-child { aspect-ratio: 0.85 / 1; }
.about-media img:last-child { aspect-ratio: 0.85 / 1; margin-top: 48px; }

.venue-section { background: #fbf3e8; }
.venue-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 30px; align-items: start; }
.venue-layout img { aspect-ratio: 0.9 / 1; position: sticky; top: 118px; }
.venue-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.venue-group { background: white; border: 1px solid var(--line); border-radius: 6px; padding: 20px; }
.venue-group h3 { margin: 0 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 500; }
.venue-group p { margin: 0 0 12px; color: var(--muted); line-height: 1.45; }
.venue-group strong { color: var(--ink); }

.gallery-section { background: #fff; }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 6px; background: #eee; min-height: 210px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span { position: absolute; left: 10px; bottom: 10px; padding: 6px 9px; border-radius: 6px; background: rgba(36,33,28,.78); color: white; font-size: 12px; font-weight: 800; }

.blog-section { background: #f0f3ed; }
.blog-grid img { aspect-ratio: 1.38 / 1; margin-bottom: 18px; }
.blog-grid p { margin: 0 0 8px; color: var(--clay); font-weight: 800; font-size: 13px; }
.blog-grid h3 { font-size: 22px; line-height: 1.18; }

.contact-section { align-items: start; background: #fffaf2; }
.contact-card { margin-top: 24px; }
.contact-card p { margin: 10px 0 0; }
form { display: grid; gap: 16px; background: white; padding: 24px; border: 1px solid var(--line); border-radius: 6px; box-shadow: var(--shadow); }
fieldset { border: 1px solid var(--line); border-radius: 6px; padding: 18px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
fieldset.full { grid-template-columns: 1fr; }
legend { padding: 0 8px; color: var(--wine); font-weight: 850; }
label { display: grid; gap: 7px; color: var(--muted); font-weight: 700; font-size: 13px; }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d9cdbd;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}
textarea { resize: vertical; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.checks label, .consent { display: flex; align-items: flex-start; gap: 8px; }
.checks input, .consent input { width: auto; min-height: auto; margin-top: 3px; }
.honeypot { position: absolute; left: -10000px; opacity: 0; }
.form-note { margin: 0; color: var(--olive); font-weight: 800; }

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  padding: 42px max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  background: #24211c;
  color: #f7efe2;
}
.footer img { width: 135px; margin-bottom: 14px; filter: brightness(1.1); }
.footer p { color: #d9cfbd; line-height: 1.55; }
.footer nav { display: grid; grid-template-columns: repeat(2, minmax(130px, 1fr)); gap: 10px; font-weight: 700; }
.socials { display: flex; align-items: start; gap: 8px; }
.socials a { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 6px; background: #fff; }
.socials img { width: 18px; margin: 0; filter: none; }
.legal { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.16); padding-top: 18px; font-size: 13px; }

@media (max-width: 1100px) {
  .nav { position: fixed; inset: 113px 0 auto 0; display: none; grid-template-columns: repeat(2, 1fr); gap: 0; padding: 14px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav.open { display: grid; }
  .nav a { padding: 13px; border-radius: 0; border: 0; border-bottom: 1px solid var(--line); }
  .menu-toggle { display: block; justify-self: end; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .header-cta { display: none; }
  .intro-grid, .blog-grid { grid-template-columns: 1fr; }
  .service-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .topbar { flex-wrap: wrap; font-size: 13px; }
  .site-header { min-height: 76px; padding: 12px var(--page-gutter); }
  .brand img { width: 108px; }
  .nav { inset: 104px 0 auto 0; grid-template-columns: 1fr; }
  .hero { min-height: 760px; padding: 28px var(--page-gutter) 150px; align-items: end; }
  .hero-media { grid-template-columns: 1fr; }
  .hero-media img:not(:first-child) { display: none; }
  .hero h1 { font-size: 48px; }
  .hero-panel { right: var(--page-gutter); bottom: 20px; }
  .page-hero { min-height: 360px; padding: 44px var(--page-gutter); }
  .page-cta { grid-template-columns: 1fr; }
  .page-cta .button { justify-self: start; }
  .feature-row, .image-led, .split-band, .about-section, .contact-section, .menu-display, .venue-layout, .directory-grid, .refined-menu-content .menus_con, .menu-library-grid { grid-template-columns: 1fr; }
  #navtabs-container.legacy-menu-index {
    position: sticky;
    top: 100px;
    z-index: 20;
    display: flex;
    gap: 8px;
    max-height: none;
    padding: 10px var(--page-gutter);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    contain: inline-size;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: 0 8px 22px rgba(52,42,30,.08);
  }
  #navtabs-container.legacy-menu-index li { flex: 0 0 auto; }
  #navtabs-container.legacy-menu-index h2,
  #navtabs-container.legacy-menu-index h3 { margin: 0; padding: 8px 2px; white-space: nowrap; }
  #navtabs-container.legacy-menu-index a { white-space: nowrap; }
  .legacy-menu-content .item { scroll-margin-top: 180px; }
  .split-band img { order: 0; }
  .service-grid, .gallery-grid, .venue-columns, fieldset, .checks { grid-template-columns: 1fr; }
  .menu-display ul { columns: 1; }
  .about-media img:last-child { margin-top: 0; }
  .venue-layout img { position: static; }
  .footer { grid-template-columns: 1fr; }
}
