:root {
  --ink: #0b1026;
  --navy: #171b42;
  --navy-soft: #242957;
  --cobalt: #3437c7;
  --cobalt-bright: #4d54e6;
  --sky: #81a4ff;
  --paper: #f5f4ef;
  --paper-deep: #e8e7e1;
  --white: #ffffff;
  --muted: #62657a;
  --line: rgba(11, 16, 38, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(11, 16, 38, 0.14);
  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 30px;
  --shell: min(1180px, calc(100% - 48px));
  --header-height: 92px;
  --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--sky);
  color: var(--ink);
}

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

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

.section {
  position: relative;
  padding: clamp(88px, 10vw, 148px) 0;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--sky);
}

.section-heading h2 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(44px, 6vw, 78px);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-heading-row > p {
  max-width: 440px;
  margin: 0 0 6px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--cobalt-bright);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(52, 55, 199, 0.28);
}

.button-primary:hover {
  background: var(--sky);
  color: var(--ink);
}

.button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

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

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

.button-light:hover {
  background: var(--sky);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

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

/* Header */
.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(11, 16, 38, 0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.admin-bar .site-header.is-scrolled {
  top: 32px;
}

.header-shell {
  display: flex;
  width: var(--shell);
  min-height: var(--header-height);
  align-items: center;
  gap: 32px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line-light);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
}

.brand-logo-custom,
.brand-logo-custom .custom-logo-link {
  display: block;
}

.brand-logo-custom img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 5px;
  opacity: 0.66;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-navigation {
  margin-left: auto;
}

.site-menu,
.site-navigation .menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu a,
.site-navigation .menu a {
  position: relative;
  display: block;
  padding: 34px 0;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-decoration: none;
}

.site-menu a::after,
.site-navigation .menu a::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--sky);
  content: "";
  transition: transform 180ms ease;
}

.site-menu a:hover::after,
.site-navigation .menu a:hover::after,
.site-navigation .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.club-button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 12px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: max(780px, 100svh);
  overflow: hidden;
  align-items: end;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 29, 0.93) 0%, rgba(7, 10, 29, 0.72) 48%, rgba(7, 10, 29, 0.28) 78%, rgba(7, 10, 29, 0.5) 100%),
    linear-gradient(0deg, rgba(7, 10, 29, 0.95) 0%, transparent 42%);
}

.hero-grid {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.48fr);
  align-items: end;
  gap: clamp(50px, 7vw, 100px);
  padding-top: calc(var(--header-height) + 95px);
  padding-bottom: 150px;
}

.hero-copy h1 {
  max-width: 840px;
  margin-bottom: 32px;
  font-size: clamp(58px, 7.4vw, 108px);
}

.hero-copy h1 em {
  color: var(--sky);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(16, 21, 52, 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card::before {
  position: absolute;
  top: -1px;
  left: 34px;
  width: 72px;
  height: 3px;
  background: var(--sky);
  content: "";
}

.hero-card-index,
.hero-card-kicker {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-card-index {
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.42);
}

.hero-card-kicker {
  margin-bottom: 14px;
  color: var(--sky);
}

.hero-card h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 3.2vw, 43px);
}

.hero-card > p:not(.hero-card-index, .hero-card-kicker) {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.hero-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.hero-stats {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero-stats > div {
  display: grid;
  min-height: 92px;
  align-content: center;
  padding: 18px 30px;
  border-right: 1px solid var(--line-light);
}

.hero-stats > div:first-child {
  border-left: 1px solid var(--line-light);
}

.hero-stats strong {
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.53);
  font-size: 11px;
}

/* About */
.section-about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.7fr);
  gap: 80px 100px;
}

.about-grid .section-heading {
  align-self: start;
}

.about-copy {
  padding-top: 44px;
}

.about-copy p {
  color: var(--muted);
}

.about-copy .lead-copy {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 650;
  line-height: 1.45;
}

.about-copy .text-link {
  margin-top: 16px;
}

.about-image {
  grid-column: 1 / -1;
}

