/* ============================================================
   Yoga Guide theme — "Studio Board": a studio front-desk chalkboard
   noticeboard, not a corporate directory grid. Dark chalkboard-green
   ground (real chalkboards were green before "blackboard" stuck), chalk
   hand-lettering for headlines, printed-index-card data for everything
   else, real listing photos pinned to a corkboard strip per style.
   Deliberately single-theme (a chalkboard has one look regardless of the
   viewer's OS dark/light setting) — every color below is explicit.
   This is a full standalone page rendering outside the main layout.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --board: #223330;
  --board-edge: #1a2724;
  --board-2: #1c2a27;
  --chalk: #EDEAE0;
  --chalk-dim: #9FB0A9;
  --chalk-faint: #8B9C97;
  --yellow: #E8C468;
  --coral: #D98A73;
  --blue: #8FB3BE;
  --paper: #F3EEE0;
  --paper-ink: #332C22;
  --paper-ink-dim: #6b6151;
  --rail: rgba(237,234,224,.16);
  --max-w: 940px;
  --link: #E8C468;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  background: var(--board);
  color: var(--chalk);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: var(--link); text-decoration: none; transition: color .2s; }
a:hover { color: var(--yellow); }
p { line-height: 1.65; }
h1, h2, h3 { text-wrap: balance; }
::selection { background: var(--yellow); color: var(--board-edge); }
.sr-only { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

.chalkfont { font-family: 'Caveat', cursive; }
.monofont { font-family: 'IBM Plex Mono', ui-monospace, monospace; }

/* subtle chalkboard texture across the whole page */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.02) 1px, transparent 1.4px),
    radial-gradient(rgba(255,255,255,.015) 1px, transparent 1.2px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 2px 3px;
}
body > * { position: relative; z-index: 1; }

/* ── SITE BAR ── */
.site-bar { height: 46px; display: flex; align-items: center; padding: 0 24px; font-family: 'IBM Plex Mono', monospace; font-size: 16px; color: var(--chalk-dim); letter-spacing: .04em; position: sticky; top: 0; z-index: 300; background: var(--board-edge); border-bottom: 1px solid var(--rail); }
.brand { color: var(--chalk); font-weight: 600; font-size: 16px; }
.site-bar-back { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--chalk-dim); text-decoration: none; white-space: nowrap; transition: color .15s; }
.site-bar-back:hover { color: var(--yellow); }

/* ── HERO ── */
.hero { max-width: var(--max-w); margin: 0 auto; padding: 34px 24px 30px; border-bottom: 1px solid var(--rail); position: relative; overflow: hidden; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hero-watermark { position: absolute; top: -10px; right: 0; font-size: clamp(90px, 16vw, 170px); line-height: 1; opacity: .07; pointer-events: none; user-select: none; }
.hero-main { flex: 1; min-width: 0; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono', monospace; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.hero-kicker::before { content: ''; width: 18px; height: 1px; background: var(--blue); display: inline-block; }
.hero h1 { font-family: 'Caveat', cursive; font-weight: 700; font-size: clamp(42px, 7vw, 76px); line-height: .95; margin: 0 0 14px; color: var(--chalk); transform: rotate(-.5deg); transform-origin: left top; max-width: 16ch; }
.hero-sub { font-size: 19px; color: var(--chalk-dim) !important; max-width: 640px; margin-bottom: 22px; }
.hero-sub * { color: inherit !important; }
.hero-sub p { margin: 0; }
.hero-sub p + p { margin-top: .6em; }
.hero-byline { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--chalk-faint); }

.tally-row { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; padding-top: 20px; }
.tally { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.tally-marks { display: flex; gap: 8px; justify-content: flex-end; align-items: flex-end; height: 30px; flex-wrap: wrap; row-gap: 4px; }
.tally-marks svg { display: block; }
.tally-num { font-family: 'IBM Plex Mono', monospace; font-size: 16px; color: var(--yellow); }
.update-tag { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--chalk-faint); }

/* ── STICKY NAV ── */
.sticky-nav { position: sticky; top: 46px; z-index: 200; background: var(--board-edge); border-bottom: 1px solid var(--rail); box-shadow: 0 2px 10px rgba(0,0,0,.25); }
.nav-wrap { max-width: calc(var(--max-w) + 100px); margin: 0 auto; padding: 0 24px; position: relative; display: flex; align-items: stretch; }
.nav-inner { display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; flex: 1; min-width: 0; padding: 0 30px; margin: 0 -30px; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-btn { flex-shrink: 0; padding: 0 16px; height: 44px; display: flex; align-items: center; gap: 6px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--chalk-dim); cursor: pointer; border: none; background: transparent; border-bottom: 2px solid transparent; white-space: nowrap; transition: all .2s; }
.nav-btn:hover { color: var(--chalk); }
.nav-btn.on { color: var(--yellow); border-bottom-color: var(--yellow); }
.nav-btn .ct { font-size: 11px; color: var(--coral); margin-left: 2px; }

.nav-arrow {
  position: absolute; top: 0; bottom: 0; width: 28px; border: none; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1; color: var(--chalk-dim); background: var(--board-edge);
  transition: opacity .15s, color .15s;
}
.nav-arrow:hover { color: var(--chalk); }
.nav-arrow--left { left: 0; box-shadow: 8px 0 10px -6px rgba(0,0,0,.5); }
.nav-arrow--right { right: 0; box-shadow: -8px 0 10px -6px rgba(0,0,0,.5); }
.nav-arrow[hidden] { display: none; }

/* ── SECTION SCAFFOLDING ── */
.section { max-width: var(--max-w); margin: 0 auto; padding: 44px 24px; scroll-margin-top: 100px; }
.section + .section { border-top: 1px solid var(--rail); }
.section-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.section-head h2 { font-family: 'Caveat', cursive; font-weight: 700; font-size: 38px; color: var(--chalk); margin: 0; }
.section-head .tag { font-family: 'IBM Plex Mono', monospace; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--board-edge); background: var(--yellow); padding: 3px 9px; border-radius: 2px; }
.section-note { color: var(--chalk-faint); font-size: 16px; font-family: 'IBM Plex Mono', monospace; margin: -8px 0 22px; max-width: 68ch; line-height: 1.6; }

