:root {
  --color-sky-deep: #0a3b4b;
  --color-predawn: #102b39;
  --color-predawn-soft: #183f4e;
  --color-sunrise: #f4b544;
  --color-sunrise-dark: #c17604;
  --color-balloon-coral: #ca4f42;
  --color-vineyard: #4f6d4d;
  --color-wheat: #f5ecdd;
  --color-cloud: #f4f7f4;
  --color-charcoal: #1d292d;
  --color-muted: #5b686c;
  --color-white: #fffefa;
  --color-line: #d8ddd9;
  --shadow-soft: 0 24px 65px rgb(15 43 54 / 12%);
  --shadow-card: 0 12px 34px rgb(15 43 54 / 9%);
  --radius-small: 0.55rem;
  --radius-medium: 1.1rem;
  --radius-large: 2rem;
  --radius-balloon: 50% 50% 42% 42% / 48% 48% 55% 55%;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: var(--theme_font_body, Arial), sans-serif;
  --shell: min(1160px, calc(100vw - 2rem));
  --section-space: clamp(4rem, 8vw, 7.5rem);
}

/* WordPress and Koinos integration */
.primary-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu li {
  margin: 0;
}

.primary-menu .current-menu-item > a::after,
.primary-menu .current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.menu-is-open {
  overflow: hidden;
}

.mobile-menu-close,
.nav-wrap .mobile-nav-contact {
  display: none;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.organization-grid .container,
.people-listings .container {
  width: var(--shell);
  max-width: none !important;
}

.sponsor-slide img,
.organization-card img {
  width: auto;
  max-width: 100%;
  max-height: 140px;
  margin-inline: auto;
  object-fit: contain;
}

@media (max-width: 820px) {
  .primary-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .primary-menu a {
    width: 100%;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

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

picture {
  display: block;
}

a {
  color: var(--color-sky-deep);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.17em;
}

a:hover {
  color: var(--color-balloon-coral);
}

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

:focus-visible {
  outline: 3px solid var(--color-sunrise);
  outline-offset: 4px;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.54rem, 7.38vw, 6.15rem);
}

h2 {
  font-size: clamp(1.85rem, 4.1vw, 3.49rem);
}

h3 {
  font-size: clamp(0.94rem, 1.64vw, 1.15rem);
  line-height: 1.2;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

/* Koinos's four-image grid is intentionally flush with adjacent blades. */
.section.content-image-grid {
  padding-block: 0;
}

/* Native Koinos Card Grid: the column setting controls standard cards. */
.card-grid__items,
.fact-grid {
  display: grid;
  grid-template-columns: repeat(var(--card-grid-columns, 3), minmax(0, 1fr));
  gap: 1rem;
}

.card-grid__items > article,
.fact-grid > article {
  display: flex;
  min-width: 0;
  min-height: 12rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.card-grid__items > article > picture,
.card-grid__items > article > picture img {
  display: block;
  width: 100%;
}

.card-grid__items > article > picture img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-grid__items > article > div,
.fact-grid > article > div {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1.35rem;
}

.card-grid__items h3,
.fact-grid h3 {
  margin: 0 0 0.65rem;
  font-size: 1.3rem;
}

.card-grid__items p:last-of-type,
.fact-grid p:last-of-type {
  margin-bottom: 0;
}

.card-grid__items .text-link,
.fact-grid .text-link {
  margin-top: auto;
}

.card-grid__items .card--dark,
.fact-grid .card--dark {
  border-color: var(--color-predawn);
  background: var(--color-predawn);
  color: var(--color-white);
}

.card-grid__items .card--highlight,
.fact-grid .card--highlight {
  border-color: var(--color-sunrise);
  background: var(--color-wheat);
}

.card-grid__items .card--empty,
.fact-grid .card--empty {
  border-style: dashed;
  box-shadow: none;
  color: var(--color-muted);
}

.section--wheat {
  background: var(--color-wheat);
}

.section--cloud {
  background: var(--color-cloud);
}

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

.section--predawn a:not(.button) {
  color: var(--color-sunrise);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-200%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-small);
  background: var(--color-white);
  color: var(--color-predawn);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow,
.utility-label {
  color: var(--color-balloon-coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section--predawn .eyebrow,
.page-title--night .eyebrow,
.hero-title .eyebrow {
  color: var(--color-sunrise);
}

.lead,
.section-intro,
.lead-copy {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.section-intro {
  max-width: 44rem;
  color: var(--color-muted);
}

.section--predawn .section-intro,
.heading-row--light .section-intro {
  color: #d5e0df;
}

.section-heading {
  max-width: 49rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .section-intro {
  margin-inline: auto;
}

.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.heading-row .section-heading {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button--small {
  min-height: 2.75rem;
  padding-inline: 1rem;
}

.button.button--sunrise,
.nav-wrap .mobile-nav-contact .button.is-primary {
  background: var(--color-sunrise);
  border-color: transparent;
  color: #1f2a2c !important;
}

.button.button--sunrise:hover,
.nav-wrap .mobile-nav-contact .button.is-primary:hover,
.nav-wrap .mobile-nav-contact .button.is-primary:focus {
  background: #ffd06f;
  color: #142328 !important;
}

.button.button--predawn {
  background: var(--color-predawn);
  color: var(--color-white) !important;
}

.button.button--predawn:hover {
  background: var(--color-balloon-coral);
  color: var(--color-white) !important;
}

.button.button--ghost {
  border-color: rgb(255 255 255 / 60%);
  color: var(--color-white) !important;
}

.button.button--ghost:hover {
  border-color: var(--color-sunrise);
  background: rgb(255 255 255 / 10%);
  color: var(--color-white) !important;
}

.button.button--outline {
  border-color: var(--color-sky-deep);
  color: var(--color-sky-deep) !important;
}

.button.button--outline:hover {
  background: var(--color-sky-deep);
  color: var(--color-white) !important;
}

.text-link,
.hero-text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  text-decoration: none;
}

.event-status {
  position: relative;
  z-index: 60;
  background: #f7c65e;
  color: #1e2b2f;
  font-size: 0.74rem;
}

.event-status__inner {
  display: flex;
  min-height: 2.5rem;
  align-items: center;
  gap: 0.7rem;
}

.event-status p {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.event-status p span {
  position: relative;
  padding-left: 1rem;
}

.event-status p span::before {
  position: absolute;
  left: 0;
  content: "•";
}

.event-status a {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  color: #1e2b2f;
  font-weight: 800;
  white-space: nowrap;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-vineyard);
  box-shadow: 0 0 0 4px rgb(79 109 77 / 20%);
}

.status-close {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.35rem;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  background: rgb(10 48 61 / 97%);
  color: var(--color-white);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: min(1360px, calc(100vw - 2rem));
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

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

.brand:hover {
  color: var(--color-white);
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 3.8rem;
  height: 4.45rem;
  border: 2px solid var(--color-sunrise);
  border-radius: var(--radius-balloon);
  background:
    linear-gradient(
      90deg,
      transparent 31%,
      var(--color-sunrise) 32% 35%,
      transparent 36% 64%,
      var(--color-sunrise) 65% 68%,
      transparent 69%
    ),
    linear-gradient(
      var(--color-balloon-coral) 0 34%,
      #f4c55a 35% 64%,
      #f7eee2 65%
    );
  overflow: visible;
}

.brand-mark::after {
  position: absolute;
  bottom: -0.38rem;
  left: 50%;
  width: 0.6rem;
  height: 0.42rem;
  transform: translateX(-50%);
  border: 2px solid var(--color-sunrise);
  border-top: 0;
  content: "";
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1;
}

.brand-copy__kicker {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 0.9;
}

.nav-wrap,
.nav-wrap nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-wrap {
  flex: 1;
  justify-content: flex-end;
  gap: 1rem;
}

.nav-wrap nav a {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.45rem 0.6rem;
  color: #edf5f4;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.nav-wrap nav a::after {
  position: absolute;
  right: 0.6rem;
  bottom: 0.25rem;
  left: 0.6rem;
  height: 2px;
  transform: scaleX(0);
  background: var(--color-sunrise);
  content: "";
  transition: transform 160ms ease;
}

.nav-wrap nav a:hover::after,
.nav-wrap nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-search {
  position: relative;
  flex: 0 0 auto;
}

.header-search summary {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
}

.header-search summary::-webkit-details-marker {
  display: none;
}

.header-search summary:hover,
.header-search[open] summary {
  border-color: var(--color-sunrise);
  background: rgb(255 255 255 / 9%);
}

.header-search__icon {
  font-size: 1.35rem;
  line-height: 1;
}

.header-search__panel {
  position: absolute;
  z-index: 100;
  top: calc(100% + 0.75rem);
  right: 0;
  display: grid;
  width: min(23rem, calc(100vw - 2rem));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  padding: 0.65rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.header-search__panel input {
  width: 100%;
  min-width: 0;
  height: 2.75rem;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-small);
  background: var(--color-white);
  color: var(--color-charcoal);
  font-size: 0.9rem;
}

.header-search__panel button {
  min-height: 2.75rem;
  margin: 0;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: var(--radius-small);
  background: var(--color-sunrise);
  color: var(--color-charcoal);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-wrap > .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 999px;
  background: transparent;
  color: var(--color-white);
  font-weight: 750;
}

.breadcrumbs {
  padding-block: 0.7rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.74rem;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: #8b9798;
  content: "/";
}

.breadcrumbs span {
  color: var(--color-muted);
}

.hero-title {
  position: relative;
  min-height: min(780px, calc(100svh - 7rem));
  overflow: hidden;
  background: var(--color-predawn);
  color: var(--color-white);
}

.hero-title__media,
.hero-title__media img,
.page-title__media,
.page-title__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title__media img {
  object-position: center 52%;
}

.hero-title__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(6 29 39 / 88%) 0,
      rgb(8 38 49 / 70%) 42%,
      rgb(8 39 49 / 12%) 72%
    ),
    linear-gradient(0deg, rgb(6 25 34 / 65%), transparent 45%);
}

.hero-title__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(780px, calc(100svh - 7rem));
  max-width: 44rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-block: clamp(2.5rem, 5vh, 4rem);
}

.hero-title h1 {
  max-width: 44rem;
  margin-bottom: 0.8rem;
  font-size: clamp(2.29rem, 6.64vw, 5.54rem);
}

.hero-title h1 em {
  color: var(--color-sunrise);
  font-style: italic;
}

.hero-title__name {
  margin-bottom: 0.2rem;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-weight: 750;
}

.hero-title__date {
  margin-bottom: 1rem;
  color: #d7e3e2;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-title__intro {
  max-width: 38rem;
  margin-bottom: 0.85rem;
  color: #edf4f2;
  font-size: clamp(1.03rem, 2.2vw, 1.28rem);
}

.free-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  color: var(--color-sunrise);
  font-weight: 800;
}

.free-note span {
  display: inline-grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-sunrise);
  color: var(--color-predawn);
}

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

.hero-text-link {
  color: var(--color-white);
}

.hero-text-link:hover {
  color: var(--color-sunrise);
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1rem;
  margin: 0;
  color: rgb(255 255 255 / 82%);
  font-size: 0.7rem;
}

.page-title {
  position: relative;
  width: 100%;
  min-height: 28rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-predawn);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
}

.page-title__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(6 29 39 / 88%),
      rgb(6 29 39 / 45%) 64%,
      transparent
    ),
    linear-gradient(0deg, rgb(6 29 39 / 74%), transparent 65%);
}

.page-title--night .page-title__overlay {
  background:
    radial-gradient(circle at 70% 50%, rgb(202 79 66 / 22%), transparent 28%),
    linear-gradient(
      90deg,
      rgb(9 22 34 / 95%),
      rgb(9 22 34 / 42%) 70%,
      transparent
    ),
    linear-gradient(0deg, rgb(9 22 34 / 70%), transparent 55%);
}

.page-title__content {
  position: relative;
  z-index: 2;
  padding-block: 5.5rem 4rem;
}

.page-title h1 {
  max-width: 57rem;
  margin-bottom: 1rem;
  font-size: clamp(2.62rem, 6.56vw, 5.58rem);
}

.page-title .lead {
  max-width: 45rem;
  margin: 0;
  color: #edf4f2;
}

.event-information {
  position: relative;
  z-index: 3;
  background: var(--color-wheat);
}

.event-information__grid {
  display: grid;
  grid-template-columns: 1.25fr 1.4fr 0.8fr;
  gap: 2rem;
  padding-block: 2.6rem;
}

.event-information__intro h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.event-information__intro p:last-child {
  margin: 0;
}

.event-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin: 0;
}

