/* ==========================================================================
   Opera Entertainment Australia
   Design direction: letterpress concert poster. Midnight blue and plum ground,
   gold hairline rules, marigold reserved exclusively for ticket actions.
   ========================================================================== */

:root {
  --ink:        #0B0E27;
  --ink-deep:   #06081A;
  --ink-soft:   #141a3d;
  --plum:       #34123D;
  --plum-soft:  #4A1B55;
  --maroon:     #6B1028;
  --gold:       #DFAF5C;
  --gold-hi:    #F3D797;
  --gold-lo:    #A9803A;
  --marigold:   #EE7B36;
  --marigold-hi:#FF9455;
  --cream:      #F7F0E4;
  --cream-70:   rgba(247, 240, 228, 0.72);
  --cream-50:   rgba(247, 240, 228, 0.52);
  --hair:       rgba(223, 175, 92, 0.28);
  --hair-solid: rgba(223, 175, 92, 0.55);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1120px;
  --gut: 20px;
  --radius: 2px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient ground: a slow plum-to-midnight wash, no gradients on components. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 620px at 78% -8%, rgba(107, 16, 40, 0.42), transparent 62%),
    radial-gradient(900px 520px at 6% 12%, rgba(52, 18, 61, 0.6), transparent 66%),
    var(--ink);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration-color: var(--hair-solid); text-underline-offset: 3px; }
a:hover { color: var(--gold-hi); }

:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 999;
  background: var(--gold); color: var(--ink-deep);
  padding: 10px 18px; font-weight: 700; border-radius: 2px;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 760px; }

/* --------------------------------------------------------------- typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 12, "WONK" 0, "opsz" 40;
}
h1 { font-size: clamp(2.1rem, 8.5vw, 3.9rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.65rem, 5.4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 3.6vw, 1.45rem); }
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .705rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .95rem;
  display: block;
}
.lede { font-size: clamp(1.05rem, 2.6vw, 1.22rem); color: var(--cream-70); line-height: 1.6; }
.muted { color: var(--cream-50); }
.small { font-size: .87rem; }

/* --------------------------------------------------------------- gold rules */
.rule {
  border: 0;
  height: 1px;
  background: var(--hair);
  margin: 0;
}

/* Signature motif: a torana (doorway garland) rendered as a repeating gold
   hairline arch. Used to separate major sections instead of a plain divider. */
.torana {
  height: 26px;
  margin: 0;
  border: 0;
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 44px 26px;
  opacity: .75;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='26' viewBox='0 0 44 26'%3E%3Cpath d='M0 1h44' stroke='%23DFAF5C' stroke-opacity='.45' stroke-width='1' fill='none'/%3E%3Cpath d='M0 1a22 15 0 0 0 44 0' stroke='%23DFAF5C' stroke-opacity='.75' stroke-width='1' fill='none'/%3E%3Ccircle cx='22' cy='17' r='2.1' fill='%23DFAF5C' fill-opacity='.85'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 50px;
  padding: .8em 1.55em;
  font-family: var(--font-body);
  font-size: .935rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--hair-solid);
  border-radius: var(--radius);
  color: var(--gold-hi);
  background: transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { background: rgba(223, 175, 92, .12); color: var(--gold-hi); border-color: var(--gold); }
.btn:active { transform: translateY(1px); }

