/* ==========================================================================
   THE PLAYERS DEN — Naugatuck, CT
   After-dark billiards room: midnight, felt green, brass. Dark only, by design —
   this is a night venue and the page should feel like one.
   No external requests, no build step, no dependencies.
   ========================================================================== */

/* If you ever self-host a condensed display face, drop the .woff2 in
   assets/fonts/ and uncomment this block. Do NOT link a font CDN — the page
   must open straight from disk with no network at all.

@font-face {
  font-family: 'Den Display';
  src: url('fonts/display.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
}
*/

:root {
  --midnight:  #0B100D;   /* page background */
  --felt:      #17402F;   /* hero + feature panels — billiard cloth */
  --felt-deep: #0F2A1F;   /* raised cards, table surfaces */
  --bone:      #F2EDE4;   /* primary text */
  --brass:     #D8A657;   /* accent — CTAs, rules, numerals */
  --brass-lt:  #EAC68C;
  --brass-dk:  #A87A31;
  --chalk:     #4A7BA7;   /* second accent, used sparingly */
  --grey:      #98A099;   /* muted body text */

  --panel:   #101711;                    /* raised card on midnight */
  --panel-2: #141C15;
  --hair:    rgba(216,166,87,.26);       /* brass hairline */
  --hair-lt: rgba(242,237,228,.12);
  --shadow:  0 24px 60px rgba(0,0,0,.5);

  --display: 'Den Display', 'Avenir Next Condensed', 'HelveticaNeue-CondensedBold',
             'Helvetica Neue Condensed', 'Arial Narrow', ui-sans-serif, system-ui, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --shell: 1160px;
  --pad: 24px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--midnight);
  color: var(--grey);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: inherit; }
::selection { background: var(--brass); color: var(--midnight); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brass); color: var(--midnight);
  padding: 12px 18px; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------------------------------------------------------------- type */
.d {
  font-family: var(--display);
  font-weight: 700;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: 1.03;
  margin: 0;
  font-size: clamp(2.1rem, 5.6vw, 3.9rem);
}
.d--sm { font-size: clamp(1.5rem, 3.2vw, 2rem); }

h1.d { font-size: clamp(2.7rem, 8.4vw, 5.6rem); }

.eyebrow {
  display: block;
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 700;
  margin: 0 0 18px;
}
.eyebrow--light { color: var(--brass-lt); }
.eyebrow--sm { margin-bottom: 10px; }

.lede {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--grey);
  max-width: 58ch;
  margin: 22px 0 0;
}
.lede strong, .lede em { color: var(--bone); font-style: normal; }
.lede--light { color: rgba(242,237,228,.74); }
.lede--light strong, .lede--light em { color: #fff; }

.head { max-width: 62ch; margin-bottom: 48px; }
.head--wide { max-width: 68ch; }

.section { padding: clamp(64px, 9vw, 104px) 0; position: relative; }

/* Felt panels — billiard cloth green, with an optional faint noise texture. */
.section--felt { background: var(--felt); color: rgba(242,237,228,.78); overflow: hidden; }
.section--felt .lede { color: rgba(242,237,228,.74); }

.felt-tex {
  position: absolute; inset: 0;
  opacity: .05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* -------------------------------------------- rules (table-rail diamonds) */
.rule {
  position: relative;
  height: 1px;
  max-width: var(--shell);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--hair) 16%, var(--hair) 84%, transparent);
  display: flex; align-items: center; justify-content: center;
  gap: 46px;
}
.rule__d {
  width: 8px; height: 8px;
  background: var(--brass);
  transform: rotate(45deg);
  box-shadow: 0 0 0 7px var(--midnight);
}
.rule__d:nth-child(2) { opacity: .55; }
.rule__d:nth-child(3) { opacity: .3; }