.event-facts div {
  border-left: 1px solid #c7bdad;
  padding-left: 1rem;
}

.event-facts dt {
  margin-bottom: 0.2rem;
  color: var(--color-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 0;
  font-weight: 750;
  line-height: 1.35;
}

.event-information__countdown {
  border-left: 1px solid #c7bdad;
  padding-left: 1.5rem;
}

.countdown {
  display: flex;
  gap: 1.5rem;
  margin-block: 0.4rem 0.8rem;
}

.countdown span {
  display: flex;
  flex-direction: column;
  color: var(--color-muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.countdown strong {
  color: var(--color-predawn);
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.quick-links {
  background:
    radial-gradient(circle at 12% 20%, rgb(244 181 68 / 12%), transparent 18%),
    var(--color-white);
}

.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}

.quick-link-card {
  display: grid;
  min-height: 7.4rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 1.2rem;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: background 160ms ease;
}

.quick-link-card:hover {
  background: var(--color-wheat);
  color: var(--color-charcoal);
}

.quick-link-card strong,
.quick-link-card small {
  display: block;
}

.quick-link-card small {
  margin-top: 0.2rem;
  color: var(--color-muted);
}

.quick-link-card > div,
.contact-route-grid a > div {
  display: contents;
}

.quick-link-card h3,
.quick-link-card p {
  grid-column: 2;
  margin: 0;
}

.quick-link-card p {
  margin-top: 0.2rem;
  color: var(--color-muted);
  font-size: 0.84rem;
}

.quick-link-card .card-icon {
  grid-column: 1;
  grid-row: 1 / 3;
}

.quick-link-card .arrow {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
}

.card-icon {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  background: #e3eee9;
  color: var(--color-vineyard);
  font-weight: 800;
}

.arrow {
  color: var(--color-balloon-coral);
  font-size: 1.25rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.2rem, 7vw, 6rem);
}

.split--wide {
  grid-template-columns: 0.85fr 1.15fr;
}

.split__content {
  max-width: 36rem;
}

.split__content h2 {
  margin-bottom: 1.3rem;
}

.split__media {
  overflow: hidden;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split__media--arched {
  border-radius: 45% 45% var(--radius-medium) var(--radius-medium) / 30% 30%
    var(--radius-medium) var(--radius-medium);
}

.split__media--arched img {
  aspect-ratio: 5 / 4;
}

.split__media--portrait {
  max-width: 27rem;
  justify-self: center;
}

.split__media--portrait img {
  aspect-ratio: 3 / 4;
}

.split__media--landscape img {
  aspect-ratio: 16 / 10;
}

.split--night {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: var(--radius-large);
  background: #0a2330;
}

.split--night .split__media {
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.split--night .split__media img {
  height: 100%;
  min-height: 32rem;
}

.split--night .split__content {
  padding: clamp(2rem, 6vw, 5rem);
}

.info-line {
  margin-block: 1.6rem;
  padding-block: 0.85rem;
  border-block: 1px solid rgb(255 255 255 / 18%);
  color: #d7e3e2;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.experience-card {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--color-predawn);
  color: var(--color-white);
}

.experience-card picture,
.experience-card img {
  width: 100%;
  height: 100%;
}

.experience-card img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.experience-card:hover img {
  transform: scale(1.025);
}

.experience-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgb(7 29 38 / 90%));
  content: "";
}

.experience-card > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
}

.experience-card span {
  color: var(--color-sunrise);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.experience-card h3 {
  margin: 0.35rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
}

.experience-card p {
  margin: 0;
  color: #e7eeed;
}

.experience-card--large {
  grid-row: 1 / 3;
}

.experience-card--night {
  grid-row: 1 / 3;
}

.experience-card--text {
  background: var(--color-wheat);
  color: var(--color-charcoal);
}

.experience-card--text::after {
  display: none;
}

.experience-card--text > div {
  position: static;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.experience-card--text p {
  color: var(--color-muted);
}

.experience-card--text a {
  margin-top: 1rem;
  font-weight: 800;
}

.schedule-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.day-tabs button,
.print-button {
  min-height: 2.75rem;
  border: 1px solid #bbc5c3;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-predawn);
  cursor: pointer;
  font-weight: 750;
}

.day-tabs button {
  padding: 0.55rem 1rem;
}

.day-tabs button.is-active {
  border-color: var(--color-predawn);
  background: var(--color-predawn);
  color: var(--color-white);
}

.print-button {
  padding: 0.55rem 1rem;
}

.event-list {
  display: grid;
  gap: 0.8rem;
}

.event-card {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.25rem;
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-sky-deep);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgb(15 43 54 / 5%);
}

.event-card[data-status="weather-dependent"] {
  border-left-color: var(--color-sunrise-dark);
}

.event-card[data-status="tentative"] {
  border-left-color: var(--color-balloon-coral);
}

.event-card[data-status="coming-soon"] {
  border-left-color: #70848a;
}

.event-card__date {
  display: flex;
  min-height: 5.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-small);
  background: var(--color-wheat);
  line-height: 1;
}

.event-card__date span {
  color: var(--color-balloon-coral);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.event-card__date strong {
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
}

.event-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0.5rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 500;
}

.event-card__time {
  margin-bottom: 0.25rem;
  color: var(--color-balloon-coral);
  font-weight: 800;
}

.event-card__location {
  color: var(--color-muted);
}

.event-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
}