/* Marigold is reserved for one job on this site: buying a ticket. */
.btn--ticket {
  background: var(--marigold);
  border-color: var(--marigold);
  color: #23100A;
  box-shadow: 0 10px 26px rgba(238, 123, 54, .28);
}
.btn--ticket:hover { background: var(--marigold-hi); border-color: var(--marigold-hi); color: #23100A; }

.btn--solid { background: var(--gold); border-color: var(--gold); color: var(--ink-deep); }
.btn--solid:hover { background: var(--gold-hi); border-color: var(--gold-hi); color: var(--ink-deep); }
.btn--block { width: 100%; }
.btn--sm { min-height: 42px; padding: .55em 1.1em; font-size: .8rem; }

.btn[aria-disabled="true"] {
  opacity: .55;
  pointer-events: none;
}

/* ------------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(6, 8, 26, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}
.header-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 66px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--cream); }
.brand img { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: .01em;
  color: var(--cream);
}
.brand-sub {
  font-size: .565rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  background: transparent;
  border: 1px solid var(--hair-solid);
  color: var(--gold-hi);
  border-radius: 2px;
  padding: 9px 13px;
  font: 700 .74rem/1 var(--font-body);
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle svg { width: 15px; height: 15px; }

.site-nav { display: none; flex-basis: 100%; }
.site-nav.is-open {
  display: block;
  max-height: calc(100dvh - 90px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 6px 0 20px;
  border-top: 1px solid var(--hair);
}
.site-nav li + li { border-top: 1px solid rgba(223, 175, 92, .12); }
.site-nav a {
  display: block;
  padding: 13px 2px;
  color: var(--cream);
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .02em;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-hi); }
.site-nav a[aria-current="page"]::before { content: "— "; color: var(--gold); }
.nav-cta { margin-top: 16px; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; flex-basis: auto; max-height: none; overflow: visible; }
  .header-bar { flex-wrap: nowrap; }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    border: 0;
    padding: 0;
  }
  .site-nav li + li { border: 0; }
  .site-nav a { padding: 6px 0; font-size: .875rem; }
  .site-nav a[aria-current="page"]::before { content: none; }
  .site-nav a[aria-current="page"] { border-bottom: 1px solid var(--gold); }
  .nav-cta { margin: 0 0 0 6px; }
  .header-bar { min-height: 76px; }
}

/* ------------------------------------------------------------------ hero */
.poster {
  position: relative;
  padding: clamp(38px, 9vw, 76px) 0 clamp(34px, 7vw, 62px);
  text-align: center;
  overflow: hidden;
}
.poster-frame {
  position: relative;
  border: 1px solid var(--hair-solid);
  padding: clamp(26px, 6vw, 54px) clamp(16px, 4vw, 44px);
}
/* the second, inset hairline — letterpress double rule */
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(223, 175, 92, .18);
  pointer-events: none;
}
.poster-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .34;
}
.poster-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.15rem;
}
.poster-presents {
  font-size: .63rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--cream-50);
  margin-bottom: 1.4rem;
}
.poster-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 13vw, 6.2rem);
  line-height: .95;
  letter-spacing: -0.02em;
  margin: 0;
  font-variation-settings: "SOFT" 24, "WONK" 1, "opsz" 144;
  text-wrap: balance;
}
.poster-sub {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 4vw, 1.75rem);
  color: var(--gold-hi);
  font-style: italic;
  margin: .35em 0 0;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
.poster-meta {
  margin: 1.6rem 0 0;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
}
.poster-meta span { display: block; }
.poster-meta span + span { margin-top: .35em; color: var(--cream-70); letter-spacing: .05em; text-transform: none; }
.poster-actions {
  margin-top: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 620px) {
  .poster-actions { flex-direction: row; justify-content: center; }
}

/* --------------------------------------------------------------- countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 1.85rem 0 0;
  list-style: none;
  padding: 0;
}
.countdown li {
  min-width: 66px;
  padding: 11px 6px 9px;
  border: 1px solid var(--hair);
  background: rgba(6, 8, 26, .5);
}
.countdown b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
}
.countdown small {
  display: block;
  margin-top: 6px;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-50);
}

/* ---------------------------------------------------------------- sections */
.section { padding: clamp(48px, 9vw, 88px) 0; }
.section--tight { padding: clamp(34px, 6vw, 56px) 0; }
.section-head { max-width: 660px; margin-bottom: clamp(26px, 5vw, 44px); }
.section-head.is-centred { margin-inline: auto; text-align: center; }
.section--panel {
  background: rgba(6, 8, 26, .45);
  border-block: 1px solid var(--hair);
}

.grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* -------------------------------------------------------------- event card */
.ev-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hair);
  background: rgba(6, 8, 26, .55);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.ev-card:hover { border-color: var(--hair-solid); transform: translateY(-3px); box-shadow: var(--shadow); }