.image-frame {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 16, 38, 0.75), transparent 45%);
  content: "";
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  z-index: 1;
  right: 40px;
  bottom: 34px;
  left: 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--white);
}

.image-frame figcaption strong {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 66px);
  letter-spacing: 0.04em;
}

.image-frame figcaption span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Benefits */
.section-benefits {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-benefits::before {
  position: absolute;
  top: -240px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(129, 164, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(129, 164, 255, 0.035), 0 0 0 200px rgba(129, 164, 255, 0.02);
  content: "";
}

.section-benefits .section-heading-row > p {
  color: rgba(255, 255, 255, 0.6);
}

.benefit-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.benefit-card {
  min-height: 390px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background-color 220ms ease, transform 220ms ease;
}

.benefit-card:hover {
  background: var(--navy-soft);
  transform: translateY(-4px);
}

.benefit-number {
  display: block;
  margin-bottom: 130px;
  color: var(--sky);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.benefit-card h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
}

.benefit-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

/* Programs */
.section-programs {
  background: var(--white);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 18px;
}

.program-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.program-card-featured {
  grid-column: span 7;
  grid-row: span 2;
}

.program-card:nth-child(2) {
  grid-column: span 5;
}

.program-card:nth-child(3) {
  grid-column: span 5;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.program-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 29, 0.94), rgba(7, 10, 29, 0.04) 72%);
}

.program-copy {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 23px;
  left: 26px;
}

.program-copy > span {
  display: block;
  margin-bottom: 9px;
  color: var(--sky);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.program-copy h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.program-copy p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  transition: max-height 250ms ease, margin 250ms ease, opacity 250ms ease;
}

.program-card:hover .program-copy p,
.program-card:focus-within .program-copy p,
.program-card-featured .program-copy p {
  max-height: 90px;
  margin-top: 11px;
  opacity: 1;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

/* Start */
.section-start {
  overflow: hidden;
  background: var(--cobalt);
  color: var(--white);
}

.section-start::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.13);
  content: "";
}

.start-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 10vw, 150px);
}

.start-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(48px, 6vw, 78px);
}

.start-intro > p:last-child {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.67);
}

.steps-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.steps-list li:first-child {
  padding-top: 0;
}