/* ------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--sm { padding: 10px 18px; font-size: .75rem; }
.btn--lg { padding: 17px 30px; }

.btn--brass {
  background: linear-gradient(180deg, var(--brass-lt), var(--brass) 45%, var(--brass-dk));
  color: #12100A;
  border-color: rgba(0,0,0,.22);
  box-shadow: 0 0 26px rgba(216,166,87,.16);
}
.btn--brass:hover { background: linear-gradient(180deg, var(--brass), var(--brass-dk)); }

.btn--ghost {
  color: var(--bone);
  border-color: rgba(216,166,87,.42);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--brass); background: rgba(216,166,87,.1); }

.btn--bone { background: var(--bone); color: var(--midnight); }
.btn--bone:hover { background: #fff; }

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

.lnk {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brass);
  text-decoration: none;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(216,166,87,.4);
  padding-bottom: 2px;
}
.lnk svg { width: 15px; height: 15px; }
.lnk:hover { color: var(--brass-lt); border-color: var(--brass-lt); }
.lnk-row { margin: 40px 0 0; }

/* ------------------------------------------------------- placeholder flags */
/* Every invented fact on this page is marked. Do not remove these until the
   owner has confirmed the real content. */
.flag {
  border: 1px solid rgba(74,123,167,.4);
  background: rgba(74,123,167,.09);
  color: rgba(242,237,228,.8);
  border-left: 3px solid var(--chalk);
  padding: 14px 18px;
  margin: 0 0 34px;
  font-size: .875rem;
  line-height: 1.6;
  border-radius: 2px;
}
.flag strong { color: var(--bone); }
.dag { color: var(--chalk); font-weight: 700; }
.flag-in {
  display: inline;
  color: var(--chalk);
  font-size: .9375em;
}

/* -------------------------------------------------------------- header */
.top {
  position: sticky; top: 0; z-index: 90;
  background: rgba(11,16,13,.88);
  border-bottom: 1px solid var(--hair);
}
@supports (backdrop-filter: blur(10px)) {
  .top { backdrop-filter: blur(12px) saturate(1.1); }
}
.top__in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 11px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { width: 36px; height: 36px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 1.1875rem;
  color: var(--bone);
}
.brand__sub {
  font-size: .625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 3px;
}

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 13vw, 138px) 0 clamp(72px, 11vw, 120px);
  background: var(--midnight);
  isolation: isolate;
}

/* the low-hung bar lamp over the table */
.hero__lamp {
  position: absolute; z-index: -2;
  left: 50%; top: -18%;
  width: min(1100px, 130vw); height: min(760px, 90vw);
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(216,166,87,.20), rgba(216,166,87,.07) 46%, transparent 72%);
  pointer-events: none;
}
.hero__vig {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 0%, transparent 30%, rgba(11,16,13,.55) 78%, var(--midnight) 100%),
    linear-gradient(180deg, transparent 55%, var(--midnight) 100%);
  pointer-events: none;
}
.hero__photo {
  position: absolute; inset: 0; z-index: -3;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero__photo.is-on { opacity: .3; }

.hero__art {
  position: absolute; z-index: -1;
  right: -6%; bottom: -4%;
  width: min(620px, 62vw);
  color: rgba(216,166,87,.16);
  pointer-events: none;
}
.hero__art svg { display: block; width: 100%; height: auto; }

.hero__in { position: relative; }
.hero .lede { max-width: 54ch; }

/* ------------------------------------------------------ open/closed pill */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 26px;
  padding: 9px 16px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: rgba(15,42,31,.5);
  font-size: .8125rem;
  color: var(--grey);
  letter-spacing: .01em;
}
.pill b { color: var(--bone); font-weight: 700; }
.pill .sep { opacity: .35; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex: none;
  background: var(--grey);
}
.dot--on {
  background: #64C08A;
  box-shadow: 0 0 0 3px rgba(100,192,138,.18), 0 0 10px rgba(100,192,138,.6);
}
.dot--off { background: #9B5B4E; box-shadow: 0 0 0 3px rgba(155,91,78,.15); }

.section--felt .pill { background: rgba(11,16,13,.32); border-color: rgba(242,237,228,.18); }

/* ----------------------------------------------------------- proof bar */
.proof {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: linear-gradient(180deg, rgba(23,64,47,.24), rgba(11,16,13,0));
}
.proof__in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 34px; padding-bottom: 34px;
  text-align: center;
}
/* Bottom-align the labels — the rating cell is taller because of the stars. */
.proof__i { position: relative; display: flex; flex-direction: column; }
.proof__l { margin-top: auto; }
.proof__i + .proof__i::before {
  content: '';
  position: absolute; left: -12px; top: 12%;
  width: 1px; height: 76%;
  background: var(--hair);
}
.proof__n {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 1;
  color: var(--brass);
}
.proof__l {
  padding-top: 8px;
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey);
}
/* align-self keeps this shrink-to-content inside the flex-column cell — without
   it the box stretches and the partial-fill overlay no longer lines up. */