.ev-card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--plum); }
.ev-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ev-card:hover .ev-card__media img { transform: scale(1.04); }
.ev-card__flag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--marigold);
  color: #23100A;
}
.ev-card__flag--past { background: rgba(6, 8, 26, .82); color: var(--gold); border: 1px solid var(--hair-solid); }
.ev-card__body { padding: 18px 18px 22px; display: flex; flex-direction: column; flex: 1; }
.ev-card__date {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .6rem;
}
.ev-card__title { font-family: var(--font-display); font-size: 1.32rem; margin: 0 0 .4rem; line-height: 1.12; }
.ev-card__venue { font-size: .87rem; color: var(--cream-50); margin: 0 0 1rem; }
.ev-card__cta {
  margin-top: auto;
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-hi);
}
.ev-card__cta::after { content: " →"; }

/* ------------------------------------------------------------- info blocks */
.slab {
  border: 1px solid var(--hair);
  background: rgba(6, 8, 26, .5);
  padding: clamp(20px, 4vw, 30px);
}
.slab h3 { color: var(--gold-hi); margin-bottom: .5rem; }

.deflist { margin: 0; }
.deflist dt {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-top: 1.5rem;
}
.deflist dt:first-child { margin-top: 0; }
.deflist dd { margin: .45rem 0 0; color: var(--cream-70); }

.tiers { width: 100%; border-collapse: collapse; font-size: .95rem; }
.tiers th, .tiers td { text-align: left; padding: 13px 10px; border-bottom: 1px solid var(--hair); }
.tiers th {
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.tiers td:first-child { font-family: var(--font-display); font-size: 1.06rem; color: var(--cream); }
.tiers td:last-child { color: var(--cream-50); }

.lineup { list-style: none; margin: 0; padding: 0; }
.lineup li { padding: 14px 0; border-bottom: 1px solid var(--hair); }
.lineup li:last-child { border-bottom: 0; }
.lineup b { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; display: block; }
.lineup span { font-size: .87rem; color: var(--cream-50); }

.map-embed { border: 1px solid var(--hair); line-height: 0; }
.map-embed iframe { width: 100%; height: 330px; border: 0; filter: saturate(.8) contrast(1.05); }

.notice {
  border: 1px solid var(--hair-solid);
  border-left: 3px solid var(--gold);
  background: rgba(52, 18, 61, .45);
  padding: 18px 20px;
}

/* ------------------------------------------------------------------- team */
.person { text-align: left; }
.person img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--hair);
  margin-bottom: 16px;
}
.person h3 { margin-bottom: .15rem; }
.person .role {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .8rem;
}

/* ---------------------------------------------------------------- gallery */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.filters button {
  font: 700 .72rem/1 var(--font-body);
  letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 15px; min-height: 40px;
  background: transparent; color: var(--cream-70);
  border: 1px solid var(--hair); border-radius: 2px; cursor: pointer;
  transition: all .16s ease;
}
.filters button:hover { color: var(--gold-hi); border-color: var(--hair-solid); }
.filters button[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: var(--ink-deep); }

.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 700px) { .tiles { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1000px) { .tiles { grid-template-columns: repeat(4, 1fr); } }
.tile {
  position: relative; padding: 0; border: 1px solid var(--hair);
  background: var(--plum); cursor: zoom-in; overflow: hidden; aspect-ratio: 1 / 1;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, opacity .3s ease; }
.tile:hover img { transform: scale(1.06); opacity: .88; }
.tile[hidden] { display: none; }

.empty-state {
  border: 1px dashed var(--hair-solid);
  padding: clamp(28px, 6vw, 48px);
  text-align: center;
  color: var(--cream-50);
}

/* --------------------------------------------------------------- lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(3, 4, 14, .95);
  display: flex; align-items: center; justify-content: center;
  padding: 44px 14px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 84vh; object-fit: contain; border: 1px solid var(--hair); }
.lightbox__cap {
  position: absolute; bottom: 14px; left: 0; right: 0; text-align: center;
  font-size: .82rem; color: var(--cream-50); padding-inline: 20px;
}
.lightbox button {
  position: absolute; background: rgba(6, 8, 26, .8);
  border: 1px solid var(--hair-solid); color: var(--gold-hi);
  width: 46px; height: 46px; font-size: 1.3rem; cursor: pointer; border-radius: 2px;
}
.lb-close { top: 14px; right: 14px; }
.lb-prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 10px; top: 50%; transform: translateY(-50%); }

/* ------------------------------------------------------------------ video */
.video-frame {
  position: relative; aspect-ratio: 16 / 9;
  border: 1px solid var(--hair); background: var(--ink-deep);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------------------------------------------------------------- sponsors */
.logo-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: center; }
@media (min-width: 700px) { .logo-wall { grid-template-columns: repeat(4, 1fr); } }
.logo-wall > * {
  border: 1px solid var(--hair);
  background: rgba(247, 240, 228, .04);
  aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  padding: 14px; text-align: center;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-50);
}
.logo-wall img { max-height: 100%; width: auto; object-fit: contain; }

