/*
Theme Name: Greene Street Pool Tavern
Theme URI: https://gsmilly.com/
Author: Greene Street Pool Tavern
Description: Custom classic theme for Greene Street Pool Tavern, a pool hall and tavern in downtown Milledgeville, GA. Dark felt-green and brass palette, editable hours and event nights, LocalBusiness structured data built in.
Version: 1.4.1
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gspt
Tags: one-column, custom-menu, custom-logo, editor-style, block-styles, wide-blocks, accessibility-ready
*/

/* ---------- self-hosted fonts (SIL OFL 1.1, see assets/fonts/LICENSE-*) ---------- */
@font-face {
  font-family: 'Bevan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/bevan-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-latin-700-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/barlow-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('assets/fonts/barlow-latin-600-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


:root {
  --ink: #0B0F0D;
  --panel: #12201B;
  --felt: #175642;
  --felt-deep: #0E2C22;
  --brass: #D9AE45;
  --cream: #F2E9D0;
  --cream-70: rgba(242, 233, 208, 0.72);
  --cream-55: rgba(242, 233, 208, 0.55);
  --rule: rgba(217, 174, 69, 0.28);
  --rule-soft: rgba(217, 174, 69, 0.22);
  --serif: Bevan, Georgia, serif;
  --cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: Barlow, system-ui, -apple-system, sans-serif;
  --wrap: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { color: var(--brass); text-decoration: none; }
a:hover, a:focus { color: var(--cream); }

::selection { background: var(--felt); color: var(--cream); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 14px 22px;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; color: var(--ink); }

/* ---------- shared bits ---------- */

.wrap { max-width: var(--wrap); margin: 0 auto; }
.wrap-narrow { max-width: 860px; margin: 0 auto; }

.section { padding: 96px 28px; }
.section--ink { background: var(--ink); }
.section--panel { background: var(--panel); border-top: 1px solid var(--rule); }
.section--felt {
  background: linear-gradient(180deg, var(--felt-deep) 0%, var(--panel) 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section--hem { border-top: 1px solid rgba(217, 174, 69, 0.18); }

.kicker {
  margin: 0 0 14px;
  font-family: var(--cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--cream); }

.h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  text-wrap: balance;
}

.lede {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(242, 233, 208, 0.78);
  max-width: 540px;
  text-wrap: pretty;
}

.btn {
  display: inline-block;
  padding: 16px 30px;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--cond);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid var(--brass);
}
.btn:hover, .btn:focus { background: var(--cream); border-color: var(--cream); color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242, 233, 208, 0.45);
}
.btn--ghost:hover, .btn--ghost:focus {
  background: transparent;
  border-color: var(--brass);
  color: var(--brass);
}

.btn--sm { padding: 15px 26px; font-size: 15px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  padding: 12px 20px;
  background: rgba(11, 15, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.site-brand { display: flex; align-items: center; gap: 12px; flex: 0 1 auto; }
.site-brand img { height: 38px; width: auto; display: block; }

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-nav { flex: 1 1 auto; }
.site-nav a { color: var(--cream); }
.site-nav a:hover, .site-nav a:focus, .site-nav .current-menu-item > a { color: var(--brass); }

.header-cta {
  flex: 0 0 auto;
  padding: 9px 16px;
  background: var(--brass);
  color: var(--ink);
  border-radius: 2px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.header-cta:hover, .header-cta:focus { background: var(--cream); color: var(--ink); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 88px 28px 76px;
  text-align: center;
  background: radial-gradient(120% 90% at 50% 0%, var(--felt) 0%, var(--felt-deep) 45%, var(--ink) 100%);
  border-bottom: 1px solid var(--rule);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: repeating-linear-gradient(115deg, rgba(0,0,0,0.55) 0 2px, rgba(255,255,255,0.03) 2px 4px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.hero__logo {
  width: min(560px, 86vw);
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}
.hero h1 {
  margin: 0;
  font-size: clamp(28px, 4.8vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero__kicker {
  margin: 0;
  font-family: var(--cond);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.hero__blurb {
  margin: 0;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(242, 233, 208, 0.78);
  text-wrap: pretty;
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(242, 233, 208, 0.16);
  width: min(700px, 100%);
  font-family: var(--cond);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-70);
}
.hero__facts a { color: var(--cream-70); letter-spacing: 0.16em; }
.hero__facts a:hover, .hero__facts a:focus { color: var(--brass); }
.hero__facts .dot { color: rgba(217, 174, 69, 0.6); }

/* ---------- cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.card {
  padding: 34px 30px 36px;
  background: var(--panel);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
}
.card__figure {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  color: var(--brass);
  margin-bottom: 18px;
}
.card__figure span { font-size: 22px; }
.card h3 {
  margin: 0 0 10px;
  font-family: var(--cond);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card p { margin: 0; font-size: 17px; line-height: 1.62; color: var(--cream-70); }

/* ---------- two-column blocks ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: start;
}
.split--center { align-items: center; }
.split--wide-gap { gap: 56px; }

/* ---------- stacked fact list ---------- */

.slab {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(217, 174, 69, 0.2);
  border: 1px solid rgba(217, 174, 69, 0.2);
  border-radius: 3px;
  overflow: hidden;
}
.slab__row { padding: 22px 26px; background: var(--panel); }
.slab__row--ink { background: var(--ink); }
.slab__label {
  margin: 0 0 6px;
  font-family: var(--cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-55);
}
.slab__value { margin: 0; font-size: 19px; color: var(--cream); }
.slab__value a { color: var(--cream); }
.slab__value a:hover, .slab__value a:focus { color: var(--brass); }

.board__row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 22px 26px;
  background: var(--ink);
}
.board__night {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--brass);
  min-width: 78px;
  letter-spacing: 0.04em;
}
.board__note { font-size: 17px; line-height: 1.5; color: rgba(242, 233, 208, 0.78); }

/* ---------- media slot ---------- */

.media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--panel);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  overflow: hidden;
}
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media__empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-family: var(--cond);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-55);
}

/* ---------- social feed ---------- */

.feed-head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 34px;
}
.feed-head .h2 { margin: 0; font-size: clamp(26px, 3.4vw, 40px); }
#curator-feed-default-feed-layout { min-height: 240px; }
#curator-feed-default-feed-layout .crt-logo {
  font-family: var(--cond);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 233, 208, 0.4);
}