/* ── INTRO (scene overview) ── */
.intro-block { }

/* Scene-intro paragraphs pinned as a staggered paper note instead of plain
   body text sitting directly on the board — one slide visible at a time
   (toggled via .note-slider's Back/More buttons) so the note can run
   wider and its text larger than the old multi-up grid allowed. */
.note-slider { max-width: 780px; margin-top: 8px; }
.note-card { background: var(--paper); color: var(--paper-ink); padding: 30px 34px; border-radius: 2px; box-shadow: 0 8px 18px rgba(0,0,0,.26), 0 2px 0 rgba(0,0,0,.05); position: relative; margin-left: 2rem; }
.note-card[hidden] { display: none; }
.note-card:nth-child(odd) { transform: rotate(-1.4deg); }
.note-card:nth-child(even) { transform: rotate(1.1deg); }
.note-card::before {
  content: ''; position: absolute; top: -11px; left: 32px; width: 20px; height: 20px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff6d2 0%, var(--yellow) 45%, #b9862e 85%, #8a6323 100%);
  border: 1px solid rgba(0,0,0,.2);
  box-shadow: 0 4px 6px rgba(0,0,0,.4), inset 0 -3px 4px rgba(0,0,0,.25), inset 0 2px 2px rgba(255,255,255,.5);
  z-index: 1;
}
.note-card::after {
  content: ''; position: absolute; top: -3px; left: 40px; width: 3px; height: 10px; border-radius: 1px;
  background: linear-gradient(rgba(0,0,0,.05), rgba(0,0,0,.35));
  transform: rotate(18deg); transform-origin: top center;
}
.note-card p { font-size: 17px; line-height: 1.7; color: var(--paper-ink-dim); max-width: 62ch; }
.note-card a { color: #8a5a2f; text-decoration: underline; text-decoration-color: rgba(138,90,47,.4); }
.note-card a:hover { color: var(--paper-ink); }

.note-nav { display: flex; align-items: center; gap: 16px; margin-top: 18px; }
.note-nav-btn {
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 9px 18px; border: 1px solid var(--rail); border-radius: 3px; background: transparent; color: var(--chalk-dim); cursor: pointer; transition: all .15s;
}
.note-nav-btn:hover:not(:disabled) { color: var(--yellow); border-color: var(--yellow); }
.note-nav-btn:disabled { opacity: .35; cursor: default; }
.note-nav-count { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--chalk-faint); letter-spacing: .08em; }

