:root {
  --red: #c8102e;
  --red-deep: #8f0b20;
  --ink: #121212;
  --ink-soft: #2a2a2a;
  --paper: #f6f3ef;
  --cream: #ebe4da;
  --white: #ffffff;
  --line: rgba(18, 18, 18, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(200, 16, 46, 0.12), transparent 55%),
    linear-gradient(180deg, #f8f5f1 0%, var(--paper) 40%, #e9e2d8 100%);
  line-height: 1.6;
  min-height: 100vh;
}

img, video { max-width: 100%; display: block; }

a { color: var(--red-deep); text-underline-offset: 0.18em; }
a:hover { color: var(--red); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0.75rem; top: 0.75rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--red);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--white); }

.site-nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  box-shadow: none !important;
}

.nav-cta:hover { background: var(--red-deep); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: var(--radius);
  padding: 10px;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out alternate infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.25) 0%, rgba(18, 18, 18, 0.55) 45%, rgba(18, 18, 18, 0.92) 100%),
    linear-gradient(90deg, rgba(200, 16, 46, 0.28), transparent 55%);
}

.hero-content {
  padding: 5rem 0 3.5rem;
  max-width: 38rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  animation: rise 0.8s ease both;
}

.hero-brand span {
  display: block;
  color: #ffd6dc;
  font-size: 0.42em;
  letter-spacing: 0.14em;
  margin-top: 0.35rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  font-weight: 700;
  animation: rise 0.9s ease 0.08s both;
}

.hero p {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  animation: rise 1s ease 0.16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 1.05s ease 0.24s both;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover { background: var(--red-deep); color: var(--white); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover { background: var(--ink-soft); color: var(--white); }

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.55rem;
}

.section h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.lede {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.page-hero {
  padding: 3.5rem 0 1.5rem;
}

.page-hero p { max-width: 40rem; }

/* Session cards — interaction containers, not decorative cards */
.session-list {
  display: grid;
  gap: 1rem;
}

.session-item {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.55);
  border-left: 5px solid var(--red);
  border-block: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}

.session-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(3px);
}

.session-day {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--red);
}

.session-time {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--font-body);
}

.session-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.session-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.session-item .maps {
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* Split blurb */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.split-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  filter: saturate(1.05) contrast(1.03);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(18, 18, 18, 0.45));
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
}

.pill {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-weight: 600;
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(120deg, rgba(18, 18, 18, 0.92), rgba(143, 11, 32, 0.9)),
    url("../img/promo-banners.jpg") center/cover;
  color: var(--white);
  padding: 3.5rem 0;
}

.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 36rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }

/* Gallery — dark stadium band + masonry bento */
.gallery-band {
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(200, 16, 46, 0.35), transparent 60%),
    linear-gradient(180deg, #171717 0%, #0d0d0d 100%);
  color: var(--white);
  padding: 3.5rem 0 4.5rem;
  margin-top: 0.5rem;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}

.gallery-band .eyebrow { color: #ff8a9a; }
.gallery-band h1 { color: var(--white); }
.gallery-band .lede {
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
}

.gallery-band-head { margin-bottom: 1.75rem; }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.gallery-filter {
  appearance: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.gallery-filter:hover {
  transform: translateY(-1px);
  border-color: var(--white);
}

.gallery-filter.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-stage {
  width: min(100% - 1.25rem, 1200px);
  margin-inline: auto;
}

/* True masonry via columns — uneven heights, not a boring equal grid */
.gallery-mosaic {
  column-count: 3;
  column-gap: 0.85rem;
}

.gallery-tile {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  width: 100%;
  margin: 0 0 0.85rem;
  padding: 0;
  border: 0;
  background: #1c1c1c;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
  text-align: left;
  color: inherit;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
}

.gallery-tile.is-hidden { display: none; }

.gallery-tile.is-featured {
  column-span: all;
  margin-bottom: 1rem;
}

.gallery-tile-media {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #111;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.35s ease;
}

/* Shape variety — this is what stops the “same box” look */
.shape-hero .gallery-tile-media { aspect-ratio: 21 / 9; }
.shape-wide .gallery-tile-media { aspect-ratio: 16 / 10; }
.shape-square .gallery-tile-media { aspect-ratio: 1 / 1; }
.shape-tall .gallery-tile-media { aspect-ratio: 3 / 4; }

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-style: solid;
  border-width: 36px 36px 0 0;
  border-color: var(--red) transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.05);
}

.gallery-tile:hover::after,
.gallery-tile:focus-visible::after { opacity: 1; }

.gallery-tile-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 0.9rem;
  pointer-events: none;
}

.gallery-tile-label {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.gallery-play {
  flex: 0 0 auto;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem 0.3rem;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 85% 100%, 0 100%);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.94);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 100;
  gap: 0.75rem;
}

.lightbox.is-open { display: flex; }

.lightbox-inner {
  max-width: min(1040px, 100%);
  max-height: 78vh;
}

.lightbox-inner img,
.lightbox-inner video {
  max-height: 78vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  text-align: center;
  max-width: 36rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--red);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-panel,
.contact-form {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.contact-panel h2,
.contact-form h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.7rem;
  margin: 0 0 1rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.form-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.95rem;
}

.form-row label { font-weight: 600; font-size: 0.92rem; }

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.75rem 0.85rem;
  font: inherit;
  border-radius: var(--radius);
}

.form-row textarea { min-height: 140px; resize: vertical; }

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid rgba(200, 16, 46, 0.35);
  border-color: var(--red);
}

.alert {
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--red);
  background: rgba(200, 16, 46, 0.08);
}

.alert-success {
  border-color: #1f7a3f;
  background: rgba(31, 122, 63, 0.1);
}

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* About */
.prose { max-width: 42rem; }
.prose p + p { margin-top: 1rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand--footer { margin-bottom: 0.85rem; }
.footer-blurb { margin: 0; max-width: 28rem; color: rgba(255, 255, 255, 0.7); }

.footer-heading {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.2rem;
  margin: 0 0 0.85rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  font-size: 0.9rem;
}

.footer-bottom a { color: #ffb4bf; }
.footer-credit { margin: 0; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .split,
  .contact-layout,
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .gallery-mosaic { column-count: 2; }

  .session-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #161616;
    border-bottom: 3px solid var(--red);
    padding: 0.5rem 1rem 1rem;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .contact-layout,
  .footer-grid,
  .split { grid-template-columns: 1fr; }

  .gallery-mosaic { column-count: 2; column-gap: 0.55rem; }
  .gallery-tile { margin-bottom: 0.55rem; }
  .shape-hero .gallery-tile-media { aspect-ratio: 16 / 9; }

  .gallery-filter {
    font-size: 0.95rem;
    padding: 0.4rem 0.7rem;
  }

  .hero { min-height: min(88vh, 680px); }
}

@media (max-width: 520px) {
  .gallery-mosaic { column-count: 2; }
  .gallery-band { padding: 2.5rem 0 3rem; }
}
