/* ============================================================
   Startup Crawl ’26 — Navigate the Crawl
   Palette = the official 2026 cup-logo set: poster navy, deep teal,
   aqua, Startup Junkie gold, cream; warm sand for the map paper.
   Type: Bricolage Grotesque (display) + Figtree (body).
   ============================================================ */
:root {
  --navy: #092a45; --ocean: #0f3b5c; --ocean-2: #17527a; --deep: #0b3d45;
  --teal: #125c66; --turq: #2e8f94; --aqua-light: #8ccfd2; --lagoon: #bfe6e3; --lagoon-bg: #e6f1ef;
  --sand: #efe0be; --sand-2: #e3d0a3; --cream: #fbf3e2; --cream-2: #eedbca;
  --gold: #f1cc3d; --gold-deep: #c9a227;
  --slate: #5e6b7a; --ink: #0b2233;

  --bg: var(--cream); --fg: var(--ink);
  --fg-muted: rgba(11, 34, 51, 0.66); --line: rgba(11, 34, 51, 0.14); --accent: var(--teal);

  --font-display: 'Bricolage Grotesque', 'Arial Black', Impact, sans-serif;
  --font-body: 'Figtree', 'Segoe UI', system-ui, sans-serif;
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.3125rem);
  --text-xl: clamp(1.375rem, 1.15rem + 1vw, 1.875rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.6vw, 3.4rem);
  --text-hero: clamp(2.6rem, 1.2rem + 5vw, 5.2rem);

  --s1: .25rem; --s2: .5rem; --s3: .75rem; --s4: 1rem; --s5: 1.25rem; --s6: 1.5rem; --s8: 2rem; --s10: 2.5rem; --s12: 3rem; --s16: 4rem; --s20: 5rem;
  --r-sm: 6px; --r-md: 12px; --r-lg: 18px; --r-xl: 26px;
  --shadow-md: 0 8px 24px rgba(9, 42, 69, 0.14);
  --shadow-lg: 0 24px 60px rgba(9, 42, 69, 0.3);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px; --gutter: clamp(1.1rem, 4vw, 3rem);
  --nav-h: 76px; --nav-actual: 76px;

  /* category colours */
  --c-stop: var(--gold); --c-food: var(--navy); --c-startup: var(--turq); --c-sponsor: var(--teal);
  --c-drink: var(--deep); --c-music: var(--ocean); --c-essential: var(--deep); --c-parking: var(--slate);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }
body { margin: 0; font-family: var(--font-body); font-size: var(--text-base); line-height: 1.55; color: var(--fg); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--ink); padding: 8px 12px; z-index: 999; font-weight: 700; }
.skip-link:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
section[id] { scroll-margin-top: var(--nav-actual); }
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }

.kicker { font-size: var(--text-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: .6em; }
.kicker::before { content: ''; width: 22px; height: 3px; background: currentColor; border-radius: 2px; }
.display { font-family: var(--font-display); font-weight: 800; line-height: .98; letter-spacing: -0.025em; font-variation-settings: 'opsz' 96, 'wdth' 100; }
.h2 { font-size: var(--text-2xl); }
.lede { font-size: var(--text-lg); line-height: 1.45; color: var(--fg-muted); max-width: 58ch; }
.muted { color: var(--fg-muted); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--sand { background: var(--sand); }
.section--lagoon { background: var(--lagoon-bg); }
.section--dark { --fg: var(--cream); --fg-muted: rgba(251, 243, 226, .74); --line: rgba(251, 243, 226, .16); --accent: var(--aqua-light); color: var(--fg); background: var(--ocean); }
.section--navy { --fg: var(--cream); --fg-muted: rgba(251, 243, 226, .74); --line: rgba(251, 243, 226, .16); --accent: var(--aqua-light); color: var(--fg); background: linear-gradient(180deg, var(--navy) 0%, var(--ocean) 100%); }
.section-head { display: grid; gap: var(--s3); margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--split { grid-template-columns: 1.1fr 1fr; align-items: end; gap: var(--s8); }
.section-head--split .lede { max-width: none; }
@media (max-width: 860px) { .section-head--split { grid-template-columns: 1fr; align-items: start; } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: .85em 1.4em; border-radius: 999px; font-weight: 700; font-size: var(--text-sm); min-height: 48px; text-decoration: none; transition: transform .35s var(--ease), background .25s, color .25s, box-shadow .35s var(--ease); white-space: nowrap; }
.btn--primary { background: var(--gold); color: var(--navy); box-shadow: 0 8px 22px rgba(201, 162, 39, .35); }
.btn--primary:hover { background: #f7d95c; transform: translateY(-1px); }
.btn--ghost { border: 2px solid var(--line); color: var(--fg); }
.btn--ghost:hover { border-color: var(--turq); }
.link { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; padding: .25em 0; min-height: 44px; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(9, 42, 69, .97); backdrop-filter: blur(10px); color: var(--cream); height: var(--nav-h); }
.nav::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(251, 243, 226, .14); }
.nav__inner { width: min(100% - 2 * var(--gutter), 1400px); margin-inline: auto; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s4); }
.brand { display: inline-flex; align-items: center; gap: .7em; text-decoration: none; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; line-height: 1; }
.brand__mark { height: 60px; width: auto; }
.brand__tag { font-family: var(--font-body); font-weight: 700; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--aqua-light); line-height: 1.25; padding-left: .8em; border-left: 1px solid rgba(251, 243, 226, .24); }
.nav__links { display: flex; gap: .15em; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.nav__links::-webkit-scrollbar { display: none; }
.nav__links a { text-decoration: none; font-weight: 600; font-size: var(--text-sm); padding: .55em .8em; border-radius: 999px; color: rgba(251, 243, 226, .82); white-space: nowrap; }
.nav__links a:hover { color: var(--navy); background: var(--gold); }
@media (max-width: 760px) {
  .nav { height: auto; }
  .nav__inner { flex-wrap: wrap; padding-block: .6rem .5rem; row-gap: .35rem; }
  .nav__links { width: 100%; margin-inline: -.5rem; padding-inline: .5rem; }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; color: var(--cream); --fg: var(--cream); --fg-muted: rgba(251, 243, 226, .78); --accent: var(--aqua-light); background: radial-gradient(80% 50% at 50% 108%, rgba(46, 143, 148, .55) 0%, rgba(18, 92, 102, .25) 40%, transparent 72%), radial-gradient(60% 50% at 100% 0%, rgba(23, 82, 122, .55), transparent 60%), linear-gradient(180deg, var(--navy) 0%, var(--ocean) 70%, var(--ocean-2) 100%); }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); padding-block: clamp(3.5rem, 7vw, 6rem) clamp(6rem, 11vw, 10rem); align-items: center; }
