@font-face {
  font-family: "Job Clarendon";
  src: local("Job Clarendon"), local("JobClarendon"),
    url("/assets/job-clarendon.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-900: #00112e;
  --blue-700: #003da5;
  --yellow-400: #ffe600;
  --gold-500: #dbbc33;
  --gray-700: #545850;
  --white: #ffffff;
  --outer-bg: #000000;
  --shadow-lg: 0 28px 60px rgba(0, 17, 46, 0.25);
  --shadow-md: 0 18px 40px rgba(0, 17, 46, 0.18);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1200px;
  --max-width-wide: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--outer-bg);
}

body {
  position: relative;
  margin: 0 auto;
  max-width: var(--max-width-wide);
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.page--membership main {
  padding-bottom: 219px;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow-400);
  outline-offset: 3px;
}

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

button {
  font: inherit;
}

.container {
  width: min(100%, var(--container-width, var(--max-width)));
  margin: 0 auto;
  padding: 0 var(--container-padding, 24px);
}

.container--wide {
  --container-width: var(--max-width-wide);
  --container-padding: 32px;
}

.heading-font {
  font-family: "Job Clarendon", "Bitter", "Clarendon", "Times New Roman", serif;
  font-weight: 400;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 18px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(0, 17, 46, 0.85), rgba(0, 17, 46, 0));
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 170px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  margin-left: 0;
  padding-right: 24px;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--yellow-400);
  font-weight: 700;
  position: relative;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  position: relative;
}

.nav-item {
  position: static;
}

.nav-link {
  position: relative;
  padding: 6px 0;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link__arrow {
  width: 9px;
  height: 8px;
  margin-top: 1px;
  transition: transform 0.15s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow-400);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-item--has-dropdown.is-open .nav-link__arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  transform: translateY(-8px);
  width: 100%;
  max-width: 100%;
  background: #dee1d9;
  color: #000;
  border-top: 2px solid var(--yellow-400);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 30;
}

.nav-dropdown--narrow {
  left: 50%;
  right: auto;
  width: calc(100% - 64px);
  max-width: 320px;
  transform: translate(-50%, -8px);
}

.nav-dropdown--narrow-left {
  right: auto;
  width: calc(100% - 64px);
  max-width: 320px;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
}

.nav-item--has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item--has-dropdown.is-open .nav-dropdown--narrow {
  transform: translate(-50%, 0);
}

.nav-item--has-dropdown.is-open .nav-link::after {
  width: 100%;
}

.nav-dropdown__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 24px 20px;
}

.nav-dropdown__content--single {
  grid-template-columns: minmax(0, 1fr);
}

.nav-dropdown__divider {
  background: rgba(84, 88, 80, 0.35);
}

.nav-dropdown__title {
  font-family: "Job Clarendon", "Bitter", "Clarendon", "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.92);
  margin-bottom: 12px;
  text-transform: none;
}

.nav-dropdown__item + .nav-dropdown__title {
  margin-top: 10px;
}

.nav-dropdown__col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.nav-dropdown__col--join {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nav-dropdown__col--join .btn.btn-menu {
  margin-top: auto;
  align-self: center;
}

.nav-dropdown__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--blue-700);
  padding: 2px 0;
  text-transform: none;
}

.nav-dropdown__item::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: url("/assets/bulletpoint.png") no-repeat center / contain;
}

.nav-dropdown__item:hover,
.nav-dropdown__item:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-dropdown__highlight {
  display: grid;
  gap: 12px;
  padding: 16px 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(84, 88, 80, 0.35);
  border-top: 2px solid var(--yellow-400);
  margin-bottom: 8px;
}

.nav-dropdown__highlight-title {
  font-size: 20px;
  line-height: 1.1;
  color: var(--blue-700);
}

.nav-dropdown__highlight-meta {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.8);
}

.nav-dropdown__highlight-copy {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.92);
}

.nav-dropdown__highlight-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.nav-dropdown__highlight-actions .btn.btn-menu {
  width: 100%;
  margin-top: 0;
  padding: 0 14px;
  justify-self: stretch;
}

.btn.btn-menu {
  background: var(--blue-700);
  color: var(--white);
  min-height: 34px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 0;
  margin-top: 6px;
  width: 150px;
  justify-self: start;
}

.btn.btn-menu:hover,
.btn.btn-menu:focus-visible {
  background: var(--blue-700);
  filter: brightness(0.98);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 0;
}

.header-search {
  display: none;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
}

.header-search img {
  width: 29px;
  height: 29px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 2px;
  padding: 0 22px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--yellow-400);
  color: var(--blue-700);
  box-shadow: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-pill {
  border-radius: 999px;
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--yellow-400);
  border: 2px solid var(--yellow-400);
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--yellow-400);
  color: var(--blue-700);
}