.steps-list > li > span {
  color: var(--sky);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.steps-list h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.steps-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

/* Locations */
.section-locations {
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.location-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-topline span:last-child {
  font-size: 22px;
}

.location-card h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 31px;
  line-height: 1.02;
  text-transform: uppercase;
}

.location-address {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.schedule-list {
  margin: 0 0 28px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.schedule-list li {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.location-card > a:not(.button) {
  display: inline-flex;
  gap: 8px;
  margin-top: auto;
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.location-card-cta {
  justify-content: center;
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
}

.location-card-cta:hover {
  background: var(--navy);
}

.location-card-cta h3 {
  font-size: 37px;
}

.location-card-cta > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.location-card-cta .button {
  align-self: flex-start;
  margin-top: 16px;
}

/* Blog */
.section-blog {
  background: var(--white);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.post-card-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.05);
}

.post-card-body {
  padding: 26px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-meta span {
  color: var(--cobalt);
}

.post-card h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.05;
  text-transform: uppercase;
}

.post-card h3 a {
  text-decoration: none;
}

.post-card p {
  color: var(--muted);
  font-size: 14px;
}

.coming-soon {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 60px;
  padding: clamp(36px, 6vw, 70px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.coming-soon::after {
  position: absolute;
  right: -60px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 54px solid rgba(52, 55, 199, 0.08);
  border-radius: 50%;
  content: "";
}

.coming-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--cobalt);
  color: var(--white);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon h3,
.coming-soon h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  text-transform: uppercase;
}

.coming-soon p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.coming-soon ul {
  position: relative;
  z-index: 1;
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coming-soon li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

/* Contact */
.section-contact {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.section-contact::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(460px, 0.65fr);
  gap: clamp(70px, 10vw, 140px);
}

.contact-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(52px, 6vw, 84px);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 52px;
}

.contact-direct a {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.contact-direct small {
  color: var(--sky);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-direct strong {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.02em;
}

.contact-panel {
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.24);
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:not([type="checkbox"]) {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 126px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cobalt);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(52, 55, 199, 0.1);
}

.contact-form textarea::placeholder {
  color: #9295a6;
}

.consent-field {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 550 !important;
  letter-spacing: 0 !important;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--cobalt);
}

.button-submit {
  border: 0;
  cursor: pointer;
}

.button-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-notice {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.form-notice-success {
  background: #e8f7ed;
  color: #176736;
}

.form-notice-error {
  background: #fff0ee;
  color: #9d271e;
}

/* Footer */
.site-footer {
  background: #080b1d;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.75fr 1fr;
  gap: 60px;
  padding-top: 76px;
  padding-bottom: 68px;
}

.brand-footer {
  margin-bottom: 24px;
}

.footer-brand > p,
.footer-cta p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-column h2 {
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--sky);
}

.footer-cta .button {
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: inherit;
}

/* Blog and standard pages */
.page-hero,
.simple-page-header {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 110px) 0 100px;
  background: var(--ink);
  color: var(--white);
}

.page-hero {
  min-height: 580px;
  display: flex;
  align-items: end;
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

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

.page-hero-overlay {
  background: linear-gradient(90deg, rgba(7, 10, 29, 0.94), rgba(7, 10, 29, 0.45)), linear-gradient(0deg, rgba(7, 10, 29, 0.75), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.simple-page-header h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(60px, 8vw, 104px);
}

.page-hero-content > p:last-child {
  max-width: 630px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.archive-section {
  min-height: 460px;
  background: var(--paper);
}

.coming-soon-page {
  display: block;
}

.coming-soon-page .button {
  margin-top: 28px;
}

.pagination,
.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.pagination .page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
}

.pagination .current,
.pagination a:hover {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: var(--white);
}

.article-header {
  padding: calc(var(--header-height) + 100px) 0 70px;
  background: var(--ink);
  color: var(--white);
}

.article-header-copy {
  max-width: 950px;
}

.back-link {
  display: inline-block;
  margin-bottom: 62px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.article-header h1 {
  margin-bottom: 28px;
  font-size: clamp(52px, 7vw, 90px);
}

.article-header-copy > p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 19px;
}

.article-featured {
  margin-top: 60px;
}

.article-featured img {
  width: 100%;
  max-height: 680px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  justify-content: space-between;
  gap: 80px;
  padding-top: 90px;
  padding-bottom: 80px;
}

.article-content,
.page-content {
  font-size: 18px;
}

.article-content > * + *,
.page-content > * + * {
  margin-top: 1.4em;
}

.article-content h2,
.article-content h3,
.page-content h2,
.page-content h3 {
  margin-top: 1.7em;
  margin-bottom: 0.65em;
  font-family: var(--display);
  line-height: 1.05;
  text-transform: uppercase;
}

.article-content h2,
.page-content h2 {
  font-size: clamp(38px, 4vw, 52px);
}

.article-content h3,
.page-content h3 {
  font-size: 30px;
}

.article-content p,
.article-content li,
.page-content p,
.page-content li {
  color: #3f4255;
}

.article-content img,
.page-content img {
  border-radius: var(--radius);
}

.article-content blockquote,
.page-content blockquote {
  margin: 2em 0;
  padding: 25px 30px;
  border-left: 4px solid var(--cobalt);
  background: var(--white);
  font-size: 21px;
  font-weight: 650;
}

.article-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-aside p {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
}

.post-navigation {
  padding-bottom: 100px;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.post-navigation a {
  display: grid;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 750;
  text-decoration: none;
}

.post-navigation .nav-next a {
  text-align: right;
}

.post-navigation span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-content {
  max-width: 820px;
  padding-top: 80px;
  padding-bottom: 100px;
}

.error-page {
  display: grid;
  min-height: 760px;
  align-items: center;
  padding: calc(var(--header-height) + 70px) 0 90px;
  overflow: hidden;
  background: var(--paper);
}

.error-content {
  position: relative;
}

.error-code {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  margin: 0;
  transform: translateY(-50%);
  color: rgba(52, 55, 199, 0.07);
  font-family: var(--display);
  font-size: min(42vw, 470px);
  font-weight: 900;
  line-height: 0.7;
}

.error-content > *:not(.error-code) {
  position: relative;
  z-index: 1;
}

.error-content h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(54px, 7vw, 90px);
}

.error-content > p:not(.error-code, .eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.error-content .button {
  margin-top: 22px;
}

[data-reveal] {
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

[data-reveal].reveal-ready {
  opacity: 0;
  transform: translateY(22px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .site-navigation {
    position: fixed;
    z-index: 120;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    padding: 32px max(20px, calc((100vw - 980px) / 2));
    background: rgba(11, 16, 38, 0.98);
  }

  .site-navigation.is-open {
    display: block;
  }

  .site-menu,
  .site-navigation .menu {
    display: grid;
    gap: 0;
  }

  .site-menu a,
  .site-navigation .menu a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--display);
    font-size: 34px;
    text-transform: uppercase;
  }

  .site-menu a::after,
  .site-navigation .menu a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(56px, 8vw, 86px);
  }

  .about-grid {
    gap: 55px;
  }

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

  .benefit-card {
    min-height: 320px;
  }

  .benefit-number {
    margin-bottom: 80px;
  }

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

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

  .footer-cta {
    grid-column: 1 / -1;
    padding-top: 34px;
    border-top: 1px solid var(--line-light);
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 50px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 78px;
  }

  .admin-bar .site-header.is-scrolled {
    top: 46px;
  }

  .header-shell {
    gap: 12px;
  }

  .brand-logo,
  .brand-logo-custom img {
    width: 49px;
    height: 49px;
    flex-basis: 49px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .club-button {
    order: 2;
    min-height: 42px;
    padding-inline: 14px;
  }

  .nav-toggle {
    order: 3;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 90px);
    padding-bottom: 190px;
  }

  .hero-card {
    max-width: 480px;
  }

  .hero-card-index {
    margin-bottom: 32px;
  }

  .hero-stats {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(210px, 1fr));
  }

  .about-grid,
  .start-grid,
  .contact-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-top: 0;
  }

  .image-frame,
  .image-frame img {
    min-height: 390px;
  }

  .image-frame figcaption {
    display: grid;
    gap: 4px;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }

  .program-card,
  .program-card-featured,
  .program-card:nth-child(2),
  .program-card:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .program-card-featured {
    grid-column: 1 / -1;
  }

  .section-start::after {
    display: none;
  }

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

  .coming-soon {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-grid {
    gap: 60px;
  }

  .contact-panel {
    padding: 26px;
  }

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

  .footer-brand,
  .footer-cta {
    grid-column: 1 / -1;
  }

  .article-aside {
    position: static;
  }

  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .section {
    padding: 78px 0;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .section-heading h2,
  .start-intro h2,
  .contact-intro h2 {
    font-size: 44px;
  }

  .brand-copy {
    display: none;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 188px;
  }

  .hero-copy h1 {
    font-size: 53px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-card {
    padding: 26px;
  }

  .benefit-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 280px;
  }

  .benefit-number {
    margin-bottom: 64px;
  }

  .program-card,
  .program-card-featured {
    grid-column: 1;
  }

  .image-frame,
  .image-frame img {
    min-height: 330px;
  }

  .image-frame figcaption {
    right: 24px;
    bottom: 22px;
    left: 24px;
  }

  .image-frame figcaption strong {
    font-size: 38px;
  }

  .location-card {
    min-height: 340px;
    padding: 26px;
  }

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

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

  .footer-brand,
  .footer-cta {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .page-hero,
  .simple-page-header {
    padding: calc(var(--header-height) + 80px) 0 70px;
  }

  .page-hero {
    min-height: 500px;
  }

  .page-hero h1,
  .simple-page-header h1,
  .article-header h1 {
    font-size: 52px;
  }

  .article-header {
    padding-top: calc(var(--header-height) + 80px);
  }

  .article-layout {
    padding-top: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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