/* ── CHALK TALK GLOSSARY ── */
.glossary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px 34px; }
.gloss-item { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--rail); }
.gloss-icon { flex: 0 0 28px; width: 28px; height: 28px; color: var(--yellow); }
.gloss-icon svg { width: 100%; height: 100%; }
.gloss-term { font-family: 'Caveat', cursive; font-size: 22px; font-weight: 700; color: var(--chalk); line-height: 1.1; }
.gloss-def { color: var(--chalk-dim); font-size: 16px; line-height: 1.55; margin-top: 2px; }

.chalk-note { border: 1px dashed var(--chalk-faint); border-radius: 4px; padding: 14px 16px; margin-top: 24px; font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: var(--chalk-dim); line-height: 1.6; }
.chalk-note strong { color: var(--yellow); }
.chalk-note + .chalk-note { margin-top: 12px; }

/* ── CORKBOARD STRIPS + PINNED CARDS ── */
.cork-strip { background: var(--board-2); border-top: 1px solid var(--rail); border-bottom: 1px solid var(--rail); padding: 40px 24px 46px; }
.cork-inner { max-width: var(--max-w); margin: 0 auto; }
.cork-strip .section-head h2 { color: var(--chalk); }
.cat-section { scroll-margin-top: 100px; }
.pin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 36px 24px; margin-top: 8px; padding-top: 10px; }
.pin-card { display: block; background: var(--paper); color: var(--paper-ink); padding: 12px 14px 16px; border-radius: 2px; box-shadow: 0 10px 20px rgba(0,0,0,.28), 0 2px 0 rgba(0,0,0,.05); position: relative; transition: transform .2s; cursor: default; text-decoration: none; }
.pin-card:hover { color: var(--paper-ink); }
.pin-card[data-slug] { cursor: pointer; }
.pin-card:nth-child(3n+1) { transform: rotate(-1.3deg); }
.pin-card:nth-child(3n+2) { transform: rotate(1deg); }
.pin-card:nth-child(3n+3) { transform: rotate(-.6deg); }
.pin-card:hover { transform: rotate(0deg) translateY(-3px); }
.pin-card::before { content: ''; position: absolute; top: -9px; left: 50%; transform: translateX(-50%); width: 16px; height: 16px; border-radius: 50%; z-index: 2; background: radial-gradient(circle at 35% 30%, #f0a9a0, var(--coral) 60%, #a85440 100%); box-shadow: 0 3px 4px rgba(0,0,0,.35); }
.pin-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border: 1px solid rgba(51,44,34,.15); margin-bottom: 12px; background: var(--paper-ink-dim); }
.pin-photo-ph { width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 40px; margin-bottom: 12px; background: linear-gradient(135deg, var(--yellow), var(--coral)); color: var(--board-edge); }
.pin-body { padding: 0 6px; }
.pin-badge { display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.pin-name { font-size: 15px; font-weight: 600; line-height: 1.25; margin-bottom: 3px; color: var(--paper-ink); }
.pin-tag { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #8a6339; letter-spacing: .05em; text-transform: uppercase; display: block; margin-bottom: 9px; }
.pin-desc { font-size: 15px; line-height: 1.55; color: var(--paper-ink-dim); margin-bottom: 12px; }
.pin-meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; border-top: 1px dashed rgba(51,44,34,.25); padding-top: 10px; font-family: 'IBM Plex Mono', monospace; font-size: 13px; }
.pin-price { color: #8a5a2f; font-weight: 600; }
.pin-hours { color: var(--paper-ink-dim); text-align: right; }

/* Lone entry in a section — a horizontal wide card (photo left, content
   right) instead of letting the single grid cell stretch into an
   oversized square card. */
.pin-card--wide { display: flex; align-items: stretch; gap: 20px; padding: 16px 20px 16px 16px; transform: rotate(-.4deg) !important; }
.pin-card--wide:hover { transform: translateY(-3px) !important; }
.pin-card--wide::before { left: 90px; }
.pin-card--wide .pin-photo, .pin-card--wide .pin-photo-ph { width: 220px; flex: 0 0 220px; aspect-ratio: 4/3; margin-bottom: 0; align-self: center; }
.pin-card--wide .pin-body { padding: 4px 6px; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.pin-card--wide .pin-meta { margin-top: 12px; }
@media (max-width: 620px) {
  .pin-card--wide { flex-direction: column; }
  .pin-card--wide .pin-photo, .pin-card--wide .pin-photo-ph { width: 100%; flex: none; margin-bottom: 12px; }
  .pin-card--wide::before { left: 50%; }
}

/* ── TICKET / PUNCH DEALS ── */
.ticket-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ticket { display: grid; grid-template-columns: 1fr 120px; align-items: stretch; background: var(--paper); color: var(--paper-ink); border-radius: 3px; position: relative; box-shadow: 0 8px 16px rgba(0,0,0,.24); max-width: 480px; text-decoration: none; }
.ticket:hover { color: var(--paper-ink); }
.ticket[data-slug] { cursor: pointer; }
.ticket-main { padding: 15px 18px; }
.ticket-studio { font-weight: 600; font-size: 17px; margin-bottom: 4px; color: var(--paper-ink); }
.ticket-deal { font-size: 15px; color: var(--paper-ink-dim); line-height: 1.5; }
.ticket-stub { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2px; border-left: 1px dashed rgba(51,44,34,.3); position: relative; font-family: 'IBM Plex Mono', monospace; padding: 8px 10px; text-align: center; }
.ticket-stub .price { font-size: 18px; font-weight: 600; color: #8a5a2f; line-height: 1.1; }
.ticket-stub .unit { font-size: 12px; color: var(--paper-ink-dim); text-transform: uppercase; letter-spacing: .04em; margin-top: 2px; }
.ticket-stub::before, .ticket-stub::after { content: ''; position: absolute; left: -7px; width: 14px; height: 14px; border-radius: 50%; background: var(--board); }
.ticket-stub::before { top: -7px; }
.ticket-stub::after { bottom: -7px; }

/* ── EVENTS (fall calendar) ── */
.event-list { display: flex; flex-direction: column; gap: 0; }
.event-row { display: grid; grid-template-columns: 118px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--rail); }
.event-row:last-child { border-bottom: none; }
.event-date { font-family: 'IBM Plex Mono', monospace; color: var(--yellow); font-size: 16px; font-weight: 600; line-height: 1.4; }
.event-name { font-weight: 600; font-size: 20px; color: var(--chalk); margin-bottom: 3px; }
.event-desc { font-size: 16px; color: var(--chalk-dim); line-height: 1.55; margin-bottom: 6px; }
.event-meta { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: #B9975C; }
.event-meta a { color: var(--blue); }
.event-recur { display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--board-edge); background: var(--blue); padding: 2px 7px; border-radius: 2px; margin-left: 8px; }

/* ── LOCAL FACES (populated only when tenant data exists) ── */
.face-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 22px; }
.face-card { text-align: center; }
.face-card[data-slug] { cursor: pointer; }
.face-photo { width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 12px; border: 3px solid var(--paper); object-fit: cover; display: block; box-shadow: 0 6px 14px rgba(0,0,0,.3); background: var(--board-2); }
.face-name { font-family: 'Caveat', cursive; font-size: 20px; font-weight: 700; color: var(--chalk); }
.face-handle { font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: var(--blue); margin-top: 2px; }
.face-bio { font-size: 16px; color: var(--chalk-faint); margin-top: 4px; line-height: 1.5; }

/* ── LEDGER / FULL DIRECTORY ── */
.list-controls { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.search-icon-wrap { position: relative; flex: 1; min-width: 200px; max-width: 320px; }
.search-icon-wrap::before { content: '⌕'; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--yellow); font-size: 16px; pointer-events: none; font-weight: bold; }
.list-search { width: 100%; height: 38px; background: var(--board-2); border: 1px solid var(--rail); border-radius: 3px; color: var(--chalk); font-family: 'IBM Plex Mono', monospace; font-size: 16px; padding: 0 14px 0 36px; outline: none; }
.list-search::placeholder { color: var(--chalk-faint); }
.list-search:focus { border-color: var(--yellow); }
.type-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.tf { font-family: 'IBM Plex Mono', monospace; font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border: 1px solid var(--rail); border-radius: 2px; cursor: pointer; color: var(--chalk-dim); background: transparent; user-select: none; transition: all .2s; }
.tf:hover { color: var(--chalk); border-color: var(--chalk-faint); }
.tf.on { background: var(--yellow); border-color: var(--yellow); color: var(--board-edge); font-weight: 700; }
.list-result-count { margin-left: auto; font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: var(--chalk-faint); white-space: nowrap; }
.list-result-count .n { color: var(--yellow); font-weight: 700; }

.ledger { border-top: 1px solid var(--rail); width: calc(100% + 100px); margin-left: -50px; margin-right: -50px; }
.ledger-row { display: grid; grid-template-columns: 34px 1fr 160px 100px; gap: 14px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--rail); font-size: 17px; text-decoration: none; color: inherit; }
.ledger-row:hover .ledger-name { color: var(--yellow); }
.ledger-row[data-slug] { cursor: pointer; }
.ledger-row.head { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--chalk-faint); padding-top: 0; }
.ledger-thumb { width: 34px; height: 34px; border-radius: 3px; object-fit: cover; display: block; background: var(--board-2); }
.ledger-name { color: var(--chalk); font-weight: 500; }
.ledger-style { font-family: 'IBM Plex Mono', monospace; color: var(--coral); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.ledger-area { font-family: 'IBM Plex Mono', monospace; color: var(--chalk-dim); font-size: 12px; text-align: right; }
.hidden-row { display: none; }

.more-note { margin-top: 18px; font-family: 'IBM Plex Mono', monospace; font-size: 16px; color: var(--chalk-faint); border-top: 1px dashed var(--rail); padding-top: 14px; }

/* ── NEWSLETTER CTA ── */
.sg-cta { background: var(--board-2); padding: 44px 0; border-top: 1px solid var(--rail); border-bottom: 1px solid var(--rail); }
.sg-cta-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.sg-cta-copy { flex: 1; min-width: 240px; }
.sg-cta-title { font-family: 'Caveat', cursive; font-weight: 700; font-size: 30px; color: var(--chalk); margin-bottom: 4px; }
.sg-cta-sub { font-family: 'IBM Plex Mono', monospace; font-size: 16px; color: var(--chalk-dim); line-height: 1.6; max-width: 460px; }
.sg-cta-form { display: flex; gap: 8px; flex-shrink: 0; }
.sg-cta-form[hidden] { display: none; }
.sg-cta-input { padding: 11px 14px; border-radius: 3px; border: 1px solid var(--rail); background: var(--board); color: var(--chalk); font-family: 'IBM Plex Mono', monospace; font-size: 16px; width: 230px; max-width: 100%; }
.sg-cta-input::placeholder { color: var(--chalk-faint); }
.sg-cta-input:focus { outline: none; border-color: var(--yellow); }
.sg-cta-btn { padding: 11px 20px; border-radius: 3px; border: none; background: var(--yellow); color: var(--board-edge); font-family: 'IBM Plex Mono', monospace; font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background .15s; text-decoration: none; display: inline-flex; align-items: center; }
.sg-cta-btn:hover { background: #f2d488; }
.sg-cta-error { font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: var(--coral); margin-top: 8px; }
.sg-cta-success { font-family: 'IBM Plex Mono', monospace; font-size: 16px; color: var(--blue); margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.sg-cta-success[hidden] { display: none; }

/* ── FAQ ── */
.faq-section { max-width: var(--max-w); margin: 0 auto; padding: 40px 24px 48px; }
.faq-title { font-family: 'Caveat', cursive; font-weight: 700; font-size: 32px; color: var(--yellow); margin-bottom: 16px; }
.faq-list { border: 1px solid var(--rail); border-radius: 3px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--rail); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary { list-style: none; cursor: pointer; padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; font-size: 18px; color: var(--chalk); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex-shrink: 0; font-size: 18px; font-weight: 400; color: var(--yellow); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { color: var(--yellow); }
.faq-answer { padding: 0 18px 16px; color: var(--chalk-dim); font-size: 16px; line-height: 1.6; font-family: 'IBM Plex Mono', monospace; }
.faq-show-more { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 12px; padding: 11px; background: transparent; border: 1px dashed var(--chalk-faint); border-radius: 3px; color: var(--chalk-dim); font-weight: 600; font-family: 'IBM Plex Mono', monospace; font-size: 14px; cursor: pointer; }
.faq-show-more:hover { color: var(--yellow); border-color: var(--yellow); }
.faq-show-more .fa { transition: transform .15s ease; }
.faq-show-more.is-expanded .fa { transform: rotate(180deg); }

/* ── MORE GUIDES ── */
.more-guides { padding: 40px 24px; max-width: var(--max-w); margin: 0 auto; }
.more-guides-inner { max-width: var(--max-w); margin: 0 auto; }
.more-guides-label { font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--chalk-faint); margin-bottom: 16px; }
.more-guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.more-guide-card { display: flex; align-items: center; gap: 12px; background: var(--board-2); border: 1px solid var(--rail); border-radius: 4px; padding: 15px; text-decoration: none; color: inherit; transition: all .2s; }
.more-guide-card:hover { border-color: var(--yellow); }
.more-guide-icon { flex-shrink: 0; font-size: 24px; }
.more-guide-text { flex: 1; min-width: 0; }
.more-guide-kicker { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); margin-bottom: 3px; }
.more-guide-title { display: block; font-size: 17px; font-weight: 600; color: var(--chalk); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.more-guide-arrow { flex-shrink: 0; color: var(--yellow); font-weight: 800; font-size: 16px; }

.guide-foot { padding: 20px 24px; border-top: 1px solid var(--rail); }
.guide-foot-inner { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: center; align-items: center; }
.guide-foot span { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--chalk-faint); }

@media (max-width: 640px) {
  .hero-main { flex-basis: 100%; }
  .tally-row, .tally { align-items: flex-start; }
  .tally-marks, .update-tag { justify-content: flex-start; align-self: flex-start; }
  .glossary { grid-template-columns: 1fr; }
  .ticket-list { grid-template-columns: 1fr; }
  .ledger { width: 100%; margin-left: 0; margin-right: 0; }
  .ledger-row { grid-template-columns: 28px 1fr 76px; }
  .ledger-area { display: none; }
  .event-row { grid-template-columns: 1fr; gap: 4px; }
  .sg-cta-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .sg-cta-form { flex-direction: column; }
  .sg-cta-input { width: 100%; }
  .list-controls { flex-direction: column; align-items: stretch; }
}

/* ── LISTING DETAIL POPOVER (forked from listings/_listing_overlay.php) ── */
.listing-overlay {
  position: fixed; inset: 0; z-index: 1300; display: flex; align-items: center; justify-content: center;
  padding: 1rem; background: rgba(10, 15, 14, .65); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: listingOverlayIn 180ms ease;
}
.listing-overlay[hidden] { display: none; }
@keyframes listingOverlayIn { from { opacity: 0; } to { opacity: 1; } }

.listing-overlay-dialog {
  position: relative; width: min(820px, 100%); max-height: calc(100dvh - 2rem);
  background: var(--paper); border: 1px solid rgba(51,44,34,.2); border-radius: 6px;
  box-shadow: 0 28px 70px rgba(0,0,0,.4); display: flex; flex-direction: column; overflow: hidden;
}
.listing-overlay-loading { display: flex; align-items: center; justify-content: center; min-height: 260px; }
.listing-overlay-loading[hidden] { display: none; }
.listing-overlay-spinner { width: 52px; height: 52px; opacity: .6; }
.listing-overlay-content { display: flex; flex-direction: row; overflow: hidden; flex: 1; min-height: 0; }
.listing-overlay-content[hidden] { display: none; }
.listing-overlay-hero { position: relative; flex: 0 0 300px; min-height: 320px; background: linear-gradient(135deg, var(--yellow), var(--coral)); }
.listing-overlay-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--paper-ink-dim); }
.listing-overlay-close {
  position: absolute; top: .6rem; right: .6rem; width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.9); color: var(--paper-ink); font-size: .9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 120ms, color 120ms; z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.listing-overlay-close:hover { background: var(--coral); color: #fff; }
.listing-overlay-body { flex: 1; display: flex; flex-direction: column; overflow-y: auto; padding: 1.6rem 1.85rem 1.35rem; min-height: 0; background: var(--paper); color: var(--paper-ink); }
.listing-overlay-title { margin: 0 0 .2rem; font-family: 'Caveat', cursive; font-weight: 700; font-size: 2rem; color: var(--paper-ink); line-height: 1.1; }
.listing-overlay-subtitle { font-family: 'IBM Plex Mono', monospace; font-size: .8rem; color: var(--paper-ink-dim); margin-bottom: .8rem; }
.listing-overlay-meta { margin-bottom: .9rem; border-bottom: 1px dashed rgba(51,44,34,.25); padding-bottom: .9rem; }
.listing-overlay-info { margin-top: .55rem; font-family: 'IBM Plex Mono', monospace; font-size: .78rem; color: var(--paper-ink-dim); display: flex; flex-direction: column; gap: .35rem; }
.listing-overlay-info-row { display: flex; align-items: flex-start; gap: .45rem; }
.listing-overlay-info-row .fa { flex-shrink: 0; margin-top: .15em; color: #8a5a2f; font-size: .85rem; width: 14px; text-align: center; }
.listing-overlay-info-row a { color: inherit; text-decoration: underline; text-decoration-color: rgba(51,44,34,.25); }
.listing-overlay-info-row a:hover { color: var(--paper-ink); }
.listing-overlay-hours { align-items: flex-start; }
.listing-overlay-hours > div { display: flex; flex-direction: column; gap: .1rem; line-height: 1.5; }
.listing-overlay-actions { display: flex; gap: .5rem; margin-top: .8rem; }
.listing-overlay-actions:empty { display: none; }
.lo-icon-circle {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(51,44,34,.06); border: 1px solid rgba(51,44,34,.18);
  color: var(--paper-ink); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; text-decoration: none;
  transition: background 120ms, color 120ms, border-color 120ms;
}
.lo-icon-circle:hover { background: var(--coral); border-color: var(--coral); color: var(--paper-ink); }
.listing-overlay-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: .8rem; }
.listing-overlay-tags:empty { display: none; }
.lo-tag-pill { font-family: 'IBM Plex Mono', monospace; font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 9px; border: 1px solid rgba(51,44,34,.2); border-radius: 10px; color: var(--paper-ink-dim); }
.listing-overlay-desc { flex: 1; font-size: .87rem; line-height: 1.7; color: var(--paper-ink-dim); }
.listing-overlay-desc p { margin: 0; }
.listing-overlay-footer { margin-top: 1.1rem; padding-top: .85rem; flex-shrink: 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px dashed rgba(51,44,34,.2); }
.listing-overlay-full-link { display: inline-flex; align-items: center; gap: .4rem; font-family: 'IBM Plex Mono', monospace; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--paper-ink); text-decoration: none; }
.listing-overlay-full-link:hover { opacity: .8; }
.listing-overlay-edit-link { display: inline-flex; align-items: center; gap: .35rem; font-family: 'IBM Plex Mono', monospace; font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--paper-ink-dim); text-decoration: none; }
.listing-overlay-edit-link:hover { color: var(--paper-ink); }
body.listing-overlay-open { overflow: hidden; }