.tier { border-top: 1px solid var(--hair); padding-top: 26px; margin-top: 34px; }
.tier:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.tier h3 { color: var(--gold-hi); margin-bottom: .3rem; }

/* ------------------------------------------------------------------- forms */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
}
.field .hint { font-size: .8rem; color: var(--cream-50); letter-spacing: 0; text-transform: none; font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--cream);
  background: rgba(6, 8, 26, .7);
  border: 1px solid var(--hair-solid);
  border-radius: 2px;
  padding: 13px 14px;
  min-height: 50px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(247, 240, 228, .32); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23DFAF5C' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.checkline { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; color: var(--cream-70); }
.checkline input { width: 20px; height: 20px; min-height: 0; margin-top: 2px; flex: 0 0 auto; accent-color: var(--gold); }
.hp { position: absolute; left: -9999px; opacity: 0; }

.newsletter {
  border: 1px solid var(--hair-solid);
  padding: clamp(22px, 5vw, 36px);
  background: rgba(52, 18, 61, .4);
}
.newsletter form { display: grid; gap: 12px; }
@media (min-width: 640px) {
  .newsletter .row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end; }
}

/* ------------------------------------------------------------------ footer */
.site-footer {
  border-top: 1px solid var(--hair);
  background: rgba(3, 4, 14, .7);
  padding: clamp(40px, 7vw, 64px) 0 28px;
  margin-top: 20px;
}
.footer-grid { display: grid; gap: 34px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; } }
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .6rem; }
.footer-grid a { color: var(--cream-70); text-decoration: none; font-size: .92rem; }
.footer-grid a:hover { color: var(--gold-hi); text-decoration: underline; }

.socials { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.socials a {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--hair); border-radius: 2px; color: var(--gold);
}
.socials a:hover { border-color: var(--gold); background: rgba(223, 175, 92, .1); color: var(--gold-hi); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }

.colophon {
  margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--hair);
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  font-size: .8rem; color: var(--cream-50);
}
.colophon a { color: var(--cream-50); text-decoration: none; }
.colophon a:hover { color: var(--gold); }

/* WhatsApp floating action */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1FA855; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
  text-decoration: none;
}
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

/* ------------------------------------------------------------------ misc */
.breadcrumb { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-50); padding-top: 20px; }
.breadcrumb a { color: var(--cream-50); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; color: var(--gold-hi); }
.prose ul, .prose ol { padding-left: 1.2em; color: var(--cream-70); }
.prose li { margin-bottom: .5em; }
.prose { color: var(--cream-70); }
.prose strong { color: var(--cream); }

.faq-item { border-bottom: 1px solid var(--hair); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 18px 34px 18px 0; position: relative;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--cream);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 15px;
  font-size: 1.5rem; color: var(--gold); line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 0 20px; color: var(--cream-70); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
@media (min-width: 700px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--ink); padding: 24px 16px; text-align: center; }
.stat b {
  display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 600; color: var(--gold-hi); line-height: 1;
}
.stat span { display: block; margin-top: 8px; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream-50); }

/* ------------------------------------------------------- horizontal rail
   Upcoming events on the home page. Cards scroll sideways with snap points;
   on a phone the next card is deliberately half-visible so it is obvious
   there is more to the right. */
.section-head--row {
  display: flex;
  flex-wrap: wrap;                 /* head and arrows stack rather than squash */
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 20px;
  max-width: none;
}
.section-head--row > div:first-child { flex: 1 1 260px; min-width: 0; max-width: 640px; }
.section-head--row p:last-child { margin-bottom: 0; }

.rail-nav { display: none; gap: 8px; flex: 0 0 auto; }
@media (min-width: 700px) { .rail-nav { display: flex; } }
[data-static] .rail-nav { display: none; }

