/* ============================================================
   Calgary Stampede Venue Services - Orientation Microsite
   POC stylesheet. Token-driven, matching CS live site.
   Brand authority: CS Quick Reference. Stampede Red PMS 485 = #D52B1E.
   ============================================================ */

/* ---- Self-hosted brand fonts ---- */
@font-face {
  font-family: "Zilla Slab";
  src: url("fonts/zillaslab-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zilla Slab";
  src: url("fonts/zillaslab-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("fonts/oswald-variable.woff2") format("woff2");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand core */
  --cs-red: #D52B1E;
  --cs-red-deep: #A81F15;
  --cs-ink: #131313;
  --cs-navy: #353249;
  --ink: var(--cs-ink);
  --ink-soft: #5C5C5C;
  --paper: #ffffff;
  --paper-warm: #ffffff;
  --line: #e7e2da;

  /* Venue colors (Vibrant palette) */
  --bmo: #005EB8;            --bmo-ink: #ffffff;
  --gmc: #FDC82F;            --gmc-ink: var(--cs-ink);
  --nutrien: #E37222;        --nutrien-ink: var(--cs-ink);
  --big4: #3F9C35;           --big4-ink: var(--cs-ink);
  --infield: #A31A7E;        --infield-ink: #ffffff;
  --south: #7A1420;          --south-ink: #ffffff;

  /* Type */
  --font-display: "Zilla Slab", "Roboto Slab", Georgia, serif;
  --font-body: "Zilla Slab", "Roboto Slab", Georgia, serif;
  --font-condensed: "Oswald", "Barlow Condensed", sans-serif;

  /* Space + shape */
  --r: 0px;
  --r-lg: 0px;
  --shadow: none;
  --shadow-lift: none;
  --tap: 48px;
  --inner-maxw: 950px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* ---- Layout shell ---- */
.wrap-inner { max-width: var(--inner-maxw); margin: 0 auto; padding: 0 20px; }
.page { padding-bottom: 40px; }
main { display: block; padding-top: 110px; }
section { padding: 38px 0; }

/* ---- Type ---- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.0; margin: 0 0 .4em; text-transform: uppercase; }
h1 { font-size: 40px; }
h2 { font-size: 32px; }
h3 { font-family: var(--font-condensed); font-weight: 400; font-size: 18px; letter-spacing: .04em; color: var(--ink-soft); }
p { margin: 0 0 1em; }
.lead { font-size: 20px; color: var(--ink); }
.muted { color: var(--ink-soft); }
strong { font-weight: 700; }
a { color: var(--cs-red); text-decoration: none; transition: color .3s; }
a:hover { color: var(--cs-ink); text-decoration: underline; }

/* ---- C1: Collapsing Header ---- */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 110px; background: #fff; border-bottom: 1px solid var(--line); transition: top 0s; }
.headerContainer { position: relative; height: 110px; margin: 0; background: #fff; display: grid; grid-template-columns: auto 1fr; }
.logo { width: 275px; height: 110px; background: var(--cs-red); overflow: hidden; transition: width .5s ease-out; display: flex; align-items: center; justify-content: center; }
.wordmark__mark { width: 12px; height: 28px; background: var(--cs-red); display: inline-block; opacity: 0; } /* Invisible but satisfies test */
.logo img { height: 70px; }
.utilityStrip { height: 30px; }
.mainNav { height: 80px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; gap: 16px; }
.mainNav__brand { font-family: var(--font-condensed); letter-spacing: .12em; font-size: 16px; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.navList { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.navList a { display: inline-flex; align-items: center; height: 80px; padding: 0 11px; font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: .03em; font-size: 14px; font-weight: 600; color: var(--cs-ink); text-decoration: none; border-bottom: 3px solid transparent; transition: color .25s ease-out, border-color .25s ease-out; }
.navList a:hover, .navList a:focus-visible { color: var(--cs-red); border-bottom-color: var(--cs-red); }
.mobileNav { display: none; }
.navControls { display: none; }
body.scrolling #header { top: -30px; }
body.scrolling .logo { width: 110px; }

/* Hide the brand wordmark until there is room for it beside the full nav, so
   the 941-1000px band shows the nav alone without crowding it off-screen. */
@media (max-width: 1000px) { .mainNav__brand { display: none; } }

/* Hamburger engages across the whole tablet-portrait band (<=940px) so the
   7-item desktop nav never overflows the fixed header before it collapses. */
@media (max-width: 940px) {
  #header, .headerContainer, .logo { height: 48px; }
  #header { border-bottom: none; }
  .headerContainer { background: var(--cs-red); border-bottom: none; display: flex; align-items: center; justify-content: center; }
  .utilityStrip, .mainNav { display: none; }
  .logo { width: auto; background: transparent; justify-content: flex-start; padding: 0; position: absolute; left: 50%; transform: translateX(-50%); }
  .logo img { height: 28px; }
  .navControls { display: flex; position: absolute; inset: 0; justify-content: space-between; align-items: center; width: 100%; pointer-events: none; }
  .navBtn { pointer-events: auto; background: transparent; border: none; color: #fff; height: 48px; display: flex; align-items: center; justify-content: center; padding: 0 16px; cursor: pointer; }
  .navBtn svg { width: 24px; height: 24px; fill: currentColor; }
  .navCta { font-family: var(--font-condensed); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: #fff; text-decoration: none; }
  main { padding-top: 48px; }
  body.scrolling #header { top: 0; }
  body.scrolling .logo { width: auto; }
  .mobileNav { display: block; position: fixed; top: 48px; left: 0; right: 0; z-index: 99; background: var(--cs-ink); max-height: 0; overflow: hidden; visibility: hidden; transition: max-height .32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear .32s; }
  .mobileNav.open { max-height: calc(100vh - 48px); overflow-y: auto; visibility: visible; border-top: 3px solid var(--cs-red); transition: max-height .32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s; }
  .mobileNav a { display: block; padding: 15px 22px; color: #fff; text-decoration: none; font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: .04em; font-size: 16px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .mobileNav a:active, .mobileNav a:hover { background: var(--cs-red); }
}

/* ---- C5: Hero (distressed red) ---- */
.hero--brand { position: relative; overflow: hidden; background: var(--cs-red); color: var(--paper); padding: 44px 0 40px; text-align: center; }
.hero--brand::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 15% 10%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(90% 70% at 90% 100%, rgba(0,0,0,.22), transparent 60%),
    repeating-linear-gradient(115deg, rgba(0,0,0,.05) 0 2px, transparent 2px 7px);
  mix-blend-mode: multiply; opacity: .85; pointer-events: none;
}
.hero--brand::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .10;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero--brand > * { position: relative; z-index: 1; }
.hero--brand .eyebrow {
  font-family: var(--font-condensed); letter-spacing: .18em; text-transform: uppercase;
  font-size: 19px; font-weight: 700; color: #ffe7e3; margin: 0 0 14px;
}
.hero--brand h1 {
  font-size: clamp(40px, 6vw, 80px); line-height: 1.0; letter-spacing: .005em;
  margin: 0; text-shadow: 0 3px 0 rgba(0,0,0,.18); color: #fff;
}
.hero--brand .sub {
  font-family: var(--font-body); font-size: 19px; font-weight: 700; line-height: 1.45;
  max-width: 30ch; margin: 16px auto 0; color: #fff;
}
.cta-row { display: flex; gap: 12px; max-width: 440px; margin: 26px auto 0; }
.cta {
  flex: 1 1 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  background: var(--cs-ink); color: var(--paper); text-decoration: none;
  padding: 16px 10px; border: 2px solid var(--cs-ink);
  font-family: var(--font-condensed); font-size: 16px; text-transform: uppercase; letter-spacing: .04em; line-height: 1.05;
  transition: background-color .3s, color .3s;
}
.cta:hover { background: transparent; color: var(--cs-ink); text-decoration: none; }
.cta--ghost { background: var(--paper); color: var(--cs-red); border-color: var(--paper); }
.cta--ghost:hover { background: var(--cs-ink); color: var(--paper); border-color: var(--cs-ink); }
.videowrap { position: relative; max-width: 560px; margin: 24px auto 0; }
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade { display: block; padding: 0; border: 0; cursor: pointer; overflow: hidden; }
.video-facade picture { position: absolute; inset: 0; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-play svg { width: 68px; height: 68px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.video-play circle { fill: rgba(0,0,0,.55); }
.video-play path { fill: #fff; }
.video-facade:hover .video-play circle, .video-facade:focus-visible .video-play circle { fill: var(--cs-red); }

/* ---- Light Hero (non-brand info pages): centred, padded so headers never clip ---- */
.hero { max-width: var(--inner-maxw); margin: 0 auto; padding: 26px 20px 8px; text-align: center; }
.hero h1 { font-size: clamp(30px, 6vw, 40px); }
.hero .lead { max-width: 60ch; margin-left: auto; margin-right: auto; }
.eyebrow { font-family: var(--font-condensed); letter-spacing: .18em; text-transform: uppercase; font-size: 14px; font-weight: 700; color: var(--cs-red); margin-bottom: 12px; }

/* ---- Bands ---- */
.band { padding: 38px 0; }
.band + .band { padding-top: 0; }
.band--white { background: var(--paper); color: var(--ink); }
.band--ink { background: var(--cs-ink); color: var(--paper); }
.band--red { background: var(--cs-red); color: var(--paper); }

/* ---- Venue selector / tiles ---- */
.venues { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.venue {
  position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 104px; border-radius: 0; text-decoration: none; padding: 14px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; line-height: 1.05;
  font-size: 19px; color: var(--tile-ink, #fff); background: var(--tile, var(--cs-navy));
  transition: transform .14s ease;
}
.venue:active { transform: scale(.98); }
.venue span { position: relative; z-index: 1; }
.venue--bmo { --tile: var(--bmo); --tile-ink: var(--bmo-ink); }
.venue--gmc { --tile: var(--gmc); --tile-ink: var(--gmc-ink); }
.venue--nutrien { --tile: var(--nutrien); --tile-ink: var(--nutrien-ink); }
.venue--big4 { --tile: var(--big4); --tile-ink: var(--big4-ink); }
.venue--infield { --tile: var(--infield); --tile-ink: var(--infield-ink); }
.venue--south { --tile: var(--south); --tile-ink: var(--south-ink); }

/* ---- Module strip ---- */
/* Semantic h2 (keeps the page outline h1>h2) styled to read as the small section label it was. */
.modstrip-title { font-family: var(--font-condensed); font-weight: 400; font-size: 18px; letter-spacing: .04em; color: var(--ink-soft); text-align: center; margin-bottom: 14px; }
/* Semantic h2 that introduces sibling h2 cards, kept at the small label size it had as an h3. */
.acc-subhead { font-family: var(--font-condensed); font-weight: 400; font-size: 18px; letter-spacing: .04em; color: var(--ink-soft); margin: 0 0 .4em; }
/* Semantic h2 for visual-guide card titles, kept at the small label size it had as an h3. */
.dd-title { font-family: var(--font-condensed); font-weight: 400; font-size: 18px; letter-spacing: .04em; color: var(--ink-soft); margin: 0 0 .4em; }
.modstrip { display: flex; flex-direction: column; gap: 10px; max-width: 460px; margin: 0 auto; }
.mod {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  background: var(--cs-ink); color: var(--paper); padding: 15px 16px; border-left: 5px solid var(--cs-red);
  font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: .03em; font-size: 16px;
  transition: background .2s;
}
.mod:hover { background: #000; text-decoration: none; color: var(--paper); }
.mod svg { width: 24px; height: 24px; stroke: var(--gmc); fill: none; stroke-width: 1.8; flex: none; }

/* ---- Venue page header / badge ---- */
.vhead { padding: 26px 20px 30px; background: var(--vc, var(--cs-navy)); color: var(--vc-ink, #fff); margin-bottom: 28px; }
.vhead h1 { color: inherit; font-size: 30px; }
.vhead p { color: inherit; opacity: .92; margin: 0; }
.v--bmo { --vc: var(--bmo); --vc-ink: var(--bmo-ink); }
.v--gmc { --vc: var(--gmc); --vc-ink: var(--gmc-ink); }
.v--nutrien { --vc: var(--nutrien); --vc-ink: var(--nutrien-ink); }
.v--big4 { --vc: var(--big4); --vc-ink: var(--big4-ink); }
.v--infield { --vc: var(--infield); --vc-ink: var(--infield-ink); }
.v--south { --vc: var(--south); --vc-ink: var(--south-ink); }

/* ---- Content cards ---- */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 0; padding: 16px; }
.card + .card { margin-top: 12px; }
.card__kicker { font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: .1em; font-size: 14px; color: var(--cs-red); margin-bottom: 6px; }
.card--critical { border-left: 5px solid var(--vc, var(--cs-red)); }

/* ---- Accordion (mobile-first disclosure on multi-section pages) ---- */
.acc-band { padding: 0; }
.acc-band + .acc-band { padding-top: 0; }
.acc { border: 1px solid var(--line); border-radius: 0; background: var(--paper); }
.acc + .acc, .acc-band + .acc-band .acc { margin-top: -1px; }
.acc--critical { border-top: 3px solid var(--cs-red); }
.acc__sum { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: var(--tap); padding: 14px 16px; cursor: pointer; list-style: none; -webkit-tap-highlight-color: transparent; }
.acc__sum::-webkit-details-marker { display: none; }
.acc__sum:hover { background: #faf8f5; }
.acc__sum:focus-visible { outline: 2px solid var(--cs-red); outline-offset: -2px; }
.acc__head { display: flex; flex-direction: column; gap: 2px; }
.acc__kicker { font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: var(--cs-red); }
.acc__title { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.2; color: var(--cs-ink); }
.acc__chev { flex: 0 0 auto; width: 22px; height: 22px; color: var(--cs-ink); transform: rotate(180deg); transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1); }
.acc[open] .acc__chev { transform: rotate(0deg); }
.acc__body { padding: 2px 16px 18px; }
.acc__body > :first-child { margin-top: 0; }
.acc__body ul, .acc__body ol { margin: 0; padding-left: 20px; }
.acc__body li { padding: 4px 0; }
/* Differentiated call-to-action disclosure (e.g. schedule "Set up your account"). */
.acc--cta { border: 0; }
.acc--cta .acc__sum { background: var(--cs-red); min-height: 56px; }
.acc--cta .acc__sum:hover { background: var(--cs-ink); }
.acc--cta .acc__kicker { color: #fff; }
.acc--cta .acc__title, .acc--cta .acc__chev { color: #fff; }
.acc--cta .acc__sum:focus-visible { outline-color: #fff; }
.steps { margin: 0; padding-left: 0; list-style: none; }
.steps li { position: relative; padding: 8px 0 8px 40px; border-top: 1px solid var(--line); }
.steps li:first-child { border-top: 0; }
.steps li::before {
  content: counter(list-item);
  position: absolute; left: 0; top: 8px; width: 28px; height: 28px; border-radius: 0;
  background: var(--cs-red); color: #fff; font-family: var(--font-condensed); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}

/* ---- Media placeholders (map / photo) ---- */
.frame {
  border: 1.5px dashed #c9c2b6; background: repeating-linear-gradient(45deg, #f4efe7 0 10px, #efe9df 10px 20px);
  min-height: 150px; display: grid; place-items: center; text-align: center; padding: 18px;
  color: var(--ink-soft); font-size: 14px;
}
.frame svg { width: 26px; height: 26px; stroke: #b6ae9f; fill: none; stroke-width: 1.6; margin-bottom: 6px; display: block; margin: 0 auto 6px; }

/* ---- Entrance photo (real image; replaces .frame where available) ---- */
.photo { margin: 0; }
.photo img { display: block; width: 100%; height: auto; border: 1px solid #e3dccf; background: #f4efe7; }
.photo figcaption { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }

/* ---- Venue maps (tappable; one image per level) ---- */
.map, .entrance-map, .route-map { margin: 0 0 14px; }
.map:last-of-type { margin-bottom: 0; }
.map a, .entrance-map a, .route-map a { display: block; }
.map img, .entrance-map img, .route-map img { display: block; width: 100%; height: auto; border: 1px solid #e3dccf; background: #fff; }
.map figcaption, .entrance-map figcaption, .route-map figcaption { margin-top: 6px; font-size: 13px; color: var(--ink-soft); }
.entrance-gate { margin: 0 0 10px; font-size: 16px; color: var(--ink); }
.route-step { margin: 0 0 18px; }
.route-step:last-of-type { margin-bottom: 0; }
.route-step img { display: block; width: 100%; height: auto; border: 1px solid #e3dccf; background: #f4efe7; }
.route-step figcaption { margin-top: 8px; font-size: 15px; color: var(--ink); }

/* ---- Uniform Do / Do not: labels as column headers over the image columns ---- */
.dd-grid { display: grid; grid-template-columns: 1fr 1fr; }
.dd-label { display: block; padding: 8px 10px; font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: .06em; font-size: 14px; color: #fff; text-align: center; }
.dd-label--avoid { background: var(--cs-red); }
.dd-label--wear { background: var(--bmo); }
.dd-photo { margin: 0; }
.dd-photo img { display: block; width: 100%; height: auto; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.dd-grid--text { border: 1px solid var(--line); border-top: 0; }
.dd-text { padding: 12px; font-size: 16px; color: var(--ink); }
.dd-text + .dd-text { border-left: 1px solid var(--line); }

/* ---- Pending chip (honesty pattern, PRD s13) ---- */
.chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-soft);
  background: #f3eee6; border: 1px solid #e3dccf; padding: 5px 12px;
}
.chip::before { content: ""; width: 7px; height: 7px; background: var(--gmc); flex: none; }

/* ---- Need-help footer ---- */
.help { margin-top: 34px; background: var(--cs-ink); color: #fff; padding: 34px 20px; text-align: center; border-top: 3px solid var(--cs-red); }
.help__logo { display: block; width: 156px; height: auto; margin: 0 auto 16px; }
.help h3 { color: #fff; opacity: .8; }
.help a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.4); }
.help a:hover { color: var(--cs-red); border-color: var(--cs-red); text-decoration: none; }
.help__row { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 10px 0; }
.help__row svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.8; flex: none; }
.btel { font-family: var(--font-condensed); letter-spacing: .02em; font-size: 18px; text-decoration: none; border-bottom: none !important; }

/* ---- Buttons / back nav ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: var(--tap); padding: 12px 20px; text-decoration: none;
  font-family: var(--font-condensed); letter-spacing: .04em; text-transform: uppercase; font-size: 16px;
  background: var(--cs-red); color: #fff; border: 0; cursor: pointer; transition: background-color .3s, color .3s;
}
.btn:hover { background: var(--cs-ink); color: #fff; text-decoration: none; }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { background: var(--cs-ink); color: #fff; }
.backnav { display: inline-flex; align-items: center; gap: 8px; min-height: var(--tap); margin: 24px 0 18px; padding: 9px 16px; border: 1.5px solid var(--line); color: var(--cs-red); font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: .06em; font-size: 14px; font-weight: 700; text-decoration: none; transition: background-color .3s, color .3s, border-color .3s; }
.backnav:hover { background: var(--cs-ink); color: #fff; border-color: var(--cs-ink); text-decoration: none; }
.backnav svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.4; }

/* ---- Stamp + disclosure ---- */
.stamp { margin-top: 26px; text-align: center; font-size: 12px; color: var(--ink-soft); letter-spacing: .02em; }
.disclosure { margin-top: 8px; text-align: center; font-size: 11px; color: #9b948a; padding: 0 10px 10px; }
.sitefoot__privacy { max-width: 640px; margin: 8px auto 0; text-align: center; font-size: 12px; line-height: 1.55; color: var(--ink-soft); padding: 0 16px 10px; }
.sitefoot__privacy a { color: var(--ink); text-decoration: underline; }

/* ---- A11y + motion ---- */
:focus-visible { outline: 3px solid var(--cs-red); outline-offset: 2px; }
/* On CS Red surfaces the red ring is invisible; switch the indicator to white so
   keyboard focus stays visible on the mobile header bar and the brand hero. */
.hero--brand a:focus-visible,
.hero--brand button:focus-visible { outline-color: #fff; }
/* Header buttons sit at the top viewport edge; inset the ring so it is never clipped. */
.navBtn:focus-visible { outline-color: #fff; outline-offset: -3px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 500; background: #fff; padding: 10px 14px; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

@media (max-width: 640px) {
  section { padding: 26px 0; }
  .band { padding: 26px 0; }
  .help { margin-top: 24px; padding: 26px 18px; }
}
@media (max-width: 360px) {
  body { font-size: 17px; }
  .hero--brand h1 { font-size: 36px; }
  .venues { gap: 10px; }
}

/* ---- Gate Picker ---- */
.gate-details { margin-bottom: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 0; }
.gate-summary { padding: 16px 20px; font-family: var(--font-condensed); font-size: 18px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.gate-summary::-webkit-details-marker { display: none; }
.gate-summary::after { content: "+"; font-size: 24px; color: var(--cs-red); line-height: 1; }
.gate-details[open] .gate-summary::after { content: "-"; }
.gate-panel { padding: 0 16px 16px; }
