:root {
  --jively-midnight-black: #0B0B0B;
  --jively-deep-navy: #081726;
  --jively-championship-gold: #C8A55B;
  --jively-warm-ivory: #F7F5F0;
  --jively-graphite-grey: #3A3A3A;
  --jively-champagne-gold: #EAC97E;
  --jively-soft-gold: #F3DFA2;
  --jively-muted-ivory: #CFC7B6;
  --jively-border-navy: #243748;
  --surface-dark: #0B0B0B;
  --surface-navy: #081726;
  --surface-navy-soft: #101F30;
  --surface-ivory: #F7F5F0;
  --surface-ivory-soft: #EFE8DA;
  --accent-gold: #C8A55B;
  --accent-gold-light: #EAC97E;
  --text-primary-dark: #F7F5F0;
  --text-secondary-dark: #CFC7B6;
  --text-primary-light: #0B0B0B;
  --text-secondary-light: #3A3A3A;
  --border-gold-soft: rgba(200, 165, 91, 0.28);
  --shadow-premium: 0 24px 80px rgba(0, 0, 0, 0.35);

  --bg: var(--jively-midnight-black);
  --surface: #101820;
  --surface-2: #132231;
  --card: rgba(247, 245, 240, 0.055);
  --card-strong: rgba(247, 245, 240, 0.09);
  --border: rgba(200, 165, 91, 0.24);
  --text: var(--jively-warm-ivory);
  --muted: var(--jively-muted-ivory);
  --gold: var(--jively-championship-gold);
  --gold-soft: var(--jively-soft-gold);
  --ink: #06101a;
  --radius: 8px;
  --shadow: var(--shadow-premium);
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 22% 12%, rgba(200, 165, 91, 0.13), transparent 28rem),
    linear-gradient(180deg, rgba(8, 23, 38, 0.98), rgba(11, 11, 11, 1) 32rem),
    var(--bg);
  color: var(--text);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a {
  color: var(--gold-soft);
  text-decoration: none;
}

a:hover {
  color: var(--jively-champagne-gold);
}

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

h1,
h2,
.editorial {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

h3,
h4 {
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--gold);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section[id] {
  scroll-margin-top: 96px;
}

.section-compact {
  padding: clamp(2.8rem, 5vw, 4.8rem) 0;
}

.ivory-section {
  background:
    linear-gradient(rgba(247, 245, 240, 0.97), rgba(247, 245, 240, 0.97)),
    radial-gradient(circle at 18% 20%, rgba(200, 165, 91, 0.12), transparent 26rem),
    var(--surface-ivory);
  color: var(--ink);
}

.ivory-section p,
.ivory-section .muted,
.ivory-section .section-lead {
  color: #4d4a43;
}

.ivory-section a:not(.btn) {
  color: #6f531c;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.ivory-section a:not(.btn):hover {
  color: #4b3712;
}

.navy-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 165, 91, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(8, 23, 38, 0.96), rgba(11, 11, 11, 0.98)),
    var(--jively-deep-navy);
}

.pattern-section {
  position: relative;
  overflow: hidden;
}

.pattern-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 30%, rgba(200, 165, 91, 0.18), transparent 24rem),
    linear-gradient(130deg, transparent 0 42%, rgba(200, 165, 91, 0.12) 42.2% 42.6%, transparent 42.8% 100%),
    linear-gradient(28deg, transparent 0 56%, rgba(234, 201, 126, 0.08) 56.2% 56.6%, transparent 56.8% 100%);
  opacity: 0.55;
}

.pattern-section > .container {
  position: relative;
  z-index: 1;
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 23, 38, 0.92);
  border-bottom: 1px solid rgba(200, 165, 91, 0.2);
  backdrop-filter: blur(18px);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: clamp(110px, 10vw, 150px);
  height: auto;
  max-height: 68px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-item {
  position: relative;
}