.event-card__actions a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.83rem;
  font-weight: 800;
}

.status-chip {
  display: inline-flex;
  min-height: 1.8rem;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #e5ebea;
  color: #31474d;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: none;
}

.status-chip--weather-dependent {
  background: #fff0c9;
  color: #6e4700;
}

.status-chip--tentative {
  background: #f7dfdc;
  color: #843a32;
}

.status-chip--coming-soon {
  background: #e8ebec;
  color: #4a5c61;
}

.status-chip--cancelled {
  background: #8b2727;
  color: var(--color-white);
}

.status-key {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.9rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-line);
  padding-top: 1rem;
  font-size: 0.78rem;
}

.status-key__example {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-muted);
}

.fine-print,
.photo-credit,
.form-privacy {
  margin-top: 1.5rem;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.planning-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% -15%, rgb(244 181 68 / 18%), transparent 28%),
    var(--color-predawn);
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(var(--card-grid-columns, 3), minmax(0, 1fr));
  gap: 1px;
  background: rgb(255 255 255 / 17%);
}

.planning-grid article {
  min-height: 12rem;
  background: var(--color-predawn);
  padding: 1.4rem;
}

.planning-grid h3 {
  margin: 0.9rem 0 0.5rem;
}

.planning-grid p {
  margin: 0;
  color: #cddbd9;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-block: 0.7rem;
  padding-left: 1.6rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--color-balloon-coral);
  content: "✓";
  font-weight: 900;
}

.pilot-card {
  border-radius: var(--radius-medium);
  background: var(--color-white);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.pilot-card h3,
.person-card h2 {
  margin: 0.6rem 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
}

.pilot-card p {
  margin-bottom: 0.3rem;
}

.people-listings--pilot-cards .pilot-card {
  overflow: hidden;
  padding: 0;
}

.people-listings--pilot-cards .pilot-card__content {
  display: grid;
  min-height: 100%;
  box-sizing: border-box;
  align-content: start;
  justify-items: center;
  padding-block: 1.4rem;
  color: var(--color-charcoal);
  text-decoration: none;
}

.people-listings--pilot-cards a.pilot-card__content {
  transition: background-color 160ms ease;
}

.people-listings--pilot-cards a.pilot-card__content:hover {
  background: var(--color-wheat);
}

.people-listings--pilot-cards a.pilot-card__content:focus-visible {
  outline: 3px solid var(--color-sunrise);
  outline-offset: -4px;
}

.people-listings--pilot-cards .pilot-card .utility-label {
  width: 100%;
  box-sizing: border-box;
  margin: 0.9rem 0 0;
  padding-inline: 18px;
}

.people-listings--pilot-cards .pilot-card__media {
  display: grid;
  width: 100%;
  min-height: 5.3rem;
  place-items: center;
}

.people-listings--pilot-cards .pilot-card h3.headline-thumbnail-mobile {
  width: 100%;
  box-sizing: border-box;
  margin: 0.45rem 0 0;
  padding-inline: 18px;
}

.people-listings--pilot-cards .pilot-card__organization {
  width: 100%;
  box-sizing: border-box;
  margin: 0.35rem 0 0;
  padding-inline: 18px;
  color: var(--color-charcoal);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.people-listings--pilot-cards .people-listings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 2rem;
}

.people-listings--pilot-cards .people-listings-grid .pilot-card,
.people-listings--pilot-cards .people-listings-grid .pilot-card__content {
  height: 100%;
}

/* People detail pages use a compact, social-profile-style presentation. */
.single-person {
  background: var(--color-cloud);
  padding: 1.5rem 0 clamp(3rem, 7vw, 6rem);
}

.single-person .container {
  width: var(--shell);
  max-width: none !important;
}

.single-person .person-profile {
  max-width: 1080px;
  margin-inline: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  background: var(--color-white);
  padding: clamp(1.4rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
}

.single-person .person-profile > header h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.single-person .person-profile__category {
  margin: 0 0 0.75rem;
}

.single-person .person-profile__balloon-name {
  margin: 0.45rem 0 0;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2.3rem);
  font-weight: 500;
  line-height: 1.15;
}

.single-person .person-profile__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--color-predawn);
  font-weight: 800;
  text-decoration: none;
}