@media (max-width: 680px) {
  .listing-overlay { padding: 0; align-items: flex-end; }
  .listing-overlay-dialog { width: 100%; max-height: 90dvh; border-radius: 12px 12px 0 0; }
  .listing-overlay-content { flex-direction: column; }
  .listing-overlay-hero { flex: 0 0 200px; min-height: 200px; }
  .listing-overlay-body { padding: 1.1rem 1.2rem 1rem; }
  .listing-overlay-title { font-size: 1.5rem; }
}

.lo-hours-row-wrap { flex-direction: column; align-items: flex-start; gap: .4rem; margin-top: .8rem; }
.lo-status-line { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.lo-status-badge { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .18em .6em; border-radius: 3px; line-height: 1.5; }
.lo-status-open { background: rgba(107,144,128,.2); color: #2f5a44; }
.lo-status-closed { background: rgba(217,138,115,.2); color: #a1462a; }
.lo-status-detail { font-size: .78rem; color: var(--paper-ink-dim); }
.lo-hours-toggle { display: inline-flex; align-items: center; gap: .35rem; background: none; border: none; padding: 0; font-size: .78rem; color: var(--paper-ink-dim); cursor: pointer; line-height: 1.4; }
.lo-hours-toggle .fa-clock-o { color: #8a5a2f; font-size: .85rem; }
.lo-hours-toggle:hover .lo-hours-toggle-label { text-decoration: underline; }
.lo-hours-chevron { font-size: .65rem; transition: transform 200ms; }
.lo-hours-toggle[aria-expanded="true"] .lo-hours-chevron { transform: rotate(180deg); }
.listing-overlay-hours-plain { display: flex; flex-direction: column; gap: .1rem; margin-left: .3rem; font-size: .78rem; line-height: 1.55; }