.stars { position: relative; display: inline-block; align-self: center; margin-top: 8px; line-height: 0; }
.stars svg { width: 13px; height: 13px; margin: 0 1px; }
.stars__base { color: rgba(216,166,87,.24); display: inline-flex; }
.stars__fill {
  position: absolute; left: 0; top: 0;
  overflow: hidden; white-space: nowrap;
  color: var(--brass);
  display: inline-flex;
}

/* ====================================================== HOW TO FIND US */
.find__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.steps { list-style: none; margin: 0; padding: 0; }
.step {
  display: flex; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair-lt);
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: 0; }
.step__n {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--brass);
  border: 1px solid var(--hair);
  background: rgba(216,166,87,.07);
  border-radius: 50%;
}
.step__h {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 1.1875rem;
  color: var(--bone);
  margin: 6px 0 6px;
}
.step p { margin: 0; font-size: .9375rem; }
.step strong { color: var(--bone); }

.find__map { position: relative; }
.find__mapin {
  position: relative;
  border: 1px solid var(--hair);
  background: var(--panel);
  border-radius: 3px;
  overflow: hidden;
  background-size: cover; background-position: center;
  aspect-ratio: 420 / 320;
}
.find__svg { display: block; width: 100%; height: 100%; }
.find__mapin.is-photo .find__svg { display: none; }
.find__cap {
  margin: 14px 0 0;
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--grey);
}

.addr {
  margin-top: clamp(38px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  padding: clamp(24px, 3.4vw, 34px);
  border: 1px solid var(--hair);
  border-radius: 3px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
}
.addr__line {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--bone);
  margin: 0;
}
.addr__body { margin: 0; font-size: .9375rem; }
.addr__note {
  display: flex; align-items: center; gap: 9px;
  margin: 14px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(216,166,87,.4);
  background: rgba(216,166,87,.09);
  border-radius: 2px;
  color: var(--brass-lt);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.addr__note svg { width: 17px; height: 17px; flex: none; }
.addr__cta { display: flex; flex-direction: column; gap: 12px; }
.addr__cta .btn { justify-content: center; }

/* ============================================================ WHAT'S ON */
.week { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.wk {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--hair-lt);
  border-left: 3px solid rgba(242,237,228,.14);
  border-radius: 2px;
  background: var(--panel);
}
.wk__day {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.0625rem;
  color: var(--grey);
  display: flex; align-items: center; gap: 10px;
}
.wk__h {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 1.25rem;
  color: var(--bone);
  margin: 0 0 2px;
}
.wk__body p { margin: 0; font-size: .9375rem; line-height: 1.55; }
.wk__badge {
  font-size: .625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--hair-lt);
  color: var(--grey);
  white-space: nowrap;
}
.wk__badge--tournament { color: var(--brass); border-color: rgba(216,166,87,.45); background: rgba(216,166,87,.1); }
.wk__badge--late { color: var(--chalk); border-color: rgba(74,123,167,.45); background: rgba(74,123,167,.1); }

/* tonight */
.wk.is-now {
  border-color: rgba(216,166,87,.42);
  border-left-color: var(--brass);
  background: linear-gradient(90deg, rgba(216,166,87,.11), var(--panel) 46%);
  box-shadow: 0 0 34px rgba(216,166,87,.09);
}
.wk.is-now .wk__day { color: var(--brass); }
.wk__now {
  font-family: var(--sans);
  font-size: .5625rem;
  letter-spacing: .18em;
  padding: 4px 8px;
  border-radius: 2px;
  background: var(--brass);
  color: var(--midnight);
  font-weight: 700;
}