.single-person .person-profile__back-link:hover {
  color: var(--color-balloon-coral);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.single-person .person-profile__back-link:focus-visible {
  outline: 3px solid var(--color-sunrise);
  outline-offset: 4px;
}

.single-person .person-profile > header .position {
  margin: 0.8rem 0 0;
  color: var(--color-balloon-coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.single-person .person-profile > figure {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  margin: 1.5rem auto 0;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--color-wheat);
}

.single-person .person-profile > figure img {
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
}

.single-person .person-biography {
  max-width: 44rem;
}

.single-person .person-biography > :first-child {
  margin-top: 0;
}

.single-person .person-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-person .person-contact li {
  margin: 0;
}

.single-person .person-profile > section h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

@media (min-width: 821px) {
  .single-person .person-profile--has-image {
    display: grid;
    grid-template-areas:
      "profile-back profile-photo"
      "profile-header profile-photo"
      "profile-biography profile-photo"
      "profile-contact profile-photo"
      "profile-related profile-photo";
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    align-items: start;
    column-gap: clamp(2rem, 6vw, 5rem);
    row-gap: 1.25rem;
  }

  .single-person .person-profile--has-image > .person-profile__back-link {
    grid-area: profile-back;
  }

  .single-person .person-profile--has-image > header {
    grid-area: profile-header;
  }

  .single-person .person-profile--has-image > figure {
    grid-area: profile-photo;
    justify-self: end;
    margin: 0;
  }

  .single-person .person-profile--has-image > .person-biography {
    grid-area: profile-biography;
  }

  .single-person .person-profile--has-image > .person-contact {
    grid-area: profile-contact;
  }

  .single-person .person-profile--has-image > section {
    grid-area: profile-related;
  }
}

@media (max-width: 1100px) {
  .people-listings--pilot-cards .people-listings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .people-listings--pilot-cards .people-listings-grid {
    grid-template-columns: 1fr;
  }
}

.balloon-swatch {
  display: inline-block;
  width: 4.5rem;
  height: 5.3rem;
  border-radius: var(--radius-balloon);
  box-shadow: inset 0 -8px 16px rgb(16 43 57 / 15%);
}

.balloon-swatch--1 {
  background: repeating-linear-gradient(
    90deg,
    #d45444 0 12px,
    #f3c45d 12px 24px,
    #f7eadc 24px 36px
  );
}

.balloon-swatch--2 {
  background: repeating-linear-gradient(
    135deg,
    #123d4e 0 14px,
    #72a36c 14px 28px,
    #f3c45d 28px 42px
  );
}

.balloon-swatch--3 {
  background: repeating-linear-gradient(
    90deg,
    #873d6a 0 12px,
    #db6e48 12px 24px,
    #f0d569 24px 36px
  );
}

.balloon-swatch--4 {
  background: repeating-linear-gradient(
    135deg,
    #376d85 0 14px,
    #e2ece8 14px 28px,
    #ca4f42 28px 42px
  );
}

.centered-action,
.centered-cta {
  text-align: center;
}

.centered-action {
  margin: 2rem 0 0;
}

.card-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.card-slider__controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.card-slider__button {
  display: inline-grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  border: 1px solid var(--color-predawn);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-predawn);
  font-size: 1.35rem;
  line-height: 1;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.card-slider__button:hover {
  transform: translateY(-2px);
  background: var(--color-predawn);
  color: var(--color-white);
}

.card-slider__button:focus-visible {
  outline: 3px solid var(--color-sunrise);
  outline-offset: 3px;
}

.card-slider__track {
  display: grid;
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.3rem 0.15rem 1rem;
  scroll-behavior: smooth;
  scroll-padding-inline: 0.15rem;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--color-balloon-coral) var(--color-line);
  scrollbar-width: thin;
}

.card-slider__track > * {
  min-width: 0;
  scroll-snap-align: start;
}

.pilot-slider .card-slider__track {
  grid-auto-columns: calc((100% - 2rem) / 3);
}

.sponsor-slider .card-slider__track {
  grid-auto-columns: calc((100% - 3rem) / 4);
}

.sponsor-slide {
  display: grid;
  min-height: 7rem;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-small);
  background: var(--color-white);
  padding: 1rem;
  color: var(--color-charcoal);
  box-shadow: var(--shadow-card);
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.sponsor-slide:hover {
  transform: translateY(-2px);
  background: var(--color-wheat);
}

.sponsor-slide:focus-visible {
  outline: 3px solid var(--color-sunrise);
  outline-offset: 3px;
}

.gallery-preview {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 0.8rem;
}

.gallery-preview picture {
  overflow: hidden;
  border-radius: var(--radius-medium);
}

.gallery-preview img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
}

.participation-cta {
  position: relative;
  overflow: hidden;
  background: var(--color-balloon-coral);
  color: var(--color-white);
}

.participation-cta::before,
.participation-cta::after {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  content: "";
}

.participation-cta::before {
  width: 24rem;
  height: 24rem;
  top: -16rem;
  left: -7rem;
}

.participation-cta::after {
  width: 16rem;
  height: 16rem;
  right: -5rem;
  bottom: -11rem;
}

.participation-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 3rem;
}

.participation-cta h2 {
  margin-bottom: 1rem;
}

.participation-cta .eyebrow {
  color: #fff2bf;
}

.participation-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.updates-signup__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 3rem;
}

.updates-signup h2 {
  margin-bottom: 0.8rem;
}

.inline-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 800;
}

.inline-form > div {
  display: flex;
  gap: 0.5rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid #aab6b5;
  border-radius: var(--radius-small);
  background: var(--color-white);
  color: var(--color-charcoal);
  font-size: 1rem;
}

input,
select {
  padding: 0.65rem 0.8rem;
}

textarea {
  padding: 0.8rem;
  resize: vertical;
}

.inline-form input {
  flex: 1;
}

.inline-form small {
  display: block;
  margin-top: 0.45rem;
  color: var(--color-muted);
}

.form-success,
.form-error {
  border-radius: var(--radius-small);
  padding: 0.9rem 1rem;
}

.form-success {
  background: #dfeee2;
  color: #244d2d;
}

.form-error {
  border-left: 4px solid #a72d2d;
  background: #fce7e5;
  color: #762323;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-sky-deep);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: #e8f0ee;
  padding: 1rem;
  color: #22383e;
}

.notice--weather {
  border-left-color: var(--color-sunrise-dark);
  background: #fff1ca;
}

.notice--small {
  font-size: 0.88rem;
}

.notice > span {
  display: inline-grid;
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-predawn);
  color: var(--color-white);
  font-weight: 800;
}

.notice p {
  margin: 0;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid #c9beae;
}

.fact-strip div {
  display: flex;
  min-height: 7rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #c9beae;
  text-align: center;
}

.fact-strip div:last-child {
  border-right: 0;
}