.btn-small {
  min-height: 29px;
  padding: 0 14px;
  font-size: 11px;
}

.btn-feature {
  width: 200px;
  min-height: 51px;
  font-size: 22px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 17, 46, 0.82);
}

.modal__panel {
  position: relative;
  width: min(560px, 100%);
  background: #dee1d9;
  box-shadow: var(--shadow-lg);
  padding: 62px 72px 52px;
  text-align: center;
}

.modal__close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(84, 88, 80, 0.95);
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 1px;
}

.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto;
}

.modal__icon svg {
  width: 70px;
  height: 70px;
}

.modal__title {
  margin: 16px 0 30px;
  color: var(--blue-700);
  font-size: 42px;
  line-height: 1.05;
}

.field {
  display: grid;
  gap: 8px;
  text-align: left;
  --field-label-color: var(--blue-700);
  --field-line-color: var(--blue-700);
  --field-input-color: #000;
}

.field__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--field-label-color);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--field-line-color);
  border-radius: 0;
  background: transparent;
  padding: 10px 0 9px;
  font-size: 14px;
  color: var(--field-input-color);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--yellow-400);
  outline-offset: 4px;
}

.modal__form {
  display: grid;
  gap: 22px;
  width: min(360px, 100%);
  margin: 0 auto;
}

.btn-modal {
  width: 148px;
  min-height: 51px;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}

.modal__footer {
  margin-top: 18px;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  color: var(--blue-700);
}

.modal__footer a:hover,
.modal__footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--yellow-400);
  margin-left: auto;
  cursor: pointer;
}

.nav-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.nav-toggle__bars span {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
}

.nav-toggle__close {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
}

.nav-toggle__close::before,
.nav-toggle__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 1px;
}

.nav-toggle__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.nav-open .nav-toggle__bars {
  display: none;
}

body.nav-open .nav-toggle__close {
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--blue-700);
  color: var(--yellow-400);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body.nav-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 18px 24px 40px;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__brand img {
  width: 96px;
  height: auto;
}

.mobile-menu__top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-menu__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--yellow-400);
}

.mobile-menu__icon img {
  width: 29px;
  height: 29px;
}

.mobile-menu__close {
  background: transparent;
  position: relative;
}

.mobile-menu__close::before,
.mobile-menu__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 1px;
}

.mobile-menu__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__close img {
  display: none;
}

.mobile-menu__cta {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.mobile-menu__cta-btn {
  flex: 1;
  min-height: 49px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.mobile-menu__content {
  flex: 1;
  padding-top: 64px;
}

.mobile-menu__back {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--yellow-400);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 28px;
}

.mobile-menu__panel {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.mobile-menu__main {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 34px;
  justify-items: center;
}

.mobile-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--yellow-400);
  font-family: "Job Clarendon", "Bitter", "Clarendon", "Times New Roman", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  text-transform: none;
  cursor: pointer;
}

.mobile-menu__link img {
  width: 12px;
  height: 12px;
  transform: rotate(-90deg);
}

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.mobile-menu__divider {
  display: none;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.mobile-menu__submenus {
  display: none;
}

.mobile-menu__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: 24px;
}