.league {
  margin-top: clamp(34px, 4.5vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  padding: clamp(26px, 3.6vw, 38px);
  border: 1px solid var(--hair);
  border-radius: 3px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(23,64,47,.6), transparent 60%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
}
.league__body p { margin: 14px 0 0; font-size: .9375rem; max-width: 60ch; }
.league__now { color: var(--bone); }
.league__cta { display: flex; flex-direction: column; gap: 12px; }
.league__cta .btn { justify-content: center; }

/* =============================================================== ROOM */
.kit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.kit__c {
  padding: 26px 24px;
  border: 1px solid rgba(242,237,228,.14);
  border-radius: 3px;
  background: rgba(15,42,31,.55);
}
.kit__i { width: 40px; height: 40px; color: var(--brass); display: block; margin-bottom: 16px; }
.kit__h {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.1875rem;
  color: var(--bone);
  margin: 0 0 8px;
}
.kit__c p { margin: 0; font-size: .9375rem; line-height: 1.6; color: rgba(242,237,228,.7); }

.kit__c--wide { grid-column: span 1; padding: 0; border: 0; background: none; }
.kit__shot, .menu__shot {
  position: relative;
  height: 100%;
  min-height: 230px;
  /* solid, not dashed — these hold finished placeholder artwork now, so they
     should read as panels rather than as empty drop zones */
  border: 1px solid var(--hair);
  border-radius: 3px;
  background: rgba(11,16,13,.34);
  background-size: cover; background-position: center;
  display: grid; place-items: center;
}
.kit__shot.is-photo, .menu__shot.is-photo { border-style: solid; border-color: var(--hair); }
/* ------------------------------------------------ "replace image" mockups
   Marks every empty photo slot as a deliberate, labelled placeholder rather
   than an oversight — and doubles as the instructions: each one names the
   exact file it's waiting for and the size to shoot.

   These clear themselves. Drop the named file into assets/photos/ and the JS
   adds .is-photo to the container, which hides the marker.

   ⚠ DO NOT LAUNCH with these visible. They are a spec-pitch device. If the
   site ever goes live still missing photos, supply the images or strip the
   markers first. */
/* Placeholder ARTWORK filling a photo slot. Original illustration, drawn for
   this build — never a photograph, and never anything lifted from the venue's
   Google or Facebook listings. It reads as a drawing on purpose: a photoreal
   stand-in would pass as a picture of the actual room, which is a quieter lie
   than the daggered menu prices and far harder for anyone to catch. */
.mock {
  position: absolute; inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
}
.is-photo .mock { display: none; }

/* Compact corner tag — used where the placeholder art is real content that
   shouldn't be covered up: the hero, and the wayfinding schematic. */
.slot-tag {
  position: absolute; z-index: 4;
  right: 12px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px;
  border: 1px dashed rgba(216,166,87,.5);
  border-radius: 2px;
  background: rgba(11,16,13,.82);
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--brass);
  pointer-events: none;
}
.slot-tag svg { width: 12px; height: 12px; flex: none; }
.slot-tag code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(242,237,228,.72);
}
.slot-tag[hidden] { display: none; }

/* =============================================================== FOOD */
.qbig {
  margin: 0 0 34px;
  padding: 0 0 0 clamp(20px, 3vw, 30px);
  border-left: 2px solid var(--brass);
}
.qbig blockquote {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.16;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  color: var(--bone);
}
.qbig figcaption {
  margin-top: 14px;
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
}

.serve { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 30px; }
.serve__t {
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bone);
  padding: 7px 14px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: rgba(216,166,87,.07);
}
.serve__n { font-size: .8125rem; color: var(--grey); margin-left: 6px; }

.menu { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 60px); }
.menu__k {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .875rem;
  color: var(--brass);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hair);
}
.menu__col > .menu__k:not(:first-child) { margin-top: 34px; }
.menu__l { list-style: none; margin: 0 0 4px; padding: 0; }
.menu__i {
  display: flex; align-items: baseline; gap: 10px;
  padding: 9px 0;
  font-size: .9375rem;
}
.menu__n { color: var(--bone); }
.menu__d {
  flex: 1;
  border-bottom: 1px dotted rgba(242,237,228,.2);
  transform: translateY(-4px);
}
.menu__p { color: var(--brass); font-weight: 700; white-space: nowrap; }
.menu__body { font-size: .9375rem; margin: 0; }
.menu__foot { margin: 22px 0 0; font-size: .875rem; }
.menu__foot a { color: var(--brass); }
.menu__shot { min-height: 230px; margin-bottom: 30px; }