.main-nav a,
.mobile-nav a {
  color: rgba(247, 245, 240, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 0.62rem;
  border-radius: 4px;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-nav a.active {
  color: var(--gold-soft);
  background: rgba(247, 245, 240, 0.06);
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  min-width: 240px;
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem;
  border: 1px solid rgba(200, 165, 91, 0.26);
  border-radius: var(--radius);
  background: rgba(8, 23, 38, 0.98);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.35rem);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown a {
  display: block;
  padding: 0.72rem 0.8rem;
  white-space: nowrap;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1rem;
  border: 1px solid rgba(200, 165, 91, 0.7);
  border-radius: 4px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 245, 240, 0.2);
  border-radius: 4px;
  background: rgba(247, 245, 240, 0.04);
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(200, 165, 91, 0.18);
  background: rgba(8, 23, 38, 0.98);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  border-bottom: 1px solid rgba(247, 245, 240, 0.08);
  border-radius: 0;
  padding: 1rem 24px;
}

.mobile-nav .mobile-subnav {
  padding-left: 42px;
  font-size: 0.72rem;
  color: rgba(247, 245, 240, 0.66);
  background: rgba(0, 0, 0, 0.12);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 84px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--jively-deep-navy);
}

.hero.hero-image,
.page-hero.hero-image {
  background-size: cover;
  background-position: center;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 23, 38, 0.94), rgba(8, 23, 38, 0.68) 46%, rgba(11, 11, 11, 0.36)),
    linear-gradient(0deg, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.12) 45%, rgba(11, 11, 11, 0.38));
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 165, 91, 0.75), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, 100%);
  padding: clamp(2.6rem, 7vh, 5.2rem) 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, 100%);
  padding: clamp(2.4rem, 6vh, 4.4rem) 0;
}

.hero-wordmark {
  font-family: "Oregano", cursive;
  font-size: clamp(4.8rem, 14vw, 9.5rem);
  line-height: 0.76;
  color: var(--text);
  margin-bottom: 1.2rem;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
}

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.9rem;
}

.eyebrow::before,
.label::before {
  content: "";
  width: 2.1rem;
  height: 1px;
  background: var(--gold);
  margin-right: 0.75rem;
}

.hero-title,
.page-hero h1 {
  margin-bottom: 1.1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5.4vw, 5.6rem);
}

.page-hero h1 {
  font-size: clamp(2.05rem, 3.7vw, 4.35rem);
  max-width: 790px;
}

.hero-logo-title {
  margin-bottom: 1.1rem;
}

.hero-logo-title img {
  width: min(360px, 80vw);
  height: auto;
  max-height: 202px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.42));
}

.hero-kicker {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle,
.page-hero p {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  max-width: 680px;
  color: rgba(247, 245, 240, 0.84);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

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

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-outline {
  border-color: rgba(247, 245, 240, 0.56);
  color: var(--text);
  background: rgba(247, 245, 240, 0.04);
}

.btn-dark {
  background: var(--ink);
  color: var(--jively-warm-ivory);
}

.btn-small {
  min-height: 40px;
  padding: 0.65rem 0.95rem;
  font-size: 0.74rem;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2.8rem;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.center .label {
  justify-content: center;
}

.section-header.center .label::after {
  content: "";
  width: 2.1rem;
  height: 1px;
  background: var(--gold);
  margin-left: 0.75rem;
}

.section-header h2,
.split-copy h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  max-width: 720px;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.ivory-section .card {
  background: rgba(8, 23, 38, 0.045);
  border-color: rgba(8, 23, 38, 0.16);
}

.card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
}

.card-link {
  display: block;
  color: inherit;
}

.card-link:hover {
  color: inherit;
  transform: translateY(-3px);
}

.card p {
  font-size: 0.93rem;
  margin-bottom: 0;
}

.card-icon {
  position: relative;
  display: inline-block;
  width: 74px;
  height: 74px;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(200, 165, 91, 0.55);
  border-radius: 8px;
  background: radial-gradient(circle at 35% 30%, rgba(243, 223, 162, 0.18), rgba(200, 165, 91, 0.08) 42%, rgba(8, 23, 38, 0.92) 70%);
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.card-icon::before,
.card-icon::after {
  display: none;
}

.icon-events { background-image: url("../assets/brand/icons-generated/jively-icon-events.webp"); }
.icon-studios { background-image: url("../assets/brand/icons-generated/jively-icon-studios.webp"); }
.icon-dancewear { background-image: url("../assets/brand/icons-generated/jively-icon-dancewear.webp"); }
.icon-academy { background-image: url("../assets/brand/icons-generated/jively-icon-academy.webp"); }
.icon-productions { background-image: url("../assets/brand/icons-generated/jively-icon-productions.webp"); }
.icon-athlete { background-image: url("../assets/brand/icons-generated/jively-icon-athlete.webp"); }

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  padding: 0;
}

.feature-card-media {
  min-height: 220px;
  background: var(--surface-2) center/cover no-repeat;
  position: relative;
}

.feature-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 38, 0.05), rgba(8, 23, 38, 0.72));
}