.hero__logo { width: clamp(220px, 34vw, 380px); height: auto; margin: 0 0 1.4rem -2%; filter: drop-shadow(0 10px 30px rgba(9, 42, 69, .45)); }
.hero__title { font-size: clamp(2.2rem, 1rem + 3.6vw, 3.9rem); margin: .6rem 0 1.1rem; }
.hero__title em { font-style: normal; color: var(--gold); }
.hero .lede { color: rgba(251, 243, 226, .82); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }
.hero .btn--ghost { border-color: rgba(251, 243, 226, .35); color: var(--cream); }
.hero .btn--ghost:hover { border-color: var(--aqua-light); background: rgba(46, 143, 148, .18); }
.facts { display: grid; gap: .7rem; }
.facts li { display: grid; grid-template-columns: 104px 1fr; gap: .8rem; padding: .9rem 1rem .9rem 1.1rem; border-radius: var(--r-md); background: rgba(9, 42, 69, .62); border: 1px solid rgba(251, 243, 226, .14); border-left: 4px solid var(--turq); font-size: var(--text-sm); line-height: 1.4; backdrop-filter: blur(4px); }
.facts__k { font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; font-size: var(--text-xs); padding-top: .15em; font-family: var(--font-display); }
.hero__shore { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(64px, 10vw, 132px); display: block; }
.hero__shore .w-aqua { fill: rgba(140, 207, 210, .28); }
.hero__shore .w-aqua2 { fill: rgba(140, 207, 210, .34); }
.hero__shore .w-sand { fill: var(--sand); }
.hero__shore .w-foam { fill: none; stroke: rgba(255, 255, 255, .9); stroke-width: 2.5; vector-effect: non-scaling-stroke; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } .hero__logo { width: min(64vw, 300px); } }

/* ---------- map section ---------- */
.mapsec { background: var(--sand); position: relative; }
.mapsec::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 34px; background: linear-gradient(180deg, rgba(9, 42, 69, .12), transparent); pointer-events: none; z-index: 4; }
.mapsec__grid { display: grid; grid-template-columns: minmax(320px, 400px) 1fr; }
.tour { padding: var(--s8) clamp(1rem, 3vw, 2rem) 46vh; }
.tour__head { display: grid; gap: var(--s3); margin-bottom: var(--s6); }
.tour__hint { font-size: var(--text-sm); }
.find { position: relative; margin-top: var(--s2); }
.find__box { display: flex; align-items: center; gap: .6em; background: #fff; border: 2px solid rgba(11, 34, 51, .1); border-radius: 999px; padding: 0 1em; height: 50px; color: var(--fg-muted); }
.find__box input { flex: 1; border: 0; background: none; font: inherit; color: var(--fg); min-width: 0; height: 100%; }
.find__box input:focus { outline: none; }
.find__box:focus-within { border-color: var(--turq); box-shadow: 0 0 0 4px rgba(63, 167, 181, .2); }
.find__results { position: absolute; z-index: 5; left: 0; right: 0; top: calc(100% + 6px); background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-md); max-height: 320px; overflow: auto; }
.find__results li button { display: grid; grid-template-columns: 1fr auto; gap: .5em 1em; width: 100%; text-align: left; padding: .65em 1em; border-bottom: 1px solid var(--line); min-height: 44px; align-items: center; }
.find__results li:last-child button { border-bottom: 0; }
.find__results li button:hover, .find__results li button:focus-visible { background: var(--lagoon-bg); }
.find__results .r-name { font-weight: 700; }
.find__results .r-meta { font-size: var(--text-xs); color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; text-align: right; }
.find__results .r-where { grid-column: 1 / -1; font-size: var(--text-sm); color: var(--fg-muted); margin-top: -.35em; }
.find__results .r-empty { padding: .8em 1em; color: var(--fg-muted); }