.fact-strip strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
}

.fact-strip span {
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.location-card {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.location-card__map {
  position: relative;
  display: grid;
  min-height: 21rem;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(32deg, transparent 45%, #e9c278 46% 49%, transparent 50%),
    linear-gradient(145deg, transparent 35%, #b4c9bd 36% 40%, transparent 41%),
    #dfe9e5;
}

.location-card__map::before,
.location-card__map::after,
.location-card__map i,
.location-card__map b {
  position: absolute;
  height: 200%;
  border-left: 2px solid rgb(79 109 77 / 27%);
  content: "";
}

.location-card__map::before {
  left: 28%;
  transform: rotate(18deg);
}

.location-card__map::after {
  right: 25%;
  transform: rotate(-21deg);
}

.location-card__map i {
  left: 55%;
  transform: rotate(42deg);
}

.location-card__map b {
  left: 48%;
  transform: rotate(-58deg);
}

.location-card__map span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  background: var(--color-balloon-coral);
  color: var(--color-white);
  font-size: 1.5rem;
  transform: rotate(-45deg);
}

.location-card__map span::first-letter {
  transform: rotate(45deg);
}

.location-card > div:last-child {
  padding: 1.5rem;
}

.location-card address {
  margin-bottom: 0.8rem;
  font-style: normal;
  font-weight: 750;
}

.location-card a {
  font-weight: 800;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-card-grid article {
  min-height: 11.5rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  padding: 1.35rem;
}

.info-card-grid h3 {
  margin-bottom: 0.6rem;
}

.info-card-grid p:last-child {
  margin-bottom: 0;
}

.two-column-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 6rem);
}

.two-column-copy article {
  border-top: 1px solid var(--color-line);
  padding-top: 1.5rem;
}

.two-column-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.step-list,
.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #c9beae;
}

.step-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  border-right: 1px solid #c9beae;
  border-bottom: 1px solid #c9beae;
  padding: 1.5rem;
}

.step-list li:nth-child(2n) {
  border-right: 0;
}

.step-list li > span,
.process-grid article > span {
  color: var(--color-balloon-coral);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(var(--card-grid-columns, 3), minmax(0, 1fr));
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.process-grid article {
  min-height: 10rem;
  background: var(--color-white);
  padding: 1.35rem;
}

.process-grid h3 {
  margin: 0.7rem 0 0.45rem;
}

.process-grid article .card-icon,
.process-grid article .utility-label {
  color: var(--color-balloon-coral);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.notice-band {
  background: var(--color-sunrise);
  color: #1e2b2f;
  padding-block: 1.4rem;
}

.notice-band .shell {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.notice-band p {
  margin: 0;
}

.glow-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.glow-facts div {
  display: flex;
  min-height: 8rem;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgb(255 255 255 / 18%);
  padding: 1rem 1.4rem;
}

.glow-facts div:last-child {
  border-right: 0;
}

.glow-facts span {
  color: var(--color-sunrise);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.glow-facts strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
}

.glow-facts small {
  color: #cbd9d8;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.person-card {
  display: grid;
  grid-template-columns: 6rem 1fr;
  align-items: center;
  gap: 1.2rem;
  border-radius: var(--radius-medium);
  background: var(--color-white);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
}

.person-card__name {
  color: var(--color-balloon-coral);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 1rem;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid figure > img,
.gallery-grid figure > picture,
.gallery-grid button {
  overflow: hidden;
  border-radius: var(--gallery-image-radius, var(--radius-medium));
}

.gallery-grid figure.gallery-grid__wide {
  grid-column: span 2;
}

.gallery-grid button {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: var(--gallery-image-radius, var(--radius-medium));
  background: var(--color-predawn);
  cursor: zoom-in;
  padding: 0;
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--gallery-image-radius, var(--radius-medium));
  object-fit: cover;
  transition: opacity 160ms ease;
}

.gallery-grid__wide img {
  aspect-ratio: 16 / 9;
}

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

.gallery-grid--triptych figure {
  min-width: 0;
}

.gallery-grid--triptych figure.gallery-grid__wide {
  grid-column: span 2;
}

.gallery-grid--triptych figure > img,
.gallery-grid--triptych button,
.gallery-grid--triptych button img {
  width: 100%;
  height: clamp(20rem, 29vw, 34rem);
  aspect-ratio: auto;
}

.gallery-grid--triptych img {
  object-fit: cover;
}

.gallery-grid--collage figure:nth-child(3n + 1) {
  grid-column: span 2;
}

.gallery-grid button:hover img {
  opacity: 0.82;
}

.gallery-expand {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  border-radius: 999px;
  background: rgb(7 29 38 / 82%);
  color: var(--color-white);
  padding: 0.45rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
}

.gallery-grid figcaption {
  padding: 0.6rem 0.15rem 1rem;
  font-size: 0.84rem;
}

.gallery-grid figcaption small {
  display: block;
  color: var(--color-muted);
}

.lightbox {
  width: min(94vw, 1100px);
  max-width: none;
  border: 0;
  border-radius: var(--radius-medium);
  background: var(--color-predawn);
  color: var(--color-white);
  padding: 0;
  box-shadow: 0 30px 90px rgb(0 0 0 / 45%);
}

.lightbox::backdrop {
  background: rgb(2 13 18 / 82%);
  backdrop-filter: blur(4px);
}

.lightbox img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.lightbox p {
  margin: 0;
  padding: 1rem 4rem 1rem 1rem;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 0.7rem;
  right: 0.7rem;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 50%);
  border-radius: 50%;
  background: rgb(7 29 38 / 85%);
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.6rem;
}

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

.archive-grid article {
  min-height: 18rem;
  border-radius: var(--radius-medium);
  background: var(--color-white);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.archive-grid article > strong {
  color: var(--color-balloon-coral);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
}

.archive-grid article h2 {
  margin: 1rem 0;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.archive-grid article h3 {
  margin: 1rem 0;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.archive-card--empty {
  border: 1px dashed #aaa79f;
  background: transparent !important;
  box-shadow: none !important;
}

.archive-grid__empty {
  border: 1px dashed #aaa79f;
  background: transparent !important;
  box-shadow: none !important;
}

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

.pathway-grid article {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--radius-medium);
  background: var(--color-white);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.pathway-grid article > span {
  color: var(--color-balloon-coral);
  font-weight: 850;
}

.pathway-grid article h2 {
  margin: 2.7rem 0 1rem;
  font-size: 2.3rem;
}

.pathway-grid article a {
  margin-top: auto;
  font-weight: 800;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
}

.contact-form {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-cloud);
  padding: clamp(1.25rem, 4vw, 2.3rem);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 750;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form fieldset {
  display: grid;
  gap: 0.65rem;
  border: 1px solid #b6c0bf;
  border-radius: var(--radius-small);
  padding: 1rem;
}

.contact-form fieldset label {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.6rem;
}

.contact-form input[type="checkbox"] {
  width: 1.25rem;
  min-height: 1.25rem;
}

.contact-form button {
  justify-self: start;
}

.form-confirmation {
  border-radius: var(--radius-medium);
  background: #e5f0e7;
  padding: 2.5rem;
}

.form-confirmation > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-vineyard);
  color: var(--color-white);
  font-size: 1.4rem;
}

.form-confirmation h2 {
  margin-top: 1.5rem;
  font-size: 2.5rem;
}

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

.sponsor-grid article {
  min-height: 17rem;
  border-radius: var(--radius-medium);
  background: var(--color-white);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
}

.sponsor-monogram {
  display: grid;
  width: 3.8rem;
  height: 3.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-predawn);
  color: var(--color-sunrise);
  font-weight: 850;
}

.sponsor-grid h2 {
  margin: 1.1rem 0 0.6rem;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.sponsor-cta-card {
  margin: 2rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius-medium);
  background: rgb(255 255 255 / 7%);
  padding: 2rem;
}

.pull-quote {
  background: var(--color-sunrise);
  color: var(--color-charcoal);
}

.pull-quote blockquote {
  max-width: 58rem;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-align: center;
}

.pull-quote cite {
  display: block;
  max-width: 36rem;
  margin-inline: auto;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.timeline {
  border-top: 1px solid var(--color-line);
}

.timeline li {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 2rem;
  border-bottom: 1px solid var(--color-line);
  padding-block: 1.7rem;
}

.timeline time {
  color: var(--color-balloon-coral);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
}

.timeline h3 {
  margin-bottom: 0.4rem;
}

.centered-cta {
  max-width: 48rem;
}

.centered-cta h2 {
  margin-bottom: 1rem;
}

.centered-cta > div {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}

.accordion-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: clamp(2rem, 8vw, 7rem);
}

.accordion-layout h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.accordion-list {
  border-top: 1px solid var(--color-line);
}

.accordion-list details {
  border-bottom: 1px solid var(--color-line);
}

.accordion-list summary {
  display: flex;
  min-height: 4.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 800;
  list-style: none;
}

.accordion-list summary::-webkit-details-marker {
  display: none;
}

.accordion-list summary > span:last-child {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-wheat);
  color: var(--color-balloon-coral);
  font-size: 1.3rem;
  transition: transform 160ms ease;
}

.accordion-list details[open] summary > span:last-child {
  transform: rotate(45deg);
}

.accordion-list details > div {
  max-width: 43rem;
  padding: 0 3rem 1.4rem 0;
}

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #c9beae;
  border: 1px solid #c9beae;
}

