@font-face {
  font-family: "Inter Local";
  src: url("../fonts/Inter-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Swanza";
  src: url("../fonts/Swanza.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --navy: #0b2348;
  --navy-deep: #051630;
  --night: #05367f;
  --royal: #025dc5;
  --teal-bright: #b7ecf9;
  --turquoise: #0eccee;
  --ink: #111111;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy);
}

body {
  background: var(--white);
  color: var(--navy);
  font-family: "Inter Local", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
  overflow-x: clip;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.content-wrap,
.narrow-copy {
  margin-inline: auto;
  width: min(calc(100% - 80px), 1220px);
}

.narrow-copy {
  width: min(calc(100% - 80px), 1040px);
}

.button {
  background: var(--turquoise);
  border: 0;
  border-radius: 8px;
  color: var(--navy);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.03em;
  padding: 18px 34px;
  text-transform: uppercase;
}

.dark-section {
  background-color: var(--navy);
  color: var(--white);
}

/* Header */
.site-header {
  background: linear-gradient(90deg, var(--navy), var(--navy-deep));
  color: var(--white);
  position: sticky;
  top: 0;
  transition: background 300ms ease, box-shadow 300ms ease;
  z-index: 100;
}

.site-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1360px;
  min-height: 220px;
  padding: 0 36px;
  transition: min-height 300ms ease, padding 300ms ease;
}

.brand {
  flex: 0 0 auto;
  width: 300px;
  transition: width 300ms ease;
}

.brand img {
  width: 100%;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: clamp(11px, 1.25vw, 25px);
}

.primary-nav a {
  font-size: clamp(0.72rem, 0.85vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  padding-block: 10px;
  position: relative;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.primary-nav a::after {
  background: linear-gradient(90deg, var(--turquoise), #9be8ff);
  border-radius: 2px;
  bottom: 2px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--turquoise);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.site-header.is-scrolled {
  background: rgba(5, 22, 48, 0.93);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .site-header__inner {
  min-height: 88px;
}

.site-header.is-scrolled .brand {
  width: 230px;
}

.nav-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,.65);
  color: var(--white);
  display: none;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 10px 15px;
  text-transform: uppercase;
}

/* Page heroes */
.page-hero {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.page-hero__image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.page-hero__content {
  inset: 0;
  margin: 0 auto;
  max-width: 1220px;
  pointer-events: none;
  position: absolute;
  width: calc(100% - 80px);
}

.page-hero h1 {
  color: var(--white);
  font-family: "Swanza", Georgia, serif;
  font-size: clamp(4.8rem, 8.7vw, 8rem);
  font-weight: 400;
  left: 0;
  letter-spacing: -0.03em;
  line-height: 0.9;
  position: absolute;
  text-transform: uppercase;
  top: 48%;
  transform: translateY(-50%);
}

body:has(.schedule-section) .page-hero h1,
body:has(.live-section) .page-hero h1 {
  color: var(--navy);
}

.page-hero--about {
  aspect-ratio: 654 / 340;
}

.page-hero--about .page-hero__image {
  object-fit: cover;
}

.page-hero--about h1 {
  color: var(--navy);
}

/* Home */
.home-hero {
  aspect-ratio: 20 / 9;
  overflow: hidden;
  position: relative;
}

.home-hero img {
  height: calc(100% + 24px);
  left: -12px;
  max-width: none;
  object-fit: cover;
  position: absolute;
  top: -12px;
  width: calc(100% + 24px);
}

.registration-banner {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.registration-banner > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.registration-banner__button {
  bottom: 13%;
  left: 50%;
  padding: 20px 38px;
  position: absolute;
  transform: translateX(-50%);
}

.tour-dates {
  background-color: var(--night);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  min-height: 2180px;
  overflow: hidden;
  padding: 150px 0 20px;
  position: relative;
}

.tour-dates__lightning,
.tour-dates__swoosh,
.page-hero__ornament,
.about-intro__sparkle,
.directors__cloud,
.testimonials__moon,
.rules-promo__sparkle,
.register-section__cloud,
.register-section__sparkle,
.schedule-section__lightning,
.schedule-section__swoosh,
.rules-section__moon,
.rules-section__cloud,
.general-divisions__sparkle,
.join-section__cloud,
.join-section__moon,
.join-section__sparkle,
.live-section__sparkle,
.contact-section__lightning,
.contact-section__sparkle {
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.page-hero__ornament--rules {
  bottom: 10px;
  right: 8%;
  width: 76px;
}

.page-hero__ornament--contact {
  right: 10%;
  top: 34%;
  width: 82px;
}

.tour-dates__lightning {
  left: 40px;
  top: 16px;
  width: 100px;
}

.tour-dates__swoosh {
  bottom: 720px;
  right: 4%;
  width: 220px;
}

.tour-dates h2 {
  font-family: "Swanza", Georgia, serif;
  font-size: clamp(4.2rem, 7vw, 7rem);
  font-weight: 400;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.home-event-list {
  max-width: 1040px;
}

.home-event-list article {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 280px;
  margin-bottom: 48px;
}

.home-event-list h3 {
  color: var(--turquoise);
  font-family: "Swanza", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.home-event-list p {
  font-size: 1.9rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
}

.home-event-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.home-event-actions a {
  background: var(--white);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 13px 7px;
  text-align: center;
  text-transform: uppercase;
}

.tour-dates > .content-wrap > .button {
  font-size: 1.05rem;
  margin-top: 18px;
  padding: 24px 48px;
}

.quick-links {
  display: grid;
  gap: clamp(24px, 2.2vw, 42px);
  grid-template-columns: repeat(3, 1fr);
  left: 50%;
  margin-top: 350px;
  position: relative;
  transform: translateX(-50%);
  width: min(calc(100vw - 160px), 1580px);
}

.quick-links a {
  display: block;
}

.quick-links img {
  height: auto;
  width: 100%;
}

/* About */
.about-intro {
  background-position: center;
  background-size: cover;
  min-height: 850px;
  padding: 120px 0 105px;
  position: relative;
  text-align: center;
}

.about-intro__sparkle {
  left: 80px;
  top: 35px;
  width: 110px;
}

.about-intro .lead {
  color: var(--turquoise);
  font-family: "Swanza", Georgia, serif;
  font-size: clamp(2.15rem, 3.2vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.about-intro p:last-child {
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
}

.diamond-divider {
  height: auto;
  margin-inline: auto;
}

.diamond-divider--intro {
  margin-bottom: 42px;
  width: 72px;
}

.directors {
  background-image: url("../assets/2-About/DM_26WebsiteHandoff_2-About-TDSparkleBackground.webp");
  background-position: center top;
  background-size: cover;
  min-height: 1880px;
  padding: 110px 0 130px;
  position: relative;
}

.directors__cloud {
  right: 2%;
  top: -80px;
  width: 190px;
}

.section-title,
.rules-promo h2,
.register-section h2,
.schedule-section h2,
.rules-content h2,
.join-content h2,
.live-section h2,
.contact-content h2 {
  font-family: "Swanza", Georgia, serif;
  font-size: clamp(3.7rem, 6.2vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;
}

.director-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 65px;
}

.director-grid article > img {
  width: 100%;
}

.director-grid h3 {
  font-family: "Swanza", Georgia, serif;
  font-size: 2.2rem;
  line-height: 0.92;
  margin: 28px 0 4px;
  text-transform: uppercase;
}

.director-grid .role {
  color: var(--royal);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.director-grid article > p:not(.role) {
  font-size: 1rem;
  line-height: 1.48;
}

.testimonials {
  background-position: center top;
  background-size: cover;
  min-height: 2380px;
  padding: 130px 0;
  position: relative;
}

.testimonials__moon {
  left: 1%;
  top: -45px;
  width: 145px;
}

.section-title--light {
  color: var(--white);
}

.testimonial {
  margin: 78px auto 110px;
  max-width: 1180px;
}

.testimonial > img:not(.diamond-divider) {
  width: 100%;
}

.testimonial h3 {
  color: var(--turquoise);
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  margin: 24px 0 14px;
  text-transform: uppercase;
}

.testimonial blockquote {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.45;
  margin: 0 0 20px;
  text-align: left;
}

.diamond-divider--testimonial {
  margin-top: 34px;
  width: 78px;
}

.rules-promo {
  background: linear-gradient(#fff, #eefcff 76%, #b7ecf9);
  min-height: 700px;
  padding: 62px 40px 82px;
  position: relative;
  text-align: center;
}

.rules-promo h2 {
  margin: 0 auto 38px;
  max-width: 1120px;
}

.rules-promo > .button {
  align-items: center;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  min-height: 100px;
  padding: 20px 42px;
  width: min(360px, 100%);
}

.rules-promo__sparkle {
  right: 8%;
  top: 215px;
  width: 160px;
}

.rules-promo__terms {
  margin: 42px auto 0;
  max-width: 1280px;
}

.rules-promo__terms h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
  margin-bottom: 12px;
}

.rules-promo__terms p {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.25;
}

.rules-promo__release {
  font-weight: 600;
  margin: 38px auto 0;
}

/* Register */
.register-section {
  background-position: center top;
  background-size: cover;
  min-height: 1120px;
  overflow: hidden;
  padding: 120px 0 100px;
  position: relative;
}

.register-section__cloud {
  left: 6%;
  top: 18px;
  width: 170px;
}

.register-section__sparkle {
  bottom: 35px;
  right: 5%;
  width: 100px;
}

.register-section h2 {
  margin: 0 auto 70px;
  max-width: 1050px;
}

.registration-frame {
  background: var(--white);
  margin: 0 auto;
  max-width: 1080px;
  min-height: 620px;
  position: relative;
}

.registration-frame iframe {
  border: 0;
  display: block;
  height: 620px;
  width: 100%;
}

.registration-frame__fallback[hidden] {
  display: none;
}

/* Schedule */
.schedule-section {
  background-position: center top;
  background-size: cover;
  min-height: 1740px;
  overflow: hidden;
  padding: 120px 0 120px;
  position: relative;
}

.schedule-section__lightning {
  left: 8%;
  top: 16px;
  width: 90px;
}

.schedule-section__swoosh {
  bottom: 34px;
  right: 4%;
  width: 220px;
}

.schedule-section h2 {
  color: var(--white);
  margin-bottom: 60px;
  text-align: left;
}

.schedule-card {
  background: var(--white);
  border: 7px solid var(--white);
  margin: 0 auto;
  max-width: 1100px;
}

.schedule-notice {
  align-items: center;
  background: linear-gradient(90deg, #215bbb, #7a41d5);
  color: var(--white);
  display: grid;
  gap: 35px;
  grid-template-columns: 80px 1fr;
  min-height: 165px;
  padding: 28px 44px;
}

.schedule-notice__arrow {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.schedule-notice p {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.schedule-notice span:not(.schedule-notice__arrow) {
  font-size: 1rem;
}

.schedule-embed {
  border: 0;
  display: block;
  height: 760px;
  width: 100%;
}

/* Rules */
.rules-section {
  background-position: center top;
  background-size: cover;
  overflow: hidden;
  padding-top: 110px;
  position: relative;
}

.rules-section__moon {
  left: 5%;
  top: 330px;
  width: 170px;
}

.rules-section__cloud {
  bottom: -128px;
  right: 4%;
  top: auto;
  width: 230px;
}

.rules-download {
  min-height: 430px;
  text-align: center;
}

.rules-download h2 {
  margin: 0 auto 45px;
  max-width: 1050px;
}

.rules-download .button {
  align-items: center;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  min-height: 100px;
  padding: 20px 42px;
  width: min(360px, 100%);
}

.rules-registration {
  margin-left: calc(50% - 50vw);
  padding: 105px max(55px, calc((100vw - 1220px) / 2));
  position: relative;
  width: 100vw;
}

.rules-registration > h2 {
  color: var(--white);
  margin-bottom: 38px;
}

.rules-registration > p,
.registration-changes,
.rules-legal {
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  font-weight: 600;
  line-height: 1.42;
  margin: 0 auto 34px;
  max-width: 1120px;
}

.rules-registration > p strong,
.registration-changes strong {
  color: var(--turquoise);
}

.registration-changes {
  border-bottom: 4px solid var(--turquoise);
  border-top: 4px solid var(--turquoise);
  padding: 30px 0 24px;
}

.registration-changes h3 {
  color: var(--turquoise);
  font-size: clamp(1.2rem, 1.4vw, 1.45rem);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.registration-changes ul {
  margin: 0;
  padding-left: 24px;
}

.rules-legal {
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 42px;
}

.rules-callouts {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  margin: 70px auto 0;
  max-width: 1220px;
}

.rules-callouts article {
  background: var(--white);
  border: 3px solid rgba(255,255,255,.75);
  border-radius: 10px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 440px;
  padding: 38px 32px;
  text-align: center;
}

.rules-callouts article:nth-child(2) {
  background: var(--navy);
  border-color: var(--turquoise);
  color: var(--white);
}

.rules-callouts h3 {
  color: var(--navy);
  font-size: clamp(1.25rem, 1.5vw, 1.55rem);
  line-height: 1.05;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.rules-callouts article:nth-child(2) h3 {
  color: var(--turquoise);
}

.rules-callouts p {
  color: var(--royal);
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  font-weight: 700;
  line-height: 1.23;
  margin: 0;
}

.rules-callouts article:nth-child(2) p {
  color: var(--white);
}

.rules-card-divider {
  background: center / contain no-repeat url("../assets/5-Rules/DM_26WebsiteHandoff_DiamondDivider-Navy.webp");
  display: block;
  height: 34px;
  margin: 20px auto;
  width: 64px;
}

.rules-callouts article:nth-child(2) .rules-card-divider {
  background-image: url("../assets/5-Rules/DM_26WebsiteHandoff_DiamondDivider-Torquoise.webp");
}

.level-section,
.routine-section {
  padding: 125px 0;
}

.level-section > h2,
.routine-section > h2 {
  margin-bottom: 45px;
}

.level-section .section-intro,
.routine-section > p {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 auto 45px;
  max-width: 1080px;
  text-align: left;
}

.table-title {
  background: var(--navy);
  color: var(--white);
  font-family: "Swanza", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 400;
  margin: 65px 0 0;
  padding: 12px 24px;
  text-align: center;
  text-transform: uppercase;
}

.level-table article {
  border: 2px solid var(--navy);
  border-top: 0;
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 220px;
}

.level-table article > div,
.level-table article > p,
.level-table article > ul {
  margin: 0;
  padding: 30px;
}

.level-table article > div {
  border-right: 2px solid var(--navy);
}

.level-table h3,
.routine-grid h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.routine-grid {
  border-left: 2px solid var(--navy);
  border-top: 2px solid var(--navy);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 55px;
}

.routine-grid article {
  border-bottom: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  min-height: 190px;
  padding: 30px;
}

.general-divisions {
  margin-left: calc(50% - 50vw);
  min-height: 620px;
  padding: 100px max(55px, calc((100vw - 1220px) / 2));
  position: relative;
  width: 100vw;
}

.general-divisions__sparkle {
  left: 3%;
  top: 92px;
  width: 68px;
}

.general-divisions h2 {
  color: var(--white);
  text-align: left;
}

/* Join */
.join-section {
  background-position: center top;
  background-size: cover;
  min-height: 3040px;
  padding: 125px 0 160px;
  position: relative;
}

.join-section__cloud {
  left: 7%;
  top: -65px;
  width: 180px;
}

.join-section__sparkle {
  right: 2%;
  top: 345px;
  width: 74px;
}

.join-section__moon {
  bottom: 0;
  right: 4%;
  width: 210px;
}

.join-content > h2 {
  margin: 0 auto 40px;
  max-width: 1100px;
}

.join-content > p {
  color: var(--royal);
  font-size: 1.28rem;
  font-weight: 650;
  margin: 0 auto 10px;
  max-width: 1020px;
  text-align: center;
}

.join-content .join-lead {
  font-size: 1.45rem;
  margin-bottom: 32px;
}

.styled-form {
  background: rgba(255,255,255,.95);
  box-shadow: 0 20px 55px rgba(5,22,48,.14);
}

.join-form {
  display: grid;
  gap: 28px 24px;
  grid-template-columns: repeat(2, 1fr);
  margin: 90px auto 0;
  max-width: 1060px;
  padding: 70px 55px;
}

.styled-form label {
  color: var(--navy);
  display: grid;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

.styled-form label span {
  color: var(--royal);
}

.styled-form input,
.styled-form select,
.styled-form textarea {
  background: var(--white);
  border: 3px solid var(--royal);
  border-radius: 0;
  color: var(--navy);
  min-height: 62px;
  padding: 12px 16px;
  width: 100%;
}

.styled-form textarea {
  min-height: 430px;
  resize: vertical;
}

.styled-form input[type="file"] {
  padding: 12px;
}

.styled-form .wide,
.join-form > button {
  grid-column: 1 / -1;
}

.upload-notes {
  font-size: 0.84rem;
  font-weight: 600;
  margin: -8px 0 0;
}

.join-form > button {
  justify-self: start;
}

/* Live */
.live-section {
  background-position: center top;
  background-size: cover;
  color: var(--white);
  min-height: 1120px;
  padding: 115px 0 120px;
  position: relative;
}

.live-section__sparkle {
  width: 76px;
}

.live-section__sparkle--top {
  right: 14%;
  top: 20px;
}

.live-section__sparkle--bottom {
  bottom: 18px;
  left: 8%;
}

.live-section h2 {
  color: var(--white);
  margin-bottom: 70px;
}

.live-player {
  border: 4px solid rgba(255,255,255,.9);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(5,22,48,.35);
  display: block;
  margin: 48px auto 19px;
  max-width: 920px;
  overflow: hidden;
  position: relative;
}

.live-player::after {
  background: rgba(5,22,48,.2);
  content: "";
  inset: 0;
  position: absolute;
  transition: background 200ms ease;
}

.live-player:hover::after,
.live-player:focus-visible::after {
  background: rgba(5,22,48,.05);
}

.live-player:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 7px;
}

.live-player img {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}

.live-player__button {
  align-items: center;
  animation: live-pulse 2.6s ease-in-out infinite;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(14,204,238,.5), 0 12px 35px rgba(5,22,48,.35);
  color: var(--navy);
  display: flex;
  font-size: .78rem;
  font-weight: 850;
  height: 105px;
  justify-content: center;
  left: 50%;
  letter-spacing: .08em;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  width: 105px;
  z-index: 2;
}

.live-player:hover .live-player__button,
.live-player:focus-visible .live-player__button {
  background: var(--turquoise);
  transform: translate(-50%, -50%) scale(1.05);
}

.live-note {
  color: #b7ecf9;
  font-size: .88rem;
  margin: 0 0 .88rem;
  text-align: center;
}

@keyframes live-pulse {
  50% {
    box-shadow: 0 0 0 18px rgba(14,204,238,0), 0 12px 35px rgba(5,22,48,.35);
  }
}

/* Contact */
.contact-section {
  background-position: center top;
  background-size: cover;
  min-height: 1540px;
  padding: 115px 0 150px;
  position: relative;
}

.contact-section__lightning {
  left: 4%;
  top: 58px;
  width: 92px;
}

.contact-section__sparkle {
  right: 7%;
  top: 140px;
  width: 95px;
}

.contact-content h2 {
  margin: 0 auto 90px;
  max-width: 1080px;
  position: relative;
  z-index: 3;
}

.contact-form {
  box-shadow: none;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0;
}

.contact-form label {
  margin-bottom: 28px;
}

.contact-form textarea {
  min-height: 600px;
}

/* Shared Instagram, newsletter, footer */
.instagram-strip {
  background: linear-gradient(#fff 0%, #fff 20%, #5796dd 100%);
  overflow: hidden;
  padding: 65px 0 0;
}

.instagram-strip__title {
  display: block;
  font-family: "Swanza", Georgia, serif;
  font-size: clamp(2.7rem, 4.6vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 auto 45px;
  text-align: center;
  text-transform: uppercase;
}

.instagram-strip__title span {
  text-decoration: underline;
}

.instagram-strip__viewport {
  overflow: hidden;
  width: 100%;
}

.instagram-strip__track {
  animation: social-marquee 34s linear infinite;
  display: flex;
  width: max-content;
}

.instagram-strip__viewport:hover .instagram-strip__track {
  animation-play-state: paused;
}

.instagram-strip__group {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, clamp(190px, 18vw, 270px));
  padding: 0 7px 30px;
}

.instagram-strip__group a {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 300ms ease, transform 300ms ease;
}

.instagram-strip__group img {
  height: 100%;
  object-fit: cover;
  transition: filter 400ms ease, transform 500ms cubic-bezier(.16,1,.3,1);
  width: 100%;
}

.instagram-strip__group a:hover {
  box-shadow: 0 14px 30px rgba(0,20,60,.4);
  transform: translateY(-6px) scale(1.03);
  z-index: 2;
}

.instagram-strip__group a:hover img {
  filter: saturate(1.15) contrast(1.04);
  transform: scale(1.07);
}

@keyframes social-marquee {
  to {
    transform: translateX(-50%);
  }
}

.newsletter {
  background: var(--ink);
  min-height: 150px;
  padding: 42px 35px;
}

.newsletter form {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: auto minmax(280px, 1fr) 54px;
  margin: 0 auto;
  max-width: 1220px;
}

.newsletter label {
  color: var(--white);
  font-family: "Swanza", Georgia, serif;
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  text-transform: uppercase;
}

.newsletter input {
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--white);
  border-radius: 0;
  color: var(--white);
  height: 56px;
  padding: 0 8px;
  text-transform: uppercase;
  width: 100%;
}

.newsletter input::placeholder {
  color: var(--white);
  opacity: 1;
}

.newsletter button {
  align-items: center;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 1.8rem;
  height: 46px;
  justify-content: center;
  padding: 0 0 3px;
  width: 46px;
}

.form-status {
  font-size: 0.8rem;
  margin: 12px auto 0;
  max-width: 1220px;
}

.newsletter .form-status {
  color: var(--white);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  min-height: 440px;
  padding: 85px 54px 65px;
}

.site-footer__inner {
  align-items: start;
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, 1fr) 280px;
  margin: 0 auto;
  max-width: 1220px;
}

.site-footer__inner > * {
  min-width: 0;
}

.footer-brand > img {
  max-width: 520px;
  width: 100%;
}

.footer-brand > p {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 42px 0 18px;
  text-transform: uppercase;
}

.sponsors {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.sponsors img {
  max-height: 54px;
  max-width: 150px;
}

.footer-links {
  display: grid;
  gap: 0.82rem;
}

.footer-links a {
  font-size: clamp(1rem, 1vw, 1.15rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .site-header__inner {
    min-height: 160px;
    padding: 0 24px;
  }

  .brand {
    width: 220px;
  }

  .site-header.is-scrolled .site-header__inner {
    min-height: 82px;
  }

  .site-header.is-scrolled .brand {
    width: 185px;
  }

  .primary-nav {
    gap: 11px;
  }

  .primary-nav a {
    font-size: 0.66rem;
  }

  .page-hero h1 {
    font-size: 6.8vw;
  }

  .home-event-list article {
    grid-template-columns: 1fr 250px;
  }

  .director-grid h3 {
    font-size: 1.7rem;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr) 230px;
  }
}

@media (max-width: 800px) {
  .content-wrap,
  .narrow-copy,
  .page-hero__content {
    width: min(calc(100% - 36px), 1220px);
  }

  .site-header__inner {
    min-height: 90px;
    padding: 0 20px;
  }

  .brand {
    width: 185px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    align-items: stretch;
    background: var(--navy-deep);
    display: none;
    gap: 0;
    left: 0;
    padding: 18px 24px 28px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    border-bottom: 1px solid rgba(255,255,255,.16);
    font-size: 0.82rem;
    padding: 13px 0;
  }

  .primary-nav a::after {
    bottom: -1px;
  }

  .site-header.is-scrolled .site-header__inner {
    min-height: 76px;
  }

  .site-header.is-scrolled .brand {
    width: 155px;
  }

  .page-hero h1 {
    font-size: 10vw;
  }

  .section-title,
  .rules-promo h2,
  .register-section h2,
  .schedule-section h2,
  .rules-content h2,
  .join-content h2,
  .live-section h2,
  .contact-content h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    overflow-wrap: anywhere;
  }

  .registration-banner__button {
    bottom: 8%;
    padding: 11px 15px;
  }

  .tour-dates {
    min-height: 0;
    padding: 90px 0;
  }

  .tour-dates__lightning,
  .tour-dates__swoosh,
  .page-hero__ornament,
  .about-intro__sparkle,
  .directors__cloud,
  .testimonials__moon,
  .rules-promo__sparkle,
  .register-section__cloud,
  .register-section__sparkle,
  .schedule-section__lightning,
  .schedule-section__swoosh,
  .rules-section__moon,
  .rules-section__cloud,
  .general-divisions__sparkle,
  .join-section__cloud,
  .join-section__moon,
  .join-section__sparkle,
  .live-section__sparkle,
  .contact-section__lightning,
  .contact-section__sparkle {
    opacity: .55;
    width: 80px;
  }

  .page-hero__ornament--rules,
  .page-hero__ornament--contact,
  .general-divisions__sparkle,
  .live-section__sparkle {
    width: 54px;
  }

  .page-hero__ornament--contact {
    right: 6%;
    top: 32%;
  }

  .live-section__sparkle--top {
    right: 5%;
  }

  .live-player__button {
    height: 78px;
    width: 78px;
  }

  .about-intro__sparkle {
    left: 12px;
    top: 0;
    width: 54px;
  }

  .rules-promo__sparkle {
    right: 4px;
    width: 92px;
  }

  .rules-section__moon {
    left: 8px;
    top: 500px;
    width: 88px;
  }

  .rules-section__cloud {
    bottom: -25px;
    right: -12px;
    top: auto;
    width: 120px;
  }

  .register-section__sparkle {
    bottom: 8px;
    right: 0;
    width: 46px;
  }

  .register-section__cloud {
    left: 8px;
    top: 8px;
    width: 88px;
  }

  .schedule-section__swoosh {
    bottom: 0;
    right: 4px;
    width: 46px;
  }

  .tour-dates__lightning {
    left: 12px;
    top: 16px;
    width: 64px;
  }

  .schedule-section__lightning {
    left: 12px;
    top: 16px;
    width: 58px;
  }

  .general-divisions__sparkle {
    left: 4px;
    top: 25px;
    width: 54px;
  }

  .join-section__sparkle {
    right: 10px;
    top: 690px;
    width: 46px;
  }

  .join-section__moon {
    right: -18px;
    width: 54px;
  }

  .contact-section__lightning {
    left: -18px;
    top: -15px;
    width: 54px;
  }

  .home-event-list article {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .home-event-list h3 {
    font-size: 1.9rem;
  }

  .home-event-list p {
    font-size: 1.2rem;
  }

  .quick-links {
    gap: 12px;
    left: auto;
    margin-top: 130px;
    transform: none;
    width: 100%;
  }

  .about-intro,
  .directors,
  .testimonials,
  .register-section,
  .schedule-section,
  .join-section,
  .live-section,
  .contact-section {
    min-height: 0;
  }

  .about-intro,
  .directors,
  .testimonials,
  .register-section,
  .schedule-section,
  .join-section,
  .live-section,
  .contact-section,
  .level-section,
  .routine-section {
    padding-block: 80px;
  }

  .director-grid,
  .rules-callouts,
  .join-form {
    grid-template-columns: 1fr;
  }

  .director-grid {
    gap: 80px;
  }

  .testimonial {
    margin-block: 70px;
  }

  .schedule-notice {
    gap: 15px;
    grid-template-columns: 45px 1fr;
    padding: 20px;
  }

  .schedule-notice__arrow {
    font-size: 3rem;
  }

  .schedule-notice p {
    font-size: 1.15rem;
  }

  .schedule-embed {
    height: 720px;
  }

  .rules-registration,
  .general-divisions {
    padding-inline: 20px;
  }

  .rules-callouts article {
    min-height: 0;
  }

  .level-table article {
    grid-template-columns: 1fr;
  }

  .level-table article > div {
    border-bottom: 2px solid var(--navy);
    border-right: 0;
  }

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

  .join-form {
    gap: 20px;
    padding: 38px 20px;
  }

  .styled-form .wide,
  .join-form > button {
    grid-column: auto;
  }

  .contact-form textarea,
  .styled-form textarea {
    min-height: 360px;
  }

  .instagram-strip {
    padding: 44px 0 0;
  }

  .instagram-strip__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .instagram-strip__group {
    gap: 8px;
    grid-template-columns: repeat(5, 175px);
    padding: 0 4px 22px;
  }

  .newsletter form {
    gap: 18px;
    grid-template-columns: 1fr 46px;
  }

  .newsletter label {
    grid-column: 1 / -1;
    text-align: center;
  }

  .site-footer {
    min-height: 0;
    padding: 60px 24px;
  }

  .site-footer__inner {
    gap: 55px;
    grid-template-columns: 1fr;
  }

  .footer-brand > img {
    max-width: 430px;
  }
}

/* Restrained motion enhancement. Decorative movement is intentionally capped
   to a few pixels so the supplied chrome cannot drift into page content. */
.scroll-progress {
  bottom: 0;
  height: 3px;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.scroll-progress__bar {
  background: linear-gradient(90deg, var(--turquoise), #c4f5ff);
  box-shadow: 0 0 14px rgba(14,204,238,.9);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  width: 100%;
}

.motion-ready .tour-dates__lightning,
.motion-ready .tour-dates__swoosh,
.motion-ready .page-hero__ornament,
.motion-ready .about-intro__sparkle,
.motion-ready .directors__cloud,
.motion-ready .testimonials__moon,
.motion-ready .rules-promo__sparkle,
.motion-ready .register-section__cloud,
.motion-ready .register-section__sparkle,
.motion-ready .schedule-section__lightning,
.motion-ready .schedule-section__swoosh,
.motion-ready .rules-section__moon,
.motion-ready .rules-section__cloud,
.motion-ready .general-divisions__sparkle,
.motion-ready .join-section__cloud,
.motion-ready .join-section__moon,
.motion-ready .join-section__sparkle,
.motion-ready .live-section__sparkle,
.motion-ready .contact-section__lightning,
.motion-ready .contact-section__sparkle {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.motion-ready .tour-dates__lightning img,
.motion-ready .schedule-section__lightning img,
.motion-ready .contact-section__lightning img {
  animation: chrome-float 6.8s ease-in-out infinite alternate;
  transform-origin: center;
}

.motion-ready .tour-dates__swoosh img,
.motion-ready .schedule-section__swoosh img,
.motion-ready .directors__cloud img,
.motion-ready .register-section__cloud img,
.motion-ready .rules-section__cloud img,
.motion-ready .join-section__cloud img,
.motion-ready .testimonials__moon img,
.motion-ready .rules-section__moon img,
.motion-ready .join-section__moon img {
  animation: chrome-float 8.5s ease-in-out -2.5s infinite alternate;
  transform-origin: center;
}

.motion-ready .about-intro__sparkle img,
.motion-ready .page-hero__ornament img,
.motion-ready .rules-promo__sparkle img,
.motion-ready .general-divisions__sparkle img,
.motion-ready .register-section__sparkle img,
.motion-ready .join-section__sparkle img,
.motion-ready .live-section__sparkle img,
.motion-ready .contact-section__sparkle img {
  animation: sparkle-breathe 4.8s ease-in-out infinite;
}

@keyframes chrome-float {
  from { transform: translate3d(-2px, -3px, 0) rotate(-0.8deg); }
  to { transform: translate3d(2px, 3px, 0) rotate(0.8deg); }
}

@keyframes sparkle-breathe {
  0%, 100% { filter: brightness(1); transform: scale(0.98) rotate(-1deg); }
  50% { filter: brightness(1.12); transform: scale(1.035) rotate(1deg); }
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 650ms ease var(--reveal-delay, 0ms),
              transform 650ms cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.magnetic-control {
  transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0);
  transition: transform 180ms ease, background-color 180ms ease;
  will-change: transform;
}

.tilt-card {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-origin: center;
  transition: transform 180ms ease;
  will-change: transform;
}

.pointer-hero img {
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.012);
  transition: transform 240ms ease-out;
  will-change: transform;
}

.pointer-hero {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }

  .instagram-strip__track {
    animation: none;
  }

  .instagram-strip__group a:hover {
    transform: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