.tour__cards { display: grid; gap: var(--s5); }
.tour__card { position: relative; background: #fff; border: 1px solid rgba(11, 34, 51, .08); border-radius: var(--r-lg); padding: 1.15rem 1.25rem 1.25rem 1.4rem; transition: box-shadow .4s var(--ease), transform .4s var(--ease); scroll-margin-top: calc(var(--nav-actual) + 12px); overflow: hidden; }
.tour__card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: rgba(11, 34, 51, .08); transition: background .3s; }
.tour__card.is-active { box-shadow: 0 14px 34px rgba(15, 124, 135, .18); }
.tour__card.is-active::before { background: var(--turq); }
.tour__card .kicker { font-size: .68rem; }
.tour__card h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; font-size: var(--text-xl); margin: .35rem 0 .5rem; line-height: 1.02; }
.tour__card p { font-size: var(--text-sm); line-height: 1.5; color: var(--fg-muted); }
.tour__list { margin-top: .9rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.tour__list button { display: inline-flex; align-items: center; gap: .45em; background: var(--cream); border: 1px solid rgba(11, 34, 51, .12); border-radius: 999px; padding: .38em .8em .38em .5em; font-size: var(--text-xs); font-weight: 700; min-height: 34px; transition: background .2s, border-color .2s; }
.tour__list button:hover { border-color: var(--turq); background: #fff; }
.tour__list .dot { width: 20px; height: 20px; border-radius: 50%; display: inline-grid; place-items: center; font-size: .64rem; font-weight: 800; color: #fff; background: var(--dot, var(--turq)); }
.tour__list .dot__ic { width: 12px; height: 12px; }
.tour__list .dot--stop { --dot: var(--gold); color: var(--navy); }
.tour__list .dot--food { --dot: var(--navy); border-radius: 4px; }
.tour__list .dot--sponsor { --dot: var(--teal); }
.tour__list .dot--drink { --dot: var(--deep); }
.tour__list .dot--music { --dot: var(--ocean); }
.tour__list .dot--essential { --dot: var(--deep); }
.tour__list .dot--parking { --dot: var(--slate); }
.tour__list .dot--startup { --dot: var(--turq); color: var(--navy); }
.tour__jump { margin-top: .9rem; }

.mapwrap { position: relative; }
.map { position: sticky; top: var(--nav-actual); height: calc(100vh - var(--nav-actual)); min-height: 520px; background: var(--sand); overflow: hidden; touch-action: none; user-select: none; -webkit-user-select: none; }
.mapsvg { width: 100%; height: 100%; display: block; cursor: grab; --inv: .25; }
.mapsvg.is-dragging { cursor: grabbing; }
.mapsvg__paper { fill: #f1e2c1; }

@media (max-width: 900px) {
  /* mobile: heading → map (normal flow, scrolls away) → horizontal card strip */
  .mapsec__grid { display: grid; grid-template-columns: 1fr; grid-template-areas: 'head' 'map' 'cards'; }
  .tour, .mapwrap { display: contents; }
  .tour__head { grid-area: head; padding: var(--s6) var(--gutter) var(--s4); margin-bottom: 0; }
  /* inset like the Pryor floor plan so there's always page to grab beside and below it; the map itself pans one-finger */
  .map { grid-area: map; position: relative; top: auto; height: 54vh; min-height: 340px; max-height: 560px; margin: 0 var(--gutter); border-radius: var(--r-lg); border: 1px solid rgba(11, 34, 51, .12); box-shadow: var(--shadow-md); }
  .tour__cards { grid-area: cards; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: var(--s3); padding: var(--s4) var(--gutter) var(--s8); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .tour__cards::-webkit-scrollbar { display: none; }
  .tour__card { flex: 0 0 min(84vw, 400px); scroll-snap-align: center; }
  .tour__card.is-active { transform: none; }
}

/* map svg styling */
.road { fill: #fffaea; stroke: #ddc990; stroke-width: .6; }
.road--minor { fill: #f9efd2; stroke: #e5d4a3; stroke-width: .4; }
.footprint { fill: rgba(63, 167, 181, .3); }
.bld { fill: #eadaa9; stroke: #cdb27a; stroke-width: .5; }
.bld--stop { fill: #f1cc3d; stroke: #8a6a00; stroke-width: .9; }
.bld--pryor { fill: #e9b93a; stroke: #7a5600; stroke-width: 1; }
.street-label { font-family: var(--font-body); font-weight: 700; font-size: calc(12.5px * var(--inv)); letter-spacing: calc(1.6px * var(--inv)); fill: #776540; paint-order: stroke; stroke: #f1e2c1; stroke-width: calc(3.5px * var(--inv)); stroke-linejoin: round; text-anchor: middle; pointer-events: none; }
.landmark { font-family: var(--font-body); font-weight: 700; font-size: calc(12px * var(--inv)); fill: #0f3b5c; opacity: .8; text-anchor: middle; paint-order: stroke; stroke: #f1e2c1; stroke-width: calc(3.5px * var(--inv)); pointer-events: none; }
.z0 .street-label, .z0 .landmark { display: none; }
.zone { stroke-width: 1.2; stroke-linejoin: round; cursor: pointer; transition: fill-opacity .25s; }
.zone--startup { fill: rgba(46, 143, 148, .4); stroke: #125c66; }
.zone--drink { fill: rgba(11, 61, 69, .32); stroke: #0b3d45; }
.zone--music { fill: rgba(15, 59, 92, .66); stroke: #f1cc3d; }
.zone:hover, .zone.is-active { fill-opacity: 1; }
.zone.is-active { stroke-width: 2; stroke: var(--gold-deep); }
.zone-label { font-family: var(--font-body); font-weight: 800; font-size: 11px; fill: #092a45; text-anchor: middle; dominant-baseline: central; letter-spacing: .4px; pointer-events: none; paint-order: stroke; stroke: rgba(255, 255, 255, .88); stroke-width: 3px; }
.z0 .zone-label, .z1 .zone-label, .z2 .zone-label { display: none; }

.mk { cursor: pointer; }
.mk__bg { stroke: #fff; stroke-width: 2; filter: drop-shadow(0 1px 1.5px rgba(0, 0, 0, .28)); }
.mk__num { font-family: var(--font-body); font-weight: 800; font-size: 13px; text-anchor: middle; dominant-baseline: central; pointer-events: none; }
.mk__icon { color: #fff; pointer-events: none; }
.mk__label { font-family: var(--font-body); font-weight: 700; font-size: 11.5px; fill: #092a45; text-anchor: middle; paint-order: stroke; stroke: rgba(255, 255, 255, .92); stroke-width: 3px; stroke-linejoin: round; pointer-events: none; }
.z0 .mk__label, .z1 .mk__label, .z1b .mk__label { display: none; }
.mk--stop .mk__bg { fill: var(--gold); stroke: var(--navy); stroke-width: 2.2; }
.mk__icon { stroke-width: 2.6; }
.mk--stop .mk__num { fill: var(--navy); }
.mk--food .mk__bg { fill: var(--navy); }
.mk--food .mk__num { fill: var(--cream); }
.mk--sponsor .mk__bg { fill: var(--teal); }
.mk--sponsor .mk__num { fill: #fff; }
.mk--startup .mk__bg { fill: var(--turq); }
.mk--startup .mk__icon { color: var(--navy); }
.mk--drink .mk__bg { fill: var(--deep); }
.mk--drink .mk__icon { color: var(--aqua-light); }
.mk--music .mk__bg { fill: var(--ocean); }
.mk--music .mk__icon { color: var(--gold); }
.mk--essential .mk__bg { fill: #fff; stroke: var(--deep); stroke-width: 2.5; }
.mk--essential .mk__icon { color: var(--deep); }
.mk--essential.mk--water .mk__bg { stroke: var(--turq); }
.mk--essential.mk--water .mk__icon { color: var(--turq); }
.mk--parking .mk__bg { fill: var(--slate); }
.mk.is-active .mk__bg { stroke: var(--gold-deep); stroke-width: 3; }
.mk.is-active .mk__label { display: block; }
.mapsvg.has-focus .mk:not(.is-focus):not(.is-active), .mapsvg.has-focus .zone:not(.is-focus):not(.is-active) { opacity: .4; }
.mk, .zone { transition: opacity .35s; }
.mk.is-hidden, .zone.is-hidden, .zone-label.is-hidden { display: none; }
.mk:focus-visible .mk__bg { outline: none; stroke: var(--gold); stroke-width: 4; }
.pulse { fill: none; stroke: var(--gold-deep); stroke-width: 2; opacity: 0; pointer-events: none; }
.mk.is-active .pulse { animation: pulse 1.6s ease-out infinite; }
@keyframes pulse { 0% { r: 14; opacity: .9; } 100% { r: 30; opacity: 0; } }

/* overlays */
.chips { position: absolute; top: .75rem; left: .75rem; right: 4rem; display: flex; gap: .4rem; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .4em; background: rgba(255, 255, 255, .94); border: 1px solid rgba(11, 34, 51, .12); border-radius: 999px; padding: 0 .9em; height: 36px; font-weight: 700; font-size: var(--text-xs); letter-spacing: .02em; color: var(--ink); box-shadow: 0 2px 8px rgba(9, 42, 69, .12); transition: background .2s, color .2s, border-color .2s; }
.chip.is-on { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.chip__ic { width: 15px; height: 15px; flex: none; color: var(--teal); }
.chip.is-on .chip__ic { color: var(--gold); }
.zoom { position: absolute; right: .75rem; top: .75rem; display: grid; gap: 4px; }
.zoom button { width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, .95); border: 1px solid rgba(11, 34, 51, .12); box-shadow: 0 2px 8px rgba(9, 42, 69, .12); font-size: 1.3rem; font-weight: 700; display: grid; place-items: center; color: var(--ink); }
.zoom button:hover { background: var(--gold); }
.zoom--plan { position: static; display: flex; gap: 4px; margin-left: auto; }
.zoom--plan button { width: 38px; height: 38px; box-shadow: none; }
.compass { position: absolute; right: .95rem; bottom: 2.4rem; width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, .92); border: 1px solid rgba(11, 34, 51, .12); display: grid; place-items: center; font-weight: 800; font-size: .8rem; color: var(--ink); }
.compass::before { content: ''; position: absolute; top: 3px; left: 50%; width: 0; height: 0; border: 5px solid transparent; border-bottom: 8px solid var(--gold-deep); transform: translate(-50%, -6px); }
.compass span { transform: translateY(3px); }
.attrib { position: absolute; right: .75rem; bottom: .35rem; font-size: .66rem; color: var(--fg-muted); margin: 0; background: rgba(247, 230, 188, .75); padding: 0 .4em; border-radius: 4px; }
.attrib a { color: inherit; }

.detail { position: absolute; left: .75rem; bottom: .75rem; width: min(380px, calc(100% - 1.5rem)); max-height: min(60%, 420px); overflow: auto; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 1.1rem 1.25rem 1.2rem; animation: rise .35s var(--ease); border-top: 5px solid var(--turq); }
.detail[hidden] { display: none; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.detail__close { position: absolute; top: .55rem; right: .6rem; width: 40px; height: 40px; border-radius: 50%; font-size: 1.4rem; line-height: 1; color: var(--fg-muted); display: grid; place-items: center; }
.detail__close:hover { background: var(--cream); color: var(--fg); }
.detail__kind { font-size: var(--text-xs); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); padding-right: 2.5rem; }
.detail__name { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; font-size: var(--text-xl); line-height: 1.02; margin: .3rem 0 .3rem; padding-right: 2rem; }
.detail__where { font-size: var(--text-sm); color: var(--fg-muted); font-weight: 600; }
.detail__body { margin-top: .7rem; display: grid; gap: .55rem; font-size: var(--text-sm); line-height: 1.45; }
.detail__body ul { display: grid; gap: .3rem; margin-top: .2rem; }
.detail__body li { display: grid; grid-template-columns: auto 1fr; gap: .55rem; align-items: baseline; padding: .35rem .5rem; border-radius: 8px; background: var(--lagoon-bg); }
.detail__body li.is-hit { outline: 2px solid var(--gold); }
.detail__body li b { font-weight: 700; }
.detail__body li span { color: var(--fg-muted); }
.detail__body li i { font-style: normal; width: 8px; height: 8px; border-radius: 50%; background: var(--turq); transform: translateY(-1px); }
.detail__body .btn { justify-self: start; margin-top: .3rem; min-height: 42px; padding-block: .6em; }
.detail__bands { display: flex; flex-wrap: wrap; gap: .4rem; }
.detail__bands a { display: inline-flex; align-items: center; gap: .4em; border-radius: 999px; padding: .4em .85em .4em .5em; background: var(--navy); color: var(--cream); text-decoration: none; font-weight: 700; font-size: var(--text-xs); min-height: 34px; }
.detail__bands a::before { content: ''; width: 0; height: 0; border-style: solid; border-width: 5px 0 5px 8px; border-color: transparent transparent transparent var(--gold); }
@media (max-width: 900px) {
  .detail { left: 0; right: 0; bottom: 0; width: 100%; max-height: 55%; border-radius: var(--r-lg) var(--r-lg) 0 0; padding-top: 1.2rem; }
  .detail::before { content: ''; position: absolute; top: .45rem; left: 50%; width: 42px; height: 4px; border-radius: 2px; background: var(--line); transform: translateX(-50%); }
  .chips { right: .75rem; }
  .zoom { top: auto; bottom: 2.1rem; }
  .compass { display: none; }
  .attrib { left: .75rem; right: auto; }
}

/* ---------- stops ---------- */
.progress { margin-bottom: var(--s8); display: grid; gap: .9rem; }
.progress__bar { position: relative; height: 12px; border-radius: 999px; background: rgba(11, 34, 51, .1); }
.progress__fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--turq), var(--gold)); transition: width .5s var(--ease); }
.progress__mark { position: absolute; top: 100%; transform: translateX(-50%); font-size: var(--text-xs); font-weight: 700; color: var(--fg-muted); padding-top: .55rem; white-space: nowrap; }
.progress__mark i { position: absolute; top: -12px; left: 50%; width: 2px; height: 12px; background: var(--fg-muted); transform: translateX(-50%); }
.progress__mark--end { left: 100%; transform: translateX(-100%); }
.progress__mark--end i { left: auto; right: 0; transform: none; }
.progress__text { margin-top: .9rem; font-size: var(--text-sm); }
.stops { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--s4); }
.stop { display: grid; grid-template-columns: auto 1fr; gap: .9rem; padding: 1rem 1rem 1rem .95rem; background: #fff; border: 1px solid rgba(11, 34, 51, .08); border-radius: var(--r-lg); transition: border-color .25s, box-shadow .35s var(--ease); }
.stop.is-done { background: var(--lagoon-bg); border-color: var(--turq); }
.stop__n { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; font-family: var(--font-display); }
.stop h3 { font-size: var(--text-lg); font-weight: 700; line-height: 1.2; }
.stop__where { font-size: var(--text-sm); color: var(--fg-muted); margin-top: .15rem; }
.stop__beer { font-size: var(--text-sm); margin-top: .5rem; }
.stop__beer b { color: var(--teal); }
.stop__note { font-size: var(--text-xs); color: var(--fg-muted); margin-top: .35rem; }
.stop__actions { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }
.stop__actions button { border: 1px solid rgba(11, 34, 51, .14); border-radius: 999px; padding: 0 .9em; height: 38px; font-size: var(--text-xs); font-weight: 700; background: var(--cream); display: inline-flex; align-items: center; gap: .4em; }
.stop__actions button:hover { border-color: var(--turq); background: #fff; }
.stop__actions .check.is-on { background: var(--turq); border-color: var(--turq); color: var(--navy); }

/* ---------- pryor ---------- */
.floors { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: var(--s6); }
.floor-tab { border: 2px solid var(--line); border-radius: 999px; padding: 0 1.2em; height: 46px; font-weight: 700; font-size: var(--text-sm); color: var(--fg); transition: background .2s, color .2s; }
.floor-tab.is-on { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.floor[hidden] { display: none; }
.floor__grid { display: grid; grid-template-columns: 1fr minmax(280px, 360px); gap: var(--s6); align-items: start; }
@media (max-width: 960px) { .floor__grid { grid-template-columns: 1fr; } }
.plan { background: #fff; border-radius: var(--r-lg); overflow: hidden; color: var(--ink); }
.plan__tools { display: flex; align-items: center; gap: 1rem; padding: .8rem .9rem; border-bottom: 1px solid rgba(11, 34, 51, .1); flex-wrap: wrap; }
.plan__tools input { flex: 1 1 220px; height: 44px; border: 2px solid rgba(11, 34, 51, .1); border-radius: 999px; padding: 0 1em; font: inherit; color: var(--ink); background: var(--cream); }
.plan__tools input:focus { outline: none; border-color: var(--turq); box-shadow: 0 0 0 3px rgba(63, 167, 181, .2); }
.plan__hint { font-size: var(--text-xs); color: rgba(11, 34, 51, .6); }
.plan__canvas { aspect-ratio: 1785 / 930; max-height: 560px; min-height: 300px; background: #f1e2c1; touch-action: none; user-select: none; overflow: hidden; position: relative; }
.plansvg { width: 100%; height: 100%; cursor: grab; }
.plansvg.is-dragging { cursor: grabbing; }
.plan__legend { display: flex; align-items: center; gap: .5rem 1.2rem; flex-wrap: wrap; padding: .7rem .9rem; font-size: var(--text-xs); font-weight: 700; color: rgba(11, 34, 51, .7); border-top: 1px solid rgba(11, 34, 51, .1); }
.lg { display: inline-block; width: 22px; height: 12px; border-radius: 3px; margin-right: -.6rem; }
.lg--table { background: var(--gold); border: 1px solid #8a6a00; }
.lg--col { background: var(--ocean); width: 12px; }
.lg--door { background: #bfe6e3; border: 1px solid #125c66; }
/* floor plan svg */
.fp-floor { fill: #e3f0ec; stroke: #125c66; stroke-width: 3; }
.fp-col { fill: #0f3b5c; }
.fp-core { fill: #fff; stroke: #0f3b5c; stroke-width: 3; }
.fp-room { fill: #bfe6e3; stroke: #125c66; stroke-width: 2.5; }
.fp-door { fill: #bfe6e3; stroke: #125c66; stroke-width: 2.5; }
.fp-text { font-family: var(--font-body); font-weight: 700; fill: #092a45; text-anchor: middle; dominant-baseline: central; pointer-events: none; }
.fp-text--room { font-size: 30px; }
.fp-text--door { font-size: 26px; }
.fp-text--small { font-size: 22px; font-weight: 700; opacity: .75; letter-spacing: 1px; }
.fp-title { font-family: var(--font-display); font-weight: 800; letter-spacing: -1px; font-size: 60px; fill: #092a45; }
.tbl { cursor: pointer; transition: opacity .25s; }
.tbl rect:not(.tbl-hit) { fill: var(--gold); stroke: #8a6a00; stroke-width: 2.4; transition: fill .2s, stroke .2s; }
.tbl text { font-family: var(--font-body); font-weight: 800; font-size: 22px; fill: #092a45; text-anchor: middle; dominant-baseline: central; pointer-events: none; }
.tbl:hover rect:not(.tbl-hit) { fill: #f7d95c; }
.tbl.is-active rect:not(.tbl-hit) { fill: var(--navy); stroke: var(--turq); stroke-width: 3.5; }
.tbl.is-active text { fill: var(--gold); }
.plansvg.has-filter .tbl:not(.is-hit):not(.is-active) { opacity: .25; }
.tbl-name { font-family: var(--font-body); font-weight: 700; font-size: 15px; fill: #092a45; text-anchor: middle; pointer-events: none; paint-order: stroke; stroke: #fff; stroke-width: 4px; stroke-linejoin: round; }
/* names: only the selected / searched tables until you zoom right in */
.plansvg:not(.z3) .tbl:not(.is-active):not(.is-hit) .tbl-name { display: none; }
.tbl .tbl-name { dominant-baseline: auto; }
.tbl.is-active .tbl-name, .tbl.is-hit .tbl-name { font-size: 17px; font-weight: 800; fill: #092a45; }

.plan__side { display: grid; gap: var(--s4); align-content: start; }
@media (min-width: 961px) { .table-card { position: sticky; top: calc(var(--nav-actual) + 12px); z-index: 2; } }
.table-card { background: var(--ocean-2); border: 1px solid rgba(251, 243, 226, .14); border-radius: var(--r-lg); padding: 1.1rem 1.2rem 1.2rem; min-height: 150px; border-top: 5px solid var(--gold); }
.table-card__name { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; font-size: var(--text-xl); line-height: 1.02; margin: .35rem 0 .5rem; }
.table-card p { font-size: var(--text-sm); line-height: 1.5; }
.table-card .tbl-no { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; background: var(--gold); color: var(--navy); font-weight: 800; margin-right: .5rem; vertical-align: middle; font-size: 1rem; }
.table-card .table-card__unverified { color: var(--fg-muted); font-style: normal; }
.directory { columns: 2; column-gap: 1.25rem; font-size: var(--text-sm); }
.directory li { break-inside: avoid; }
.directory button { display: grid; grid-template-columns: 30px 1fr; gap: .5rem; align-items: center; width: 100%; text-align: left; padding: .35rem .3rem; border-radius: 6px; min-height: 36px; color: var(--fg); }
.directory button:hover { background: rgba(255, 255, 255, .08); }
.directory button.is-active { background: rgba(255, 198, 58, .2); }
.directory .no { color: var(--gold); font-weight: 800; text-align: right; }
@media (max-width: 480px) { .directory { columns: 1; } }
@media (max-width: 900px) { .plan__canvas { aspect-ratio: auto; height: 400px; } .plan__hint { display: none; } .plan__tools .zoom--plan { margin-left: 0; } }

.upstairs { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s4); }
.up-card { background: rgba(255, 255, 255, .06); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.2rem 1.25rem 1.3rem; display: grid; gap: .7rem; align-content: start; }
.up-card ul { display: grid; gap: .5rem; }
.up-card li { display: grid; grid-template-columns: auto 1fr auto; gap: .8rem; align-items: center; font-size: var(--text-sm); }
.up-card li .stop__n { width: 30px; height: 30px; font-size: .9rem; }
.up-card li i { font-style: normal; width: 8px; height: 8px; border-radius: 50%; background: var(--turq); transform: translateY(-1px); }
.up-card li b { display: block; font-size: var(--text-base); }
.up-card li span { color: var(--fg-muted); }
.up-card--prize { background: rgba(241, 204, 61, .14); border-color: rgba(241, 204, 61, .45); }

/* ---------- chamber alley ---------- */
.chamber__grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: var(--s8); align-items: start; }
@media (max-width: 900px) { .chamber__grid { grid-template-columns: 1fr; } }
.members { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--s3); }
.members li { background: #fff; border: 1px solid rgba(11, 34, 51, .08); border-left: 4px solid var(--turq); border-radius: var(--r-md); padding: .95rem 1rem; font-size: var(--text-sm); display: grid; gap: .25rem; }
.members b { font-size: var(--text-base); }
.members span { color: var(--fg-muted); }
.chamber__stops { display: grid; gap: var(--s3); }
.chamber__stops .btn { justify-self: start; }
.stopcard { display: grid; grid-template-columns: auto 1fr; gap: .9rem; background: #fff; border: 1px solid rgba(11, 34, 51, .08); border-radius: var(--r-lg); padding: 1rem; }
.stopcard h3 { font-size: var(--text-lg); font-weight: 700; }
.stopcard p { font-size: var(--text-sm); margin-top: .3rem; }
.stopcard__n { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; font-family: var(--font-display); }

/* ---------- lineup + schedule ---------- */
.lineup__grid { display: grid; grid-template-columns: 1.35fr .85fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 960px) { .lineup__grid { grid-template-columns: 1fr; } }
.bands { display: grid; gap: var(--s4); }
.band { display: grid; grid-template-columns: minmax(200px, 44%) 1fr; background: rgba(255, 255, 255, .05); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (max-width: 640px) { .band { grid-template-columns: 1fr; } }
.band__media { position: relative; background: #000; min-height: 200px; }
@media (max-width: 640px) { .band__media { aspect-ratio: 16 / 9; min-height: 0; } }
.band__media img, .band__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .band__media img, .band__media video { position: static; } }
.band__play { position: absolute; inset: 0; display: grid; place-items: center; width: 100%; height: 100%; color: var(--cream); }
.band__play::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9, 42, 69, 0) 40%, rgba(9, 42, 69, .55)); }
.band__play span { position: relative; width: 64px; height: 64px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0, 0, 0, .35); transition: transform .3s var(--ease), background .2s; }
.band__play span::after { content: ''; width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent var(--navy); margin-left: 5px; }
.band__play:hover span { transform: scale(1.08); background: #f7d95c; }
.band__play small { position: absolute; left: .8rem; bottom: .7rem; font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); }
.band__body { padding: 1.1rem 1.25rem 1.2rem; display: grid; gap: .45rem; align-content: start; }
.band__time { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.02em; color: var(--gold); line-height: 1; }
.band__time small { font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-muted); margin-left: .5rem; }
.band h3 { font-family: var(--font-display); font-weight: 800; font-size: var(--text-xl); letter-spacing: -0.02em; line-height: 1.02; }
.band__tag { font-size: var(--text-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--turq); }
.band p { font-size: var(--text-sm); color: var(--fg-muted); line-height: 1.5; }
.band__clip { font-size: var(--text-xs); color: var(--fg-muted); }
.timeline { display: grid; gap: 0; }
.timeline li { display: grid; grid-template-columns: 78px 1fr; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.timeline li:last-child { border-bottom: 0; }
.timeline .t { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; color: var(--gold); white-space: nowrap; line-height: 1.1; }
.timeline .t small { display: block; font-family: var(--font-body); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-muted); line-height: 1; margin-top: .15rem; }
.timeline b { font-size: var(--text-base); display: block; }
.timeline span { color: var(--fg-muted); font-size: var(--text-sm); }
.timeline li.is-band b { color: var(--turq); }

/* ---------- info ---------- */
.info { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s4); }
.info__card { flex: 1 1 280px; max-width: calc(25% - var(--s4) * 3 / 4); }
@media (max-width: 1100px) { .info__card { max-width: calc(33.333% - var(--s4) * 2 / 3); } }
@media (max-width: 760px) { .info__card { max-width: none; } }
.info__card { background: #fff; border: 1px solid rgba(11, 34, 51, .08); border-top: 5px solid var(--turq); border-radius: var(--r-lg); padding: 1.2rem 1.25rem 1.3rem; display: grid; gap: .6rem; align-content: start; font-size: var(--text-sm); line-height: 1.5; }
.info__card:nth-child(2n) { border-top-color: var(--gold); }
.info__card:nth-child(3n) { border-top-color: var(--teal); }
.info__card h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; font-size: var(--text-xl); line-height: 1.02; }
.info__card .link { justify-self: start; min-height: 40px; }

/* ---------- footer ---------- */
.footer { position: relative; background: var(--navy); color: var(--cream); --fg-muted: rgba(251, 243, 226, .7); padding-block: var(--s12); font-size: var(--text-sm); }
.footer::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: rgba(251, 243, 226, .14); }
.footer__inner { display: grid; gap: var(--s6); }
.footer__brand { display: grid; grid-template-columns: 120px 1fr auto; gap: 1.4rem 1.6rem; align-items: center; }
.footer__brand > img { width: 120px; height: auto; }
.footer__presenter { display: grid; gap: .35rem; text-decoration: none; color: inherit; justify-items: start; }
.footer__presenter small { font-size: var(--text-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--aqua-light); }
.footer__presenter img { width: 170px; height: auto; }
@media (max-width: 720px) { .footer__brand { grid-template-columns: 96px 1fr; } .footer__brand > img { width: 96px; } .footer__presenter { grid-column: 1 / -1; } }
.stops-head__meta--tight { margin-top: -1rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.footer__links a { color: rgba(251, 243, 226, .82); text-decoration: none; }
.footer__links a:hover { color: var(--gold); text-decoration: underline; }


/* ---------- real logos ---------- */
.logo { display: block; width: auto; height: 100%; max-width: 100%; object-fit: contain; }
.logo-tile { display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid rgba(11, 34, 51, .1); border-radius: 10px; padding: 6px 8px; height: 56px; width: 120px; flex: none; }
.logo-tile--dark { background: var(--navy); border-color: var(--navy); }
.logo-tile--beer { height: 44px; width: 84px; padding: 4px 6px; border-radius: 8px; }
.logo-tile--xs { height: 34px; width: 64px; padding: 3px 5px; border-radius: 6px; align-self: center; }
.logo-tile--sm { height: 44px; width: 96px; padding: 4px 6px; border-radius: 8px; align-self: center; }
.logo-tile--md { height: 60px; width: 100%; max-width: 168px; padding: 8px 10px; }
.logo-tile--text { font-family: var(--font-display); font-weight: 800; font-size: .7rem; letter-spacing: .02em; line-height: 1.05; text-align: center; color: var(--navy); text-transform: uppercase; }
.detail__logos { display: flex; gap: .5rem; align-items: center; margin-bottom: .1rem; }
.detail__body li .logo-tile--xs { transform: none; }
/* stops */
.stop__logo { height: 52px; margin: .1rem 0 .5rem; display: flex; }
.stop__logo .logo { max-width: 180px; }
.stop__beer { display: flex; gap: .6rem; align-items: center; }
.stop__beer .logo-tile--beer { align-self: flex-start; }
/* table card */
.table-card__logo { height: 48px; margin: .5rem 0 .2rem; display: flex; background: #fff; border-radius: 8px; padding: 6px 10px; width: fit-content; max-width: 100%; }
.table-card__logo .logo { max-width: 200px; }
.table-card__logo--dark { background: var(--navy); border: 1px solid rgba(251, 243, 226, .18); }
/* upstairs lists */
.up-card li .logo-tile--sm { align-self: center; }
.up-card li .logo-tile--text { justify-content: center; }
/* chamber members */
.members li.has-logo { grid-template-rows: auto 1fr; }
.members li div { display: grid; gap: .25rem; }
.members li .logo-tile--md { margin-bottom: .35rem; }
/* sponsors */
.sponsors { --accent: var(--teal); }
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--s3); }
.sponsor { display: grid; grid-template-rows: 88px auto; gap: .5rem; background: #fff; border: 1px solid rgba(11, 34, 51, .08); border-radius: var(--r-md); padding: .9rem .9rem .75rem; text-align: center; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.sponsor:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sponsor .logo { height: 100%; width: 100%; max-height: 88px; }
.sponsor__name { font-size: var(--text-xs); font-weight: 700; color: var(--fg-muted); line-height: 1.3; }
.sponsor__name em { display: block; font-style: normal; color: var(--teal); letter-spacing: .1em; text-transform: uppercase; font-size: .62rem; margin-top: .15rem; }
@media (max-width: 600px) { .sponsor-grid { grid-template-columns: repeat(2, 1fr); } .sponsor { grid-template-rows: 64px auto; padding: .7rem; } .sponsor .logo { max-height: 64px; }  .logo-tile--md { height: 52px; } }

/* ---------- presenting sponsor (Treasure Map · WLJ) ---------- */
.presenter { display: inline-grid; grid-template-columns: auto auto; align-items: center; gap: .9rem; background: #fff; border: 1px solid rgba(11, 34, 51, .1); border-radius: var(--r-md); padding: .7rem 1rem .7rem .95rem; text-decoration: none; color: var(--ink); }
.presenter small { display: block; font-size: var(--text-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); line-height: 1.2; }
.presenter .logo { height: 46px; max-width: 220px; }
.presenter--lg { grid-template-columns: 1fr; justify-items: start; gap: .6rem; padding: .95rem 1.1rem 1rem; width: 100%; }
.presenter--lg .logo { height: 78px; max-width: 100%; }
.stops-head__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s4); justify-content: space-between; margin-bottom: var(--s6); }
/* two equal sponsor tiles: same width, same height, label left / logo right, logo centred in a fixed box */
.stops-head__meta--pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s4); }
.presenter--pair { display: grid; grid-template-columns: minmax(0, 1fr) 250px; align-items: center; gap: 1rem; min-height: 104px; padding: .9rem 1.1rem; }
.presenter--pair small { white-space: nowrap; }
.presenter__logo { display: flex; align-items: center; justify-content: center; height: 68px; }
.presenter--pair .logo { height: auto; max-height: 68px; max-width: 250px; width: auto; }
@media (max-width: 760px) { .stops-head__meta--pair { grid-template-columns: 1fr; } .presenter--pair { grid-template-columns: minmax(0, 1fr) 170px; min-height: 84px; } .presenter__logo { height: 54px; } .presenter--pair .logo { max-height: 54px; max-width: 170px; } }
@media (max-width: 400px) { .presenter--pair { grid-template-columns: minmax(0, 1fr) 140px; gap: .7rem; } .presenter--pair small { white-space: nowrap; letter-spacing: .06em; font-size: .66rem; } .presenter--pair .logo { max-width: 140px; } }
.up-card--prize .presenter { margin-top: .4rem; }
@media (max-width: 600px) { .presenter .logo { height: 40px; } .brand__mark { height: 46px; } }

/* ---------- rideshare links ---------- */
.rides { display: grid; gap: .45rem; margin-top: .5rem; }
.rides__label { font-size: var(--text-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-muted); }
.rides__row { display: flex; flex-wrap: wrap; gap: .5rem; }
.ride { display: inline-flex; align-items: center; gap: .5em; min-height: 42px; padding: 0 1.1em 0 .9em; border-radius: 999px; text-decoration: none; font-weight: 800; font-size: var(--text-sm); letter-spacing: -.01em; border: 2px solid transparent; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.ride { background: var(--navy); color: var(--cream); }
.ride::after { content: '↗'; font-weight: 700; color: var(--aqua-light); font-size: .95em; }
.ride:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); background: var(--ocean); }
.tour__card .rides { margin-top: .9rem; }
.detail__body .rides { margin-top: .2rem; }

/* logo links */
.logo-link { display: inline-flex; text-decoration: none; color: inherit; border-radius: 10px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.logo-link:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.logo-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.stop__logo .logo-link { height: 100%; }
.members li .logo-link { width: 100%; max-width: 168px; }
.members li .logo-link .logo-tile--md { width: 100%; max-width: none; }

/* sponsor tiles are links: the anchor carries the logo/name grid so the whole card is clickable */
.sponsor:has(> .sponsor__link) { display: block; }
.sponsor__link { display: grid; grid-template-rows: 88px auto; gap: .5rem; height: 100%; text-decoration: none; color: inherit; }
.sponsor__link:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: var(--r-md); }
@media (max-width: 600px) { .sponsor__link { grid-template-rows: 64px auto; } }
.hero__logo-link, .footer__cup { display: inline-block; line-height: 0; }
.table-card__logo .logo-link { height: 100%; }
