:root {
  --vs-color-ink: var(--grey-950);
  --vs-color-body: var(--grey-700);
  --vs-color-muted: var(--grey-500);
  --vs-color-surface: var(--grey-50);
  --vs-color-surface-warm: var(--beige-25);
  --vs-color-navy: var(--navy-800);
  --vs-color-navy-deep: var(--navy-900);
  --vs-color-blue: var(--navy-600);
  --vs-color-gold: var(--beige-500);
  --vs-color-gold-soft: var(--beige-200);
  --vs-color-line: var(--line);
  --vs-font-display: var(--display);
  --vs-font-special-display: var(--figma-display);
  --vs-font-body: var(--body);
  --vs-site-pad: var(--site-pad);
  --vs-container: 1320px;
  --vs-container-narrow: 920px;
  --vs-space-section: clamp(72px, 8vw, 128px);
  --vs-space-section-compact: clamp(48px, 6vw, 84px);
  --vs-gap-grid: clamp(20px, 2.5vw, 36px);
  --vs-radius: var(--radius);
  --vs-shadow: var(--shadow);
}

.vs-container {
  width: min(var(--vs-container), calc(100% - (var(--vs-site-pad) * 2)));
  margin-inline: auto;
}

.vs-container-narrow {
  width: min(var(--vs-container-narrow), calc(100% - (var(--vs-site-pad) * 2)));
  margin-inline: auto;
}

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

.vs-section-compact {
  padding: var(--vs-space-section-compact) 0;
}

.vs-section-soft {
  background: var(--vs-color-surface-warm);
}

.vs-section-dark {
  background: var(--vs-color-navy);
  color: var(--grey-50);
}

.vs-eyebrow {
  margin: 0 0 12px;
  color: var(--vs-color-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.vs-lede {
  max-width: 760px;
  color: var(--vs-color-body);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
}

.vs-section-dark .vs-lede {
  color: rgba(252, 254, 255, 0.78);
}

.vs-button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.vs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--vs-radius);
  background: var(--vs-color-gold);
  color: var(--vs-color-navy-deep);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.vs-button:hover,
.vs-button:focus-visible {
  transform: translateY(-1px);
}

.vs-button-blue {
  background: var(--vs-color-blue);
  color: var(--grey-50);
}

.vs-button-outline {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.vs-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: var(--vs-gap-grid);
}

.vs-card {
  border: 1px solid var(--vs-color-line);
  border-radius: var(--vs-radius);
  background: var(--vs-color-surface);
  box-shadow: var(--vs-shadow);
}

.vs-card-pad {
  padding: clamp(22px, 3vw, 36px);
}

.vs-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.vs-media {
  overflow: hidden;
  border-radius: var(--vs-radius);
}

.vs-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vs-note {
  padding: clamp(28px, 4vw, 48px) var(--vs-site-pad);
  background: var(--vs-color-navy-deep);
  color: rgba(252, 254, 255, 0.78);
  text-align: center;
}

@media (max-width: 780px) {
  .vs-split {
    grid-template-columns: 1fr;
  }

  .vs-button-row,
  .vs-button {
    width: 100%;
  }
}