/* ============================================================ REVIEWS */
.revs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rev {
  position: relative;
  margin: 0;
  padding: 30px 26px 24px;
  border: 1px solid var(--hair-lt);
  border-top: 2px solid rgba(216,166,87,.4);
  border-radius: 3px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}
.rev__q {
  position: absolute; top: 6px; left: 20px;
  font-family: var(--display);
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(216,166,87,.24);
}
.rev blockquote {
  margin: 0;
  font-size: .9375rem;
  line-height: 1.65;
  color: rgba(242,237,228,.86);
  position: relative;
}
.rev figcaption {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--hair-lt);
  display: flex; flex-direction: column; gap: 2px;
}
.rev__who { color: var(--bone); font-weight: 700; font-size: .875rem; }
.rev__meta { font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); }

.pull {
  margin: 40px 0 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 3.4vw, 2.1rem);
  line-height: 1.2;
  color: var(--brass);
}

.tags { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 36px; }
.tags__k {
  font-size: .625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-right: 6px;
}
.tag {
  font-size: .75rem;
  padding: 6px 12px;
  border: 1px solid var(--hair-lt);
  border-radius: 999px;
  color: rgba(242,237,228,.8);
}
.tag i { font-style: normal; color: var(--brass); font-weight: 700; margin-left: 5px; }

/* ============================================================== VISIT */
.visit__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(24px, 4vw, 44px); }
.visit__card {
  padding: clamp(24px, 3.4vw, 34px);
  border: 1px solid rgba(242,237,228,.16);
  border-radius: 3px;
  background: rgba(11,16,13,.42);
}
.visit__k {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .875rem;
  color: var(--brass-lt);
  margin: 0 0 18px;
}

.hrs { list-style: none; margin: 0; padding: 0; }
.hrs li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(242,237,228,.1);
  font-size: .9375rem;
  color: rgba(242,237,228,.78);
  border-radius: 2px;
}
.hrs li:last-child { border-bottom: 0; }
.hrs li span:last-child { color: var(--bone); white-space: nowrap; }
.hrs .is-today {
  background: rgba(216,166,87,.13);
  color: var(--bone);
  box-shadow: inset 2px 0 0 var(--brass);
}
.hrs .is-today span:last-child { color: var(--brass-lt); font-weight: 700; }
.hrs__t {
  margin-left: 9px;
  font-size: .5625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
  background: var(--brass);
  color: var(--midnight);
  font-weight: 700;
}
.visit__note { margin: 18px 0 0; font-size: .8125rem; }

.lines { list-style: none; margin: 0; padding: 0; }
.lines li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(242,237,228,.1);
  display: flex; flex-direction: column; gap: 5px;
}
.lines li:last-child { border-bottom: 0; }
.lines__k {
  font-size: .625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242,237,228,.5);
}
.lines__v { color: var(--bone); text-decoration: none; border-bottom: 1px solid transparent; align-self: flex-start; }
.lines__v:hover { border-color: var(--brass); }
.lines__v--big {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.625rem;
  letter-spacing: .01em;
}
.lines__flagged { font-size: .8125rem; color: var(--brass-lt); }