.mobile-menu__submenu a {
  color: var(--yellow-400);
  font-family: "Job Clarendon", "Bitter", "Clarendon", "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  text-transform: none;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__content {
  padding-top: 24px;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__back {
  display: inline-flex;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__panel {
  grid-template-columns: 150px 1px minmax(0, 1fr);
  justify-items: start;
  align-items: start;
  column-gap: 24px;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__main {
  justify-items: start;
  gap: 18px;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__link {
  font-size: 18px;
  opacity: 0.35;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__link.is-active {
  font-size: 30px;
  opacity: 1;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__divider {
  display: block;
  height: 260px;
  margin-top: 6px;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__submenus {
  display: block;
}

.mobile-menu[data-active-submenu="about"] [data-mobile-submenu="about"],
.mobile-menu[data-active-submenu="membership"] [data-mobile-submenu="membership"],
.mobile-menu[data-active-submenu="advocacy"] [data-mobile-submenu="advocacy"],
.mobile-menu[data-active-submenu="events"] [data-mobile-submenu="events"],
.mobile-menu[data-active-submenu="programs"] [data-mobile-submenu="programs"] {
  display: grid;
}

.hero {
  position: relative;
  min-height: 522px;
  color: var(--white);
  padding: 131px 0 0;
  background-color: var(--blue-900);
  background-image: linear-gradient(180deg, rgba(0, 17, 46, 0.92), rgba(0, 17, 46, 0.3)), var(--hero-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 61, 165, 0.75);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 965px;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.18;
  color: var(--yellow-400);
  margin: 0 0 12px;
  text-wrap: balance;
}

@media (min-width: 900px) {
  .hero--membership .hero-title {
    text-wrap: nowrap;
    white-space: nowrap;
  }
}

.hero-copy {
  max-width: 520px;
  font-size: 16px;
  line-height: 20px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
}

.hero--events .hero-copy {
  font-size: 14px;
  line-height: 18px;
}

.hero--home {
  --hero-image: url("assets/hero-bg.png");
}

.hero--home .hero-content {
  max-width: 965px;
}

.hero--membership {
  --hero-image: url("assets/membership-hero.png");
  position: relative;
  z-index: 1;
}

.hero--membership::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  aspect-ratio: 721 / 834;
  background: url("assets/pattern-left.svg") no-repeat center;
  background-size: contain;
  transform: translateY(50%);
  z-index: 1;
  pointer-events: none;
}

.hero--membership .hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 18px;
}

.hero--membership .hero-bullets {
  gap: 18px;
}

.hero--events {
  --hero-image: url("assets/events-hero.png");
  min-height: 532px;
}

.hero-patterns {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  bottom: 0;
  width: min(50vw, calc(var(--max-width-wide) / 2));
  aspect-ratio: 721 / 417;
  overflow: hidden;
}

.hero-pattern img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-pattern--left {
  left: max(0px, calc(50% - (var(--max-width-wide) / 2)));
}

.hero-pattern--right {
  right: max(0px, calc(50% - (var(--max-width-wide) / 2)));
}

.hero--join {
  --hero-image: url("assets/membership-hero.png");
  min-height: 610px;
  padding-top: 150px;
  padding-bottom: 240px;
}

.hero--join .hero-title {
  font-size: clamp(56px, 6.5vw, 88px);
  line-height: 1.02;
  margin-bottom: 14px;
}

.join-hero-content {
  max-width: 860px;
}

.join-hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.join-hero-btn {
  width: 148px;
  min-height: 51px;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}

.join-form-section {
  position: relative;
  background: var(--blue-700);
  color: var(--white);
  padding: 160px 0 120px;
}

.join-form-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -260px;
  height: 260px;
  background: var(--blue-700);
  clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 0 100%);
}

.join-form-container {
  position: relative;
  z-index: 1;
}

.join-form-title {
  text-align: center;
  margin-bottom: 66px;
}

.join-form-section .field {
  --field-label-color: rgba(255, 255, 255, 0.9);
  --field-line-color: rgba(255, 255, 255, 0.55);
  --field-input-color: rgba(255, 255, 255, 0.96);
}

.field--select {
  position: relative;
}

.field--select select {
  appearance: none;
  padding-right: 28px;
}

.field--select option {
  color: #000;
}

.field__chevron {
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--field-label-color);
  pointer-events: none;
}

.join-form {
  max-width: 742px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.join-form__row {
  display: grid;
  gap: 32px;
}

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

.join-form__row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.join-form__row--message {
  margin-top: 18px;
  gap: 48px;
  align-items: start;
}

.radio-field {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  align-content: start;
  gap: 14px;
}

.radio-field legend {
  padding: 0;
  margin-bottom: 18px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.radio-option input {
  accent-color: var(--yellow-400);
}

.join-form__actions {
  margin-top: 14px;
}

.join-form-submit {
  width: 148px;
  min-height: 34px;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}

.page--subbrand main {
  padding: 0;
}

.subbrand-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(320px, 32%) 1fr;
}

.subbrand-hero__left,
.subbrand-hero__right {
  position: relative;
}

.subbrand-hero__right {
  overflow: hidden;
}

.subbrand-hero__left::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: 30% center;
}

.subbrand-hero__left::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 230, 0, 0.86);
}

.subbrand-hero__mark {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 40vw, 580px);
}

.subbrand-hero__mark img {
  width: 100%;
  height: auto;
}

.subbrand-hero__right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
}

.subbrand-hero__right::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.88);
}

.subbrand-hero__content {
  position: relative;
  z-index: 3;
  max-width: 660px;
  margin: 0 auto;
  padding: 184px 36px 92px;
  text-align: left;
}

.subbrand-hero__title {
  margin: 0;
  color: var(--blue-700);
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 1.05;
  text-wrap: balance;
}

.subbrand-hero__subtitle {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(84, 88, 80, 0.9);
}

.subbrand-hero__copy {
  margin: 18px 0 26px;
  max-width: 612px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(84, 88, 80, 0.92);
}

.subbrand-hero__cta {
  width: 176px;
  min-height: 51px;
  font-size: 18px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}

.hero-content--wide {
  max-width: var(--max-width-wide);
}