.contact-route-grid a {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 8rem;
  align-content: center;
  background: var(--color-wheat);
  padding: 1.2rem;
  color: var(--color-charcoal);
  text-decoration: none;
}

.contact-route-grid a strong,
.contact-route-grid a span {
  grid-column: 1;
}

.contact-route-grid a b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--color-balloon-coral);
}

.contact-route-grid a span {
  color: var(--color-muted);
  font-size: 0.84rem;
}

.contact-route-grid a h3,
.contact-route-grid a p {
  grid-column: 1;
  margin: 0;
}

.contact-route-grid a p {
  color: var(--color-muted);
  font-size: 0.84rem;
}

.contact-route-grid a .arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--color-balloon-coral);
}

.contact-address {
  margin-block: 1.5rem;
  font-style: normal;
}

.site-footer {
  background: #071f2b;
  color: #dce7e5;
  padding-bottom: 5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 2rem;
  padding-block: 4rem 3rem;
}

.footer-brand p {
  margin: 1rem 0 0;
  color: #aebfbd;
  font-size: 0.84rem;
}

.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-main nav h2 {
  margin-bottom: 0.65rem;
  color: var(--color-sunrise);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-main nav a,
.footer-contact a {
  color: #dce7e5;
  text-decoration: none;
}

.footer-main nav a {
  display: inline-flex;
  min-height: 1rem;
  align-items: center;
  font-size: 0.84rem;
}

.footer-contact,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgb(255 255 255 / 13%);
  padding-block: 1.25rem;
}

.footer-contact p,
.footer-legal p {
  margin: 0;
}

.footer-contact p:last-child {
  display: flex;
  gap: 1rem;
}

.footer-legal {
  color: #92a8a5;
  font-size: 0.72rem;
}

.mobile-dock {
  display: none;
}