/* ---------- hiring band ---------- */

.band {
  padding: 76px 28px;
  background: var(--brass);
  color: var(--ink);
}
.band__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.band .kicker { color: rgba(11, 15, 13, 0.86); font-weight: 700; }
.band h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.08;
  text-wrap: balance;
}
.band p { margin: 0; font-size: 18px; line-height: 1.6; color: rgba(11, 15, 13, 0.78); text-wrap: pretty; }
.band__text { max-width: 600px; }
.band__actions { display: flex; flex-direction: column; gap: 12px; }
.band__actions a {
  padding: 15px 28px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 2px;
}
.band__actions a:first-child { background: var(--ink); color: var(--brass); }
.band__actions a:first-child:hover, .band__actions a:first-child:focus { color: var(--cream); }
.band__actions a:last-child { border: 1px solid rgba(11, 15, 13, 0.5); color: var(--ink); }
.band__actions a:last-child:hover, .band__actions a:last-child:focus { background: rgba(11, 15, 13, 0.08); }

/* ---------- visit ---------- */

.visit {
  padding: 96px 28px 80px;
  background: radial-gradient(110% 80% at 50% 100%, var(--felt) 0%, var(--felt-deep) 45%, var(--ink) 100%);
}
.visit__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 44px;
}
.visit h3 {
  margin: 0 0 16px;
  font-family: var(--cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242, 233, 208, 0.6);
}
.visit__big { margin: 0 0 8px; font-size: 21px; line-height: 1.45; color: var(--cream); }
.visit__big a { color: var(--cream); }
.visit__big a:hover, .visit__big a:focus { color: var(--brass); }
.visit__small { margin: 0; font-size: 17px; line-height: 1.5; color: rgba(242, 233, 208, 0.6); }
.visit__link {
  font-family: var(--cond);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.visit__socials {
  display: flex;
  gap: 20px;
  font-family: var(--cond);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- page header (interior pages) ---------- */

.page-hero {
  padding: 72px 28px 56px;
  background: linear-gradient(180deg, var(--felt-deep) 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.page-hero h1 {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(28px, 4.6vw, 50px);
  line-height: 1.06;
  text-wrap: balance;
}
.page-hero p {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(242, 233, 208, 0.78);
  text-wrap: pretty;
}

.breadcrumbs {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px 28px;
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-55);
}
.breadcrumbs a { color: var(--cream-55); }
.breadcrumbs a:hover, .breadcrumbs a:focus { color: var(--brass); }
.breadcrumbs span[aria-current] { color: var(--cream); }

/* ---------- prose (editor content) ---------- */

.prose { font-size: 18px; line-height: 1.7; color: rgba(242, 233, 208, 0.82); }
.prose h2 { font-size: clamp(24px, 3vw, 34px); line-height: 1.15; margin: 48px 0 16px; }
.prose h3 {
  font-family: var(--cond);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 36px 0 12px;
}
.prose p { margin: 0 0 18px; text-wrap: pretty; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  margin: 28px 0;
  padding: 18px 26px;
  background: var(--panel);
  border-left: 3px solid var(--brass);
  font-size: 20px;
}
.prose img { border-radius: 3px; }

/* ---------- toast embed ---------- */

.toast-embed {
  position: relative;
  width: 100%;
  min-height: 720px;
  background: var(--panel);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  overflow: hidden;
}
.toast-embed iframe { width: 100%; height: 100%; min-height: 720px; border: 0; display: block; }
.toast-fallback { padding: 44px 30px; text-align: center; }
.toast-fallback p { margin: 0 0 22px; color: var(--cream-70); }

/* ---------- footer ---------- */

.site-footer {
  padding: 34px 28px;
  background: var(--ink);
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 233, 208, 0.5);
}

@media (max-width: 640px) {
  .section, .visit { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 68px; padding-bottom: 68px; }
  .hero { padding: 60px 20px 52px; }
  body { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* ---------- v1.1 launch refinements ---------- */

section[id] { scroll-margin-top: 84px; }
.muted-inline { color: rgba(242,233,208,0.6); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}
.nav-toggle__bars { display: grid; gap: 5px; }
.nav-toggle__bars span { display: block; height: 2px; background: currentColor; border-radius: 999px; }

.hero--video {
  min-height: min(820px, calc(100vh - 63px));
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__video,
.hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__video { object-fit: cover; }
.hero__wash {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,10,9,0.64) 0%, rgba(7,10,9,0.72) 55%, rgba(11,15,13,0.94) 100%),
    radial-gradient(90% 80% at 50% 20%, rgba(23,86,66,0.32), transparent 70%);
}
.hero__grain { z-index: 2; }
.hero__inner { z-index: 3; }
.hero__logo { width: min(470px, 78vw); }

.about-stack { display: grid; gap: 24px; }
.media--portrait { aspect-ratio: 4 / 5; }

.menu-teaser-head { align-items: end; margin-bottom: 44px; }
.menu-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.menu-teaser {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
}
.menu-teaser span {
  font-family: var(--cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-70);
}
.menu-teaser strong { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--brass); }

.page-hero .kicker { text-align: center; }
.page-hero__actions { margin-top: 26px; }

.notice-card,
.deal-card {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 3px;
}
.notice-card__title,
.deal-card__label {
  margin: 0 0 8px;
  font-family: var(--cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
}
.notice-card p { margin: 0 0 16px; color: var(--cream-70); }
.notice-card a { font-family: var(--cond); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.deal-card { margin-top: 28px; }
.deal-card__when { margin: 0 0 8px; font-family: var(--serif); font-size: 24px; color: var(--cream); }
.deal-card__deals { margin: 0; color: var(--cream-70); }
.deal-card__note { margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--rule-soft); color: var(--brass); font-family: var(--cond); font-weight: 600; letter-spacing: .06em; }
.schedule-note { margin: 14px 4px 0; font-size: 15px; line-height: 1.5; color: var(--cream-55); }
.weekly-board .board__night { min-width: 96px; }

.event-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.event-feature {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(0, 1.2fr);
  gap: 0;
  background: var(--ink);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  overflow: hidden;
}
.event-feature__media { border: 0; border-radius: 0; min-height: 100%; }
.event-feature__copy { padding: 30px; align-self: center; }
.event-feature__copy h2 { margin: 0 0 14px; font-size: clamp(26px, 3vw, 36px); line-height: 1.08; }
.event-feature__copy p:not(.kicker) { margin: 0; color: var(--cream-70); }
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

.menu-intro { padding-top: 72px; }
.menu-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 42px 0 52px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.menu-jump a {
  padding: 9px 13px;
  border: 1px solid var(--rule-soft);
  border-radius: 999px;
  color: var(--cream-70);
  font-family: var(--cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.menu-jump a:hover,
.menu-jump a:focus { color: var(--brass); border-color: var(--brass); }
.menu-sections { display: grid; gap: 58px; }
.menu-section { scroll-margin-top: 94px; }
.menu-section__head { max-width: 720px; margin-bottom: 22px; }
.menu-section__head h2 { margin: 0 0 8px; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1; }
.menu-section__head p { margin: 0; color: var(--cream-70); }
.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.menu-item {
  padding: 22px 24px;
  background: var(--panel);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
}
.menu-item__line { display: flex; gap: 18px; align-items: baseline; justify-content: space-between; }
.menu-item h3 { margin: 0; font-family: var(--cond); font-size: 20px; font-weight: 700; letter-spacing: .04em; }
.menu-item__price { flex: 0 0 auto; font-family: var(--serif); font-size: 18px; color: var(--brass); }
.menu-item p { margin: 8px 0 0; font-size: 16px; line-height: 1.55; color: var(--cream-70); }
.menu-order-band {
  margin-top: 66px;
  padding: 34px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  background: var(--felt-deep);
  border: 1px solid var(--rule);
  border-radius: 3px;
}
.menu-order-band h2 { margin: 0 0 8px; font-size: clamp(28px, 3vw, 38px); }
.menu-order-band p:not(.kicker) { margin: 0; color: var(--cream-70); }
.mini-heading {
  font-family: var(--cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(242,233,208,.6);
  margin: 0 0 16px;
}

@media (max-width: 980px) {
  .menu-teaser-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { flex-wrap: nowrap; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 14px 20px 20px;
    background: rgba(11,15,13,.98);
    border-bottom: 1px solid var(--rule);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { display: grid; justify-content: stretch; gap: 0; }
  .site-nav li { border-top: 1px solid var(--rule-soft); }
  .site-nav a { display: block; padding: 13px 4px; }
  .header-cta { padding: 9px 12px; font-size: 12px; }
  .hero--video { min-height: auto; }
  .hero__logo { width: min(390px, 82vw); }
  .event-feature { grid-template-columns: 1fr; }
  .event-feature__media { aspect-ratio: 16 / 10; }
  .event-feature--video .event-feature__media { aspect-ratio: 4 / 5; max-height: 520px; }
  .menu-order-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .menu-teaser-grid,
  .menu-items { grid-template-columns: 1fr; }
  .menu-jump { gap: 8px; }
  .menu-jump a { font-size: 12px; }
  .weekly-board .board__row { display: grid; gap: 6px; }
  .weekly-board .board__night { min-width: 0; }
  .page-hero__actions .btn { width: 100%; }
}

/* ---------- v1.2 ---------- */

.hero__poster,
.hero__poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__poster img { display: block; object-fit: cover; }
.hero__video { opacity: 0; transition: opacity .6s ease; }
.hero__video.is-playing { opacity: 1; }

.video-frame { position: relative; }
.video-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  padding: 7px 11px;
  font-family: var(--cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(11, 15, 13, .72);
  border: 1px solid var(--rule);
  border-radius: 2px;
  cursor: pointer;
}
.video-toggle:hover,
.video-toggle:focus-visible { color: var(--ink); background: var(--cream); }

.door-note {
  margin: 14px 0 0;
  font-family: var(--cond);
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--brass);
}

.drinks-block { margin-top: 72px; padding-top: 56px; border-top: 1px solid var(--rule); }
.drinks-block__head { margin-bottom: 44px; align-items: start; }
.drinks-block .deal-card { margin-top: 0; }

/* ---------- v1.3 ---------- */

.map-buttons { margin-top: 4px; }
.map-buttons .btn { white-space: nowrap; }

.tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-list li {
  padding: 10px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.addon {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
}
.addon h3 {
  margin: 0 0 8px;
  font-family: var(--cond);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brass);
}
.addon p { margin: 0; color: var(--cream-70); }

@media (max-width: 980px) {
  .addon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .addon-grid { grid-template-columns: 1fr; }
}

.site-footer a { color: inherit; }
.site-footer a:hover,
.site-footer a:focus { color: var(--brass); }
.site-footer__social { display: flex; flex-wrap: wrap; gap: 18px; }
.visit__socials { flex-wrap: wrap; }

/* Curator feed: reserve space so the lazily loaded widget does not shift the page. */
#curator-feed-default-feed-layout { min-height: 520px; }
#curator-feed-default-feed-layout .crt-logo { color: var(--cream-70); }
@media (max-width: 640px) { #curator-feed-default-feed-layout { min-height: 640px; } }