.hero-bullets {
  margin: 0 auto;
  max-width: 909px;
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.95);
  text-align: left;
  display: grid;
  gap: 14px;
}

.hero-bullets p {
  margin: 0;
}

.hero-bullets strong {
  color: var(--yellow-400);
}

.hero-cta {
  width: 200px;
  min-height: 51px;
  font-size: 22px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
  margin: 5px auto 0;
}

.hero--membership .hero-cta {
  width: 148px;
  margin-top: 18px;
}

@media (max-width: 640px) {
  .hero--membership .hero-cta {
    display: none;
  }
}

.geo-divider {
  position: relative;
  z-index: 0;
  --geo-divider-height: 103px;
  --geo-divider-pattern-top: -364px;
  height: var(--geo-divider-height);
  margin-top: 0;
  margin-bottom: 0;
  background: var(--white);
  overflow: hidden;
}

.page--membership .geo-divider {
  --geo-divider-height: 20px;
}

.page--membership .geo-divider__pattern {
  display: none;
}

.page--events .geo-divider {
  --geo-divider-height: 128px;
  --geo-divider-pattern-top: -430px;
}

.geo-divider + .section {
  position: relative;
  z-index: 1;
}

.geo-divider__pattern {
  position: absolute;
  top: var(--geo-divider-pattern-top);
  width: min(50vw, calc(var(--max-width-wide) / 2));
  height: auto;
}

.geo-divider__pattern--left {
  left: max(0px, calc(50% - (var(--max-width-wide) / 2)));
}

.geo-divider__pattern--right {
  right: max(0px, calc(50% - (var(--max-width-wide) / 2)));
}

.members-strip {
  text-align: center;
  padding: 0 0 4px;
}

.members-strip__title {
  font-size: clamp(34px, 3.2vw, 42px);
  color: var(--blue-700);
  margin: 0;
}

.members-strip__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 54px;
  margin-top: 22px;
}

.members-strip__logos img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.members-strip__dots {
  margin-top: 16px;
}

.members-strip__dots .carousel-dot {
  border-color: rgba(0, 61, 165, 0.35);
  background: transparent;
}

.members-strip__dots .carousel-dot.is-active {
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.tier-visionary {
  width: 100%;
  margin: 50px 0 0;
  background: var(--yellow-400);
  min-height: 418px;
  position: relative;
  overflow: hidden;
}

.tier-visionary::before,
.tier-visionary::after {
  content: "";
  position: absolute;
  top: 122px;
  width: 106px;
  height: 74px;
  background: url("assets/visionary-arrow.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.tier-visionary::before {
  left: calc(50% - 290px);
}

.tier-visionary::after {
  left: calc(50% + 196px);
  transform: translateY(-50%) scaleX(-1);
}

.tier-visionary__inner {
  position: relative;
  z-index: 1;
  padding: 44px 60px 44px;
  text-align: center;
  color: var(--blue-700);
}

.tier-visionary__title {
  margin: 0;
  font-size: clamp(58px, 6.2vw, 82px);
  line-height: 0.91;
}

.tier-visionary__price {
  font-size: clamp(44px, 4.8vw, 64px);
  margin-top: 2px;
  color: var(--gray-700);
}

.tier-visionary__copy {
  margin: 28px auto 18px;
  max-width: 901px;
  font-size: 23px;
  line-height: 32px;
  color: #000;
}

.tier-visionary__key {
  margin: 0 auto;
  max-width: 1020px;
  font-size: 16px;
  line-height: 16px;
  font-style: italic;
  color: #000;
}

.section--membership-tiers .section-title {
  font-size: 42px;
  margin-bottom: 12px;
}

.section--membership-tiers .section-text {
  max-width: 791px;
  line-height: 20px;
}

@media (min-width: 1200px) {
  .section--membership-tiers > .container {
    --container-padding: 0;
  }

  .tier-visionary {
    width: calc(100% + 8px);
    margin-left: -1px;
  }

  .tier-row {
    width: calc(100% + 8px);
    margin-left: -1px;
    gap: 22px;
    margin-top: 37px;
    padding-top: 37px;
  }
}

.tier-row {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 26px;
  padding-top: 26px;
}

.tier-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gray-700);
}

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

.tier-box {
  border-radius: 0;
  padding: 38px 52px 32px;
  box-shadow: none;
}

.tier-box h4 {
  margin: 0;
  font-size: 42px;
  line-height: 0.91;
  text-align: center;
}

.tier-box__price {
  font-weight: 400;
  margin: 2px 0 30px;
  font-size: 32px;
  line-height: 1.11;
  text-align: center;
}

.tier-box > p:not(.tier-box__key) {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}

.tier-box__key {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 16px;
  font-style: italic;
}

