:root {
  --club-blue: #005da8;
  --club-blue-dark: #004f91;
  --charcoal: #3d3d3f;
  --charcoal-soft: #5b5b5e;
  --page-gray: #ececec;
  --paper: #f8f8f8;
  --line: #d3d3d3;
  --text: #232323;
  --text-soft: #5a5a5a;
  --accent-yellow: #f2c316;
  --white: #ffffff;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-gray);
  color: var(--text);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  line-height: 1.55;
}

.side-rail {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 88px;
  background: var(--club-blue);
  color: var(--white);
  z-index: 30;
}

.side-rail-left {
  left: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  padding: 1.1rem 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.rail-logo {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 100%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}

.rail-title {
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}

.rail-burger {
  width: 2rem;
  display: grid;
  gap: 0.32rem;
}

.rail-burger span {
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.85);
}

.side-rail-right {
  right: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.8rem;
  padding-top: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.rail-line {
  width: 1px;
  height: 2.2rem;
  background: rgba(255, 255, 255, 0.32);
}

.rail-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.rail-dot-yellow {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

.page-shell {
  margin-left: 88px;
  margin-right: 88px;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-top {
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.1rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 1.02rem;
}

.brand small {
  color: var(--text-soft);
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid #c8c8c8;
  background: #ffffff;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.55rem;
  padding: 0.3rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  margin: 0.32rem 0;
  border-radius: 99px;
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--charcoal);
}

.site-nav a {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: #f1f1f1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.73rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.site-nav a:last-child {
  border-right: 0;
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--club-blue);
}

.section {
  padding: 1.35rem 0;
}

.section-canvas {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.4rem;
  background: var(--paper);
  border: 1px solid #d8d8d8;
}

.section-title-block {
  position: relative;
}

.section-title-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 5rem;
  height: 0.32rem;
  background: var(--club-blue);
}

.eyebrow {
  margin: 0;
  padding-left: 6rem;
  color: var(--text-soft);
  font-family: "Merriweather", Georgia, serif;
  font-style: italic;
  font-size: 1.06rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  margin-top: 0.9rem;
  font-size: clamp(1.7rem, 4.7vw, 3.45rem);
  line-height: 1.02;
  color: #585a5d;
}

.subtitle {
  margin-top: 0.55rem;
  padding-left: 6rem;
  color: #6a6a6a;
  font-family: "Merriweather", Georgia, serif;
  font-style: italic;
}

.hero-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr 1fr;
}

.media-card,
.story-card,
.module-card,
.persona-panel,
.timeline-step,
.contact-card,
.metric-item {
  background: #ffffff;
  border: 1px solid #d9d9d9;
}

.media-card {
  padding: 1rem;
}

.media-target {
  aspect-ratio: 16 / 10;
  border: 1px solid #bdbdbd;
  background: linear-gradient(135deg, #2f3440, #616a75);
  position: relative;
  overflow: hidden;
}

.target-ring {
  position: absolute;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 78%;
  height: 78%;
  border: 24px solid #e6e6e6;
}

.ring-2 {
  width: 56%;
  height: 56%;
  border: 18px solid #2194d1;
}

.ring-3 {
  width: 36%;
  height: 36%;
  border: 14px solid #ef7152;
}

.ring-4 {
  width: 18%;
  height: 18%;
  border: 10px solid #f2c316;
}

.target-center {
  width: 6%;
  height: 6%;
  background: #1f1f1f;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.media-caption {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
}

.story-card {
  padding: 1rem;
}

.story-kicker {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  color: #666;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.story-card h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.4rem, 3.5vw, 2.15rem);
  color: #222;
}

.highlight-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  position: relative;
  padding: 0.68rem 0 0.68rem 1.2rem;
  border-top: 1px solid #ececec;
  color: #323232;
  font-size: 1.03rem;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.02rem;
  width: 0.47rem;
  height: 0.47rem;
  border: 2px solid var(--accent-yellow);
}

.metrics-row {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-item {
  padding: 0.82rem;
}

.metric-value {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--club-blue-dark);
  font-weight: 800;
}

.metric-label {
  margin: 0.25rem 0 0;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.74rem;
  font-family: "Montserrat", sans-serif;
}

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

.module-card {
  padding: 0.9rem;
}

.module-card-wide {
  grid-column: span 2;
}

.module-tag {
  margin: 0;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.72rem;
  font-family: "Montserrat", sans-serif;
}

.module-card h3 {
  margin-top: 0.45rem;
  font-size: 1.1rem;
  color: #2e2e2e;
}

.module-card p:last-child {
  margin: 0.38rem 0 0;
  color: var(--text-soft);
}

.persona-switch {
  margin-top: 1rem;
  display: inline-flex;
  border: 1px solid #d6d6d6;
  background: #f1f1f1;
}

.persona-btn {
  border: 0;
  background: transparent;
  padding: 0.62rem 0.9rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: #444;
}

.persona-btn.is-active {
  background: var(--club-blue);
  color: #fff;
}

.persona-panels {
  margin-top: 0.9rem;
}

.persona-panel {
  display: none;
  padding: 1rem;
}

.persona-panel.is-active {
  display: block;
}

.persona-panel h3 {
  font-size: 1.3rem;
  color: #2b2b2b;
}

.persona-panel ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.persona-panel li {
  margin-top: 0.42rem;
}

.timeline {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-step {
  padding: 0.9rem;
}

.timeline-step span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--club-blue);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.timeline-step h3 {
  margin-top: 0.55rem;
  font-size: 1rem;
}

.timeline-step p {
  margin-top: 0.35rem;
  color: var(--text-soft);
}

.contact-card {
  margin-top: 0.95rem;
  padding: 1rem;
}

.contact-card p {
  margin: 0;
  color: var(--text-soft);
}

.hero-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn {
  min-height: 2.55rem;
  border-radius: 0.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.58rem 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid transparent;
  background: var(--club-blue);
  color: #fff;
}

.btn:hover,
.btn:focus-visible {
  background: var(--club-blue-dark);
}

.btn-outline {
  background: #fff;
  color: var(--charcoal);
  border-color: #cfcfcf;
}

.site-footer {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.2rem;
  background: #e3e3e3;
  border-top: 1px solid #d0d0d0;
  color: #5d5d5d;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .side-rail {
    display: none;
  }

  .page-shell {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    grid-template-columns: 1fr;
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

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

  .hero-grid,
  .module-grid,
  .timeline,
  .metrics-row {
    grid-template-columns: 1fr;
  }

  .module-card-wide {
    grid-column: span 1;
  }

  .section-canvas {
    padding: 1rem;
  }

  .eyebrow,
  .subtitle {
    padding-left: 0;
  }

  .section-title-block::before {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0.8rem 1rem;
  }
}
