:root {
  --ink: #050916;
  --navy: #071346;
  --blue: #1137bd;
  --electric: #285cff;
  --orange: #ff3d0a;
  --cream: #f3efe7;
  --white: #ffffff;
  --muted: #9fa9c1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.section {
  width: min(100% - 64px, 1320px);
  margin-inline: auto;
}

.announcement {
  min-height: 38px;
  padding: 8px 40px;
  background: var(--orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.announcement a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.site-header {
  position: absolute;
  top: 38px;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 92px;
  padding: 14px 40px;
  display: grid;
  grid-template-columns: 280px 1fr 170px;
  align-items: center;
  gap: 30px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.site-header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.site-header nav a,
.header-cta {
  position: relative;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: background 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
}

.hero {
  position: relative;
  min-height: 840px;
  height: calc(100svh - 38px);
  max-height: 1040px;
  overflow: hidden;
  background: #020714;
  color: white;
}

.hero-art {
  position: absolute;
  inset: 0 -5%;
  background-image:
    linear-gradient(90deg, rgba(2, 6, 18, 0.98) 0%, rgba(2, 6, 18, 0.91) 33%, rgba(2, 6, 18, 0.35) 65%, rgba(2, 6, 18, 0.08) 100%),
    linear-gradient(0deg, rgba(2, 6, 18, 0.83) 0%, transparent 42%),
    var(--hero-image);
  background-size: cover;
  background-position: center, center, 75% 22%;
  transform: translateX(4%) scale(1.015);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 38%, rgba(47, 87, 255, 0.08), transparent 32%),
    linear-gradient(110deg, transparent 60%, rgba(255, 61, 10, 0.12));
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(255, 255, 255, 0.04) 80px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 80px, 1320px);
  height: 100%;
  margin: 0 auto;
  padding-top: clamp(185px, 24vh, 250px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker-line {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(64px, 7.4vw, 118px);
  line-height: 0.83;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  font-weight: 950;
}

.hero h1 em {
  display: block;
  margin-top: 20px;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.88);
  text-shadow: 0 0 48px rgba(40, 92, 255, 0.2);
}

.hero-content > p {
  max-width: 610px;
  margin: 32px 0 0;
  color: #c7cddd;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff5b30;
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: white;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid white;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  right: 40px;
  bottom: 0;
  width: min(58vw, 760px);
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(7, 19, 70, 0.9);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-stats > div {
  padding: 23px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats strong {
  color: white;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-stats span {
  margin-top: 8px;
  color: #aeb8d7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story {
  padding-block: 150px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.story-collage {
  position: relative;
  min-height: 700px;
}

.story-image {
  overflow: hidden;
  background: #111b45;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-main {
  width: 82%;
  height: 620px;
  margin-left: auto;
}

.story-image-main img {
  object-position: 55% center;
}

.story-image-small {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 48%;
  height: 300px;
  border: 12px solid var(--cream);
}

.year-stamp {
  position: absolute;
  top: -32px;
  left: 15px;
  width: 122px;
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--orange);
  color: white;
  transform: rotate(-7deg);
}

.year-stamp span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.year-stamp strong {
  font-size: 46px;
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.story-copy h2,
.performance-heading h2,
.leadership h2,
.venue h2,
.contact h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.story-copy .lead {
  margin: 32px 0 18px;
  font-size: 19px;
  line-height: 1.62;
  font-weight: 700;
}

.story-copy > p:not(.eyebrow):not(.lead) {
  color: #545968;
  font-size: 16px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--orange);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story blockquote {
  margin: 46px 0 0;
  padding: 0 0 0 24px;
  border-left: 4px solid var(--orange);
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.performance-section {
  position: relative;
  overflow: hidden;
  padding-block: 130px 145px;
  background:
    radial-gradient(circle at 90% 0%, rgba(35, 82, 255, 0.24), transparent 30%),
    var(--ink);
  color: white;
}

.performance-section::before {
  content: "VIKINGS";
  position: absolute;
  top: 65px;
  right: -30px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 18vw;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.eyebrow-light {
  color: #809cff;
}

.performance-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.performance-heading h2 {
  max-width: 780px;
}

.button-outline {
  flex: 0 0 auto;
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
}

.performance-grid {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 16px;
}

.performance-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #111935;
}

.performance-card img,
.card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.performance-card img {
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0, 1);
}

.performance-card:hover img {
  transform: scale(1.055);
}

.card-1 img {
  object-position: 49% 25%;
}

.card-2 img {
  object-position: 48% center;
}

.card-3 img {
  object-position: 52% center;
}

.card-shade {
  background: linear-gradient(0deg, rgba(2, 5, 15, 0.97) 0%, rgba(2, 5, 15, 0.15) 70%);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.performance-card-content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
}

.performance-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.performance-meta span {
  padding: 6px 8px;
  background: var(--orange);
  color: white;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.performance-meta span + span {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.performance-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.performance-card a {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.record-strip {
  position: relative;
  z-index: 2;
  margin-top: 96px;
  padding-top: 54px;
  display: grid;
  grid-template-columns: 390px 1fr 120px;
  align-items: center;
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.record-intro {
  display: flex;
  align-items: center;
  gap: 23px;
}

.record-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  font-size: 52px;
  font-weight: 950;
  font-style: italic;
}

.record-intro .eyebrow {
  margin-bottom: 8px;
}

.record-intro h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.record-years {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.record-years span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #c5cce1;
  font-size: 11px;
  font-weight: 800;
}

.record-label {
  color: #747f9f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.leadership {
  padding-block: 145px;
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(470px, 1fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}

.leadership-heading {
  position: sticky;
  top: 40px;
}

.leadership-heading > p:not(.eyebrow) {
  max-width: 490px;
  margin: 28px 0 0;
  color: #5d6270;
  font-size: 17px;
  line-height: 1.7;
}

.board-list {
  border-top: 2px solid var(--ink);
}

.board-row {
  min-height: 68px;
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(5, 9, 22, 0.18);
  transition: background 160ms ease, padding 160ms ease;
}

.board-row:hover {
  padding-inline: 10px;
  background: white;
}

.board-index {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
}

.board-role {
  color: #777d89;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-row strong {
  font-size: 16px;
  text-align: right;
}

.venue {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 700px;
  background: var(--blue);
  color: white;
}

.venue-image {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.venue-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(17, 55, 189, 0.6));
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-badge {
  position: absolute;
  z-index: 2;
  left: 34px;
  top: 34px;
  padding: 10px 13px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.venue-copy {
  padding: 90px clamp(48px, 7vw, 115px);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.venue-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 0;
  color: #bdc9f4;
  font-size: 17px;
  line-height: 1.7;
}

.venue-details {
  margin: 38px 0;
  padding: 25px 0;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.venue-details > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.venue-details span {
  color: #88a1f8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.venue-details strong,
.venue-details a {
  font-size: 14px;
  line-height: 1.55;
}

.venue-copy .button {
  width: fit-content;
}

.contact {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 90px max(32px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  background: var(--orange);
  color: white;
}

.contact::before {
  content: "PHILLY";
  position: absolute;
  right: 13%;
  bottom: -45px;
  color: rgba(255, 255, 255, 0.07);
  font-size: 210px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.contact > * {
  position: relative;
  z-index: 2;
}

.contact .eyebrow {
  color: white;
  opacity: 0.76;
}

.contact h2 {
  font-size: clamp(52px, 6vw, 92px);
}

.contact-mascot {
  position: absolute;
  right: 38%;
  bottom: -80px;
  width: 240px;
  opacity: 0.16;
  transform: rotate(-8deg);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.social-link {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer {
  padding: 70px 40px 28px;
  background: #02050d;
  color: white;
}

.footer-top {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: start;
  gap: 50px;
}

.footer-top > img {
  width: min(390px, 100%);
  filter: drop-shadow(0 0 24px rgba(42, 84, 255, 0.18));
}

.footer-contact,
.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
  color: #b7bfd6;
  font-size: 13px;
}

.footer-links {
  align-items: flex-end;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #6f7890;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 240px 1fr 145px;
    gap: 16px;
  }

  .site-header nav {
    gap: 18px;
  }

  .site-header nav a {
    font-size: 10px;
  }

  .story {
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
  }

  .performance-card {
    min-height: 540px;
  }

  .record-strip {
    grid-template-columns: 320px 1fr;
  }

  .record-label {
    display: none;
  }

  .contact {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 860px) {
  .section {
    width: min(100% - 40px, 680px);
  }

  .announcement {
    padding-inline: 20px;
  }

  .announcement > span {
    display: none;
  }

  .announcement {
    justify-content: center;
  }

  .site-header {
    padding-inline: 20px;
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .brand span {
    font-size: 10px;
  }

  .brand strong {
    font-size: 16px;
  }

  .hero {
    height: auto;
    min-height: 850px;
  }

  .hero-art {
    background-image:
      linear-gradient(0deg, rgba(2, 6, 18, 1) 0%, rgba(2, 6, 18, 0.75) 58%, rgba(2, 6, 18, 0.25) 100%),
      var(--hero-image);
    background-position: center, 52% top;
    transform: translateX(2%) scale(1.015);
  }

  .hero-content {
    width: calc(100% - 40px);
    padding-top: 270px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(54px, 14vw, 86px);
  }

  .hero-content > p {
    max-width: 540px;
  }

  .hero-stats {
    position: absolute;
    left: 20px;
    right: 20px;
    width: auto;
  }

  .hero-stats > div {
    padding: 18px;
  }

  .story {
    padding-block: 100px;
    grid-template-columns: 1fr;
  }

  .story-collage {
    min-height: 580px;
  }

  .story-image-main {
    height: 520px;
  }

  .performance-section {
    padding-block: 100px;
  }

  .performance-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .performance-grid {
    grid-template-columns: 1fr;
  }

  .performance-card {
    min-height: 620px;
  }

  .record-strip {
    grid-template-columns: 1fr;
  }

  .leadership {
    padding-block: 100px;
    grid-template-columns: 1fr;
  }

  .leadership-heading {
    position: static;
  }

  .venue {
    grid-template-columns: 1fr;
  }

  .venue-image {
    min-height: 520px;
  }

  .venue-copy {
    padding: 80px 32px;
  }

  .contact {
    padding: 80px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top > img {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .header-cta {
    padding: 11px 12px;
    font-size: 9px;
  }

  .hero {
    min-height: 890px;
  }

  .hero-content {
    padding-top: 250px;
  }

  .hero-kicker {
    gap: 8px;
    font-size: 8px;
  }

  .kicker-line {
    width: 25px;
  }

  .hero h1 {
    font-size: 16vw;
    line-height: 0.86;
  }

  .hero h1 em {
    margin-top: 12px;
  }

  .hero-content > p {
    margin-top: 25px;
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    min-height: 96px;
  }

  .hero-stats > div {
    padding: 14px 10px;
  }

  .hero-stats strong {
    font-size: 22px;
  }

  .hero-stats span {
    font-size: 7px;
    line-height: 1.3;
  }

  .story-collage {
    min-height: 490px;
  }

  .story-image-main {
    width: 92%;
    height: 440px;
  }

  .story-image-small {
    width: 56%;
    height: 210px;
    border-width: 8px;
  }

  .year-stamp {
    width: 96px;
    height: 96px;
  }

  .year-stamp strong {
    font-size: 38px;
  }

  .story-copy h2,
  .performance-heading h2,
  .leadership h2,
  .venue h2,
  .contact h2 {
    font-size: 41px;
  }

  .performance-card {
    min-height: 520px;
  }

  .performance-card-content {
    padding: 24px;
  }

  .record-intro {
    align-items: flex-start;
  }

  .record-mark {
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
  }

  .board-row {
    grid-template-columns: 30px 0.85fr 1.15fr;
    gap: 10px;
  }

  .board-role {
    font-size: 9px;
  }

  .board-row strong {
    font-size: 13px;
  }

  .venue-image {
    min-height: 380px;
  }

  .venue-details {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .social-link {
    width: fit-content;
  }

  footer {
    padding-inline: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top > img {
    grid-column: auto;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-bottom {
    gap: 14px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .performance-card img,
  .button { transition: none; }
}

/* Shared navigation and full-site pages */
.site-header {
  grid-template-columns: 250px 1fr 145px;
  padding-inline: 28px;
  gap: 18px;
}

.site-header nav {
  gap: clamp(12px, 1.5vw, 25px);
}

.site-header nav a {
  font-size: 10px;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.mobile-menu {
  display: none;
  position: relative;
  justify-self: end;
}

.mobile-menu summary {
  width: 46px;
  height: 46px;
  padding: 12px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker { display: none; }

.mobile-menu summary span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
}

.mobile-menu-panel {
  position: absolute;
  top: 58px;
  right: 0;
  width: min(330px, calc(100vw - 40px));
  padding: 12px;
  display: flex;
  flex-direction: column;
  background: #060b1d;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.14);
}

.mobile-menu-panel > a {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mobile-menu-panel .mobile-booking {
  margin-top: 10px;
  background: var(--orange);
  border-bottom: 0;
  text-align: center;
}

.social-follow {
  position: relative;
  width: 100%;
  min-height: 330px;
  padding: 74px max(32px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  background:
    linear-gradient(105deg, rgba(255,61,10,.97), rgba(221,39,0,.98)),
    var(--orange);
  color: white;
}

.social-follow::before {
  content: "CONNECTED";
  position: absolute;
  right: 20%;
  bottom: -58px;
  color: rgba(255,255,255,.07);
  font-size: clamp(110px, 15vw, 230px);
  font-weight: 950;
  letter-spacing: -.09em;
}

.social-follow-copy,
.social-icons {
  position: relative;
  z-index: 2;
}

.social-follow .eyebrow {
  margin-bottom: 12px;
  color: white;
  opacity: .78;
}

.social-follow h2 {
  margin: 0;
  font-size: clamp(58px, 8vw, 112px);
  line-height: .88;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.social-follow-copy > span {
  display: block;
  margin-top: 23px;
  color: rgba(255,255,255,.79);
  font-size: 14px;
}

.social-mascot {
  position: absolute;
  left: 48%;
  bottom: -105px;
  width: 310px;
  opacity: .12;
  transform: rotate(-8deg);
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.social-icons > a {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-icons > a:hover,
.social-icons > a:focus-visible {
  background: white;
  color: var(--orange);
  transform: translateY(-4px);
}

.social-icon {
  position: relative;
  display: block;
  width: 39px;
  height: 39px;
}

.instagram-icon {
  border: 3px solid currentColor;
  border-radius: 11px;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.instagram-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}

.facebook-icon {
  width: auto;
  height: 51px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 55px;
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
}

.page-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  color: white;
}

.page-hero-art {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(3,7,19,.98) 0%, rgba(3,7,19,.84) 43%, rgba(3,7,19,.28) 80%),
    linear-gradient(0deg, rgba(3,7,19,.82), transparent 60%),
    var(--page-hero-image);
  background-position: center, center, center 28%;
  background-size: cover;
  transform: scale(1.015);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 95px, rgba(255,255,255,.035) 96px);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 80px, 1320px);
  margin: 0 auto;
  padding: 210px 0 75px;
}

.page-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(64px, 8.4vw, 132px);
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.page-hero-inner > p:not(.eyebrow) {
  max-width: 690px;
  margin: 30px 0 0;
  color: #c5ccdf;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
}

.page-hero-button { margin-top: 32px; }

.inner-section { padding-block: 125px; }

.history-intro {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: clamp(70px, 10vw, 160px);
}

.history-intro h2,
.timeline h2,
.results-heading h2,
.events-lead h2,
.contact-details h2,
.booking-copy h2 {
  margin: 0;
  font-size: clamp(44px, 5.5vw, 82px);
  line-height: .96;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.history-intro-copy {
  padding-top: 40px;
  color: #565c69;
  font-size: 16px;
  line-height: 1.8;
}

.history-intro-copy .lead-copy {
  margin-top: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.history-media {
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  grid-template-rows: 310px 280px;
  gap: 16px;
}

.history-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-media-tall { grid-row: 1 / 3; }
.history-media-tall img { object-position: 60% center; }
.history-media-wide { overflow: hidden; }
.history-media-wide img { object-position: center 18%; }

.history-media-quote {
  padding: 36px 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--blue);
  color: white;
}

.history-media-quote > span {
  color: var(--orange);
  font-size: 100px;
  font-weight: 900;
  line-height: .6;
}

.history-media-quote p {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 33px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  grid-template-columns: .7fr 1fr;
  align-items: start;
  gap: clamp(70px, 10vw, 160px);
}

.timeline-heading { position: sticky; top: 35px; }
.timeline-list { border-top: 2px solid var(--ink); }

.timeline-item {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(5,9,22,.18);
}

.timeline-count {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
}

.timeline-item p {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin: 0 0 14px;
  font-size: 27px;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.timeline-item div > span {
  color: #5f6572;
  font-size: 15px;
  line-height: 1.72;
}

.results-summary {
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(5,9,22,.18);
}

.results-summary > div {
  min-height: 160px;
  padding: 28px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid rgba(5,9,22,.14);
}

.results-summary > div:last-child { border-right: 0; }
.results-summary strong { color: var(--blue); font-size: 48px; letter-spacing: -.06em; }
.results-summary span { margin-top: 8px; color: #767c89; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.results-heading {
  margin-bottom: 55px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.results-heading > p {
  max-width: 300px;
  margin: 0;
  color: #707784;
  font-size: 14px;
  line-height: 1.6;
}

.results-table-wrap { overflow-x: auto; }
.results-table { width: 100%; border-collapse: collapse; }
.results-table th { padding: 16px 18px; background: var(--ink); color: #8992aa; font-size: 9px; letter-spacing: .15em; text-align: left; text-transform: uppercase; }
.results-table th:last-child { text-align: right; }
.results-table td { padding: 20px 18px; border-bottom: 1px solid rgba(5,9,22,.14); font-size: 14px; }
.results-table td:first-child { width: 90px; color: var(--blue); font-size: 18px; font-weight: 950; }
.results-table td:nth-child(2) { font-size: 16px; font-weight: 800; }
.results-table td:nth-child(3) { width: 90px; }
.results-table td:last-child { width: 140px; text-align: right; }
.results-table tr:hover td { background: white; }
.results-table td:nth-child(2) a:hover { color: var(--blue); }

.place-badge { min-width: 46px; padding: 7px 8px; display: inline-block; border: 1px solid rgba(5,9,22,.2); font-size: 10px; font-weight: 900; text-align: center; }
.place-1 { background: var(--orange); color: white; border-color: var(--orange); }
.table-watch { padding-bottom: 4px; border-bottom: 1px solid var(--orange); color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.table-pending { color: #959ba6; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.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; }

.video-heading { margin-bottom: 60px; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.video-card { position: relative; min-height: 480px; overflow: hidden; background: var(--ink); }
.video-card img, .video-card-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-card img { object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,0,1); }
.video-card:hover img { transform: scale(1.05); }
.video-card-1 img, .video-card-2 img, .video-card-3 img { object-position: center 25%; }
.video-card-6 img { object-position: center 15%; }
.video-card-shade { background: linear-gradient(0deg, rgba(3,6,17,.96), rgba(3,6,17,.06) 72%); }
.video-card > a { position: absolute; z-index: 2; inset: 0; padding: 32px; display: flex; align-items: flex-end; gap: 22px; color: white; }
.video-play { flex: 0 0 58px; width: 58px; height: 58px; position: relative; display: block; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; background: rgba(4,8,22,.28); backdrop-filter: blur(8px); }
.video-play::after { content: ""; position: absolute; top: 50%; left: 52%; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid white; transform: translate(-50%,-50%); }
.video-card a div > span { color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.video-card h3 { max-width: 470px; margin: 7px 0 0; font-size: clamp(24px, 3vw, 42px); line-height: 1; letter-spacing: -.045em; text-transform: uppercase; }
.channel-cta { margin-top: 18px; padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--blue); color: white; }
.channel-cta > span { font-size: clamp(22px, 3vw, 38px); font-weight: 900; letter-spacing: -.04em; text-transform: uppercase; }

.events-lead { max-width: 850px; margin-bottom: 70px; }
.events-lead > p:not(.eyebrow) { max-width: 650px; color: #5e6471; font-size: 17px; line-height: 1.75; }
.events-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.event-feature { position: relative; min-height: 700px; grid-row: 1 / 3; overflow: hidden; background: var(--ink); color: white; }
.event-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,6,17,.95), transparent 66%); }
.event-feature img { width: 100%; height: 100%; object-fit: cover; }
.event-feature > div { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 40px; }
.event-feature span, .event-card > span, .event-archive span { font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.event-feature span { color: var(--orange); }
.event-feature h3, .event-card h3 { margin: 10px 0 18px; font-size: clamp(31px, 4vw, 55px); line-height: .98; letter-spacing: -.055em; text-transform: uppercase; }
.event-feature p, .event-card p { font-size: 14px; line-height: 1.6; }
.event-feature a, .event-card a { display: inline-block; margin-top: 16px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.event-card { min-height: 342px; padding: 42px; display: flex; justify-content: center; flex-direction: column; color: white; }
.event-card-blue { background: var(--blue); }
.event-card-orange { background: var(--orange); }
.event-archive { margin-top: 65px; padding: 30px 0; display: grid; grid-template-columns: 190px 1fr 1fr; align-items: center; gap: 40px; border-top: 2px solid var(--ink); border-bottom: 1px solid rgba(5,9,22,.18); }
.event-archive > div { display: flex; flex-direction: column; gap: 8px; }
.event-archive span { color: var(--orange); }
.event-archive h3 { margin: 0; font-size: 21px; text-transform: uppercase; }
.event-archive p { margin: 0; color: #707682; font-size: 13px; }

.contact-page, .booking-page { display: grid; grid-template-columns: .78fr 1.1fr; align-items: start; gap: clamp(70px, 10vw, 150px); }
.contact-details, .booking-copy { position: sticky; top: 35px; }
.contact-details .button { width: fit-content; margin-top: 38px; }
.contact-detail-list { margin-top: 48px; border-top: 1px solid rgba(5,9,22,.2); }
.contact-detail-list > div { padding: 23px 0; display: flex; flex-direction: column; gap: 8px; border-bottom: 1px solid rgba(5,9,22,.16); }
.contact-detail-list span, .booking-location span { color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.contact-detail-list strong, .contact-detail-list a { font-size: 15px; line-height: 1.55; }

.premium-form { padding: clamp(34px, 5vw, 64px); display: flex; flex-direction: column; gap: 26px; background: white; box-shadow: 0 28px 70px rgba(5,9,22,.09); }
.form-heading { padding-bottom: 27px; border-bottom: 2px solid var(--ink); }
.form-heading > span { display: block; font-size: 27px; font-weight: 950; letter-spacing: -.04em; text-transform: uppercase; }
.form-heading p { margin: 8px 0 0; color: #737a87; font-size: 13px; }
.premium-form label { display: flex; flex-direction: column; gap: 9px; }
.premium-form label > span { color: #666d7a; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.premium-form input, .premium-form textarea, .premium-form select { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid #adb2bc; outline: 0; background: transparent; color: var(--ink); font: inherit; border-radius: 0; }
.premium-form textarea { padding: 14px; border: 1px solid #adb2bc; resize: vertical; }
.premium-form input:focus, .premium-form textarea:focus, .premium-form select:focus { border-color: var(--blue); }
.premium-form .button { width: fit-content; margin-top: 8px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.booking-copy > p:not(.eyebrow) { color: #5e6471; font-size: 17px; line-height: 1.75; }
.booking-location { margin: 35px 0; padding: 25px 0; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid rgba(5,9,22,.18); border-bottom: 1px solid rgba(5,9,22,.18); }
.booking-location strong { font-size: 15px; line-height: 1.55; }
.booking-location a { color: var(--blue); font-weight: 900; }
.booking-copy > img { width: 100%; height: 280px; object-fit: cover; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .history-intro, .timeline, .contact-page, .booking-page { grid-template-columns: 1fr; }
  .timeline-heading, .contact-details, .booking-copy { position: static; }
  .results-summary { grid-template-columns: repeat(2, 1fr); }
  .results-summary > div:nth-child(2) { border-right: 0; }
  .results-summary > div:nth-child(-n+2) { border-bottom: 1px solid rgba(5,9,22,.14); }
}

@media (max-width: 760px) {
  .social-follow { min-height: 350px; padding: 68px 20px; grid-template-columns: 1fr; gap: 38px; }
  .social-follow h2 { font-size: 62px; }
  .social-follow-copy > span { max-width: 330px; line-height: 1.5; }
  .social-icons { justify-content: flex-start; }
  .social-icons > a { width: 78px; height: 78px; }
  .social-mascot { left: auto; right: -50px; width: 260px; }
  .page-hero { min-height: 580px; }
  .page-hero-art { background-image: linear-gradient(0deg, rgba(3,7,19,.98), rgba(3,7,19,.35)), var(--page-hero-image); background-position: center, center 20%; }
  .page-hero-inner { width: calc(100% - 40px); padding: 205px 0 60px; }
  .page-hero h1 { font-size: clamp(52px, 15vw, 82px); }
  .inner-section { padding-block: 85px; }
  .history-media { grid-template-columns: 1fr; grid-template-rows: 440px 290px auto; }
  .history-media-tall { grid-row: auto; }
  .history-media-quote { padding: 35px 27px; }
  .results-summary { margin-bottom: 80px; }
  .results-heading { align-items: flex-start; flex-direction: column; }
  .results-table { min-width: 720px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card { min-height: 450px; }
  .channel-cta { align-items: flex-start; flex-direction: column; }
  .channel-cta .button { width: auto; }
  .events-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .event-feature { min-height: 610px; grid-row: auto; }
  .event-archive { grid-template-columns: 1fr; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .site-header { padding-inline: 16px; }
  .brand span { display: none; }
  .results-summary { grid-template-columns: 1fr; }
  .results-summary > div { min-height: 130px; border-right: 0; border-bottom: 1px solid rgba(5,9,22,.14); }
  .results-summary > div:last-child { border-bottom: 0; }
  .premium-form { padding: 30px 22px; }
  .video-card > a { padding: 24px; }
  .event-card, .event-feature > div { padding: 28px; }
}

/* WordPress navigation, editor content, forms and accessibility */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: white;
  color: var(--ink);
  font-weight: 800;
}

.desktop-nav > ul,
.mobile-menu-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 25px);
}

.mobile-nav-toggle {
  position: relative;
  z-index: 32;
  width: 50px;
  height: 50px;
  padding: 13px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 0;
  background: rgba(5,9,22,.2);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease, opacity 160ms ease;
}

.mobile-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header > .mobile-menu-panel {
  position: fixed;
  z-index: 30;
  inset: 0;
  width: 100%;
  padding: 132px 28px 38px;
  display: none;
  overflow-y: auto;
  background:
    radial-gradient(circle at 90% 10%, rgba(40,92,255,.26), transparent 35%),
    #030714;
  border: 0;
  color: white;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-header > .mobile-menu-panel.is-open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-panel nav,
.mobile-menu-panel nav > ul {
  width: 100%;
  display: block;
}

.mobile-menu-panel li {
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.mobile-menu-panel nav a {
  width: 100%;
  padding: 17px 3px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: clamp(22px, 7vw, 34px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.mobile-menu-panel nav a::after { display: none; }

.site-header > .mobile-menu-panel .mobile-booking {
  width: 100%;
  min-height: 58px;
  margin-top: 24px;
  padding: 15px 18px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.menu-open { overflow: hidden; }

.wp-content-area {
  max-width: 920px;
  color: #4f5664;
  font-size: 17px;
  line-height: 1.78;
}

.wp-content-area > *:first-child { margin-top: 0; }
.wp-content-area > *:last-child { margin-bottom: 0; }
.wp-content-area h2,
.wp-content-area h3,
.archive-entry h2 {
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.wp-content-area h2 { font-size: clamp(38px, 5vw, 65px); }
.wp-content-area h3 { font-size: clamp(25px, 3vw, 38px); }
.wp-content-area a { color: var(--blue); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 4px; }
.wp-content-area img { height: auto; }
.wp-content-area .alignwide { width: min(1120px, 100vw - 40px); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.wp-content-area .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.compact-content { margin: -45px 0 70px; padding: 30px; background: rgba(255,255,255,.62); }
.builder-content { min-height: 50vh; }
.single-featured-image { width: 100%; margin-bottom: 40px; }
.archive-entry { padding: 30px 0; border-bottom: 1px solid rgba(5,9,22,.16); }
.archive-entry h2 { margin: 0 0 15px; font-size: 36px; }

.form-notice {
  margin: 0 0 18px;
  padding: 16px 20px;
  border-left: 4px solid var(--blue);
  background: white;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.form-notice-success { border-left-color: #198754; }
.form-notice-error { border-left-color: var(--orange); }
.shortcode-form { display: block; }
.contact-page-content { color: #5e6471; line-height: 1.7; }
.event-location { color: #b7c0da; }
.events-grid .editable-event { grid-column: 1 / -1; grid-row: auto; min-height: 520px; }
.simple-page-hero .page-hero-art { --page-hero-image: linear-gradient(135deg, #071346, #02050d); }

@media (max-width: 1080px) {
  .mobile-nav-toggle { display: flex; }
  .site-header > .mobile-menu-panel { display: block; visibility: hidden; pointer-events: none; }
  .site-header > .mobile-menu-panel.is-open { visibility: visible; pointer-events: auto; }
  .site-header > .mobile-menu-panel nav { display: block; }
  .desktop-nav { display: none !important; }
}

@media (max-width: 760px) {
  .wp-content-area { font-size: 16px; }
  .events-grid .editable-event { min-height: 610px; }
  .compact-content { margin-top: -20px; padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-toggle span,
  .site-header > .mobile-menu-panel { transition: none; }
}