.rail-btn {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--hair-solid);
  border-radius: 2px;
  color: var(--gold-hi);
  font-size: 1.15rem; line-height: 1;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, opacity .16s ease;
}
.rail-btn:hover:not(:disabled) { background: rgba(223, 175, 92, .12); border-color: var(--gold); }
.rail-btn:disabled { opacity: .28; cursor: default; }

.rail {
  display: grid;
  grid-auto-flow: column;
  /* a real width, not a bare percentage: never wider than the phone, never so
     narrow the card contents crush together */
  grid-auto-columns: clamp(232px, 76%, 320px);
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gut);
  padding: 4px 0 22px var(--gut);
  margin-inline: calc(var(--gut) * -1);
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * {
  scroll-snap-align: start;
  /* grid items default to min-width:auto, which lets a long word push a card
     wider than its track and break the row on narrow screens */
  min-width: 0;
}
/* trailing breathing space, without adding a phantom card-width column */
.rail > *:last-child { margin-inline-end: var(--gut); }

/* Phones and narrow windows: stack the cards. A sideways scroller is easy to
   miss and hides two of the three events, so below the width where the arrow
   buttons appear the rail becomes an ordinary single column. */
@media (max-width: 699px) {
  .rail {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    overflow: visible;
    scroll-snap-type: none;
    margin-inline: 0;
    padding: 0 0 4px;
    gap: 18px;
  }
  .rail > *:last-child { margin-inline-end: 0; }
  /* full-width cards would otherwise be very tall three times over */
  .rail .ev-card__media { aspect-ratio: 4 / 3; }
}

@media (min-width: 700px) { .rail { grid-auto-columns: clamp(260px, 50%, 360px); gap: 16px; } }
@media (min-width: 900px) { .rail { grid-auto-columns: 33%; } }
@media (min-width: 1160px) {
  .rail {
    grid-auto-columns: calc((100% - 32px) / 3);
    margin-inline: 0;
    padding-left: 0;
    scroll-padding-inline: 0;
  }
  .rail > *:last-child { margin-inline-end: 0; }
}

/* keep the card readable at phone widths */
@media (max-width: 559px) {
  .ev-card__body { padding: 15px 15px 18px; }
  .ev-card__title { font-size: 1.18rem; }
  .ev-card__venue { font-size: .82rem; }
}

/* entry state pill on a card */
.ev-card__flag--free { background: var(--gold); color: var(--ink-deep); }
.ev-card__flag--soon { background: rgba(6, 8, 26, .82); color: var(--cream); border: 1px solid var(--hair-solid); }

/* ==================================================== full-bleed banner
   Auto-rotating carousel of upcoming events on the home page. One event at a
   time, edge to edge, so the artwork carries the page. Crossfade rather than
   slide, because these are posters and posters should not slither. */
.banner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 82vh;
  overflow: hidden;
  background: var(--ink-deep);
  border-block: 1px solid var(--hair);
  touch-action: pan-y;
}
@media (min-width: 640px)  { .banner { aspect-ratio: 16 / 9; } }
@media (min-width: 1100px) { .banner { aspect-ratio: 2.35 / 1; min-height: 460px; } }

.banner__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility 0s linear .7s;
}
.banner__slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity .7s ease, visibility 0s;
  z-index: 2;
}
.banner__slide img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s linear;
}
.banner__slide.is-active img { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .banner__slide img, .banner__slide.is-active img { transition: none; transform: none; }
}

/* readability scrim — heavier at the bottom where the type sits */
.banner__slide::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(6, 8, 26, .94) 0%, rgba(6, 8, 26, .72) 34%, rgba(6, 8, 26, .18) 66%, rgba(6, 8, 26, .35) 100%);
}

.banner__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 0 0 clamp(74px, 11vw, 92px);
}
.banner__body > div { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.banner__flag {
  display: inline-block;
  font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: 6px 11px; margin-bottom: 14px;
  background: var(--marigold); color: #23100A;
}
.banner__flag--free { background: var(--gold); color: var(--ink-deep); }
.banner__flag--soon { background: rgba(6, 8, 26, .75); color: var(--cream); border: 1px solid var(--hair-solid); }

.banner__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 7.5vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.02em;
  margin: 0;
  font-variation-settings: "SOFT" 24, "WONK" 1, "opsz" 144;
  text-wrap: balance;
}
.banner__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(.98rem, 2.8vw, 1.4rem);
  color: var(--gold-hi);
  margin: .25em 0 0;
}
.banner__meta {
  margin: .9rem 0 0;
  font-size: clamp(.8rem, 2.2vw, .95rem);
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--cream);
}
.banner__meta span { display: block; margin-top: .3em; letter-spacing: .03em; text-transform: none; color: var(--cream-70); }
.banner__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.4rem; }