/* ============================================================= FOOTER */
.foot {
  border-top: 1px solid var(--hair);
  background: #080C09;
  padding: clamp(48px, 6vw, 68px) 0 26px;
  font-size: .875rem;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: clamp(24px, 4vw, 44px);
}
.foot__brand p { margin: 18px 0 0; max-width: 40ch; font-size: .875rem; }
.foot h4 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  color: var(--brass);
  margin: 0 0 16px;
}
.foot__list { list-style: none; margin: 0; padding: 0; }
.foot__list li { padding: 6px 0; line-height: 1.5; }
.foot__list li em { font-style: normal; color: var(--brass-lt); font-size: .8125rem; }
.foot__list a { color: var(--grey); text-decoration: none; }
.foot__list a:hover { color: var(--bone); }
.foot__list .is-today { color: var(--brass-lt); }
.foot__bar {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(242,237,228,.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: .75rem;
  color: rgba(152,160,153,.72);
}

/* =================================================== MOBILE BOTTOM BAR */
.barbar { display: none; }

/* ======================================================= DESKTOP CALL CARD */
.dlg {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4,7,5,.76);
  display: grid; place-items: center;
  padding: 24px;
}
.dlg[hidden] { display: none; }
.dlg__card {
  position: relative;
  width: min(420px, 100%);
  padding: 34px 30px 30px;
  border: 1px solid var(--hair);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
  text-align: center;
}
.dlg__x {
  position: absolute; top: 10px; right: 12px;
  background: none; border: 0;
  color: var(--grey);
  font-size: 1.6rem; line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
}
.dlg__x:hover { color: var(--bone); }
.dlg__num {
  display: block;
  margin: 12px 0 4px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 2.6rem);
  color: var(--brass);
  text-decoration: none;
}
.dlg__addr { font-size: .8125rem; margin: 16px 0 0; }
.dlg .btn-row { margin-top: 22px; }

/* ======================================================= scroll reveals */
.js [data-rise] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.js [data-rise].is-in { opacity: 1; transform: none; }

/* ========================================================== responsive */
@media (max-width: 980px) {
  .find__grid { grid-template-columns: 1fr; }
  .addr { grid-template-columns: 1fr 1fr; }
  .addr__cta { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .league { grid-template-columns: 1fr; }
  .league__cta { flex-direction: row; flex-wrap: wrap; }
  .kit { grid-template-columns: repeat(2, 1fr); }
  .revs { grid-template-columns: 1fr; }
  .menu { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { padding-bottom: 66px; }  /* room for the fixed bottom bar */

  .top__dir .btn__long { display: none; }

  .proof__in { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
  .proof__i:nth-child(odd) + .proof__i::before { left: -9px; }
  .proof__i:nth-child(3)::before { display: none; }

  .wk { grid-template-columns: 1fr; gap: 8px; padding: 16px 18px; }
  .wk__badge { justify-self: start; }

  .kit { grid-template-columns: 1fr; }
  .addr { grid-template-columns: 1fr; }
  .addr__cta { flex-direction: column; }
  .addr__cta .btn { width: 100%; }
  .league__cta { flex-direction: column; }
  .league__cta .btn { width: 100%; }

  .foot__grid { grid-template-columns: 1fr; }
  .foot__bar { flex-direction: column; }

  .hero__art { right: -22%; bottom: -2%; width: 96vw; opacity: .7; }

  /* fixed bottom bar — not optional on mobile */
  .barbar {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    border-top: 1px solid var(--hair);
    background: rgba(11,16,13,.96);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  @supports (backdrop-filter: blur(10px)) {
    .barbar { backdrop-filter: blur(12px); }
  }
  .barbar__a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 17px 10px;
    text-decoration: none;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bone);
  }
  .barbar__a svg { width: 16px; height: 16px; }
  .barbar__a--brass {
    background: linear-gradient(180deg, var(--brass-lt), var(--brass) 45%, var(--brass-dk));
    color: #12100A;
  }
  .barbar__a + .barbar__a { border-left: 1px solid var(--hair); }

  /* the desktop call card is never shown on touch — JS gates it too */
  .dlg { display: none; }
}

@media (max-width: 560px) {
  /* The fixed bottom bar already carries Directions, so the header drops it and
     gives the wordmark the whole width instead of wrapping onto three lines. */
  .top__dir { display: none; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__name { font-size: 1.0625rem; }
  .brand__sub { font-size: .5625rem; letter-spacing: .13em; }

  .step { gap: 14px; }
  .step__n { width: 38px; height: 38px; font-size: 1.125rem; }

  .serve__n { margin-left: 0; }
  .tags__k { width: 100%; margin-bottom: 4px; }
}

/* ==================================================== reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-rise] { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