.feature-card-body {
  padding: 1.35rem;
}

.tag-row,
.stat-row,
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag,
.status-tag,
.stat-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(200, 165, 91, 0.34);
  border-radius: 4px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-card {
  border-left: 3px solid var(--gold);
}

.stat-card strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-source {
  display: block;
  margin-top: 0.55rem;
  color: rgba(247, 245, 240, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ivory-section .stat-source {
  color: rgba(6, 16, 26, 0.5);
}

.ivory-section .stat-card strong {
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
}

.split.reverse .split-copy {
  order: 2;
}

.image-panel {
  min-height: 420px;
  border-radius: var(--radius);
  background: var(--surface-2) center/cover no-repeat;
  border: 1px solid rgba(200, 165, 91, 0.24);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.global-pathway-panel img {
  object-fit: contain;
  padding: clamp(1rem, 3vw, 2rem);
  background: #081726;
}

.pathway-ladder {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  counter-reset: ladder;
}

.ladder-step {
  min-height: 150px;
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(247, 245, 240, 0.055);
}

.ladder-step strong {
  display: block;
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.archive-card {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
}

.archive-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(8, 23, 38, 0.08);
}

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

.archive-card-body {
  padding: 1.2rem;
}

.archive-card h3,
.archive-card p {
  margin-bottom: 0.4rem;
}

.partner-tier {
  margin-top: 2rem;
}

.sponsor-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.4rem;
}

.sponsor-rail .logo-tile,
.sponsor-rail .card {
  scroll-snap-align: start;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: journey;
}

.journey-step {
  counter-increment: journey;
}

.journey-step::before {
  content: counter(journey, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.segment-cta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(247, 245, 240, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.checkbox-label input {
  width: auto;
  min-height: 0;
  margin-top: 0.28rem;
}

.form-note {
  margin: 0.5rem 0 0 1.8rem;
  font-size: 0.78rem;
  color: rgba(247, 245, 240, 0.68);
}

.form-alert {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
}

.form-alert.success {
  border: 1px solid rgba(118, 190, 142, 0.55);
  background: rgba(118, 190, 142, 0.14);
  color: #d9f5df;
}

.form-alert.error {
  border: 1px solid rgba(220, 110, 110, 0.55);
  background: rgba(220, 110, 110, 0.14);
  color: #ffd9d9;
}

.quote-panel {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(200, 165, 91, 0.38);
  border-bottom: 1px solid rgba(200, 165, 91, 0.38);
}

.quote-panel p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 1.12;
  color: var(--text);
}

.ivory-section .quote-panel p {
  color: var(--ink);
}

.page-hero {
  position: relative;
  min-height: min(560px, calc(100svh - 84px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--jively-deep-navy);
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(200, 165, 91, 0.18);
}

.timeline-item strong {
  color: var(--gold-soft);
}

.list-check {
  display: grid;
  gap: 0.7rem;
}

.list-check li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--muted);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--gold);
  background: rgba(200, 165, 91, 0.2);
  transform: rotate(45deg);
}

.ivory-section .list-check li {
  color: #4d4a43;
}

.ticket-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.ticket-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.ticket-table th,
.ticket-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(200, 165, 91, 0.18);
  text-align: left;
}

.ticket-table th {
  background: rgba(200, 165, 91, 0.16);
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticket-table td {
  color: var(--text);
}

.ivory-section .ticket-table th {
  background: rgba(200, 165, 91, 0.18);
  color: #765c25;
}

.ivory-section .ticket-table td {
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.contact-detail {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(200, 165, 91, 0.18);
}

.contact-detail strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(247, 245, 240, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  border-radius: 4px;
  border: 1px solid rgba(200, 165, 91, 0.28);
  background: rgba(247, 245, 240, 0.07);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(200, 165, 91, 0.42);
  outline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
}

.logo-tile {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid rgba(200, 165, 91, 0.22);
  border-radius: var(--radius);
  background: rgba(247, 245, 240, 0.06);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.logo-tile img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

.partner-logo-card {
  display: flex;
  flex-direction: column;
}

.partner-card-logo {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(8, 23, 38, 0.12);
}

.partner-card-logo.logo-on-dark {
  background: #081726;
  border-color: rgba(200, 165, 91, 0.24);
}

.partner-card-logo img {
  max-height: 76px;
  width: auto;
  object-fit: contain;
}

.ivory-section .logo-tile {
  background: rgba(8, 23, 38, 0.045);
  border-color: rgba(8, 23, 38, 0.14);
  color: var(--ink);
}

.accent-banner {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, var(--gold), var(--jively-champagne-gold));
  color: var(--ink);
}

.accent-banner h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 0.8rem;
}

.accent-banner p {
  color: rgba(6, 16, 26, 0.78);
}

.notice {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(200, 165, 91, 0.34);
  border-radius: var(--radius);
  background: rgba(200, 165, 91, 0.1);
  color: var(--muted);
}

#back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 165, 91, 0.5);
  border-radius: 4px;
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 90;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#site-footer {
  background: #05080d;
  border-top: 1px solid rgba(200, 165, 91, 0.22);
  padding: 4rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.55fr) repeat(4, minmax(130px, 1fr));
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.footer-brand img {
  width: min(180px, 100%);
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 360px;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-social a,
.footer-col a {
  color: rgba(247, 245, 240, 0.68);
  font-size: 0.88rem;
}

.footer-social a:hover,
.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-col h4 {
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.footer-col li,
.footer-col p {
  margin-bottom: 0.65rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(247, 245, 240, 0.08);
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(247, 245, 240, 0.44);
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pathway-ladder,
  .segment-cta,
  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: calc(100svh - 84px);
  }

  .hero-content {
    padding: clamp(2rem, 6vh, 3.5rem) 0;
  }

  .page-hero-content {
    padding: clamp(1.45rem, 4vh, 2.5rem) 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .archive-grid,
  .split,
  .split.reverse,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: 0;
  }

  .image-panel {
    min-height: 320px;
  }

  .pathway-ladder,
  .segment-cta,
  .step-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-cta {
    display: none;
  }

  .site-logo img {
    width: 118px;
    max-height: 60px;
  }

  .hero-wordmark {
    font-size: clamp(4.4rem, 25vw, 6.2rem);
  }

  .hero-logo-title img {
    width: min(288px, 78vw);
    max-height: 178px;
  }

  .hero-kicker {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
  }

  .hero-subtitle,
  .page-hero p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .page-hero h1 {
    font-size: clamp(1.68rem, 9vw, 2.3rem);
  }

  .button-row {
    gap: 0.65rem;
    margin-top: 1.35rem;
  }

  .btn {
    min-height: 44px;
    padding: 0.68rem 1rem;
  }

  .button-row .btn {
    width: 100%;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .ticket-table {
    min-width: 0;
  }

  .ticket-table thead {
    display: none;
  }

  .ticket-table,
  .ticket-table tbody,
  .ticket-table tr,
  .ticket-table td {
    display: block;
    width: 100%;
  }

  .ticket-table tr {
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(200, 165, 91, 0.2);
  }

  .ticket-table td {
    display: grid;
    grid-template-columns: minmax(7.5rem, 42%) 1fr;
    gap: 0.7rem;
    padding: 0.45rem 0.9rem;
    border-bottom: 0;
  }

  .ticket-table td::before {
    color: #765c25;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .ticket-table td:nth-child(1)::before { content: "Ticket"; }
  .ticket-table td:nth-child(2)::before { content: "Adult"; }
  .ticket-table td:nth-child(3)::before { content: "Concession / U16"; }
  .ticket-table td:nth-child(4)::before { content: "Notes"; }

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