/* ---- controls */
.banner__controls {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 5;
  display: flex; align-items: center; gap: 10px;
  width: 100%; max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 var(--gut) clamp(18px, 3vw, 26px);
}
.banner__arrows { display: flex; gap: 8px; }
.banner__btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(6, 8, 26, .6);
  border: 1px solid var(--hair-solid);
  border-radius: 2px;
  color: var(--gold-hi);
  font-size: 1.05rem; line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .16s ease, border-color .16s ease;
}
.banner__btn:hover { background: rgba(223, 175, 92, .18); border-color: var(--gold); }
.banner__btn svg { width: 14px; height: 14px; fill: currentColor; }

.banner__dots { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; flex: 1; }
.banner__dots button {
  width: 100%; max-width: 54px; min-width: 26px; height: 30px;
  background: transparent; border: 0; padding: 13px 0; cursor: pointer;
}
.banner__dots button::before {
  content: ""; display: block; height: 3px;
  background: rgba(247, 240, 228, .3);
  transition: background .2s ease;
}
.banner__dots button:hover::before { background: rgba(247, 240, 228, .55); }
.banner__dots button[aria-current="true"]::before { background: var(--gold); }

/* progress line for the active slide */
.banner__dots button[aria-current="true"] .bar {
  display: block; height: 3px; margin-top: -3px;
  background: var(--gold-hi);
  transform-origin: left;
  transform: scaleX(0);
}
.banner__dots .bar { display: none; }
.banner.is-playing .banner__dots button[aria-current="true"] .bar {
  display: block;
  animation: banner-progress var(--banner-interval, 6s) linear forwards;
}
@keyframes banner-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .banner__dots .bar { display: none !important; } }

.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;
}

/* ---- banner as the page hero: taller, bigger type, countdown inline */
.banner--hero { border-top: 0; aspect-ratio: 3 / 4; }
@media (min-width: 640px)  { .banner--hero { aspect-ratio: 16 / 9; } }
@media (min-width: 1100px) { .banner--hero { aspect-ratio: 2.1 / 1; min-height: 545px; } }

.banner--hero .banner__title { font-size: clamp(2.4rem, 10vw, 5.4rem); }
.banner--hero .banner__body { padding-bottom: clamp(80px, 12vw, 100px); }

.banner__presents {
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cream-50);
  margin: 0 0 .85rem;
}
.banner .countdown {
  justify-content: flex-start;
  margin-top: 1.25rem;
  gap: 7px;
}
.banner .countdown li {
  min-width: 58px;
  padding: 8px 5px 7px;
  background: rgba(6, 8, 26, .55);
  backdrop-filter: blur(3px);
}
.banner .countdown b { font-size: clamp(1.15rem, 4.5vw, 1.6rem); }

/* ---- static venue map, replacing a live third-party embed */
.map-static { margin: 0; border: 1px solid var(--hair); background: rgba(6, 8, 26, .5); }
.map-static img { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--hair); }
.map-static figcaption {
  padding: 18px 20px;
  font-size: .9rem;
  color: var(--cream-70);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.map-static figcaption strong { color: var(--cream); font-family: var(--font-display); font-size: 1.06rem; }

/* ---- a sponsor's own colours need a light ground to read against ours */
.logo-wall__mark {
  background: var(--cream);
  border-color: var(--hair-solid);
  padding: 16px 18px;
}
.logo-wall__mark img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }

/* ---- a one-line descriptor under a team member's role */
.person-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--gold-hi);
  margin: -.4rem 0 .9rem;
}

/* ---- the full brand mark */
.brand-mark { width: 44px; height: 44px; object-fit: contain; }
.brand-full {
  width: 100%;
  max-width: min(520px, 82vw);
  height: auto;
  margin-inline: auto;
  display: block;
}
.footer-logo { width: 100%; max-width: 260px; height: auto; margin-bottom: 18px; }
.press-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 4px 0 16px;
  display: block;
}