@media (max-width: 1050px) {
  .nav-wrap nav a {
    padding-inline: 0.4rem;
    font-size: 0.72rem;
  }

  .header-inner {
    gap: 0.6rem;
  }

  .nav-wrap {
    gap: 0.4rem;
  }

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

  .experience-card--large {
    grid-row: span 2;
  }

  .experience-card--night {
    grid-row: auto;
  }

  .quick-links__grid,
  .planning-grid,
  .info-card-grid,
  .pathway-grid,
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pilot-slider .card-slider__track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }

  .sponsor-slider .card-slider__track {
    grid-auto-columns: calc((100% - 2rem) / 3);
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 1.4rem, 720px);
  }

  .event-status p span {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    padding-inline: 0.9rem;
  }

  .nav-wrap {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    display: none;
    width: min(88vw, 28rem);
    height: 100dvh;
    align-items: stretch;
    justify-content: flex-start;
    overflow: auto;
    background: var(--color-predawn);
    padding: 5rem 1.2rem 2rem;
    box-shadow: -12px 0 40px rgb(0 0 0 / 30%);
  }

  .nav-wrap.is-open {
    display: flex;
    flex-direction: column;
  }

  .nav-wrap .mobile-menu-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-flex;
    width: 3.25rem;
    height: 3.25rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 35%);
    border-radius: 50%;
    background: transparent;
    color: var(--color-white);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
  }

  .nav-wrap .mobile-nav-contact {
    display: block;
    width: 100%;
    padding: 1rem 0;
  }

  .nav-wrap .mobile-nav-contact.is-position-top {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgb(255 255 255 / 16%);
  }

  .nav-wrap .mobile-nav-contact.is-position-bottom {
    margin-top: auto;
    border-top: 1px solid rgb(255 255 255 / 16%);
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .nav-wrap .mobile-nav-contact__details {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .nav-wrap .mobile-nav-contact__details a {
    color: var(--color-white);
  }

  .nav-wrap .mobile-nav-contact .button-wrapper {
    margin: 0;
  }

  .nav-wrap .mobile-nav-contact .button {
    width: 100%;
    margin-top: 0;
  }

  .nav-wrap nav {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-wrap nav a {
    min-height: 3.5rem;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
    padding-inline: 0.75rem;
    font-size: 1rem;
  }

  .nav-wrap .header-primary-action {
    display: none;
  }

  .nav-wrap .button {
    margin-top: 1rem;
  }

  .header-search {
    width: 100%;
  }

  .header-search summary {
    width: 100%;
    border-radius: var(--radius-small);
    justify-content: flex-start;
    padding-inline: 0.75rem;
  }

  .header-search summary .screen-reader-text {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 0 0 0.5rem !important;
    clip: auto !important;
  }

  .header-search__panel {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: none;
  }

  .header-inner {
    min-height: 4.5rem;
  }

  .hero-title,
  .hero-title__content {
    min-height: max(42rem, calc(100svh - 6.5rem));
  }

  .hero-title__overlay {
    background:
      linear-gradient(90deg, rgb(6 29 39 / 86%), rgb(8 38 49 / 45%)),
      linear-gradient(0deg, rgb(6 25 34 / 78%), transparent 56%);
  }

  .hero-caption {
    display: none;
  }

  .event-information__grid,
  .split,
  .split--wide,
  .participation-cta__inner,
  .updates-signup__inner,
  .form-layout,
  .accordion-layout {
    grid-template-columns: 1fr;
  }

  .event-information__countdown {
    border-top: 1px solid #c7bdad;
    border-left: 0;
    padding-top: 1rem;
    padding-left: 0;
  }

  .quick-links__grid,
  .location-grid,
  .people-grid,
  .gallery-grid,
  .archive-grid,
  .contact-route-grid {
    grid-template-columns: 1fr 1fr;
  }

  .experience-grid {
    grid-template-rows: auto;
  }

  .experience-card,
  .experience-card--large,
  .experience-card--night {
    grid-row: auto;
    min-height: 20rem;
  }

  .split--night .split__media img {
    min-height: 23rem;
  }

  .split--night .split__content {
    grid-row: 2;
  }

  .gallery-preview {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-preview picture:first-child {
    grid-column: span 2;
  }

  .gallery-preview img {
    height: 19rem;
  }

  .fact-strip,
  .glow-facts {
    grid-template-columns: 1fr 1fr;
  }

  .glow-facts div:nth-child(2) {
    border-right: 0;
  }

  .glow-facts div {
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-card__map {
    min-height: 10rem;
  }

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

  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 4.1rem;
  }

  .event-status__inner {
    gap: 0.45rem;
  }

  .event-status p {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .event-status a {
    display: none;
  }

  .brand-copy__kicker {
    font-size: 0.72rem;
  }

  .brand-copy__name {
    font-size: 1.3rem;
  }

  .brand-mark {
    width: 2.85rem;
    height: 3.35rem;
  }

  .hero-title__content {
    justify-content: flex-end;
    padding-bottom: 3.5rem;
  }

  .hero-title h1 {
    font-size: clamp(1.94rem, 9.68vw, 3.02rem) !important;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-text-link {
    margin-inline: auto;
  }

  .page-title {
    min-height: 25rem;
  }

  .page-title__content {
    padding-block: 4.4rem 2.8rem;
  }

  .event-information__grid {
    padding-block: 2rem;
  }

  .event-facts,
  .quick-links__grid,
  .planning-grid,
  .info-card-grid,
  .location-grid,
  .people-grid,
  .archive-grid,
  .pathway-grid,
  .sponsor-grid,
  .gallery-grid,
  .contact-route-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .pilot-slider .card-slider__track,
  .sponsor-slider .card-slider__track {
    grid-auto-columns: minmax(15rem, 82%);
  }

  .card-slider__controls {
    justify-content: center;
  }

  .event-facts div {
    border-bottom: 1px solid #c7bdad;
    border-left: 0;
    padding: 0 0 0.8rem;
  }

  .heading-row,
  .schedule-toolbar,
  .notice-band .shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .day-tabs {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.4rem;
  }

  .day-tabs button {
    flex: 0 0 auto;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card__date {
    min-height: 3.7rem;
    align-items: baseline;
    flex-direction: row;
    gap: 0.45rem;
  }

  .event-card__date strong {
    font-size: 1.7rem;
  }

  .event-card__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .experience-grid,
  .gallery-preview {
    grid-template-columns: 1fr;
  }

  .experience-card--large,
  .gallery-preview picture:first-child {
    grid-column: auto;
  }

  .gallery-preview img {
    height: 18rem;
  }

  .participation-cta__actions,
  .centered-cta > div {
    align-items: stretch;
    flex-direction: column;
  }

  .participation-cta__actions .button {
    width: 100%;
  }

  .inline-form > div {
    flex-direction: column;
  }

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

  .fact-strip div:nth-child(2n) {
    border-right: 0;
  }

  .fact-strip div {
    border-bottom: 1px solid #c9beae;
  }

  .two-column-copy,
  .step-list {
    grid-template-columns: 1fr;
  }

  .step-list li {
    border-right: 0;
  }

  .glow-facts {
    grid-template-columns: 1fr;
  }

  .glow-facts div {
    border-right: 0;
  }

  .person-card {
    grid-template-columns: 5.5rem 1fr;
  }

  .gallery-grid figure.gallery-grid__wide {
    grid-column: auto;
  }

  .gallery-grid__wide img {
    aspect-ratio: 4 / 3;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .footer-main nav:last-child {
    grid-column: span 2;
  }

  .footer-contact,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-dock {
    position: fixed;
    z-index: 45;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgb(255 255 255 / 16%);
    background: rgb(7 31 43 / 97%);
    padding-bottom: env(safe-area-inset-bottom);
    backdrop-filter: blur(12px);
  }

  .mobile-dock a {
    display: flex;
    min-height: 4.1rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--color-white);
    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
  }

  .mobile-dock a span {
    color: var(--color-sunrise);
    font-size: 1.15rem;
  }
}

@media (max-width: 900px) {
  .card-grid__items,
  .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .card-grid__items,
  .fact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .brand-copy {
    display: none;
  }

  .event-status p strong {
    font-size: 0.64rem;
  }

  .hero-title__intro {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .event-status,
  .site-header,
  .breadcrumbs,
  .page-title,
  .schedule-toolbar,
  .status-key,
  .site-footer,
  .mobile-dock,
  .button,
  .event-card__actions {
    display: none !important;
  }

  body {
    padding: 0;
    background: white;
    color: black;
    font-size: 10pt;
  }

  .section {
    padding: 0;
  }

  .schedule-board::before {
    display: block;
    margin-bottom: 1rem;
    content: "The Great Prosser Balloon Rally · September 25–27, 2026 · Schedule subject to change · Weather permitting";
    font-size: 14pt;
    font-weight: 800;
  }

  .event-card {
    break-inside: avoid;
    border: 1px solid #777;
    box-shadow: none;
  }
}

/* Customizer-backed Building Block palette */
.panigyri-color--primary {
  --blade-custom-color: var(--color-sky-deep);
  --blade-custom-contrast: var(--color-white);
}

.panigyri-color--info {
  --blade-custom-color: var(--color-predawn);
  --blade-custom-contrast: var(--color-white);
}

.panigyri-color--link {
  --blade-custom-color: var(--color-balloon-coral);
  --blade-custom-contrast: var(--color-white);
}

.panigyri-color--success {
  --blade-custom-color: var(--color-vineyard);
  --blade-custom-contrast: var(--color-white);
}

.panigyri-color--warning {
  --blade-custom-color: var(--color-sunrise);
  --blade-custom-contrast: var(--color-charcoal);
}

.panigyri-color--danger {
  --blade-custom-color: var(--color-sunrise-dark);
  --blade-custom-contrast: var(--color-charcoal);
}

.panigyri-color--white {
  --blade-custom-color: var(--color-white);
  --blade-custom-contrast: var(--color-charcoal);
}

.panigyri-color--black {
  --blade-custom-color: var(--color-charcoal);
  --blade-custom-contrast: var(--color-white);
}

.blade.panigyri-color-apply--background,
.blade.panigyri-color-apply--both {
  background: var(--blade-custom-color);
  color: var(--blade-custom-contrast);
}

.blade.panigyri-color-apply--text {
  color: var(--blade-custom-color);
}

.blade.panigyri-color-apply--text :where(h1, h2, h3, h4, h5, h6, p, li),
.blade.panigyri-color-apply--background :where(h1, h2, h3, h4, h5, h6, p, li),
.blade.panigyri-color-apply--both :where(h1, h2, h3, h4, h5, h6, p, li) {
  color: inherit;
}

/* WordPress footer menus retain the approved flat column layout. */
.footer-menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu li {
  display: contents;
  margin: 0;
}

/* Formidable Forms: Rally typography, palette, fields, states, and buttons. */
.frm_forms.with_frm_style {
  --font: var(--font-body);
  --font-size: 0.9rem;
  --label-color: var(--color-charcoal);
  --weight: 750;
  --required-color: var(--color-balloon-coral);
  --description-color: var(--color-muted);
  --description-font-size: 0.78rem;
  --field-font-size: 1rem;
  --field-height: 3rem;
  --field-pad: 0.65rem 0.8rem;
  --field-margin: 1rem;
  --text-color: var(--color-charcoal);
  --border-color: #aab6b5;
  --bg-color: var(--color-white);
  --bg-color-active: var(--color-white);
  --border-color-active: var(--color-sky-deep);
  --text-color-error: var(--color-charcoal);
  --bg-color-error: #fff8f7;
  --border-color-error: #a72d2d;
  --bg-color-disabled: var(--color-cloud);
  --border-color-disabled: var(--color-line);
  --text-color-disabled: var(--color-muted);
  --check-label-color: var(--color-charcoal);
  --border-radius: var(--radius-small);
  --error-bg: #fce7e5;
  --error-border: #a72d2d;
  --error-text: #762323;
  --success-bg-color: #dfeee2;
  --success-border-color: var(--color-vineyard);
  --success-text-color: #244d2d;
  --submit-font-size: 0.88rem;
  --submit-bg-color: var(--color-predawn);
  --submit-border-color: var(--color-predawn);
  --submit-border-width: 2px;
  --submit-text-color: var(--color-white);
  --submit-weight: 800;
  --submit-border-radius: 999px;
  --submit-margin: 0.5rem 0 0;
  --submit-padding: 0.72rem 1.2rem;
  --submit-hover-bg-color: var(--color-sunrise);
  --submit-hover-border-color: var(--color-sunrise);
  --submit-hover-color: var(--color-charcoal);
  width: 100%;
  color: var(--color-charcoal);
  font-family: var(--font-body);
}

.frm_forms.with_frm_style .frm_primary_label,
.frm_forms.with_frm_style legend,
.frm_forms.with_frm_style .frm_section_heading h3 {
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-weight: 750;
}

.frm_forms.with_frm_style input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
.frm_forms.with_frm_style select,
.frm_forms.with_frm_style textarea {
  min-height: 3rem;
  border-radius: var(--radius-small);
  color: var(--color-charcoal);
  font-family: var(--font-body);
}

.frm_forms.with_frm_style textarea {
  min-height: 8rem;
  resize: vertical;
}

.frm_forms.with_frm_style input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):focus,
.frm_forms.with_frm_style select:focus,
.frm_forms.with_frm_style textarea:focus {
  border-color: var(--color-sky-deep);
  box-shadow: 0 0 0 3px rgb(10 59 75 / 18%);
  outline: 2px solid transparent;
}

.frm_forms.with_frm_style .frm_checkbox label,
.frm_forms.with_frm_style .frm_radio label {
  color: var(--color-charcoal);
  font-family: var(--font-body);
}

.frm_forms.with_frm_style .frm_checkbox input[type="checkbox"],
.frm_forms.with_frm_style .frm_radio input[type="radio"] {
  width: 1.15rem !important;
  min-width: 1.15rem !important;
  height: 1.15rem !important;
  border-color: #899796;
  accent-color: var(--color-sky-deep);
}

.frm_forms.with_frm_style .frm_checkbox input[type="checkbox"]:focus,
.frm_forms.with_frm_style .frm_radio input[type="radio"]:focus {
  box-shadow: 0 0 0 3px rgb(244 181 68 / 45%) !important;
  outline: 2px solid transparent;
}

.frm_forms.with_frm_style input[type="file"] {
  max-width: 100%;
  color: var(--color-charcoal);
  font-family: var(--font-body);
}

.frm_forms.with_frm_style input[type="file"]::file-selector-button {
  margin-right: 0.75rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--color-sky-deep);
  border-radius: var(--radius-small);
  background: var(--color-white);
  color: var(--color-sky-deep);
  cursor: pointer;
  font: 750 0.82rem var(--font-body);
}

.frm_forms.with_frm_style .frm_error {
  color: #762323;
  font-family: var(--font-body);
  font-size: 0.78rem;
}

.frm_forms.with_frm_style .frm_error_style,
.frm_forms.with_frm_style .frm_message,
.frm_success_style {
  border-radius: var(--radius-small);
  font-family: var(--font-body);
}

.frm_forms.with_frm_style .frm_submit .frm_button_submit,
.frm_forms.with_frm_style .frm_submit input[type="submit"],
.frm_forms.with_frm_style .frm_submit input[type="button"] {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  border: 2px solid var(--color-predawn);
  border-radius: 999px;
  background: var(--color-predawn);
  box-shadow: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.frm_forms.with_frm_style .frm_submit .frm_button_submit:hover,
.frm_forms.with_frm_style .frm_submit input[type="submit"]:hover,
.frm_forms.with_frm_style .frm_submit input[type="button"]:hover {
  border-color: var(--color-sunrise);
  background: var(--color-sunrise);
  color: var(--color-charcoal);
  transform: none;
}

.frm_forms.with_frm_style .frm_submit .frm_button_submit:focus-visible,
.frm_forms.with_frm_style .frm_submit input[type="submit"]:focus-visible,
.frm_forms.with_frm_style .frm_submit input[type="button"]:focus-visible {
  outline: 3px solid var(--color-sunrise);
  outline-offset: 4px;
}

.frm_forms.with_frm_style .frm_submit .frm_button_submit:disabled,
.frm_forms.with_frm_style .frm_submit input[type="submit"]:disabled,
.frm_forms.with_frm_style .frm_submit input[type="button"]:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

/* Tablet/desktop organization sizing and desktop hero refinement. */
@media (min-width: 821px) {
  /*
   * Use a true three-column layout for both organization blade variants.
   * In incomplete rows, one card occupies the center column and two cards
   * occupy the outside columns, leaving the center open.
  */
  .organization-grid-items,
  .organization-partners-grid .card-slider__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }

  .organization-partners-grid .card-slider__track {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  .organization-partners-grid .card-slider__controls {
    display: none;
  }

  .organization-card:nth-child(3n + 1):last-child,
  .organization-partners-grid .sponsor-slide:nth-child(3n + 1):last-child {
    grid-column: 2;
  }

  .organization-card:nth-child(3n + 2):last-child,
  .organization-partners-grid .sponsor-slide:nth-child(3n + 2):last-child {
    grid-column: 3;
  }

  .hero-title__content {
    max-width: 48rem;
    transform: translate(-1.5rem, -0.5rem);
  }

  .hero-title h1 {
    max-width: none;
    font-size: clamp(3rem, 6.2vw, 5.25rem);
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .frm_forms.with_frm_style .frm_fields_container > .frm_form_field,
  .frm_forms.with_frm_style .frm_fields_container > .frm_submit {
    grid-column: 1 / -1 !important;
  }
}