.tier-box--primary {
  background: var(--blue-700);
  color: rgba(255, 255, 255, 0.92);
}

.tier-box--primary h4 {
  color: var(--yellow-400);
}

.tier-box--primary .tier-box__price {
  color: var(--white);
  font-size: 32px;
}

.tier-box--primary .tier-box__key {
  color: rgba(255, 255, 255, 0.92);
}

.tier-box--secondary {
  background: #f3f3f3;
  color: var(--gray-700);
  border: 1px solid rgba(84, 88, 80, 0.24);
  box-shadow: none;
}

.tier-box--secondary h4 {
  color: var(--blue-700);
}

.tier-box--secondary .tier-box__price {
  color: var(--gray-700);
  font-size: 35px;
}

.tier-box--secondary .tier-box__key {
  color: #000;
}

.home-splash {
  position: relative;
  /* Keep the pattern V-tip flush with the report-card diamond across widths. */
  --home-splash-overlap: calc(min(100%, var(--max-width-wide)) * 417 / 1442 - 0.5px);
  --home-splash-padding-bottom: 63px;
  margin-top: calc(var(--home-splash-overlap) * -1);
  padding: calc(var(--home-splash-overlap)) 0 var(--home-splash-padding-bottom);
  background: transparent;
  color: var(--white);
  overflow: hidden;
}

.home-splash::before {
  content: "";
  position: absolute;
  top: var(--home-splash-overlap);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blue-700);
  z-index: 0;
}

.home-splash__patterns {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--max-width-wide));
  height: clamp(520px, 60vw, 900px);
  pointer-events: none;
  z-index: 1;
}

.home-splash__pattern {
  position: absolute;
  top: 0;
  width: min(50%, calc(var(--max-width-wide) / 2));
  height: auto;
}

.home-splash__pattern--left {
  left: 0;
}

.home-splash__pattern--right {
  right: 0;
}

.home-splash__feature {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 0;
}

.feature-frame {
  position: relative;
  width: min(100%, var(--max-width-wide));
  margin: 0 auto;
}

.feature-diamond {
  --diamond-clip: polygon(
    50% 0%,
    100% 49.35%,
    100% 50.59%,
    50% 100%,
    0% 50.71%,
    0% 49.35%
  );
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 844;
  background: transparent;
  -webkit-clip-path: var(--diamond-clip);
  clip-path: var(--diamond-clip);
}

.feature-diamond__surface {
  position: absolute;
  inset: 0;
  background-image: var(--feature-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--white);
  -webkit-clip-path: var(--diamond-clip);
  clip-path: var(--diamond-clip);
}

.feature-diamond__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.6);
  z-index: 1;
}

