@charset "UTF-8";
/* ════════════════════════════════════════════════════════════════════════
   DiscoverHappyHours — one stylesheet, in cascade order.

   Consolidated 8/9 from six sources (concept.css, city-editorial.css,
   atmosphere.css, filters.js, deal-check.js, countdown.js and the inline
   block in build-sample2.js). Those files had 37 cross-file overrides where
   a later rule silently re-declared an earlier one; every one of them is
   folded here into a single declaration, so nothing wins by accident.

   Order is deliberate. Do not reorder sections:
     1  tokens          8  netflix rows
     2  reset + base    9  cards
     3  atmosphere     10  city page (editorial)
     4  sandbox chrome 11  filters
     5  layout         12  countdown
     6  hero           13  deal check
     7  home sections  14  profile
                       15  reading order map
                       16  media queries  ← always last
   Media queries live at the end. Any rule that must beat them needs higher
   specificity, not a later position.
   ════════════════════════════════════════════════════════════════════════ */


/* ═══ 1 · TOKENS ═════════════════════════════════════════════════════════ */
:root{
  --ink:#0A0F1E;          /* midnight ground */
  --ink-2:#101830;        /* raised surface */
  --ink-3:#182342;        /* card surface */
  --line:rgba(245,214,150,0.14);
  --gold:#F5B23F;         /* string-light gold */
  --gold-deep:#D98E1B;
  --champagne:#F7EFDD;    /* primary text */
  --mist:#A8B2CC;         /* secondary text */
  --faint:#6B7694;        /* muted text */
  --coral:#FF6B5E;        /* live-now pulse */
  --mint:#4ADE9E;         /* open state */
  --radius:18px;
  --serif:"Playfair Display","Didot","Bodoni MT","Cormorant Garamond",Georgia,serif;
  --sans:"Avenir Next","Segoe UI",system-ui,-apple-system,sans-serif;
  /* Native select popups paint a white OS panel on a dark page without this. */
  color-scheme:dark;
}


/* ═══ 2 · RESET + BASE ═══════════════════════════════════════════════════ */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  color:var(--champagne);font-family:var(--sans);line-height:1.6;
  -webkit-font-smoothing:antialiased;
  /* ground: see §3 */
  background:
    radial-gradient(1100px 620px at 12% -6%,  rgba(58,74,140,.30), transparent 62%),
    radial-gradient(950px 560px at 88% 4%,    rgba(96,60,120,.26), transparent 60%),
    radial-gradient(1300px 780px at 50% 108%, rgba(196,104,60,.20), transparent 66%),
    linear-gradient(180deg, #0A0E1C 0%, #0D1122 34%, #121227 66%, #17121F 100%);
  background-attachment:fixed;
  background-color:#0A0E1C;
}
a{color:inherit;text-decoration:none}
img{max-width:100%}
button{font-family:inherit}
select,input,textarea,button{color-scheme:dark}
select option{background:#121A2E;color:#F7EFDD}
select optgroup{background:#121A2E;color:#A8B2CC}


/* ═══ 3 · ATMOSPHERE ═════════════════════════════════════════════════════
   The page sits in a warm night rather than a void: lamp-glow pools fixed
   behind the content, and a fine grain so large dark areas never read as
   dead pixels. Pure CSS, no images. */

body::before{
  content:"";position:fixed;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(260px 260px at 16% 22%, rgba(245,178,63,.11), transparent 62%),
    radial-gradient(200px 200px at 82% 34%, rgba(255,122,92,.09), transparent 64%),
    radial-gradient(320px 320px at 68% 78%, rgba(126,90,190,.10), transparent 66%),
    radial-gradient(170px 170px at 34% 88%, rgba(245,178,63,.07), transparent 64%);
  filter:blur(6px);
}
body::after{
  content:"";position:fixed;inset:0;z-index:0;pointer-events:none;opacity:.42;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23g)' opacity='.28'/%3E%3C/svg%3E");
}
/* Content rides above the atmosphere. */
.concept-bar,.screen,header.site,footer.site,.hero{position:relative;z-index:1}

/* Faint paper grain for sections that opt in. */
.grain::before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.5;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E")}


/* ═══ 4 · SANDBOX CHROME (not part of the site) ══════════════════════════ */
.concept-bar{background:rgba(6,9,18,0.92);backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);padding:10px 16px;display:flex;align-items:center;
  gap:14px;flex-wrap:wrap;top:0}
.concept-bar .tag{font-size:0.68rem;letter-spacing:0.14em;text-transform:uppercase;color:var(--faint);white-space:nowrap}
.concept-tabs{display:flex;gap:6px;flex-wrap:wrap}
.concept-tabs button{cursor:pointer;background:transparent;border:1px solid rgba(255,255,255,0.14);
  color:var(--mist);border-radius:99px;padding:7px 18px;font-size:0.82rem;font-weight:600;transition:all .2s}
.concept-tabs button:hover{color:var(--champagne);border-color:var(--gold)}
.concept-tabs button.on{background:var(--gold);border-color:var(--gold);color:#1A1204}
.screen{display:none}
.screen.on{display:block}
.sandbox-note{background:rgba(74,222,158,.07);border:1px solid rgba(74,222,158,.3);border-radius:16px;
  padding:16px 20px;color:var(--mist);font-size:.88rem;margin-top:22px}
.sandbox-note b{color:var(--champagne)}
/* Bottom-left, not top-right: at top:18px it sat on top of the header nav and
   covered "Tonight Near Me", "Blog" and the Add Your Restaurant button. */
.video-note{position:absolute;bottom:18px;left:18px;z-index:5;display:flex;align-items:center;gap:8px;
  background:rgba(6,9,18,0.72);border:1px solid rgba(255,255,255,0.16);border-radius:99px;padding:7px 14px;
  font-size:0.7rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--mist)}
.video-note .rec{width:8px;height:8px;border-radius:50%;background:var(--coral);animation:pulse 1.6s infinite}
.notes{background:#0D1226;border-top:1px solid var(--line);padding:56px 0}
.notes h2{font-family:var(--serif);font-weight:500;font-size:1.6rem;margin-bottom:20px}
.notes-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.note{background:var(--ink-2);border:1px solid var(--line);border-radius:var(--radius);padding:20px}
.note h4{color:var(--gold);font-size:0.85rem;margin-bottom:8px}
.note p{font-size:0.83rem;color:var(--mist)}


/* ═══ 5 · LAYOUT ═════════════════════════════════════════════════════════ */
.wrap{max-width:1120px;margin:0 auto;padding:0 24px}
/* KJ 8/11: 72px read right for tall venue-card rails but doubles up on the
   short category-tile rails; homepage sections sit tighter (Netflix rhythm). */
.section{padding:48px 0;background:transparent}

header.site{}
.nav{display:flex;align-items:center;justify-content:space-between;padding:22px 0;gap:24px}
.logo{display:flex;align-items:center;gap:10px;font-family:var(--serif);font-size:1.25rem;letter-spacing:0.01em;white-space:nowrap}
.logo .logo-word{display:inline-block}
.logo em{font-style:italic;color:var(--gold)}
.logo svg{width:30px;height:30px}
.nav-links{display:flex;align-items:center;gap:22px;font-size:0.88rem;color:var(--mist);
  flex-wrap:wrap;justify-content:flex-end}
.nav-links a{transition:color .2s}
.nav-links a:hover{color:var(--champagne)}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;cursor:pointer;border:none;
  border-radius:99px;font-weight:700;font-size:0.9rem;padding:13px 26px;transition:all .2s;min-height:44px}
.btn-gold{background:linear-gradient(180deg,#FFC65C,var(--gold-deep));color:#241503;box-shadow:0 6px 24px rgba(245,178,63,0.28)}
.btn-gold:hover{transform:translateY(-1px);box-shadow:0 10px 30px rgba(245,178,63,0.4)}
.btn-ghost{background:rgba(255,255,255,0.06);border:1px solid var(--line);color:var(--champagne)}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold)}

.crumb{font-size:0.78rem;color:var(--faint);margin-bottom:14px;display:flex;gap:8px;align-items:center}
.crumb a{color:var(--mist);cursor:pointer}
.crumb a:hover{color:var(--gold)}

footer.site{border-top:1px solid var(--line);padding:48px 0 32px;background:#070B16}
.foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.3fr;gap:40px;margin-bottom:32px}
.foot-grid h4{font-size:0.74rem;letter-spacing:0.14em;text-transform:uppercase;color:var(--faint);margin-bottom:14px}
.foot-grid ul{list-style:none;display:flex;flex-direction:column;gap:9px;font-size:0.88rem;color:var(--mist)}
.foot-grid ul a:hover{color:var(--gold)}
.foot-bottom{border-top:1px solid rgba(255,255,255,0.06);padding-top:22px;font-size:0.78rem;color:var(--faint);
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px}

@keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}
@keyframes twinkle{0%,100%{opacity:.15}50%{opacity:.85}}
@keyframes bulbGlow{0%,100%{opacity:.55}50%{opacity:1}}


/* ═══ 6 · HERO ═══════════════════════════════════════════════════════════
   Ends above the fold so the next section teases underneath. */
/* 790px (was 700): the scene sits 90px lower so dropdowns open on clean sky —
   the extra height keeps the dining scene fully visible instead of clipping
   the people off the bottom (KJ 8/12). */
.hero{min-height:0;height:790px;display:flex;flex-direction:column;overflow:hidden;
  border-bottom:1px solid var(--line)}
.hero-video{position:absolute;inset:0;z-index:0;overflow:hidden}
.hero-video .sky{position:absolute;inset:0;background:
  radial-gradient(1200px 500px at 70% -10%, #2A3560 0%, transparent 60%),
  radial-gradient(900px 420px at 15% 5%, #1E2A52 0%, transparent 55%),
  linear-gradient(180deg,#070B18 0%,#0C1329 45%,#1B1E3E 78%,#3A2C4E 100%)}
.hero-video .glow{position:absolute;left:0;right:0;bottom:0;height:46%;
  background:linear-gradient(180deg,transparent, rgba(245,158,60,0.10) 55%, rgba(255,120,80,0.16))}
/* The hero is 90px taller instead of shoving the scene down: the art stays
   fully visible (people dining included) while the filter row gains 90px of
   clean sky above the umbrellas for its dropdowns (KJ 8/12). */
.hero-video svg.scene{position:absolute;left:50%;bottom:0;transform:translateX(-50%);
  width:120%;min-width:0;max-width:none;height:auto;opacity:0.98}
.star{position:absolute;width:2px;height:2px;border-radius:50%;background:#EAE6FF;opacity:.7;
  animation:twinkle 3.4s ease-in-out infinite}
.bulb{animation:bulbGlow 2.6s ease-in-out infinite}

.hero-inner{position:relative;z-index:10;flex:0 0 auto;display:flex;flex-direction:column;
  justify-content:center;text-align:center;padding:26px 24px 0}
.hero-eyebrow{display:inline-flex;align-items:center;gap:9px;margin:0 auto 10px;
  background:rgba(245,178,63,0.1);border:1px solid rgba(245,178,63,0.35);color:var(--gold);
  border-radius:99px;padding:6px 14px;font-size:0.74rem;font-weight:600;letter-spacing:0.06em}
.hero-eyebrow .dot{width:8px;height:8px;border-radius:50%;background:var(--mint);animation:pulse 2s infinite}
/* NOTE: h1.display (0,1,1) beats a bare .display rule — set the size here. */
h1.display{font-family:var(--serif);font-weight:500;font-size:clamp(2.6rem,6vw,4.4rem);line-height:1.08;
  letter-spacing:-0.01em;text-wrap:balance}
h1.display em{font-style:italic;color:var(--gold)}
.hero-sub{color:var(--mist);max-width:48ch;margin:10px auto 0;font-size:0.95rem}

.search{max-width:680px;margin:16px auto 0;background:rgba(12,17,34,0.62);
  border:1px solid rgba(245,214,150,0.22);border-radius:22px;backdrop-filter:blur(14px);
  box-shadow:0 24px 60px rgba(0,0,0,0.5);padding:10px;display:flex;gap:8px;align-items:center}
.search select{appearance:none;background:rgba(255,255,255,0.06);border:1px solid transparent;color:var(--mist);
  font-size:0.88rem;border-radius:14px;padding:14px 34px 14px 16px;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A8B2CC' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 12px center}
.search .field{flex:1;display:flex;align-items:center;gap:10px;padding:0 8px}
.search .field svg{width:19px;height:19px;color:var(--faint);flex-shrink:0}
.search input{flex:1;background:transparent;border:none;outline:none;color:var(--champagne);font-size:1rem;min-width:0}
.search input::placeholder{color:var(--faint)}
.search .btn-gold{padding:14px 28px}
.quick{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin-top:16px;font-size:0.8rem;color:var(--faint)}
.quick a{border:1px solid rgba(255,255,255,0.12);border-radius:99px;padding:6px 14px;color:var(--mist);
  transition:all .2s;cursor:pointer}
.quick a:hover{border-color:var(--gold);color:var(--gold)}

.hero-stats{position:relative;z-index:10;display:flex;justify-content:center;gap:0;
  margin-top:auto;padding:0 20px 26px;
  background:linear-gradient(180deg,transparent,rgba(7,11,24,.45) 40%,rgba(7,11,24,.78))}
.hero-stats .stat{padding:0 34px;text-align:center;border-right:1px solid rgba(255,255,255,0.12)}
.hero-stats .stat:last-child{border-right:none}
.hero-stats .num{font-family:var(--serif);font-size:1.4rem;color:var(--gold)}
.hero-stats .lbl{font-size:0.72rem;letter-spacing:0.12em;text-transform:uppercase;color:var(--faint)}


/* ═══ 7 · HOME SECTIONS ══════════════════════════════════════════════════ */
.sec-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:28px;flex-wrap:wrap}
.kicker{font-size:0.72rem;letter-spacing:0.18em;text-transform:uppercase;color:var(--gold);font-weight:700;margin-bottom:8px}
h2.sec{font-family:var(--serif);font-weight:500;font-size:clamp(1.6rem,3vw,2.2rem);letter-spacing:-0.01em;text-wrap:balance}
.sec-link{font-size:0.85rem;color:var(--mist);display:inline-flex;align-items:center;gap:6px;white-space:nowrap;cursor:pointer}
.sec-link:hover{color:var(--gold)}
.sec-link svg{width:15px;height:15px}

.rail{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.vibes{display:grid;grid-template-columns:repeat(6,1fr);gap:12px}
.vibe{background:var(--ink-2);border:1px solid var(--line);border-radius:16px;padding:18px 12px 16px;
  text-align:center;cursor:pointer;transition:all .2s;color:var(--mist);display:flex;flex-direction:column;align-items:center}
.vibe:hover{border-color:rgba(245,178,63,0.55);color:var(--champagne);transform:translateY(-2px)}
.vibe svg{width:26px;height:26px;color:var(--gold);flex-shrink:0}
.vibe .nm{font-size:0.82rem;font-weight:600;line-height:1.2;height:1.2em;margin-top:10px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}
.vibe .ct{font-size:0.68rem;color:var(--faint);line-height:1.2;height:1.2em;margin-top:4px}

.cities{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.city{position:relative;height:210px;border-radius:var(--radius);overflow:hidden;cursor:pointer;
  border:1px solid var(--line);transition:all .25s;display:flex;align-items:flex-end}
.city:hover{border-color:rgba(245,178,63,0.55);transform:translateY(-3px)}
.city .bg{position:absolute;inset:0;transition:transform .5s}
.city:hover .bg{transform:scale(1.05)}
.city .bg img{display:block}
.city .bg.c1{background:linear-gradient(165deg,#1F2C55 0%,#41335E 50%,#B4685A 100%)}
.city .bg.c2{background:linear-gradient(165deg,#14324A 0%,#23555E 55%,#C08347 100%)}
.city .bg.c3{background:linear-gradient(165deg,#2C2350 0%,#5C3660 55%,#A34A55 100%)}
.city .bg.c4{background:linear-gradient(165deg,#20264E 0%,#3D4470 55%,#8A5E9E 100%)}
.city .shade{position:absolute;inset:0;background:linear-gradient(180deg,transparent 35%,rgba(8,10,22,0.9))}
.city .info{position:relative;padding:18px;width:100%}
.city .cn{font-family:var(--serif);font-size:1.3rem;line-height:1.25;height:1.25em;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.city .cc{font-size:0.75rem;color:var(--mist);line-height:1.5;height:3em;margin-top:2px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.city .badge-hh{position:absolute;top:14px;left:14px;background:rgba(6,9,18,0.6);backdrop-filter:blur(6px);
  border:1px solid rgba(245,178,63,0.4);color:var(--gold);border-radius:99px;padding:4px 12px;
  font-size:0.7rem;font-weight:700}

.cta-band{position:relative;border-radius:26px;overflow:hidden;border:1px solid rgba(245,178,63,0.3);background:
  radial-gradient(600px 300px at 85% 20%, rgba(245,178,63,0.16), transparent 65%),
  linear-gradient(120deg,#131B36 0%,#1A1430 100%);padding:56px;display:flex;align-items:center;
  justify-content:space-between;gap:32px;flex-wrap:wrap}
.cta-band h3{font-family:var(--serif);font-size:1.9rem;font-weight:500;max-width:440px;text-wrap:balance}
.cta-band h3 em{font-style:italic;color:var(--gold)}
.cta-band p{color:var(--mist);max-width:440px;margin-top:8px;font-size:0.95rem}


/* ═══ 8 · NETFLIX ROWS ═══════════════════════════════════════════════════
   (added 8/9) Every browse surface is a horizontal rail: title, optional
   "see all", a snap-scrolling track and edge fades. Arrows on pointer
   devices, native swipe on touch. Rows are rendered only when the city
   actually has the inventory — see city-page.js MIN_ROW. */

.nfrow{position:relative;margin:0 0 34px}
.nfrow-head{display:flex;align-items:baseline;justify-content:space-between;gap:16px;
  padding:0 0 13px;flex-wrap:wrap}
.nfrow-title{font-family:var(--serif);font-weight:500;font-size:1.45rem;letter-spacing:-.012em;
  line-height:1.2;display:flex;align-items:baseline;gap:11px;min-width:0}
.nfrow-title .n{font-size:.72rem;font-family:var(--sans);font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:var(--faint);font-variant-numeric:tabular-nums;flex-shrink:0}
.nfrow-kick{font-size:.66rem;font-weight:800;letter-spacing:.19em;text-transform:uppercase;
  color:var(--gold);margin-bottom:7px}
.nfrow-all{font-size:.82rem;font-weight:700;color:var(--gold);cursor:pointer;white-space:nowrap;
  display:inline-flex;align-items:center;gap:6px;background:none;border:0;padding:6px 0;
  border-bottom:1px solid rgba(245,178,63,.35)}
.nfrow-all:hover{color:#FFD489;border-bottom-color:var(--gold)}
.nfrow-all svg{width:13px;height:13px;transition:transform .2s}
.nfrow-all:hover svg{transform:translateX(3px)}

/* The track. scroll-padding keeps the first card clear of the fade. */
.nftrack{display:flex;gap:16px;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x proximity;
  scroll-behavior:smooth;scroll-padding-left:2px;padding:4px 2px 14px;
  scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch}
.nftrack::-webkit-scrollbar{display:none}
.nftrack>*{scroll-snap-align:start;flex:0 0 auto}

/* No edge fade. The bars already frame the track and say "this moves"; a mask
   on top of them only dimmed the first and last card's text for no gain. */

/* Arrows. Full-height vertical bars in their own gutter either side of the
   track — flex siblings, not overlays. They never cover a card, so a slightly
   off click scrolls the row instead of opening a venue. Always on screen so the
   row reads as scrollable before anyone touches it; the exhausted end dims in
   place rather than disappearing, so the control never moves. */
.nfrow-body{display:flex;align-items:stretch;gap:10px}
.nfarrow{flex:0 0 48px;margin-bottom:14px;border-radius:14px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.02));
  border:1px solid rgba(245,214,150,.2);color:var(--champagne);
  transition:background .18s,border-color .18s,color .18s,opacity .22s}
.nfarrow svg{width:26px;height:26px}
.nfarrow:hover{background:linear-gradient(180deg,rgba(245,178,63,.18),rgba(245,178,63,.07));
  border-color:var(--gold);color:var(--gold)}
.nfarrow:active{background:rgba(245,178,63,.24)}
.nfrow:not(.can-l) .nfarrow.l,.nfrow:not(.can-r) .nfarrow.r{opacity:.22;pointer-events:none}

/* Poster card: the listing card at a fixed rail width. */
.nfcard{width:268px}
.nfcard .ed-shot{aspect-ratio:16/10}
.nfcard .ed-name{font-size:1.14rem}
.nfcard .ed-body{padding:14px 15px 15px}
.nfcard .ed-foot{height:auto;min-height:96px;padding-top:12px}
.nfcard .ed-badgeslot{min-height:62px}
.nfcard .ed-plaque{height:60px!important}

/* Top 10: the oversized ghost numeral, capped at ten. Width is the sum of its
   parts, never fixed — a fixed width would let the wider "10" squeeze its card
   and knock that one card out of the row's shared baseline. */
.nfrank{display:flex;align-items:stretch;gap:0}
.nfrank .rk{flex:0 0 84px;display:flex;align-items:center;justify-content:flex-end;
  font-family:var(--serif);font-size:6.6rem;line-height:.78;font-weight:500;
  color:transparent;-webkit-text-stroke:2px rgba(245,214,150,.36);
  padding-right:10px;user-select:none;pointer-events:none;letter-spacing:-.06em}
.nfrank[data-rk="10"] .rk{flex-basis:118px;font-size:6.2rem}
.nfrank .nfcard{flex:0 0 268px;width:268px}
.nfrank:hover .rk{-webkit-text-stroke-color:rgba(245,178,63,.6)}

/* Category tile rail (cuisines, cities) — the same photo card as city/state. */
.nftile{width:168px}
.nfcity{width:250px}
.nfcity .city{height:168px}
/* Icon shown on the gradient version of a cuisine tile, where we have no photo. */
.tile-ic{position:absolute;top:16px;left:16px;z-index:1;opacity:.5}
.tile-ic svg{width:26px;height:26px;color:var(--gold)}
/* Wrapper for a listing card used inside a simpleRow, which wraps each card in
   a tile div. Same width as the city-page rail card. */
.nfcard-w{width:268px;display:flex}
.nfcard-w > .ed-card{width:100%}
.nfcard-w .ed-shot{aspect-ratio:16/10}
.nfcard-w .ed-name{font-size:1.14rem}
.nfcard-w .ed-body{padding:14px 15px 15px}
.nfcard-w .ed-foot{height:auto;min-height:96px;padding-top:12px}
.nfcard-w .ed-badgeslot{min-height:62px}
.nfcard-w .ed-plaque{height:60px!important}
/* A simple rail has no counter chip after its title. */
.nfsimple .nfrow-title{font-size:clamp(1.6rem,3vw,2.2rem)}
.nfrow-sub{font-size:.85rem;color:var(--faint);margin-top:6px}
.geo-pill{display:inline-flex;align-items:center;gap:8px;margin-top:10px;background:rgba(74,222,158,.08);
  border:1px solid rgba(74,222,158,.35);border-radius:99px;padding:6px 14px;font-size:.78rem;color:var(--mint)}
.geo-pill svg{width:13px;height:13px}
.geo-pill .dv{color:var(--faint)}
.geo-pill a{color:var(--mist);text-decoration:underline;cursor:pointer}

/* Empty / thin row: never render a rail with two cards in it. */
.nfrow.thin .nftrack{flex-wrap:wrap}

/* Expanded "see all" view — the dual-column grid, reusing the listing card. */
.nfexpand{display:none;padding:6px 0 10px}
.nfexpand.on{display:block}
/* filters.js marks the grid container grid-lead when any filter is active —
   the rails step aside and the grid (or the no-match message) must take over.
   The class had NO rule, so filtering from the rails view left a blank page
   and the fnone message could never render (KJ 8/12). */
.nfexpand.grid-lead{display:block}
/* .nfback visibility is managed by nfBackSync (KJ 8/12: Back must show during
   search/filter states too) — no static hide here anymore */
.nfexpand-head{display:flex;align-items:center;justify-content:space-between;gap:16px;
  flex-wrap:wrap;padding:0 0 18px}
.nfexpand-head h2{font-family:var(--serif);font-weight:500;font-size:2rem;letter-spacing:-.015em}
.nfexpand-head .sub{font-size:.82rem;color:var(--faint);margin-top:4px}
.nfback{display:inline-flex;align-items:center;gap:8px;cursor:pointer;background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.15);color:var(--mist);border-radius:99px;padding:10px 18px;
  font:600 .84rem var(--sans);min-height:44px;transition:.18s}
.nfback:hover{border-color:var(--gold);color:var(--gold)}
.nfback svg{width:14px;height:14px}
.nfrows.hidden{display:none}

/* FOR YOU sits above everything the moment a filter is on. */
.nfrow.foryou{margin-bottom:40px}
.nfrow.foryou .nfrow-title{color:var(--champagne)}


/* ═══ 9 · CARDS ══════════════════════════════════════════════════════════ */
/* home rail card */
.vcard{background:linear-gradient(180deg,rgba(19,26,46,.8),rgba(13,19,34,.86));backdrop-filter:blur(3px);
  border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;cursor:pointer;
  transition:border-color .2s, box-shadow .25s, transform .25s}
.vcard:hover{border-color:rgba(245,178,63,0.5);box-shadow:0 18px 44px rgba(0,0,0,0.45);transform:translateY(-3px)}
.vphoto{position:relative;height:168px;background:linear-gradient(140deg,#26314F 0%,#3E3157 55%,#6B3A4C 100%);
  display:flex;align-items:flex-end}
.vphoto img{display:block}
.vphoto.p2{background:linear-gradient(140deg,#1F3A46 0%,#2C5058 55%,#8A5A33 100%)}
.vphoto.p3{background:linear-gradient(140deg,#33254B 0%,#54355C 55%,#8F4A44 100%)}
.vphoto .src{position:absolute;top:10px;left:10px;background:rgba(6,9,18,0.6);
  border:1px solid rgba(255,255,255,0.14);border-radius:8px;padding:3px 9px;font-size:0.62rem;
  letter-spacing:0.08em;text-transform:uppercase;color:var(--mist)}
.vphoto .live{position:absolute;top:10px;right:10px;display:inline-flex;align-items:center;gap:6px;
  background:rgba(20,10,8,0.75);border:1px solid rgba(255,107,94,0.5);color:#FFB0A8;border-radius:99px;
  padding:4px 11px;font-size:0.7rem;font-weight:700}
.vphoto .live .dot{width:7px;height:7px;border-radius:50%;background:var(--coral);animation:pulse 1.4s infinite}
.vphoto .fade{position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(10,13,26,0.85))}
.vbody{padding:16px 18px 18px}
.vname{font-family:var(--serif);font-size:1.15rem;line-height:1.25;height:1.25em;white-space:nowrap;
  overflow:hidden;text-overflow:ellipsis}
.vmeta{display:flex;align-items:center;gap:8px;font-size:0.78rem;color:var(--faint);margin-top:4px;
  flex-wrap:nowrap;overflow:hidden;white-space:nowrap;height:1.4em}
.vmeta .st{color:var(--gold);display:inline-flex;align-items:center;gap:4px}
.vmeta .st svg{width:12px;height:12px}
.deal-line{margin-top:12px;display:flex;justify-content:space-between;align-items:baseline;gap:10px;
  border-top:1px dashed var(--line);padding-top:11px;font-size:0.86rem}
.deal-line .d{color:var(--mist)}
.deal-line .p{color:var(--gold);font-weight:700;white-space:nowrap;font-variant-numeric:tabular-nums}
.htime{margin-top:10px;display:inline-flex;align-items:center;gap:7px;font-size:0.75rem;font-weight:700;color:var(--mint)}
.htime svg{width:13px;height:13px}
.htime.soon{color:var(--gold)}

/* listing card (city page + rails) */
.ed-card{display:flex;flex-direction:column;border-radius:8px;overflow:hidden;cursor:pointer;
  background:linear-gradient(180deg,rgba(20,28,48,.82),rgba(14,20,36,.88));backdrop-filter:blur(3px);
  border:1px solid rgba(245,214,150,.11);color:inherit;text-decoration:none;
  transition:border-color .22s,transform .22s,box-shadow .22s}
.ed-card:hover{border-color:rgba(245,178,63,.45);transform:translateY(-3px);box-shadow:0 16px 36px rgba(0,0,0,.42)}
.ed-card:focus-visible{outline:2px solid var(--gold);outline-offset:3px}
.ed-card.paid{border-color:rgba(245,178,63,.4)}
.ed-card.hide{display:none}

.ed-shot{position:relative;background:#0B1020;overflow:hidden;aspect-ratio:4/3}
.ed-shot img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s}
.ed-card:hover .ed-shot img{transform:scale(1.04)}
.ed-shot.logo img{object-fit:contain;padding:9%}
/* No photo yet: the same gradient grounds the city and cuisine tiles use, so a
   venue without imagery still reads as a card rather than a dead grey box.
   Four variants, picked per venue, so a row of them is not one flat wall. */
.ed-shot.empty{display:flex;align-items:flex-end;justify-content:flex-start;
  background:linear-gradient(165deg,#1F2C55 0%,#41335E 50%,#B4685A 100%)}
.ed-shot.empty.g1{background:linear-gradient(165deg,#1F2C55 0%,#41335E 50%,#B4685A 100%)}
.ed-shot.empty.g2{background:linear-gradient(165deg,#14324A 0%,#23555E 55%,#C08347 100%)}
.ed-shot.empty.g3{background:linear-gradient(165deg,#2C2350 0%,#5C3660 55%,#A34A55 100%)}
.ed-shot.empty.g4{background:linear-gradient(165deg,#20264E 0%,#3D4470 55%,#8A5E9E 100%)}
.ed-shot.empty::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 45%,rgba(8,10,22,.72))}
.ed-shot.empty span{position:relative;z-index:1;margin:0 0 10px 12px;color:rgba(247,239,221,.72);
  font-size:.62rem;letter-spacing:.14em;text-transform:uppercase}

/* ── Fixed vertical rhythm ────────────────────────────────────────────────
   Every slot reserves its space whether or not it is filled, so the name, the
   meta line, the timer pill, the badge and the CTA all start at the same y on
   every card in the row. A one-line name does not pull the meta up; a meta that
   wraps to two lines does not push the pill down. Sizes are in em of the slot's
   own font so they track any type-scale change.
     name  2 lines   meta  2 lines   pill  1 row   badge/CTA  fixed foot        */
.ed-body{padding:16px 18px 17px;display:flex;flex-direction:column;flex:1;min-width:0}
.ed-name{font-family:var(--serif);font-weight:500;font-size:1.3rem;line-height:1.14;letter-spacing:-.014em;
  color:var(--champagne);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  height:2.28em;min-height:2.28em}
.ed-card:hover .ed-name{color:#FFF3DC}
.ed-meta{display:flex;align-items:flex-start;align-content:flex-start;gap:4px 7px;font-size:.79rem;
  color:var(--mist);margin-top:8px;flex-wrap:wrap;min-width:0;line-height:1.35;
  height:calc(2.7em + 4px);min-height:calc(2.7em + 4px);overflow:hidden}
/* Separator belongs to the item that follows it, so a wrapping meta line can
   never strand a "·" on the end of a row. */
.ed-meta > * + *::before{content:"·";color:var(--faint);margin-right:7px}
.ed-meta .st{display:inline-flex;align-items:center;gap:4px;color:var(--gold)}
.ed-meta .st svg{width:12px;height:12px}
.ed-time{margin-top:11px;display:flex;align-items:center;height:34px;min-height:34px;flex-shrink:0}
/* Badge keeps full size; the prompt sits beneath it so nothing has to shrink. */
.ed-foot{margin-top:auto;padding-top:14px;display:flex;flex-direction:column;align-items:flex-start;
  gap:10px;height:126px;min-height:126px;justify-content:center}
.ed-badgeslot{min-height:76px;display:flex;align-items:center;width:100%}
.ed-plaque{height:76px!important;width:auto;max-width:100%;display:block;
  filter:drop-shadow(0 4px 14px rgba(0,0,0,.55))}
.ed-cta{display:inline-flex;align-items:center;gap:7px;font-size:.82rem;font-weight:700;color:var(--gold);
  white-space:nowrap;flex-shrink:0}
.ed-cta svg{width:13px;height:13px;transition:transform .2s}
.ed-card:hover .ed-cta svg{transform:translateX(4px)}

/* card foot on the home rail: badge for claimed venues, prompt for the rest */
.card-foot{margin-top:12px;padding-top:11px;border-top:1px dashed var(--line);display:flex;
  align-items:center;min-height:38px}
.card-badge{display:inline-flex;align-items:center;gap:6px;font-size:.68rem;font-weight:800;
  letter-spacing:.08em;text-transform:uppercase;border-radius:7px;padding:5px 11px}
.card-badge svg{width:12px;height:12px}
.card-badge.verified{background:linear-gradient(180deg,rgba(245,178,63,.22),rgba(217,142,27,.14));
  border:1px solid rgba(245,178,63,.55);color:var(--gold)}
.card-badge.claimed{background:rgba(122,162,247,.1);border:1px solid rgba(122,162,247,.4);color:#9DB8F5}
.see-deals{display:inline-flex;align-items:center;gap:7px;font-size:.82rem;font-weight:700;color:var(--gold)}
.see-deals svg{width:14px;height:14px;transition:transform .2s}
.vcard:hover .see-deals svg{transform:translateX(3px)}

/* badges */
.plaque{display:inline-flex;align-items:center;gap:5px;font-size:0.66rem;font-weight:800;letter-spacing:0.08em;
  text-transform:uppercase;border-radius:7px;padding:3px 9px;white-space:nowrap}
.plaque svg{width:11px;height:11px}
.plaque.verified{background:linear-gradient(180deg,rgba(245,178,63,0.22),rgba(217,142,27,0.14));
  border:1px solid rgba(245,178,63,0.55);color:var(--gold)}
.plaque.claimed{background:rgba(122,162,247,0.1);border:1px solid rgba(122,162,247,0.4);color:#9DB8F5}
.prof-badge{position:absolute;top:12px;right:12px;z-index:5;display:inline-flex;align-items:center;gap:6px;
  font-size:0.72rem;font-weight:800;letter-spacing:0.08em;text-transform:uppercase;border-radius:99px;
  padding:7px 15px;backdrop-filter:blur(8px)}
.prof-badge svg{width:13px;height:13px}
.prof-badge.claimed{background:rgba(10,15,30,0.72);border:1px solid rgba(122,162,247,0.5);color:#9DB8F5}
.badge-coin{width:250px;max-width:60vw;height:auto;flex-shrink:0;border-radius:14px;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,0.55))}
.lock{font-size:0.64rem;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);color:var(--faint);
  border-radius:99px;padding:3px 10px}


/* ═══ 10 · CITY PAGE (editorial) ═════════════════════════════════════════ */
/* Three distinct grounds so sections read as separate spreads. */
.ed-top{background:linear-gradient(180deg,rgba(11,17,32,.72),rgba(20,29,51,.34) 70%,transparent);position:relative}
.ed-dark{background:transparent;position:relative}
.ed-paper{background:linear-gradient(175deg,#F5EFE4 0%,#EFE7D8 100%);color:#221A12;position:relative}
/* Warm light bleeding up from the bottom of the hero, like a patio at dusk.
   NOTE: no overflow:hidden on .ed-top — it clips the filter dropdowns. */
.ed-top::after{content:"";position:absolute;left:0;right:0;bottom:-2px;height:190px;
  background:radial-gradient(700px 190px at 22% 100%,rgba(245,178,63,.20),transparent 70%),
             radial-gradient(620px 170px at 78% 100%,rgba(255,110,90,.14),transparent 72%);pointer-events:none}

.ed-wrap{max-width:1180px;margin:0 auto;padding:0 28px;position:relative;z-index:2}
/* The masthead holds the filter dropdowns; a later section would paint over an open menu. */
.ed-wrap.ed-head{z-index:30}

.ed-head{padding:44px 0 34px}
.ed-rule{display:flex;align-items:center;gap:16px;font-size:.68rem;font-weight:800;letter-spacing:.22em;
  text-transform:uppercase;color:var(--gold)}
.ed-rule::after{content:"";flex:1;height:1px;background:linear-gradient(90deg,rgba(245,178,63,.5),transparent)}
.ed-title{font-family:var(--serif);font-weight:500;font-size:clamp(3rem,8vw,6rem);line-height:.94;
  letter-spacing:-.025em;margin:16px 0 0}
.ed-title em{font-style:italic;color:var(--gold);display:block}
/* "Miami, FL" is one line (KJ 8/12): the block-em was pushing ", FL" onto a
   third line. The wrapper takes the block role; the em goes back inline. */
.ed-title .ed-city{display:block}
.ed-title .ed-city em{display:inline}
.ed-dek{font-size:1.06rem;line-height:1.65;color:var(--mist);max-width:44ch;margin-top:20px;text-wrap:pretty}
.ed-dek b{color:var(--champagne);font-weight:600}

.ed-figs{display:flex;flex-wrap:wrap;gap:0;margin-top:28px;border-top:1px solid rgba(245,214,150,.2);
  border-bottom:1px solid rgba(245,214,150,.2)}
.ed-fig{padding:16px 30px 16px 0;margin-right:30px;border-right:1px solid rgba(245,214,150,.14)}
.ed-fig:last-child{border-right:0}
.ed-fig .n{font-family:var(--serif);font-size:1.65rem;line-height:1;color:var(--champagne)}
.ed-fig .n em{font-style:normal;color:var(--gold)}
.ed-fig .l{font-size:.66rem;letter-spacing:.15em;text-transform:uppercase;color:var(--faint);margin-top:6px}

.ed-tools{padding:26px 0 8px}
.ed-search{display:flex;gap:10px;align-items:center;flex-wrap:wrap;background:rgba(8,12,24,.55);
  border:1px solid rgba(245,214,150,.22);border-radius:4px;padding:10px;backdrop-filter:blur(10px)}
.ed-search select{appearance:none;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.09);
  color:var(--mist);font:600 .85rem var(--sans);border-radius:3px;padding:13px 16px;cursor:pointer}
.ed-search .f{flex:1;min-width:200px;display:flex;align-items:center;gap:10px;padding:0 6px}
.ed-search .f svg{width:17px;height:17px;color:var(--faint);flex-shrink:0}
.ed-search input{flex:1;min-width:0;background:transparent;border:0;outline:none;color:var(--champagne);
  font:1rem var(--sans)}
.ed-search input::placeholder{color:var(--faint)}
.ed-search .go{border:0;border-radius:3px;padding:13px 26px;cursor:pointer;
  background:linear-gradient(180deg,#FFC65C,#D98E1B);color:#241503;font:800 .85rem var(--sans);
  letter-spacing:.04em;text-transform:uppercase}

.ed-filters{display:flex;gap:0;flex-wrap:wrap;margin-top:20px;border-bottom:1px solid rgba(245,214,150,.16)}
.ed-f{background:none;border:0;border-bottom:2px solid transparent;color:var(--mist);cursor:pointer;
  padding:11px 18px 12px;font:600 .84rem var(--sans);transition:.18s;display:inline-flex;align-items:center;gap:7px}
.ed-f:hover{color:var(--champagne)}
.ed-f.on{color:var(--gold);border-bottom-color:var(--gold)}
.ed-f .c{font-size:.7rem;color:var(--faint);font-variant-numeric:tabular-nums}
.ed-f.on .c{color:rgba(245,178,63,.75)}
.ed-f .dot{width:6px;height:6px;border-radius:50%;background:var(--mint)}

.ed-sechead{display:flex;align-items:baseline;justify-content:space-between;gap:20px;flex-wrap:wrap;
  padding:44px 0 20px}
.ed-sechead h2{font-family:var(--serif);font-weight:500;font-size:2rem;letter-spacing:-.01em}
/* .more.tag = display-only count/label (KJ 8/13 dead-control sweep: labels
   must not dress like links) */
.ed-sechead .more.tag{cursor:default;border-bottom:none}
.ed-sechead .more{font-size:.82rem;color:var(--mist);cursor:pointer;border-bottom:1px solid rgba(245,178,63,.4);
  padding-bottom:2px}
.ed-sechead .more:hover{color:var(--gold)}

.ed-feature{display:grid;grid-template-columns:1.55fr 1fr;gap:20px;align-items:stretch}
.ed-side{display:grid;grid-template-rows:1fr 1fr;gap:20px;min-width:0}
.lede{position:relative;border-radius:5px;overflow:hidden;min-height:430px;display:flex;
  align-items:flex-end;cursor:pointer;background:#0B1020}
.lede img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.2,.6,.2,1)}
.lede:hover img{transform:scale(1.04)}
.lede .veil{position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(8,11,22,.05) 30%,rgba(8,11,22,.62) 62%,rgba(8,11,22,.95) 100%)}
.lede .body{position:relative;padding:30px 32px;width:100%}
.lede .kick{font-size:.64rem;font-weight:800;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);
  margin-bottom:10px}
.lede h3{font-family:var(--serif);font-weight:500;font-size:2.1rem;line-height:1.08;letter-spacing:-.015em}
.lede .meta{display:flex;align-items:center;gap:9px;font-size:.82rem;color:var(--mist);margin-top:10px;flex-wrap:wrap}
.mini{position:relative;border-radius:5px;overflow:hidden;display:flex;align-items:flex-end;cursor:pointer;
  min-height:205px;background:#0B1020}
.mini img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.2,.6,.2,1)}
.mini:hover img{transform:scale(1.04)}
.mini .veil{position:absolute;inset:0;background:linear-gradient(180deg,transparent 34%,rgba(8,11,22,.93))}
.mini .body{position:relative;padding:18px 20px;width:100%}
.mini h3{font-family:var(--serif);font-weight:500;font-size:1.25rem;line-height:1.15}
.mini .meta{font-size:.75rem;color:var(--mist);margin-top:5px}

.livetag{position:absolute;top:16px;left:16px;z-index:2;display:inline-flex;align-items:center;gap:7px;
  background:rgba(10,8,14,.72);backdrop-filter:blur(8px);border:1px solid rgba(255,107,94,.55);
  color:#FFC4BD;border-radius:3px;padding:5px 11px;font-size:.64rem;font-weight:800;letter-spacing:.13em;
  text-transform:uppercase}
.livetag .d{width:6px;height:6px;border-radius:50%;background:var(--coral);animation:edp 1.5s infinite}
.livetag .mins{opacity:.85;font-weight:700}
@keyframes edp{0%,100%{opacity:1}50%{opacity:.28}}

/* paper spread */
.ed-paper .pw{max-width:1180px;margin:0 auto;padding:52px 28px 56px;display:grid;
  grid-template-columns:1.1fr 1fr;gap:44px;align-items:center}
.ed-paper .ed-rule{color:#9A6510}
.ed-paper .ed-rule::after{background:linear-gradient(90deg,rgba(154,101,16,.45),transparent)}
.ed-paper h2{font-family:var(--serif);font-weight:500;font-size:2.3rem;line-height:1.12;
  letter-spacing:-.015em;margin-top:14px;color:#1B140D}
.ed-paper p{color:#57483A;margin-top:14px;line-height:1.72;font-size:.98rem}
.ed-paper p::first-letter{font-family:var(--serif);font-size:3.1em;float:left;line-height:.82;
  padding:4px 10px 0 0;color:#9A6510}
.ed-nb{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.ed-nb div{background:rgba(255,255,255,.62);border:1px solid rgba(34,26,18,.1);border-radius:4px;padding:16px 18px}
.ed-nb .n{font-family:var(--serif);font-size:1.5rem;color:#1B140D}
.ed-nb .l{font-size:.68rem;letter-spacing:.13em;text-transform:uppercase;color:#7A6754;margin-top:5px}

/* dual-column listing grid — also the "see all" expand view */
.ed-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.ed-count{font-size:.82rem;color:var(--faint);padding:8px 0 22px}
.ed-count b{color:var(--champagne)}

/* legacy city-page furniture kept for the concept screens */
.city-hero{position:relative;padding:64px 0 40px;border-bottom:1px solid var(--line);background:
  radial-gradient(800px 340px at 80% -20%, rgba(245,178,63,0.10), transparent 60%),
  linear-gradient(180deg,#0B1224,#0A0F1E)}
.city-hero h1{font-family:var(--serif);font-weight:500;font-size:clamp(2.2rem,4.5vw,3.2rem);line-height:1.1}
.city-hero h1 em{font-style:italic;color:var(--gold)}
.city-hero .sub{color:var(--mist);margin-top:10px;max-width:560px}
.photo-strip{display:grid;grid-template-columns:2fr 1fr 1fr;gap:10px;margin-top:28px;height:200px}
.photo-strip>div{border-radius:14px;position:relative;overflow:hidden;border:1px solid var(--line)}
.ps1{background:linear-gradient(150deg,#233158 0%,#4A3560 55%,#B06A54 100%)}
.ps2{background:linear-gradient(150deg,#173747 0%,#2A5860 60%,#C08347 100%)}
.ps3{background:linear-gradient(150deg,#301F49 0%,#5C3660 60%,#9E4A50 100%)}
.photo-strip .src{position:absolute;bottom:8px;left:8px;background:rgba(6,9,18,0.6);
  border:1px solid rgba(255,255,255,0.14);border-radius:7px;padding:2px 8px;font-size:0.6rem;
  letter-spacing:0.08em;text-transform:uppercase;color:var(--mist)}
.filters{position:sticky;top:56px;z-index:30;background:rgba(10,15,30,0.9);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);padding:14px 0}
.filters .row{display:flex;gap:8px;overflow-x:auto;padding-bottom:2px;scrollbar-width:none}
.chip{flex-shrink:0;cursor:pointer;border:1px solid rgba(255,255,255,0.14);background:transparent;
  color:var(--mist);border-radius:99px;padding:8px 18px;font-size:0.83rem;font-weight:600;transition:all .2s;
  display:inline-flex;align-items:center;gap:7px}
.chip svg{width:14px;height:14px}
.chip:hover{border-color:var(--gold);color:var(--champagne)}
.chip.on{background:var(--gold);border-color:var(--gold);color:#241503}
.chip.on .dot{background:#241503}
.chip .dot{width:7px;height:7px;border-radius:50%;background:var(--mint)}
.city-layout{display:grid;grid-template-columns:1fr 340px;gap:24px;align-items:start;padding:36px 0 72px}
.result-count{font-size:0.85rem;color:var(--faint);margin-bottom:16px}
.result-count strong{color:var(--champagne)}
.vlist{display:flex;flex-direction:column;gap:14px}
.vrow{display:grid;grid-template-columns:200px 1fr auto;gap:18px;background:var(--ink-2);
  border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;cursor:pointer;transition:all .2s}
.vrow:hover{border-color:rgba(245,178,63,0.5);transform:translateY(-2px);box-shadow:0 14px 34px rgba(0,0,0,0.4)}
.vrow .ph{position:relative;min-height:140px}
.vrow .ph .fade{position:absolute;inset:0;background:linear-gradient(90deg,transparent 55%,rgba(16,24,48,0.9))}
.vrow .mid{padding:16px 0;display:flex;flex-direction:column;gap:6px;min-width:0}
.vrow .nm{font-family:var(--serif);font-size:1.2rem}
.vrow .right{padding:16px 18px;display:flex;flex-direction:column;align-items:flex-end;justify-content:space-between;gap:8px}
.hh-window{background:rgba(245,178,63,0.1);border:1px solid rgba(245,178,63,0.35);color:var(--gold);
  border-radius:12px;padding:8px 14px;font-size:0.78rem;font-weight:700;text-align:center;white-space:nowrap}
.hh-window small{display:block;font-size:0.64rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;
  color:rgba(245,178,63,0.7)}
.map-panel{position:sticky;top:126px;background:var(--ink-2);border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden}
.map-canvas{position:relative;height:420px;background:
  radial-gradient(240px 180px at 30% 40%, rgba(46,64,110,0.6), transparent 70%),
  radial-gradient(300px 220px at 75% 65%, rgba(58,44,84,0.5), transparent 70%),
  #0D1428}
.map-canvas .grid-line{position:absolute;background:rgba(255,255,255,0.045)}
.pin{position:absolute;width:30px;height:30px;border-radius:50% 50% 50% 0;transform:rotate(-45deg);
  background:var(--gold);border:2px solid #FFE0A8;display:flex;align-items:center;justify-content:center;
  cursor:pointer;box-shadow:0 4px 14px rgba(245,178,63,0.5);transition:transform .2s}
.pin:hover{transform:rotate(-45deg) scale(1.15)}
.pin span{transform:rotate(45deg);font-size:0.6rem;font-weight:800;color:#241503}
.map-note{padding:14px 16px;font-size:0.78rem;color:var(--faint);border-top:1px solid var(--line)}


/* ═══ 11 · FILTERS ═══════════════════════════════════════════════════════ */
.fbar{display:flex;gap:10px;flex-wrap:wrap;align-items:center;justify-content:center;margin-top:18px}
.fdd{position:relative}
.fdd.open{z-index:60}
.fdd>button{display:inline-flex;align-items:center;gap:9px;cursor:pointer;min-height:44px;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.15);color:var(--mist);
  border-radius:10px;padding:11px 16px;font:600 .85rem var(--sans);transition:.18s}
.fdd>button:hover{border-color:rgba(245,178,63,.5);color:var(--champagne)}
.fdd.open>button,.fdd.has>button{border-color:var(--gold);color:var(--gold);background:rgba(245,178,63,.09)}
.fdd .cnt{background:var(--gold);color:#241503;border-radius:20px;font-size:.68rem;font-weight:800;
  padding:1px 7px;min-width:19px;text-align:center}
.fdd .cv{width:12px;height:12px;transition:transform .2s;opacity:.7}
.fdd.open .cv{transform:rotate(180deg)}
.fmenu{position:absolute;top:calc(100% + 8px);left:0;z-index:40;min-width:250px;max-height:330px;overflow-y:auto;
  background:#101A2E;border:1px solid rgba(245,214,150,.22);border-radius:12px;padding:8px;
  box-shadow:0 20px 50px rgba(0,0,0,.6);display:none}
.fdd.open .fmenu{display:block;animation:fin .16s ease}
@keyframes fin{from{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:none}}
.fopt{display:flex;align-items:center;gap:11px;padding:9px 11px;border-radius:8px;cursor:pointer;
  font-size:.86rem;color:var(--mist);transition:.14s;user-select:none}
.fopt:hover{background:rgba(255,255,255,.06);color:var(--champagne)}
.fbox{width:17px;height:17px;border-radius:5px;border:1.5px solid rgba(255,255,255,.28);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;transition:.15s}
.fbox svg{width:11px;height:11px;color:#241503;opacity:0;transition:.15s}
.fopt.on .fbox{background:var(--gold);border-color:var(--gold)}
.fopt.on .fbox svg{opacity:1}
.fopt.on{color:var(--champagne)}
.fopt .n{margin-left:auto;font-size:.74rem;color:var(--faint);font-variant-numeric:tabular-nums}
.fmenu .fhead{font-size:.66rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;color:var(--faint);
  padding:7px 11px 6px}
.fclear{background:none;border:0;color:var(--faint);font:600 .82rem var(--sans);cursor:pointer;
  text-decoration:underline;text-underline-offset:3px;padding:11px 6px}
.fclear:hover{color:var(--gold)}
.ftoggle{display:inline-flex;align-items:center;gap:8px;cursor:pointer;min-height:44px;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.15);color:var(--mist);
  border-radius:10px;padding:11px 16px;font:600 .85rem var(--sans);transition:.18s}
.ftoggle:hover{border-color:rgba(245,178,63,.5);color:var(--champagne)}
.ftoggle.on{background:rgba(74,222,158,.1);border-color:rgba(74,222,158,.5);color:var(--mint)}
.ftoggle .dot{width:7px;height:7px;border-radius:50%;background:currentColor}
.fsort{margin-left:auto;display:flex;align-items:center;gap:9px;font-size:.82rem;color:var(--faint)}
.fsort select{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.15);color:var(--mist);
  border-radius:10px;padding:11px 14px;font:600 .84rem var(--sans);cursor:pointer;min-height:44px}
.fnone{display:none;padding:40px 0;text-align:center;color:var(--mist)}
.fnone.on{display:block}
.fnone b{color:var(--champagne);display:block;font-family:var(--serif);font-size:1.3rem;margin-bottom:6px}


/* ═══ 12 · COUNTDOWN ═════════════════════════════════════════════════════ */
.hhclock{display:inline-flex;align-items:center;gap:8px;border-radius:99px;padding:6px 13px;
  font-size:.76rem;font-weight:700;letter-spacing:.01em;white-space:nowrap;border:1px solid transparent}
.hhclock svg{width:13px;height:13px;flex-shrink:0}
.hhclock .dot{width:7px;height:7px;border-radius:50%;background:currentColor;flex-shrink:0}
.hhclock.live{background:rgba(74,222,158,.1);border-color:rgba(74,222,158,.45);color:var(--mint)}
.hhclock.live .dot{animation:hhp 1.5s infinite}
.hhclock.ending{background:rgba(255,107,94,.12);border-color:rgba(255,107,94,.5);color:#FFB0A8}
.hhclock.ending .dot{animation:hhp .9s infinite}
.hhclock.soon{background:rgba(245,178,63,.1);border-color:rgba(245,178,63,.45);color:var(--gold)}
.hhclock.later{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.12);color:var(--faint)}
@keyframes hhp{0%,100%{opacity:1}50%{opacity:.25}}
.hhbig{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.hhbig .clockface{display:flex;align-items:baseline;gap:5px;font-family:var(--serif);line-height:1}
.hhbig .clockface .v{font-size:2.5rem;color:var(--gold);font-variant-numeric:tabular-nums}
.hhbig .clockface .u{font-size:.85rem;color:var(--mist);margin-right:8px}
.hhbig .lab{font-size:.78rem;color:var(--mist);letter-spacing:.04em}
.hhbig .lab b{display:block;color:var(--champagne);font-size:.94rem;margin-bottom:2px}
.hhbig.is-ending .clockface .v{color:#FF8F82}


/* ═══ 13 · DEAL CHECK ════════════════════════════════════════════════════ */
.dc2{background:linear-gradient(180deg,rgba(19,26,46,.8),rgba(13,19,34,.86));backdrop-filter:blur(3px);
  border:1px solid var(--line);border-radius:var(--radius);padding:20px 22px;margin-bottom:14px}
.dc2 .q{font-weight:600;font-size:.98rem}
.dc2 .why{font-size:.8rem;color:var(--faint);margin-top:4px}
.dc2 .conf{display:inline-flex;align-items:center;gap:7px;font-size:.78rem;color:var(--mint);margin-top:9px}
.dc2 .conf svg{width:13px;height:13px}
.dc2 .row{display:flex;gap:9px;flex-wrap:wrap;margin-top:16px}
.dc2 button{cursor:pointer;font:600 .85rem var(--sans);border-radius:99px;padding:11px 20px;min-height:44px;
  transition:.2s;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.05);color:var(--mist)}
.dc2 .yes:hover{border-color:var(--mint);color:var(--mint);background:rgba(74,222,158,.08)}
.dc2 .diff:hover{border-color:var(--gold);color:var(--gold);background:rgba(245,178,63,.08)}
.dc2 .step{display:none}
.dc2 .step.on{display:block;animation:dcin .25s ease}
@keyframes dcin{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:none}}
.dcf{margin-top:16px;border-top:1px dashed var(--line);padding-top:16px}
.dcf .lbl{font-size:.72rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:9px}
.dcf .chips{display:flex;gap:8px;flex-wrap:wrap}
.dcf .chip2{cursor:pointer;user-select:none;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.04);
  color:var(--mist);border-radius:99px;padding:9px 16px;font-size:.82rem;font-weight:600;transition:.18s;
  min-height:42px;display:inline-flex;align-items:center;gap:7px}
.dcf .chip2:hover{border-color:rgba(245,178,63,.5);color:var(--champagne)}
.dcf .chip2.on{background:rgba(245,178,63,.14);border-color:var(--gold);color:var(--gold)}
.dcf .chip2 .tick{width:13px;height:13px;opacity:0;transition:.15s}
.dcf .chip2.on .tick{opacity:1}
.dcf textarea{width:100%;margin-top:14px;background:rgba(8,12,24,.6);border:1px solid var(--line);
  border-radius:10px;color:var(--champagne);font:.92rem/1.5 var(--sans);padding:13px 15px;resize:vertical;
  min-height:86px;outline:none}
.dcf textarea:focus{border-color:rgba(245,178,63,.5)}
.dcf textarea::placeholder{color:var(--faint)}
.dcf .hint{font-size:.74rem;color:var(--faint);margin-top:7px}
.dcf .drop{margin-top:12px;border:1px dashed var(--line);border-radius:10px;padding:14px;display:flex;
  align-items:center;gap:11px;cursor:pointer;color:var(--mist);font-size:.85rem;transition:.2s}
.dcf .drop:hover{border-color:rgba(245,178,63,.5);color:var(--champagne)}
.dcf .drop svg{width:18px;height:18px;color:var(--gold);flex-shrink:0}
.dcf .actions{display:flex;gap:10px;margin-top:16px;flex-wrap:wrap;align-items:center}
.dcf .send{background:linear-gradient(180deg,#FFC65C,#D98E1B);color:#241503;border:0;font-weight:800}
.dcf .cancel{background:transparent;border:0;color:var(--faint);text-decoration:underline;
  text-underline-offset:3px;padding:11px 4px}
.dcf .send[disabled]{opacity:.45;cursor:not-allowed}
.dc2 .thanks{display:flex;gap:13px;align-items:flex-start}
.dc2 .thanks .tick{width:34px;height:34px;border-radius:50%;background:rgba(74,222,158,.13);
  border:1px solid rgba(74,222,158,.45);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.dc2 .thanks .tick svg{width:16px;height:16px;color:var(--mint)}
.dc2 .thanks h4{font-size:.98rem;font-weight:700}
.dc2 .thanks p{font-size:.85rem;color:var(--mist);margin-top:3px}

/* legacy deal-check block kept for the concept screens */
.deal-check{background:var(--ink-2);border:1px solid var(--line);border-radius:var(--radius);padding:18px 22px}
.deal-check .top{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.deal-check .q{font-size:0.95rem;font-weight:600}
.deal-check .sub-line{font-size:0.78rem;color:var(--mint);margin-top:3px;display:flex;align-items:center;gap:6px}
.deal-check .sub-line svg{width:13px;height:13px}
.deal-check .votes{display:flex;gap:8px}
.visitor-notes{margin-top:16px;border-top:1px dashed var(--line);padding-top:14px;display:flex;
  flex-direction:column;gap:10px}
.vnote{display:flex;gap:10px;font-size:0.84rem;color:var(--mist);align-items:flex-start}
.vnote svg{width:14px;height:14px;color:var(--gold);flex-shrink:0;margin-top:3px}
.vnote .when{color:var(--faint);font-size:0.74rem;white-space:nowrap;margin-left:auto;padding-left:10px}
.vote-btn{cursor:pointer;display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.14);color:var(--mist);border-radius:99px;padding:10px 18px;
  font-size:0.84rem;font-weight:600;transition:all .2s;min-height:44px}
.vote-btn svg{width:16px;height:16px}
.vote-btn.up:hover{border-color:var(--mint);color:var(--mint)}
.vote-btn.edit:hover{border-color:var(--gold);color:var(--gold)}
.vote-btn.down:hover{border-color:var(--coral);color:#FFB0A8}


/* ═══ 14 · PROFILE ═══════════════════════════════════════════════════════ */
.prof-hero{padding:40px 0 0}
.gallery{display:grid;grid-template-columns:2.2fr 1fr;grid-template-rows:1fr 1fr;gap:10px;height:380px;
  border-radius:22px;overflow:hidden}
.gallery .g1{grid-row:1/3;position:relative;background:linear-gradient(140deg,#2A3050 0%,#4E3358 50%,#A05B48 100%)}
.gallery .g2{position:relative;background:linear-gradient(140deg,#1C3A48 0%,#2E5A60 60%,#B07840 100%)}
.gallery .g3{position:relative;background:linear-gradient(140deg,#332450 0%,#5E3862 60%,#94484E 100%)}
.gallery .src{position:absolute;bottom:10px;left:10px;background:rgba(6,9,18,0.62);
  border:1px solid rgba(255,255,255,0.15);border-radius:8px;padding:3px 9px;font-size:0.62rem;
  letter-spacing:0.08em;text-transform:uppercase;color:var(--mist)}
.gallery .more{position:absolute;bottom:10px;right:10px;background:rgba(6,9,18,0.7);
  border:1px solid rgba(255,255,255,0.2);border-radius:10px;padding:7px 14px;font-size:0.76rem;
  font-weight:700;color:var(--champagne);cursor:pointer}

.prof-head{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;padding:28px 0 0;flex-wrap:wrap}
.prof-head h1{font-family:var(--serif);font-weight:500;font-size:clamp(2rem,4vw,2.9rem);line-height:1.1}
.tags{display:flex;gap:8px;margin-bottom:10px;flex-wrap:wrap}
.tag-pill{font-size:0.72rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;border-radius:99px;padding:5px 13px}
.tag-pill.cat{background:rgba(245,178,63,0.12);border:1px solid rgba(245,178,63,0.35);color:var(--gold)}
.tag-pill.price{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.14);color:var(--mist)}
.tag-pill.open{background:rgba(74,222,158,0.1);border:1px solid rgba(74,222,158,0.4);color:var(--mint);
  display:inline-flex;align-items:center;gap:6px}
.tag-pill.open .dot{width:7px;height:7px;border-radius:50%;background:var(--mint);animation:pulse 2s infinite}
.stars-row{display:flex;align-items:center;gap:7px;margin-top:10px;font-size:0.88rem;color:var(--mist);flex-wrap:wrap}
.stars-row svg{width:16px;height:16px;color:var(--gold)}
.prof-actions{display:flex;gap:10px;flex-wrap:wrap}
.actionbar{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:20px 0 4px;
  padding-top:18px;border-top:1px solid var(--line)}
.actionbar .btn{padding:12px 22px;font-size:.86rem}
.ab-note{font-size:.72rem;color:var(--faint);margin-left:auto}

/* Profile badge slot: one size, always present. */
.badge-slot{flex-shrink:0;width:250px;max-width:100%;min-height:74px;display:flex;align-items:center;
  justify-content:flex-end}
/* KJ 8/12: bigger, easier to read on the profile header */
.plaque-lg{height:92px;width:auto;max-width:100%;display:block;filter:drop-shadow(0 4px 14px rgba(0,0,0,.55))}
.claim-slot{width:100%;text-align:center;font-size:.82rem;color:var(--mist);cursor:pointer;
  border:1px dashed rgba(245,178,63,.4);border-radius:8px;padding:15px 12px;background:rgba(245,178,63,.05)}
.claim-slot b{color:var(--gold);display:block;margin-top:3px}

.prof-layout{display:flex;flex-direction:column;gap:16px;max-width:780px;margin:0 auto;padding:24px 0 72px}

.hh-card{position:relative;border-radius:22px;border:1px solid rgba(245,178,63,0.4);overflow:hidden;background:
  radial-gradient(480px 200px at 90% 0%, rgba(245,178,63,0.14), transparent 65%),
  linear-gradient(160deg,#1A2140 0%,#171230 100%)}
/* title left, live pill right, schedule as a quiet line */
.hh-card .head{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:20px 24px 0;flex-wrap:wrap}
.hh-card .head h2{font-family:var(--serif);font-size:1.6rem;font-weight:500}
.hh-card .head h2 em{font-style:italic;color:var(--gold)}
.hh-sched{font-size:.88rem;color:var(--mist);letter-spacing:.01em;margin-bottom:16px}
.hh-body{padding:12px 26px 26px}
.hh-when{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:18px}
.when-pill{background:rgba(255,255,255,0.05);border:1px solid var(--line);border-radius:12px;padding:9px 16px;
  font-size:0.82rem;color:var(--mist)}
.when-pill strong{color:var(--champagne)}
.hh-sec{font-size:0.72rem;font-weight:800;letter-spacing:0.14em;text-transform:uppercase;color:var(--gold);margin:20px 0 6px}
.hh-sec:first-of-type{margin-top:0}
.countdown{display:inline-flex;align-items:center;gap:8px;background:rgba(255,107,94,0.1);
  border:1px solid rgba(255,107,94,0.4);color:#FFB0A8;border-radius:99px;padding:7px 16px;
  font-size:0.78rem;font-weight:700}
.countdown .dot{width:8px;height:8px;border-radius:50%;background:var(--coral);animation:pulse 1.4s infinite}
.item{display:flex;justify-content:space-between;gap:14px;padding:10px 0;border-bottom:1px solid rgba(245,214,150,0.1)}
.item:last-child{border-bottom:none}
.item .n{font-weight:600;font-size:0.95rem}
.item .d{font-size:0.8rem;color:var(--faint);margin-top:2px}
.item .p{color:var(--gold);font-weight:700;white-space:nowrap;font-variant-numeric:tabular-nums;font-size:0.95rem}

.side-card{background:linear-gradient(180deg,rgba(19,26,46,.8),rgba(13,19,34,.86));backdrop-filter:blur(3px);
  border:1px solid var(--line);border-radius:var(--radius);padding:22px}
.side-card h3{font-size:0.78rem;letter-spacing:0.12em;text-transform:uppercase;color:var(--faint);margin-bottom:14px}
.contact-line{display:flex;align-items:flex-start;gap:11px;font-size:0.88rem;color:var(--mist);padding:7px 0}
.contact-line svg{width:16px;height:16px;color:var(--gold);flex-shrink:0;margin-top:3px}
.hours{display:flex;flex-direction:column}
.hrow{display:flex;justify-content:space-between;font-size:0.86rem;padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,0.05);color:var(--mist)}
.hrow:last-child{border-bottom:none}
.hrow.today{color:var(--champagne);font-weight:700}
.hrow.today .d::after{content:" · Today";color:var(--mint);font-size:0.72rem;font-weight:700}
.hrow span:last-child{font-variant-numeric:tabular-nums}

/* Menus get the same warm treatment as the happy hour card, not flat black. */
.acc{background:radial-gradient(420px 180px at 92% 0%,rgba(245,178,63,.09),transparent 66%),
  linear-gradient(165deg,rgba(26,33,64,.9),rgba(23,18,48,.92));backdrop-filter:blur(3px);
  border:1px solid rgba(245,214,150,.16);border-radius:18px;margin-top:14px;overflow:hidden}
.acc summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;
  padding:17px 24px;font-weight:600;font-size:0.95rem}
.acc summary::-webkit-details-marker{display:none}
.acc summary .lft{display:flex;align-items:center;gap:11px;font-family:var(--serif);font-weight:500;
  font-size:1.18rem;letter-spacing:-.01em}
.acc summary svg.ic{width:17px;height:17px;color:var(--gold)}
.acc summary svg.ch{width:15px;height:15px;color:var(--faint);transition:transform .25s}
.acc[open] summary{border-bottom:1px solid rgba(245,214,150,.12)}
.acc[open] summary svg.ch{transform:rotate(180deg)}
.acc .bd{padding:0 24px 20px;font-size:0.88rem;color:var(--mist)}
.acc .bd .hh-sec:first-child{margin-top:16px}

.social-strip{background:linear-gradient(180deg,rgba(19,26,46,.8),rgba(13,19,34,.86));backdrop-filter:blur(3px);
  border:1px solid var(--line);border-radius:var(--radius);padding:22px}
.social-strip h3{font-size:0.78rem;letter-spacing:0.12em;text-transform:uppercase;color:var(--faint);margin-bottom:4px}
.social-strip .sub{font-size:0.82rem;color:var(--mist);margin-bottom:16px}
.social-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.social-tile{position:relative;aspect-ratio:4/5;border-radius:12px;overflow:hidden;border:1px solid var(--line);
  cursor:pointer;transition:all .2s}
.social-tile:hover{border-color:rgba(245,178,63,0.5);transform:translateY(-2px)}
.social-tile .shade{position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(8,10,22,0.88))}
.social-tile .handle{position:absolute;bottom:10px;left:10px;right:10px;font-size:0.74rem;font-weight:700;
  display:flex;align-items:center;gap:6px}
.social-tile .handle svg{width:13px;height:13px;flex-shrink:0}
.social-tile .kind{position:absolute;top:8px;left:8px;background:rgba(6,9,18,0.62);
  border:1px solid rgba(255,255,255,0.15);border-radius:7px;padding:2px 8px;font-size:0.58rem;
  letter-spacing:0.08em;text-transform:uppercase;color:var(--mist)}
.social-tile .play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:38px;height:38px;
  border-radius:50%;background:rgba(6,9,18,0.65);border:1px solid rgba(255,255,255,0.3);display:flex;
  align-items:center;justify-content:center}
.social-tile .play svg{width:15px;height:15px;color:#fff;margin-left:2px}

.claim-card{border:1px dashed rgba(245,178,63,0.45);border-radius:var(--radius);padding:22px;
  background:rgba(245,178,63,0.05)}
.claim-card h3{font-family:var(--serif);font-size:1.15rem;font-weight:500;margin-bottom:6px;letter-spacing:0;
  text-transform:none;color:var(--champagne)}
.claim-card p{font-size:0.85rem;color:var(--mist);margin-bottom:14px}

/* share ─ action-bar button, the quiet link on the happy hour card, and the sheet */
.shr{position:relative;display:inline-flex}
.shr-btn svg{width:15px;height:15px}
.hh-foot{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  margin-top:16px;font-size:.74rem;color:var(--faint)}
.shr-menu{display:inline-flex;align-items:center;gap:8px;cursor:pointer;background:rgba(245,178,63,.08);
  border:1px solid rgba(245,178,63,.34);color:var(--gold);border-radius:99px;padding:9px 16px;
  font:700 .78rem var(--sans);min-height:40px;transition:.18s;white-space:nowrap}
.shr-menu:hover{background:rgba(245,178,63,.16);border-color:var(--gold)}
.shr-menu svg{width:14px;height:14px}

.shr-sheet{position:absolute;top:calc(100% + 10px);right:0;z-index:70;width:290px;
  background:#101A2E;border:1px solid rgba(245,214,150,.24);border-radius:16px;padding:14px;
  box-shadow:0 24px 60px rgba(0,0,0,.66);animation:shrin .16s ease}
.shr-sheet[hidden]{display:none}
@keyframes shrin{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
.shr-head{display:flex;align-items:flex-start;justify-content:space-between;gap:10px;
  padding:2px 2px 12px;border-bottom:1px solid rgba(245,214,150,.12)}
.shr-k{font-size:.6rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase;color:var(--gold)}
.shr-t{font-family:var(--serif);font-size:1.08rem;line-height:1.2;margin-top:4px;color:var(--champagne)}
.shr-s{font-size:.72rem;color:var(--faint);margin-top:3px}
.shr-x{background:none;border:0;cursor:pointer;color:var(--faint);padding:3px;flex-shrink:0;border-radius:6px}
.shr-x:hover{color:var(--champagne)}
.shr-x svg{width:15px;height:15px;display:block}
.shr-opts{display:flex;flex-direction:column;gap:2px;padding:8px 0 4px}
.shr-o{display:flex;align-items:center;gap:12px;width:100%;cursor:pointer;background:none;border:0;
  color:var(--mist);border-radius:9px;padding:11px 10px;font:600 .86rem var(--sans);text-align:left;
  transition:.14s;min-height:44px}
.shr-o:hover{background:rgba(255,255,255,.06);color:var(--champagne)}
.shr-o svg{width:17px;height:17px;color:var(--gold);flex-shrink:0}
.shr-o[hidden]{display:none}
.shr-o.ok{color:var(--mint)}
.shr-o.ok svg{color:var(--mint)}
.shr-o.fail{color:var(--gold)}
.shr-url{font-size:.7rem;color:var(--faint);word-break:break-all;padding:9px 10px 2px;
  border-top:1px solid rgba(245,214,150,.1);line-height:1.5}

/* ── Sections the live pages carry (restored 8/9 after diffing the sandbox
   against discoverhappyhours.com — see page-parts.js). Restyled, never dropped. */
.rev-block{background:linear-gradient(165deg,rgba(19,26,46,.82),rgba(13,19,34,.88));
  border:1px solid var(--line);border-radius:18px;padding:22px 24px;margin-bottom:14px}
.rev-top{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.rev-score{display:flex;align-items:baseline;gap:6px}
.rev-score .rv{font-family:var(--serif);font-size:2.4rem;line-height:1;color:var(--gold)}
.rev-score .rd{font-size:.78rem;color:var(--faint)}
.rev-bar{flex:1;min-width:120px;height:7px;border-radius:99px;background:rgba(255,255,255,.08);overflow:hidden}
.rev-bar span{display:block;height:100%;background:linear-gradient(90deg,var(--gold-deep),var(--gold))}
.rev-n{font-size:.84rem;color:var(--mist);white-space:nowrap}
.rev-note{font-size:.8rem;color:var(--faint);margin-top:12px;line-height:1.6}

.dist-rows{margin-top:10px;display:flex;flex-direction:column}
.dist-row{display:flex;justify-content:space-between;gap:12px;font-size:.85rem;color:var(--mist);
  padding:8px 0;border-bottom:1px solid rgba(255,255,255,.05)}
.dist-row:last-child{border-bottom:0}
.dist-row span:last-child{color:var(--faint);text-align:right}

/* Placeholder block: an honest "not wired yet", never a faked section. */
.ph-block{border:1px dashed rgba(245,178,63,.42);background:rgba(245,178,63,.05);border-radius:14px;
  padding:20px 22px;margin:18px 0}
.ph-tag{font-size:.6rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase;color:var(--gold)}
.ph-name{font-family:var(--serif);font-size:1.2rem;color:var(--champagne);margin-top:6px}
.ph-block p{font-size:.85rem;color:var(--mist);margin-top:8px;line-height:1.6;max-width:78ch}

/* route index table */
.url-banner{margin-top:22px;border:1px solid rgba(74,222,158,.4);background:rgba(74,222,158,.07);
  border-radius:14px;padding:16px 20px}
.ub-h{font-family:var(--serif);font-size:1.15rem;color:var(--mint)}
.url-banner p{font-size:.86rem;color:var(--mist);margin-top:7px;line-height:1.65;max-width:80ch}
.url-banner em{color:var(--champagne);font-style:italic}
.rt-same{background:rgba(74,222,158,.1);border:1px solid rgba(74,222,158,.4);color:var(--mint)}
.rt-table{border:1px solid var(--line);border-radius:14px;overflow:hidden}
.rt-head,.rt-row{display:grid;grid-template-columns:2fr 1.3fr .85fr .9fr .65fr;gap:12px;padding:13px 18px;align-items:center}
.rt-head{background:rgba(255,255,255,.04);font-size:.66rem;font-weight:800;letter-spacing:.14em;
  text-transform:uppercase;color:var(--faint)}
.rt-row{border-top:1px solid rgba(245,214,150,.09);font-size:.86rem;color:var(--mist)}
.rt-row:hover{background:rgba(255,255,255,.03)}
.rt-url{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:.8rem;color:var(--champagne);word-break:break-all}
.rt-st{font-size:.68rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;border-radius:99px;
  padding:4px 11px;text-align:center;white-space:nowrap}
.rt-reskin{background:rgba(74,222,158,.1);border:1px solid rgba(74,222,158,.4);color:var(--mint)}
.rt-markup{background:rgba(245,178,63,.1);border:1px solid rgba(245,178,63,.45);color:var(--gold)}
.rt-new{background:rgba(122,162,247,.1);border:1px solid rgba(122,162,247,.45);color:#9DB8F5}
.rt-none{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.14);color:var(--faint)}
.rt-go{background:none;border:0;color:var(--gold);cursor:pointer;font:700 .82rem var(--sans);white-space:nowrap}
.rt-go:hover{text-decoration:underline}

/* ── 17. Live profile blocks restored after the Playwright diff (Aug 9) ──────
   Nine sections existed on the live profile and not in the sandbox. These are
   their styles. The header fix is .verify-pill: on the live page the state
   badge sits INSIDE the h3, so the heading reads "Photos & Gallery Restaurant
   Needs To Verify" as one string. Same words, but the badge is a sibling now. */
.back-pill{display:inline-flex;align-items:center;gap:7px;margin-bottom:16px;padding:8px 16px;
  border:1px solid var(--line);border-radius:99px;background:rgba(255,255,255,.03);
  font-size:.82rem;font-weight:600;color:var(--mist);text-decoration:none}
.back-pill:hover{border-color:rgba(245,178,63,.45);color:var(--champagne)}

/* menu jump pills (KJ 8/12): under the happy hour card, one per menu accordion */
.menu-jump{display:flex;flex-wrap:wrap;gap:8px;margin:14px 0 4px}
.mj-pill{display:inline-flex;align-items:center;gap:6px;padding:8px 15px;border:1px solid rgba(245,178,63,.45);
  border-radius:99px;background:rgba(245,178,63,.10);font-size:.8rem;font-weight:600;
  color:var(--champagne);text-decoration:none;white-space:nowrap;transition:background .15s,border-color .15s}
.mj-pill::after{content:'↓';font-size:.85em;opacity:.75}
.mj-pill:hover{border-color:var(--champagne);background:rgba(245,178,63,.22);color:#fff}
.acc{scroll-margin-top:72px}

/* heading icon: decorative only, so the emoji/glyph is out of the heading text */
.h-ico{display:inline-flex;width:1em;height:1em;margin-right:.45em;vertical-align:-.08em;color:var(--gold)}
.h-ico svg{width:100%;height:100%}

.claim-slots{display:flex;flex-direction:column;gap:10px;margin-bottom:14px}
.acc-claim summary{gap:10px}
.acc-claim .lft{flex:0 1 auto}
.verify-pill{margin-left:auto;margin-right:10px;flex:0 0 auto;font-size:.63rem;font-weight:800;
  letter-spacing:.1em;text-transform:uppercase;white-space:nowrap;border-radius:99px;padding:4px 11px;
  background:rgba(245,178,63,.1);border:1px solid rgba(245,178,63,.42);color:var(--gold)}
.claim-hint{font-size:.85rem;color:var(--mist);line-height:1.6;margin-bottom:12px;max-width:70ch}
.claim-go{display:inline-flex;padding:10px 18px;font-size:.83rem}

/* "How far is X?" — input, Check, Use my location, result */
.howfar{display:flex;gap:8px;margin-top:14px;flex-wrap:wrap}
.hf-in{flex:1;min-width:0;padding:11px 14px;border-radius:10px;border:1px solid var(--line);
  background:rgba(255,255,255,.04);color:var(--champagne);font:inherit;font-size:.85rem}
.hf-in::placeholder{color:var(--faint)}
.hf-in:focus{outline:none;border-color:rgba(245,178,63,.5)}
.hf-go{flex:0 0 auto;padding:11px 18px;font-size:.83rem}
.hf-geo{margin-top:10px;background:none;border:0;padding:0;cursor:pointer;display:inline-flex;
  align-items:center;font:600 .82rem var(--sans);color:var(--gold)}
.hf-geo:hover{text-decoration:underline}
/* result panel (KJ 8/12): a real box under the input, unmissable; the old
   quiet line with a resting dash read as broken */
.hf-out{margin-top:12px;padding:12px 16px;font-size:.95rem;color:var(--champagne);
  border:1px solid rgba(245,178,63,.4);border-radius:10px;background:rgba(245,178,63,.08)}
.hf-out .hf-mi{font-family:var(--serif);font-size:1.6rem;color:var(--gold);margin-right:6px}
.hf-out .hf-sub{font-size:.72rem;color:var(--mist);margin-top:4px}
.hf-err{margin-top:12px;padding:10px 14px;font-size:.83rem;color:var(--mist);
  border:1px solid var(--line);border-radius:10px;background:rgba(255,255,255,.03)}

/* The hh-card share sheet cannot open in place: .hh-card{overflow:hidden}
   clips it behind the menu (KJ 8/12). shrOpenAt() opens it FIXED, anchored
   right at the clicked button — coordinates set inline, immune to clipping. */
.shr-sheet.shr-fixed{position:fixed;right:auto;bottom:auto;width:min(92vw,320px);
  z-index:700;box-shadow:0 18px 60px rgba(0,0,0,.65)}

/* Reserve a Table ships disabled until the OpenTable affiliate is approved */
.reserve-wrap{position:relative;display:inline-flex}
.reserve-wrap .btn[disabled]{opacity:.55;cursor:default}
.soon-badge{position:absolute;top:-9px;right:-8px;padding:3px 9px;border-radius:99px;
  background:#1A2140;border:1px solid rgba(245,178,63,.55);color:var(--gold);
  font-size:.6rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;white-space:nowrap}

/* profile map: same .map-block as the city page, single pin */
.pin-solo{transform:translate(-50%,-50%)}
.map-attr{position:absolute;right:6px;bottom:5px;font-size:.62rem;color:var(--faint);
  background:rgba(9,13,24,.72);border-radius:5px;padding:2px 7px}
.map-attr a{color:var(--faint);text-decoration:none}
.map-block .map-note{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.map-block .map-note .btn{padding:9px 16px;font-size:.8rem;flex:0 0 auto}

/* sandbox-only: unresolvable production link */
#sbx-toast{position:fixed;left:50%;bottom:26px;transform:translateX(-50%) translateY(14px);z-index:9999;
  background:rgba(9,13,24,.96);border:1px solid rgba(245,178,63,.45);color:var(--champagne);
  border-radius:99px;padding:10px 20px;font-size:.8rem;opacity:0;pointer-events:none;
  transition:opacity .18s ease,transform .18s ease;max-width:90vw;text-align:center}
#sbx-toast.on{opacity:1;transform:translateX(-50%) translateY(0)}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* CTAs with no destination yet are <button>, not <a href-less>. They inherit
   .btn, so they need the font and cursor a bare button does not get. */
button.btn{font-family:var(--sans);cursor:pointer}
/* Search typeahead. Cities first, then venues — see search-suggest.js. */
.has-suggest{position:relative}
.suggest{position:absolute;left:0;right:0;top:calc(100% + 8px);z-index:60;max-height:min(62vh,440px);
  overflow-y:auto;background:rgba(10,15,27,.98);border:1px solid var(--line);border-radius:14px;
  box-shadow:0 28px 60px rgba(0,0,0,.55);padding:6px}
.sg-h{font-size:.62rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:var(--faint);
  padding:10px 14px 6px}
.sg-row{display:flex;align-items:baseline;justify-content:space-between;gap:14px;padding:10px 14px;
  border-radius:9px;text-decoration:none;color:var(--champagne);font-size:.88rem}
.sg-row:hover,.sg-row.on{background:rgba(245,178,63,.12)}
.sg-row b{color:var(--gold);font-weight:800}
/* the NAME never clips — the meta ("N happy hours") is what gives way when
   the row is tight (8/13: the type badges squeezed "Fort Lauderdale") */
.sg-n{flex:0 0 auto;white-space:nowrap}
.sg-m{flex:0 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
  font-size:.76rem;color:var(--faint);margin-left:auto;text-align:right}
.sg-none{padding:16px 14px;font-size:.85rem;color:var(--mist)}
.sg-cnt{font-size:.7rem;color:var(--faint);font-weight:400;margin-left:6px}
/* row type badges (KJ 8/13: "tampa" is city intent — a green City tag makes
   the city row unmistakable next to venue rows) */
.sg-tag{flex:none;font-size:.6rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  padding:2px 7px;border-radius:20px;margin-right:8px}
.sg-tag-city{background:rgba(74,222,158,.16);color:var(--mint);border:1px solid rgba(74,222,158,.35)}
.sg-tag-venue{background:rgba(245,178,63,.12);color:var(--gold);border:1px solid rgba(245,178,63,.3)}
.sg-tag-mark{background:rgba(125,160,255,.14);color:#9db8ff;border:1px solid rgba(125,160,255,.3)}
/* City rows carry a second action: go there, or make it your location. */
.sg-item{display:flex;align-items:center;gap:6px}
.sg-item .sg-row{flex:1;min-width:0}
.sg-set{flex:0 0 auto;background:rgba(255,255,255,.05);border:1px solid var(--line);border-radius:99px;
  padding:6px 12px;margin-right:8px;cursor:pointer;font:700 .7rem var(--sans);color:var(--mist);white-space:nowrap}
.sg-set:hover{border-color:rgba(245,178,63,.5);color:var(--gold)}
@media(max-width:560px){ .sg-set{display:none} }

/* "See all" index pages: one responsive grid for cities, cuisines, types,
   landmarks. Same tile shapes the rails use, unwrapped from the scroller. */
.idx-grid{display:grid;gap:14px;grid-template-columns:repeat(auto-fill,minmax(210px,1fr))}
.idx-grid > *{min-width:0}
.idx-grid .city{height:150px}
.idx-link{display:block;text-decoration:none;border-radius:14px}
.idx-link:focus-visible{outline:2px solid var(--gold);outline-offset:3px}

/* Homepage geo banner: IP-detected city + an always-available override. */
.geo-banner{border:1px solid var(--line);border-radius:14px;padding:14px 18px;margin-bottom:18px;
  background:linear-gradient(165deg,rgba(19,26,46,.72),rgba(13,19,34,.8))}
/* full-width strip under the site header (KJ 8/13) */
/* Stacking is DYNAMIC (8/13 evening): at rest the strip sits at 40 (under
   .ed-top's 130, so the filter dropdowns and search suggest open OVER it);
   while its own picker is open, .gp-open lifts it to 140 so the picker rows
   beat .ed-top and stay clickable. A static 140 covered the filter menus. */
.geo-strip{border-radius:0;border-left:0;border-right:0;border-top:0;margin:0;
  padding:10px 22px;position:relative;z-index:40;
  background:linear-gradient(90deg,rgba(74,222,158,.09),rgba(13,19,34,.92) 55%)}
.geo-strip.gp-open{z-index:140}
.geo-strip .geo-line{max-width:1200px;margin:0 auto}
.geo-strip .geo-picker{max-width:640px;margin:10px auto 4px;position:relative}
@media(max-width:560px){ .geo-strip{padding:10px 14px} .geo-strip .geo-src{display:none} }
.geo-line{display:flex;align-items:center;gap:10px;flex-wrap:wrap;font-size:.88rem;color:var(--mist)}
.geo-line svg{width:16px;height:16px;color:var(--gold);flex:0 0 auto}
.geo-city{color:var(--champagne);font-weight:700}
.geo-src{font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--faint);
  border:1px solid var(--line);border-radius:99px;padding:3px 10px;white-space:nowrap}
/* a real pill button, not a text link (KJ 8/13: "people won't always
   understand they can change the location") */
.geo-change{background:rgba(74,222,158,.12);border:1px solid rgba(74,222,158,.4);
  padding:7px 14px;border-radius:99px;margin-left:auto;cursor:pointer;
  font:700 .8rem var(--sans);color:var(--mint);white-space:nowrap}
.geo-change:hover{background:rgba(74,222,158,.22)}
.geo-picker{margin-top:14px;padding-top:14px;border-top:1px solid rgba(255,255,255,.06)}
.geo-in{width:100%;padding:11px 14px;border-radius:10px;border:1px solid var(--line);
  background:rgba(255,255,255,.04);color:var(--champagne);font:inherit;font-size:.85rem}
.geo-in::placeholder{color:var(--faint)}
.geo-in:focus{outline:none;border-color:rgba(245,178,63,.5)}
.geo-quick{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.geo-q{background:rgba(255,255,255,.04);border:1px solid var(--line);border-radius:99px;
  padding:7px 14px;cursor:pointer;font:600 .8rem var(--sans);color:var(--mist)}
.geo-q:hover{border-color:rgba(245,178,63,.45);color:var(--champagne)}
.geo-note{font-size:.72rem;color:var(--faint);margin-top:10px}
@media(max-width:560px){
  .geo-banner{padding:16px}
  .geo-change{margin-left:0;width:100%;padding:12px 14px;font-size:.9rem;text-align:center}
}
.sg-tag-state{background:rgba(255,255,255,.08);color:var(--champagne);border:1px solid var(--line)}

/* Claimable slot titles are h3 again; keep them visually identical to the
   summary text they replaced. */
.acc summary h3.lft,.acc-claim summary h3.lft{font-family:var(--sans);font-size:inherit;
  font-weight:inherit;color:inherit;margin:0;line-height:inherit}

/* The happy hour menu carries its own title on the live page ("$5 Happy Hour
   Menu (Mon–Fri 2–6 PM)"). The sandbox rendered the items and dropped the
   title, losing an h3 and the times it states. */
/* KJ 8/14: "Happy Hour | Drinks are the two Main Headers for the one widget
   and each can have their own subsections." These were quieter than their own
   children (.hh-sec is 800-weight uppercase gold, so "DRINKS" outshouted the
   "Happy Hour" above it). Given the header band of an open menu accordion:
   same serif, size and tracking, same hairline, bled to the card edges
   (.hh-body carries 26px). NOT the .acc component - KJ: "they are not meant
   to be collapsable widgets." */
.menu-title{font-family:var(--serif);font-weight:500;font-size:1.18rem;
  letter-spacing:-.01em;color:var(--champagne);
  margin:22px -26px 14px;padding:14px 26px;
  border-top:1px solid rgba(245,214,150,.14);
  border-bottom:1px solid rgba(245,214,150,.14)}
.menu-title:first-of-type{margin-top:6px}

@media(max-width:720px){
  .rt-head{display:none}
  .rt-row{grid-template-columns:1fr;gap:6px;padding:14px 16px}
}

/* In-flow map. Never sticky — see the note in page-parts.js. */
.map-block{position:relative;background:var(--ink-2);border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden;margin:34px 0 6px}
.map-block .map-canvas{height:300px}
.map-block .map-note{padding:14px 16px;font-size:.78rem;color:var(--faint);border-top:1px solid var(--line)}

.hood-block,.near-block{margin:34px 0 6px}
.hood-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(168px,1fr));gap:10px}
.hood-card,.near-card{display:flex;flex-direction:column;gap:3px;cursor:pointer;text-decoration:none;
  background:rgba(19,26,46,.7);border:1px solid var(--line);border-radius:12px;padding:13px 15px;
  transition:.2s;color:inherit}
.hood-card:hover,.near-card:hover{border-color:rgba(245,178,63,.45);transform:translateY(-2px)}
.hood-card.hide,.near-card.hide{display:none}
.hn,.nn{font-family:var(--serif);font-size:1.02rem;color:var(--champagne);line-height:1.2}
.hc,.nc{font-size:.75rem;color:var(--faint)}
.near-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:10px}
/* homepage variant: one horizontal scroll row of the same gradient tiles */
.near-rail{display:flex;gap:10px;overflow-x:auto;padding-bottom:8px;scrollbar-width:none}
.near-rail::-webkit-scrollbar{display:none}
.near-rail .city{flex:0 0 200px;height:140px}

/* sections carried over from the live pages, restyled only */
.blk-h{font-family:var(--serif);font-weight:500;font-size:1.45rem;letter-spacing:-.01em;margin-bottom:14px}
.faq-block{background:linear-gradient(165deg,rgba(19,26,46,.82),rgba(13,19,34,.88));
  border:1px solid var(--line);border-radius:18px;padding:22px 24px;margin-bottom:14px}
.faq-q{border-bottom:1px solid rgba(245,214,150,.1)}
.faq-q:last-child{border-bottom:0}
.faq-q summary{list-style:none;cursor:pointer;display:flex;justify-content:space-between;gap:14px;
  align-items:center;padding:14px 0;font-weight:600;font-size:.94rem;color:var(--champagne)}
.faq-q summary::-webkit-details-marker{display:none}
.faq-q .ch{width:15px;height:15px;color:var(--faint);flex-shrink:0;transition:transform .25s}
.faq-q[open] .ch{transform:rotate(180deg)}
.faq-q p{font-size:.9rem;color:var(--mist);padding:0 0 15px;line-height:1.65}

.rel-block{margin-bottom:14px}
.rel-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:11px}
.rel-card{display:block;background:rgba(19,26,46,.7);border:1px solid var(--line);border-radius:12px;
  padding:14px 16px;cursor:pointer;transition:.2s;color:inherit;text-decoration:none;
  position:relative;overflow:hidden}
/* gradient skins (KJ 8/13): same palette as the Nearby Cities tiles, rotated
   by position so neighbors never match. Pure CSS — the card HTML/links are
   untouched, so zero search impact. Soft shade keeps the text legible. */
.rel-card::before{content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(8,10,22,.38) 0%,rgba(8,10,22,.62) 100%)}
.rel-card>*{position:relative}
.rel-grid .rel-card:nth-child(4n+1){background:linear-gradient(165deg,#1F2C55 0%,#41335E 50%,#B4685A 100%)}
.rel-grid .rel-card:nth-child(4n+2){background:linear-gradient(165deg,#14324A 0%,#23555E 55%,#C08347 100%)}
.rel-grid .rel-card:nth-child(4n+3){background:linear-gradient(165deg,#2C2350 0%,#5C3660 55%,#A34A55 100%)}
.rel-grid .rel-card:nth-child(4n){background:linear-gradient(165deg,#20264E 0%,#3D4470 55%,#8A5E9E 100%)}
.rel-card:hover{border-color:rgba(245,178,63,.45);transform:translateY(-2px)}
/* Uniform card internals (KJ 8/13): title always occupies exactly 2 lines
   (clamped if longer, reserved if shorter), meta and category exactly 1 line
   each — every card in a row aligns no matter how long the venue name is. */
.rel-nm{font-family:var(--serif);font-size:1.02rem;line-height:1.2;color:var(--champagne);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  height:2.4em}
.rel-meta{display:flex;align-items:center;gap:5px;font-size:.76rem;color:var(--gold);margin-top:6px;
  white-space:nowrap;overflow:hidden}
.rel-meta svg{width:11px;height:11px;flex:none}
.rel-cat{font-size:.74rem;color:var(--faint);margin-top:3px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rel-all{display:inline-block;margin-top:13px;font-size:.85rem;color:var(--gold);cursor:pointer;
  border-bottom:1px solid rgba(245,178,63,.4);padding-bottom:2px}

.bg-ad{background:radial-gradient(500px 200px at 88% 0%,rgba(245,178,63,.12),transparent 68%),
  linear-gradient(160deg,rgba(26,33,64,.9),rgba(23,18,48,.92));
  border:1px solid rgba(245,214,150,.18);border-radius:18px;padding:26px;margin-top:6px}
.bg-kick{font-size:.68rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:var(--gold)}
.bg-ad h3{font-family:var(--serif);font-weight:500;font-size:1.5rem;margin-top:8px}
.bg-ad p{font-size:.9rem;color:var(--mist);margin:10px 0 16px;max-width:62ch;line-height:1.6}


/* ═══ 15 · READING ORDER ═════════════════════════════════════════════════
   RETIRED 8/12: the flex `order` map silently re-sorted the profile — any
   child it didn't name (the new per-section .claim-slots wrappers, the menu
   jump pills) defaulted to order:0 and jumped to the TOP of the page while
   every DOM check passed. profile-page.js now emits KJ's approved order
   directly; the DOM is the single source of truth. Never reintroduce order
   rules here. */
.prof-layout>.acc{margin-top:0}


/* ═══ 16 · MEDIA QUERIES (always last) ═══════════════════════════════════ */
@media(max-width:920px){
  .ed-feature{grid-template-columns:1fr}
  .ed-side{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .ed-paper .pw{grid-template-columns:1fr;gap:28px}
  .lede{min-height:330px}
}
@media (max-width:900px){
  .rail,.cities,.notes-grid{grid-template-columns:1fr 1fr}
  .vibes{grid-template-columns:repeat(3,1fr)}
  .city-layout,.prof-layout{grid-template-columns:1fr}
  .map-panel{position:static}
  .foot-grid{grid-template-columns:1fr 1fr}
  .gallery{grid-template-columns:1fr;grid-template-rows:220px 120px 120px;height:auto}
  .gallery .g1{grid-row:auto}
  .vrow{grid-template-columns:1fr}
  .vrow .ph{height:160px}
  .vrow .mid{padding:0 18px}
  .vrow .right{flex-direction:row;align-items:center;padding:0 18px 16px}
  .nav-links{display:none}
  /* Homepage keeps its condensed layout on desktop; below 900 the tile groups
     become swipeable rails so nothing gets squeezed to an unreadable width.
     Pure CSS — the homepage markup is untouched. */
  .rail,.cities,.vibes{display:flex;gap:12px;overflow-x:auto;overflow-y:hidden;
    scroll-snap-type:x proximity;scroll-padding-left:2px;padding-bottom:10px;
    scrollbar-width:none;-webkit-overflow-scrolling:touch;grid-template-columns:none}
  .rail::-webkit-scrollbar,.cities::-webkit-scrollbar,.vibes::-webkit-scrollbar{display:none}
  .rail>*,.cities>*,.vibes>*{scroll-snap-align:start;flex:0 0 auto}
  .rail>*{width:80%;max-width:320px}
  .cities>*{width:68%;max-width:280px}
  .vibes>*{width:40%;max-width:170px}
}
@media(max-width:720px){
  .ed-list{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
  .ed-shot{aspect-ratio:16/9}
  .ed-name{font-size:1.28rem}
  .ed-side{grid-template-columns:1fr}
  .lede{min-height:280px}
  .lede h3{font-size:1.6rem}
  .lede .body{padding:22px 20px}
  .ed-title{font-size:clamp(2.4rem,11vw,3.4rem)}
  .ed-head{padding:30px 0 26px}
  .ed-dek{font-size:.98rem}
  .ed-figs{border-bottom:0}
  .ed-fig{padding:12px 18px 12px 0;margin-right:18px}
  .ed-fig .n{font-size:1.3rem}
  .ed-search{padding:8px}
  .ed-search select,.ed-search .go{width:100%}
  .ed-search .f{width:100%;order:-1;padding:8px 6px}
  .ed-filters{flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none;-webkit-overflow-scrolling:touch}
  .ed-filters::-webkit-scrollbar{display:none}
  .ed-f{white-space:nowrap;flex:0 0 auto}
  .ed-sechead{padding:30px 0 16px}
  .ed-sechead h2{font-size:1.55rem}
  .ed-paper h2{font-size:1.6rem}
  .ed-nb{grid-template-columns:1fr 1fr}
  .ed-plaque{height:64px!important}
  /* filters */
  .fbar{gap:8px}
  .fdd{flex:1 1 calc(50% - 4px)}
  .fdd>button{width:100%;justify-content:space-between}
  .fmenu{min-width:100%;left:0;right:0}
  .fsort{margin-left:0;width:100%;justify-content:space-between}
  .fsort select{flex:1}
  /* profile */
  .actionbar .btn{flex:1 1 calc(50% - 5px);justify-content:center}
  .ab-note{margin-left:0;width:100%;text-align:center;margin-top:4px}
  .badge-slot{width:100%;justify-content:flex-start;margin-top:16px}
  /* netflix rows: swipe, tighter posters. The bars stay — on a phone they are the
     clearest signal the row moves sideways — just narrower. */
  .nfrow-body{gap:7px}
  .nfarrow{flex:0 0 34px;border-radius:11px}
  .nfarrow svg{width:19px;height:19px}
  .nfrow{margin-bottom:26px}
  .nfrow-title{font-size:1.22rem}
  .nftrack{gap:12px}
  .nfcard{width:220px}
  .nfcard .ed-foot{min-height:88px}
  .nfrank .rk{flex:0 0 62px;font-size:4.6rem;padding-right:8px}
  .nfrank[data-rk="10"] .rk{flex-basis:86px;font-size:4.3rem}
  .nfrank .nfcard{flex:0 0 220px;width:220px}
  .nftile{width:146px}
  .nfcity{width:228px}
  .nfexpand-head h2{font-size:1.55rem}
  /* sandbox annotation collides with the stat bar once the hero is phone-height */
  .video-note{display:none}
  /* share becomes a bottom sheet rather than a popover hanging off a wrapped button */
  .shr{position:static}
  .shr-sheet{position:fixed;left:12px;right:12px;bottom:12px;top:auto;width:auto;
    border-radius:20px;padding:16px;animation:shrup .2s ease}
  .hh-foot{gap:10px}
}
@keyframes shrup{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
@media (max-width:560px){
  .rail,.cities,.notes-grid,.foot-grid{grid-template-columns:1fr}
  .vibes{grid-template-columns:1fr 1fr}
  .search{flex-direction:column;align-items:stretch}
  .search .btn-gold{width:100%}
  .hero-stats .stat{padding:0 16px}
  .cta-band{padding:32px 24px}
  .ed-list{grid-template-columns:1fr}
  .ed-wrap,.ed-paper .pw{padding-left:18px;padding-right:18px}
  .ed-paper .pw{padding-top:38px;padding-bottom:40px}
  .social-grid{grid-template-columns:repeat(3,1fr)}
  .deal-check{flex-direction:column;align-items:flex-start}
  .dc2 .row button{flex:1;justify-content:center}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:0.01ms !important;animation-iteration-count:1 !important;
    transition-duration:0.01ms !important}
  .nftrack{scroll-behavior:auto}
}

/* The suggest box is appended to the search HOST (.search/.ed-search), so
   top:calc(100% + 8px) already clears the stacked mobile button — the old
   +64/66px field-relative offsets are retired (KJ 8/12: field-width dropdown
   truncated every suggestion). */

/* Filter dropdowns must overlay the sections below the hero / city header.
   .hero{overflow:hidden} was physically clipping the open menu at the hero
   boundary and its z-index:1 context painted under the next section. The
   night-scene art keeps its own clip via .hero-video{overflow:hidden}. */
/* Explicit stacking ladder (KJ 8/12): the search-suggest and filter dropdowns
   were still losing to sibling sections that shared z-index:30 — whoever came
   later in the DOM painted on top, so open menus rendered behind the header
   background / next section. Ladder: site header 400 > hero 250 (its suggest
   must overlay everything below it) > filter bar + city header 120 > body
   sections (1-30). */
header.site{z-index:400}
.hero{overflow:visible;z-index:250}
/* hero-inner holds the search + HOME_FILTER_BAR; hero-stats comes later in the
   DOM at the same z-index:10, so it painted over any open dropdown. */
.hero-inner{z-index:20}
/* Mobile: the filter row scrolls horizontally, and an absolute .fmenu inside a
   scroll container gets clipped / pushed off-viewport. Open menus become a
   fixed bottom sheet instead. backdrop-filter on .filters would make it the
   containing block for fixed children, so it goes solid at this width. */
@media(max-width:720px){
  /* keep the suggest panel inside the viewport on phones — 62vh under a
     mid-screen search box ran past the fold */
  .suggest{max-height:44vh}
  .filters{backdrop-filter:none;background:rgba(10,15,30,.97)}
  .fmenu{position:fixed;left:12px;right:12px;top:auto;bottom:14px;
    min-width:0;width:auto;max-height:58vh;z-index:600;box-shadow:0 -8px 40px rgba(0,0,0,.55)}
}
.ed-top{z-index:130}
.filters{z-index:120}
/* ed-head holds the city-page search; it must beat the LATER .filters bar or
   the open search-suggest renders under the filter pills. */
.ed-wrap.ed-head{z-index:130}
/* backdrop-filter on the search boxes creates a stacking context at z-auto,
   which TRAPPED the suggest's z-index:60 inside it — the filter pills after it
   in the DOM painted over the open suggest no matter how high its z went.
   Lifting the search containers to z5 puts the whole search subtree above the
   closed pills (z-auto); an OPEN dropdown (.fdd.open, z60) still wins. */
.search,.ed-search{position:relative;z-index:5}

/* KJ 8/12 trial: profile top centered — name, rating row, claim slot and the
   action bar. Breadcrumb and back-pill stay left as wayfinding. */
.prof-head{flex-direction:column;align-items:center;text-align:center;gap:14px}
.prof-head .stars-row{justify-content:center}
.prof-head .badge-slot{justify-content:center;margin-top:2px}
.actionbar{justify-content:center}
.actionbar .ab-note{margin-left:0;width:100%;text-align:center}

/* KJ 8/19 (superseded same day): the one-row .search override still let the
   button run off narrow phones, so the homepage hero now ships the venue-page
   .ed-search widget instead and the .search box is retired from the markup. */