.feature-diamond__inner {
  position: absolute;
  inset: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.feature-title {
  position: absolute;
  left: 50%;
  top: 34.8%;
  transform: translateX(-50%);
  margin: 0;
  width: min(744px, calc(100% - 80px));
  font-size: clamp(40px, 4vw, 52px);
  line-height: 1.06;
  color: var(--white);
  text-wrap: balance;
}

.feature-copy {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translateX(-50%);
  margin: 0;
  width: min(545px, calc(100% - 80px));
  font-size: 16px;
  line-height: 1.25;
}

.feature-cta-row {
  position: absolute;
  left: 50%;
  top: 61.2%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.feature-cta {
  width: 200px;
  min-height: 51px;
  font-size: 22px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.feature-diamond__dots {
  display: none !important;
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translateX(-50%);
  z-index: 2;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.feature-diamond__dots.carousel-dots {
  margin-top: 0;
  gap: 20px;
}

.feature-diamond__dots .carousel-dot {
  width: 28px;
  height: 28px;
  border-width: 4px;
}

.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0.9;
}

.carousel-dot.is-active {
  background: var(--blue-700);
  border-color: rgba(255, 255, 255, 0.95);
}

.home-splash__connect {
  position: relative;
  z-index: 2;
  padding-top: 23px;
  text-align: center;
}

.connect-diagram {
  position: relative;
  width: min(462px, 100%);
  aspect-ratio: 462 / 136;
  margin: 22px auto 26px;
}

.connect-diagram__image {
  display: block;
  width: 100%;
  height: 100%;
}

.connect-title {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.15;
  color: var(--yellow-400);
}

.connect-title__line {
  display: inline;
}

.connect-title__line + .connect-title__line::before {
  content: " ";
}

.connect-copy {
  margin: 0 auto;
  max-width: 541px;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
}

.section-centered {
  text-align: center;
}

.section-centered__title {
  color: var(--blue-700);
  margin-bottom: 10px;
}

.section-centered__cta {
  width: 200px;
  min-height: 51px;
  font-size: 22px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.section {
  padding: 90px 0;
}

.page--home .section {
  padding: 43px 0;
}

.section--tight {
  padding: 70px 0;
}

.feature-cta__mobile {
  display: none;
}

.section--tight-top {
  padding-top: 60px;
}

.page--events .section--tight-top {
  padding-top: 94px;
  padding-bottom: 114px;
}

.section--after-geo {
  padding-top: 0;
}

.page--membership .section--after-geo {
  display: none;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 24px;
  color: var(--blue-700);
}

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

.section-subtitle {
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 24px 0 16px;
  color: var(--blue-700);
}

.section-text {
  font-size: 16px;
  line-height: 1.65;
  max-width: 760px;
}

.news-article {
  max-width: 1000px;
  margin: 0 auto;
}

.news-article .section-text {
  max-width: none;
}

.news-article__media {
  margin-top: 16px;
  border: 1px solid rgba(84, 88, 80, 0.24);
  overflow: hidden;
  height: clamp(220px, 32vw, 420px);
}

.news-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.news-article__media--contain img {
  object-fit: contain;
  background: #fff;
}

.news-article__content {
  margin-top: 24px;
}

.scholarship-spotlight__content p {
  font-size: 16px;
  line-height: 1.65;
  max-width: none;
}

.scholarship-spotlight__content img {
  display: block;
  height: auto;
  margin: 16px auto;
  max-width: min(100%, 520px);
}

.scholarship-update-date {
  color: rgba(84, 88, 80, 0.72);
  font-size: 0.9em;
  white-space: nowrap;
}

.scholarship-archive {
  margin-top: 12px;
  color: rgba(84, 88, 80, 0.8);
  font-size: 0.9em;
}

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

.page--home .section-title {
  margin-bottom: 16px;
}

.page--home .section-text {
  line-height: 1.35;
}

.page--home .action-row {
  margin-top: 24px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.report-card {
  position: relative;
  padding: 110px 0;
  color: var(--white);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), var(--feature-image);
  background-size: cover;
  background-position: center;
}

.report-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.55);
}

.report-card .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.report-card h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.report-card p {
  max-width: 680px;
  margin: 0 auto 32px;
}

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

.section-blue .section-text {
  color: var(--white);
}

.action-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.supplemental-health .card-grid,
.insurance-services .card-grid {
  grid-template-columns: 1fr;
}

.card-grid--chambers {
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  justify-content: start;
  max-width: calc(3 * 320px + 2 * 24px);
  margin-left: 0;
  margin-right: auto;
}

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

.info-card {
  background: var(--white);
  border: 1px solid rgba(84, 88, 80, 0.24);
  border-top: 2px solid var(--yellow-400);
  border-radius: 0;
  padding: 28px;
  box-shadow: none;
  position: relative;
}

.info-card::before {
  display: none;
}

.info-card h3 {
  margin: 0 0 12px;
  color: var(--blue-700);
}

.agenda {
  margin-top: 24px;
  border: 1px solid rgba(84, 88, 80, 0.24);
  background: var(--white);
}

.agenda-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
}

.agenda-item + .agenda-item {
  border-top: 1px solid rgba(84, 88, 80, 0.18);
}

.agenda-time {
  font-weight: 700;
  color: var(--gray-700);
  white-space: nowrap;
}

.agenda-title {
  font-weight: 700;
  color: var(--blue-700);
}

.agenda-details {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.agenda-details li {
  margin: 0 0 6px;
}

.agenda-details li:last-child {
  margin-bottom: 0;
}

.sponsor-card-title {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(84, 88, 80, 0.24);
  background: var(--white);
}

.sponsor-logo--presenting {
  height: 180px;
}

.sponsor-logo img {
  max-width: min(260px, 100%);
  max-height: 84px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.sponsor-logo--presenting img {
  max-width: min(390px, 100%);
  max-height: 126px;
}

.sponsor-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  margin-top: 14px;
  border: 2px dashed rgba(84, 88, 80, 0.35);
  background: rgba(0, 17, 46, 0.06);
  color: rgba(84, 88, 80, 0.8);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 640px) {
  .agenda-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .agenda-time {
    white-space: normal;
  }
}

.star-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid rgba(84, 88, 80, 0.24);
  background: var(--white);
}

.star-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.star-table th,
.star-table td {
  padding: 12px 14px;
  border: 1px solid rgba(84, 88, 80, 0.24);
  text-align: left;
  vertical-align: top;
}

.star-table th {
  background: rgba(0, 17, 46, 0.06);
  color: var(--blue-700);
  font-weight: 700;
}

.back-link {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.video-gallery-grid .info-card h3 {
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.1;
}

.video-gallery-grid .event-meta {
  font-size: 14px;
}

@media (max-width: 640px) {
  .video-gallery-grid {
    grid-template-columns: 1fr;
  }

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

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.chamber-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 240px;
}

.chamber-contact {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
}

.chamber-detail {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.chamber-detail:last-child {
  margin-bottom: 0;
}

.chamber-link {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.staff-section {
  margin-top: 44px;
}

.staff-section .event-meta {
  text-transform: uppercase;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.staff-grid--tight {
  margin-top: 18px;
}

.staff-card {
  padding: 24px;
}

.staff-card h3 {
  margin: 0 0 6px;
}

.staff-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 18px;
}

.staff-card__photo {
  width: 96px;
  height: 128px;
  flex: 0 0 96px;
  border-radius: 12px;
  object-fit: cover;
  background: #dee1d9;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.staff-card__details {
  min-width: 0;
}

.staff-card__role {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.5;
}

.staff-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  line-height: 1.4;
}

.staff-card__meta a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

@media (max-width: 520px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .staff-card__inner {
    flex-direction: column;
  }

  .staff-card__photo {
    width: 100%;
    height: 220px;
    flex-basis: auto;
  }
}

@media (max-width: 980px) {
  .staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tiers {
  display: grid;
  gap: 24px;
}

.tier-highlight {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.tier-highlight h3 {
  font-size: clamp(36px, 5vw, 82px);
  margin: 0 0 8px;
  color: var(--blue-700);
}

.tier-highlight .price {
  font-size: clamp(28px, 4vw, 56px);
  color: var(--gray-700);
  margin-bottom: 16px;
}

.tier-highlight p {
  max-width: 760px;
  margin: 0 auto 16px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.tier-card {
  background: var(--blue-700);
  color: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-height: 280px;
}

.tier-card.light {
  background: #f5f7fb;
  color: var(--gray-700);
}

.tier-card h4 {
  margin: 0 0 8px;
  color: var(--yellow-400);
  font-size: 26px;
}

.tier-card.light h4 {
  color: var(--blue-700);
}

.tier-card .price {
  font-size: 22px;
  margin-bottom: 12px;
}

.tier-card p {
  font-size: 14px;
  line-height: 1.55;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}

.logo-row img {
  max-height: 70px;
  object-fit: contain;
  width: 100%;
}

.calendar {
  --container-width: 1040px;
  display: flex;
  flex-direction: column;
  gap: 104px;
}

.calendar-month {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-700);
  margin-bottom: 22px;
}

.calendar-month::after {
  content: "";
  flex: 1;
  height: 0;
  border-bottom: 1px solid rgba(84, 88, 80, 0.3);
  transform: translateY(-2px);
}


.event-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 333px;
  gap: 34px;
  align-items: start;
}

.event-card + .event-card {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(84, 88, 80, 0.3);
}

.event-date {
  text-align: center;
  color: var(--gray-700);
}

.event-date .day {
  font-size: 44px;
  font-weight: 700;
  margin: 0;
}

.event-date .weekday {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.event-details h3 {
  margin: 0 0 8px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 700;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  text-decoration: underline;
}

.event-details p {
  margin: 0 0 10px;
  line-height: 1.55;
  font-size: 11px;
}

.event-meta {
  font-size: 11px;
  font-weight: 700;
}

.event-meta span {
  font-weight: 400;
}

.event-cta {
  margin-top: 14px;
}

.btn-ticket {
  width: 217px;
  min-height: 51px;
  font-size: 18px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.event-image {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 333px;
  height: 333px;
  background-image: var(--event-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}

.event-card--news .event-image {
  height: 180px;
}

.event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 230, 0, 0.35);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.site-footer {
  background: var(--blue-900);
  color: var(--white);
  padding: 21px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr 1.3fr auto;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  width: 111px;
  height: auto;
}

.footer-contact {
  font-size: 13px;
  line-height: 1.6;
}

.footer-meta {
  font-size: 13px;
  color: var(--gold-500);
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

@media (max-width: 980px) {
  .container--wide {
    --container-padding: 24px;
  }

  .header-inner {
    justify-content: space-between;
  }

  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
  }

  .modal__panel {
    padding: 56px 30px 44px;
  }

  .modal__close {
    top: 18px;
    right: 18px;
  }

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

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

  .event-image {
    width: 100%;
    height: 260px;
  }

  .event-card--news .event-image {
    height: 180px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .site-footer {
    padding: 22px 0;
  }

  .footer-social img {
    width: 22px;
    height: 22px;
  }

  .geo-divider {
    --geo-divider-height: 360px;
  }

  .page--events .geo-divider {
    --geo-divider-pattern-top: -364px;
  }

  .tier-row--primary,
  .tier-row--secondary {
    grid-template-columns: 1fr;
  }

  .tier-visionary::before,
  .tier-visionary::after {
    display: none;
  }

  .subbrand-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .subbrand-hero__left {
    min-height: 320px;
  }

  .subbrand-hero__mark {
    left: 0;
    width: 65vw;
  }

  .subbrand-hero__content {
    padding: 168px 24px 76px;
  }

  .hero--join {
    padding-bottom: 220px;
  }

  .join-hero-actions {
    gap: 18px;
  }

  .join-form-section {
    padding-top: 140px;
  }

  .join-form-section::before {
    top: -220px;
    height: 220px;
  }

  .join-form__row--two,
  .join-form__row--three {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .join-form__row--message {
    gap: 28px;
  }
}

@media (max-width: 1000px) {
  .feature-diamond {
    aspect-ratio: 420 / 520;
    --diamond-clip: polygon(
      0% 0%,
      100% 0%,
      100% 75.8%,
      48.7% 100%,
      0% 77.2%
    );
  }

  .home-splash__patterns {
    z-index: 3;
  }
}

@media (max-width: 640px) {
  .container {
    --container-padding: 20px;
  }

  .container--wide {
    --container-padding: 20px;
  }

  .hero {
    min-height: 480px;
    padding-top: 120px;
  }

  .hero--membership {
    padding-bottom: 140px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-copy,
  .hero-bullets {
    margin-left: 0;
    margin-right: 0;
  }

  .header-inner {
    gap: 12px;
  }

  .logo img {
    width: 130px;
  }

  .hero--home {
    --hero-image: url("assets/hero-bg.png");
    min-height: 446px;
    padding-top: 163px;
  }

  .hero--home .hero-content {
    text-align: center;
  }

  .hero--home .hero-title {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 9px;
  }

  .hero--home .hero-copy {
    max-width: 311px;
    font-size: 12px;
    line-height: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  .subbrand-hero__left {
    min-height: 280px;
  }

  .subbrand-hero__mark {
    left: 0;
    width: 85vw;
  }

  .subbrand-hero__content {
    padding-top: 152px;
  }

  .hero--join {
    min-height: 560px;
    padding-top: 140px;
    padding-bottom: 200px;
  }

  .hero--join .hero-content {
    text-align: center;
  }

  .join-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .home-splash {
    --home-splash-padding-bottom: 60px;
  }

  .feature-diamond__inner {
    width: 100%;
  }

  .feature-title {
    top: 26%;
    width: min(360px, calc(100% - 56px));
    font-size: 32px;
    line-height: 1.12;
    white-space: normal;
  }

  .feature-copy {
    top: 38.3%;
    width: min(302px, calc(100% - 56px));
    font-size: 12px;
    line-height: 1.2;
  }

  .feature-cta-row {
    top: 62.9%;
    gap: 10px;
  }

  .feature-cta {
    width: 132px;
    min-height: 47px;
    font-size: 19px;
  }

  .feature-cta__desktop {
    display: none;
  }

  .feature-cta__mobile {
    display: inline;
  }

  .feature-diamond__dots {
    top: 83.3%;
  }

  .feature-diamond__dots.carousel-dots {
    gap: 10px;
  }

  .feature-diamond__dots .carousel-dot {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .connect-diagram {
    margin: 22px auto 34px;
  }

  .connect-title {
    font-size: 36px;
    line-height: 34px;
    max-width: 215px;
    margin-left: auto;
    margin-right: auto;
  }

  .connect-title__line {
    display: block;
    white-space: nowrap;
    transform: scaleX(0.58);
    transform-origin: center;
  }

  .connect-title__line + .connect-title__line::before {
    content: "";
  }

  .connect-copy {
    max-width: 311px;
    font-size: 12px;
    line-height: 14px;
  }

  .home-splash__connect {
    padding-top: 3px;
  }

  .geo-divider {
    --geo-divider-height: 320px;
  }

  .site-footer {
    padding: 25px 0;
  }

  .page--home .section {
    padding: 54px 0;
  }

  .page--home .section-title {
    font-size: 28px;
    line-height: 1.05;
    margin-bottom: 10px;
  }

  .page--home .section-text {
    font-size: 13px;
    line-height: 1.35;
  }

  .page--home .action-row {
    margin-top: 16px;
  }

  .page--home .section-centered__cta {
    min-height: 47px;
    font-size: 20px;
  }

  .footer-logo {
    width: 96px;
  }

  .footer-contact,
  .footer-meta {
    font-size: 12px;
  }

  .footer-social {
    gap: 14px;
  }

  .footer-social img {
    width: 22px;
    height: 22px;
  }

  .hero-bullets {
    text-align: center;
  }

  .tier-visionary__inner {
    padding: 42px 28px 22px;
  }
}
