:root {
  --paper: #fbfbf8;
  --surface: #ffffff;
  --soft: #eef3f0;
  --soft-blue: #edf3f6;
  --brand: #40586d;
  --ink: #202423;
  --muted: #68726d;
  --line: #d9dfdb;
  --sage: #8ca494;
  --rust: #b36c50;
  --blue: #40586d;
  --shadow: 0 18px 45px rgba(64, 88, 109, 0.1);
  --font-body: Heebo, Assistant, Rubik, "Segoe UI", Arial, sans-serif;
  --font-heading: Heebo, Assistant, Rubik, "Segoe UI", Arial, sans-serif;
  --font-display: Heebo, Assistant, Rubik, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 10;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(64, 88, 109, 0.14);
  box-shadow: 0 10px 28px rgba(32, 36, 35, 0.05);
  backdrop-filter: blur(16px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.home-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background-color: transparent;
  border-bottom: 0;
  box-shadow: none;
  color: #fff;
  backdrop-filter: none;
}

.home-header.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(64, 88, 109, 0.14);
  box-shadow: 0 10px 28px rgba(32, 36, 35, 0.05);
  color: #18232b;
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 42px;
}

.home-header .header-inner {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-block: 24px 18px;
  text-align: center;
  transition:
    min-height 180ms ease,
    padding 180ms ease,
    gap 180ms ease;
}

.home-header.scrolled .header-inner {
  min-height: 72px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 42px;
  padding-block: 10px;
  text-align: initial;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
}

.home-brand {
  gap: 0;
  justify-self: center;
}

.site-brand strong {
  color: #18232b;
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.home-brand strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.home-header.scrolled .home-brand strong {
  color: #18232b;
  text-shadow: none;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  flex: 1 1 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(24, 35, 43, 0.26);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.home-header .nav-toggle {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.home-header.scrolled .nav-toggle,
.site-header.nav-open .nav-toggle {
  border-color: rgba(24, 35, 43, 0.22);
  color: #18232b;
  background: rgba(64, 88, 109, 0.04);
}

.home-header:not(.scrolled).nav-open .nav-toggle {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.home-header .nav {
  flex: 0 1 auto;
  justify-content: center;
  gap: 24px;
}

.home-header.scrolled .nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: 28px;
}

.nav a {
  color: #18232b;
  padding: 6px 0;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.35;
  border-bottom: 1px solid transparent;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.home-header .nav a {
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  padding: 6px 0;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  border-bottom: 1px solid transparent;
}

.home-header.scrolled .nav a {
  color: #18232b;
}

.home-header .nav a:hover,
.home-header .nav a:focus-visible,
.home-header .nav a[aria-current="page"] {
  color: #fff;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.48);
}

.home-header.scrolled .nav a:hover,
.home-header.scrolled .nav a:focus-visible,
.home-header.scrolled .nav a[aria-current="page"] {
  color: var(--brand);
  border-bottom-color: rgba(64, 88, 109, 0.45);
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--brand);
  background: transparent;
  border-bottom-color: rgba(64, 88, 109, 0.45);
}

.section {
  padding-block: 88px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding-block: 72px 64px;
}

.hero-cinematic {
  min-height: 82vh;
  position: relative;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-block: 138px 76px;
  color: #fff;
}

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

.hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 31, 44, 0.46) 0%, rgba(18, 31, 44, 0.32) 44%, rgba(18, 31, 44, 0.44) 100%),
    radial-gradient(circle at center, rgba(64, 88, 109, 0.05), rgba(13, 24, 34, 0.18));
}

.hero-cinematic-content {
  display: grid;
  place-items: center;
  text-align: center;
  width: 100%;
  min-width: 0;
}

.hero-grid,
.split,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.hero-grid > *,
.split > *,
.about-grid > *,
.contact-grid > *,
.video-intro-grid > *,
.post-grid > *,
.blog-index-grid > *,
.testimonial-grid > *,
.athletes-hero-grid > *,
.athletes-card-grid > *,
.athletes-fit-grid > *,
.athletes-about > * {
  min-width: 0;
}

.hero-copy {
  max-width: 720px;
}

.hero-cinematic .hero-copy {
  width: min(100%, 640px);
  max-width: 640px;
  margin-inline: auto;
  min-width: 0;
}

.hero-copy .eyebrow {
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: 4rem;
  line-height: 1.08;
  font-weight: 800;
}

.hero-cinematic .hero-copy h1 {
  max-width: 640px;
  margin-inline: auto;
  color: #fff;
  font-family: var(--font-display);
  font-size: 3.08rem;
  line-height: 1.24;
  font-weight: 600;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-block-end: 22px;
  font-size: 4rem;
  line-height: 1.08;
  font-weight: 800;
}

h2 {
  margin-block-end: 16px;
  font-size: 2.65rem;
  line-height: 1.18;
  font-weight: 800;
}

h3 {
  margin-block-end: 10px;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 800;
}

.lead {
  width: 100%;
  max-width: 650px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.hero-cinematic .lead {
  width: min(100%, 540px);
  max-width: 540px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.86;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.page-hero {
  padding-block: 92px 72px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 820px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: 3.75rem;
  line-height: 1.12;
}

.blog-article {
  width: min(780px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 84px;
}

.article-header {
  margin-block-end: 44px;
}

.article-back-link {
  display: inline-block;
  margin-block-end: 22px;
  color: var(--brand);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.article-header h1 {
  max-width: 780px;
  font-size: 3.55rem;
  line-height: 1.14;
}

.article-featured-image {
  margin: 32px 0 0;
}

.article-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(64, 88, 109, 0.14);
  box-shadow: 0 18px 45px rgba(64, 88, 109, 0.09);
}

.article-content {
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 2;
}

.article-content p {
  margin-block-end: 24px;
}

.article-content h2 {
  margin-block: 54px 18px;
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1.24;
}

.article-highlight-line {
  padding: 18px 22px;
  border-inline-start: 3px solid var(--brand);
  border-radius: 8px;
  background: rgba(64, 88, 109, 0.06);
  color: var(--ink);
  font-weight: 700;
}

.article-image {
  margin: 44px 0 54px;
}

.article-image img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(64, 88, 109, 0.14);
  box-shadow: 0 18px 45px rgba(64, 88, 109, 0.09);
}

.article-image figcaption {
  margin-block-start: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.article-cta {
  margin-block-start: 58px;
  padding: 30px;
  border: 1px solid rgba(64, 88, 109, 0.14);
  border-radius: 14px;
  background: var(--surface);
}

.article-cta p {
  margin-block-end: 18px;
  color: var(--ink);
}

.about-longform {
  width: min(780px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 92px;
}

.about-story-section {
  padding-block: 46px;
  border-bottom: 1px solid rgba(64, 88, 109, 0.14);
}

.about-story-section:first-child {
  padding-block-start: 0;
}

.about-story-section:last-child {
  border-bottom: 0;
  padding-block-end: 0;
}

.about-story-section h1,
.about-story-section h2 {
  max-width: 740px;
  margin-block-end: 22px;
}

.about-story-section h1 {
  color: var(--brand);
  font-size: 3.75rem;
  line-height: 1.12;
}

.about-story-section p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 2;
}

.about-story-section p:last-child {
  margin-block-end: 0;
}

.standalone-highlight {
  margin-block: 34px;
  padding: 24px 28px;
  border-inline-start: 4px solid var(--brand);
  border-radius: 8px;
  background: rgba(64, 88, 109, 0.07);
  color: var(--ink);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.45;
}

.subtle-highlight {
  color: var(--brand);
  font-weight: 800;
  background: rgba(64, 88, 109, 0.08);
  border-radius: 6px;
  padding-inline: 4px;
}

.about-story-cta {
  margin-block-start: 10px;
  padding: 34px;
  border: 1px solid rgba(64, 88, 109, 0.14);
  border-radius: 14px;
  background: var(--surface);
}

.about-cta-button {
  margin-block-start: 12px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-block-start: 30px;
}

.hero-cinematic .hero-actions {
  justify-content: center;
  margin-block-start: 32px;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-block-start: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

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

.button.tertiary {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
  padding-inline: 8px;
}

.button.tertiary:hover,
.button.tertiary:focus-visible {
  color: var(--brand);
  background: rgba(64, 88, 109, 0.07);
}

.hero-cinematic .button.primary {
  min-height: 40px;
  padding: 8px 22px;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-cinematic .button.primary:hover,
.hero-cinematic .button.primary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero-cinematic .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.hero-cinematic .button.tertiary {
  color: rgba(255, 255, 255, 0.84);
  border-color: transparent;
  background: transparent;
}

.hero-cinematic .button.tertiary:hover,
.hero-cinematic .button.tertiary:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

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

.visual {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(64, 88, 109, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(140, 164, 148, 0.16) 1px, transparent 1px),
    var(--surface);
  background-size: 42px 42px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-intro {
  padding-block: 54px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.video-intro-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.15fr) minmax(260px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.video-card {
  min-height: 260px;
  border: 1px solid rgba(64, 88, 109, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(64, 88, 109, 0.08), rgba(255, 255, 255, 0.4)),
    linear-gradient(90deg, rgba(64, 88, 109, 0.1) 1px, transparent 1px),
    var(--surface);
  background-size: auto, 36px 36px, auto;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 36px rgba(64, 88, 109, 0.08);
}

.play-button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--brand);
  background: #fff;
  position: relative;
}

.play-button::after {
  content: "";
  position: absolute;
  inset-block-start: 18px;
  inset-inline-start: 21px;
  width: 0;
  height: 0;
  border-block: 11px solid transparent;
  border-inline-start: 17px solid var(--brand);
}

.visual-hero::before {
  content: "";
  position: absolute;
  width: 54%;
  height: 54%;
  inset-block-start: 18%;
  inset-inline-start: 22%;
  border: 2px solid rgba(32, 36, 35, 0.22);
  border-radius: 50%;
}

.hero .visual-hero {
  border-color: rgba(64, 88, 109, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 68% 30%, rgba(64, 88, 109, 0.1), transparent 24%),
    radial-gradient(circle at 24% 72%, rgba(140, 164, 148, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(64, 88, 109, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(64, 88, 109, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, #ffffff, #f5f8f7);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
  box-shadow: 0 26px 64px rgba(64, 88, 109, 0.1);
}

.hero .visual-hero::before {
  width: 58%;
  height: 58%;
  inset-block-start: 17%;
  inset-inline-start: 20%;
  border: 1px solid rgba(64, 88, 109, 0.24);
  box-shadow: inset 0 0 0 28px rgba(255, 255, 255, 0.42);
}

.hero .visual-hero::after {
  content: "";
  position: absolute;
  width: 68%;
  height: 1px;
  inset-block-end: 31%;
  inset-inline-start: 16%;
  background: linear-gradient(90deg, transparent, rgba(64, 88, 109, 0.32), transparent);
}

.focus-board {
  position: absolute;
  inset-block-start: 17%;
  inset-inline-end: 12%;
  width: 42%;
  display: grid;
  gap: 14px;
}

.focus-board span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.72;
}

.hero .focus-board {
  inset-block-start: 16%;
  inset-inline-end: 11%;
  width: 38%;
  gap: 12px;
}

.hero .focus-board span {
  height: 8px;
  background: var(--brand);
  opacity: 0.72;
}

.hero .focus-board span:nth-child(1) {
  width: 100%;
}

.focus-board span:nth-child(2) {
  width: 72%;
  background: var(--sage);
}

.hero .focus-board span:nth-child(2) {
  width: 76%;
  background: rgba(64, 88, 109, 0.46);
}

.focus-board span:nth-child(3) {
  width: 48%;
  background: var(--rust);
}

.hero .focus-board span:nth-child(3) {
  width: 52%;
  background: rgba(64, 88, 109, 0.28);
}

.pulse-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  inset-block-end: 17%;
  inset-inline-start: 13%;
  border: 18px solid rgba(179, 108, 80, 0.22);
  border-radius: 50%;
}

.hero .pulse-ring {
  width: 142px;
  height: 142px;
  inset-block-end: 16%;
  inset-inline-start: 13%;
  border: 14px solid rgba(64, 88, 109, 0.12);
  box-shadow: 0 0 0 1px rgba(64, 88, 109, 0.1);
}

.score-line {
  position: absolute;
  width: 56%;
  height: 2px;
  inset-block-end: 24%;
  inset-inline-end: 12%;
  background: var(--brand);
}

.hero .score-line {
  width: 54%;
  height: 3px;
  inset-block-end: 24%;
  inset-inline-end: 13%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(64, 88, 109, 0.12), var(--brand));
}

.score-line::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  inset-block-start: -7px;
  inset-inline-start: 34%;
  border-radius: 50%;
  background: var(--brand);
}

.hero .score-line::after {
  width: 14px;
  height: 14px;
  inset-block-start: -5.5px;
  inset-inline-start: 42%;
  box-shadow: 0 0 0 7px rgba(64, 88, 109, 0.1);
}

.section-heading {
  max-width: 620px;
}

.section-heading.narrow {
  margin-block-end: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.blog-feature {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.featured-post {
  display: grid;
  gap: 14px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  margin-block-end: 22px;
}

.featured-post h3 {
  max-width: 760px;
  font-size: 2.1rem;
  line-height: 1.22;
}

.featured-post p {
  max-width: 780px;
  color: var(--muted);
}

.post-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.post-meta span {
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.text-link {
  width: fit-content;
  color: var(--brand);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.section-link {
  margin-block: 28px 0;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block-end: 28px;
}

.category-row a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-weight: 700;
}

.category-row a:hover,
.category-row a:focus-visible {
  color: var(--brand);
  border-color: var(--brand);
}

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

.post-card,
.audience-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.blog-card-grid {
  margin-block: 28px 24px;
}

.blog-index-section {
  background: #fff;
}

.blog-index-grid {
  grid-template-columns: repeat(2, minmax(0, 540px));
}

.blog-index-grid .post-card h2 {
  margin-block: 16px 10px;
  font-size: 1.55rem;
  line-height: 1.35;
}

.article-card {
  display: grid;
  align-content: start;
}

.post-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
  margin-block-end: 18px;
}

.post-card-placeholder {
  background:
    linear-gradient(135deg, transparent 48%, rgba(32, 36, 35, 0.13) 49%, rgba(32, 36, 35, 0.13) 51%, transparent 52%),
    linear-gradient(135deg, rgba(64, 88, 109, 0.08), rgba(238, 243, 240, 0.92)),
    var(--soft);
}

.post-card p,
.audience-card p {
  color: var(--muted);
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.article-row .post-tag,
.article-row h3,
.article-row p {
  grid-column: 1;
}

.article-row h3 {
  max-width: 760px;
}

.article-row p {
  max-width: 720px;
  margin-block-end: 0;
  color: var(--muted);
}

.article-row > span {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: start;
  color: var(--muted);
  font-size: 0.9rem;
}

.placeholder.mini {
  height: 128px;
  margin-block-end: 18px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, transparent 48%, rgba(32, 36, 35, 0.13) 49%, rgba(32, 36, 35, 0.13) 51%, transparent 52%),
    var(--soft);
  position: relative;
  overflow: hidden;
}

.placeholder.mini::after {
  content: "";
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  inset-block-start: 30px;
  inset-inline-start: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 36, 35, 0.12);
}

.placeholder.one {
  background-color: var(--soft);
}

.placeholder.two {
  background-color: var(--soft-blue);
}

.placeholder.three {
  background-color: #f3efeb;
}

.post-tag {
  margin-block-end: 8px;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 700;
}

.soft-band {
  background: var(--soft);
}

.principles-list {
  display: grid;
  gap: 14px;
}

.principles-list article,
.info-panel,
.quote-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.principles-list span {
  display: inline-block;
  margin-block-end: 8px;
  color: var(--brand);
  font-weight: 800;
}

.principles-list p,
.info-panel p,
.quote-panel p {
  color: var(--muted);
}

.info-panel h3 {
  margin-block-end: 14px;
}

.calm-panel p {
  margin-block-end: 0;
}

.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.clean-list li {
  position: relative;
  padding-inline-start: 22px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.highlight-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-list li {
  padding: 7px 11px;
  border: 1px solid rgba(64, 88, 109, 0.22);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(64, 88, 109, 0.05);
  font-weight: 700;
  font-size: 0.92rem;
}

.quote-panel {
  align-self: stretch;
  display: grid;
  align-items: center;
  background: var(--brand);
}

.quote-panel p {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.65;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.steps li {
  padding: 20px;
  border: 1px solid rgba(32, 36, 35, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.steps span {
  display: inline-block;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
  margin-block-end: 4px;
}

.steps strong {
  display: block;
  margin-block-end: 6px;
  font-size: 1.06rem;
}

.steps p {
  margin-block-end: 0;
  color: var(--muted);
}

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dot {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-block-end: 22px;
}

.dot.sage {
  background: var(--sage);
}

.dot.rust {
  background: var(--rust);
}

.dot.blue {
  background: var(--brand);
}

.dot.ink {
  background: var(--ink);
}

.about-grid {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
}

.personal-image-card {
  min-height: 460px;
  border: 1px solid rgba(64, 88, 109, 0.22);
  border-radius: 28px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(64, 88, 109, 0.09);
}

.personal-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.portrait-placeholder {
  min-height: 360px;
  background:
    radial-gradient(circle at 45% 32%, rgba(179, 108, 80, 0.2) 0 52px, transparent 53px),
    linear-gradient(90deg, rgba(64, 88, 109, 0.11) 1px, transparent 1px),
    var(--surface);
  background-size: auto, 38px 38px, auto;
}

.portrait-line {
  position: absolute;
  width: 54%;
  height: 2px;
  inset-block-start: 58%;
  inset-inline-start: 23%;
  background: var(--ink);
}

.portrait-block {
  position: absolute;
  width: 42%;
  height: 92px;
  inset-block-end: 16%;
  inset-inline-start: 29%;
  border-radius: 8px 8px 0 0;
  background: rgba(140, 164, 148, 0.34);
  border: 1px solid rgba(32, 36, 35, 0.14);
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 8px;
}

.callout > div {
  max-width: 720px;
}

.callout p:not(.eyebrow) {
  color: var(--muted);
}

.compact-visual {
  min-height: 320px;
}

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

.testimonial-card {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(64, 88, 109, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.04rem;
}

.testimonial-card figcaption {
  color: var(--brand);
  font-weight: 800;
}

.contact-section {
  background: var(--brand);
  color: #fff;
}

.home-contact-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 36px;
  text-align: center;
}

.home-contact-grid .section-heading {
  max-width: 680px;
  margin-inline: auto;
}

.home-contact-grid .section-heading p:not(.eyebrow) {
  max-width: 560px;
  margin-inline: auto;
}

.contact-section .eyebrow {
  color: #d9e6ef;
}

.contact-section .section-heading p,
.contact-list {
  color: rgba(255, 255, 255, 0.74);
}

.contact-section .callout p:not(.eyebrow),
.dark-callout p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.contact-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.contact-list li + li {
  margin-block-start: 8px;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
}

.home-contact-form {
  width: min(100%, 540px);
  gap: 14px;
  padding: 30px;
  border: 1px solid rgba(64, 88, 109, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(23, 35, 45, 0.14);
  text-align: start;
}

.contact-form label {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(64, 88, 109, 0.22);
  border-color: var(--brand);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  margin-block-start: 8px;
}

.privacy-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--brand);
}

.privacy-check span {
  min-width: 0;
}

.form-reassurance {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.form-reassurance a {
  color: var(--brand);
  border-bottom: 1px solid rgba(64, 88, 109, 0.38);
}

.light-button {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

.light-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.74);
}

.whatsapp-line {
  margin-block: 24px 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-block: 10px 0;
  color: var(--muted);
}

.site-footer {
  background: #f7f6f2;
  color: rgba(64, 88, 109, 0.82);
  border-top: 1px solid rgba(64, 88, 109, 0.12);
}

.footer-inner {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  padding-block: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--brand);
  border-bottom: 1px solid rgba(64, 88, 109, 0.28);
}

.footer-profiles {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.footer-profiles-title {
  color: rgba(64, 88, 109, 0.62);
  font-size: 0.84rem;
}

.footer-profile-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-inner .footer-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(64, 88, 109, 0.18);
  border-radius: 999px;
  color: rgba(64, 88, 109, 0.76);
  font-size: 0.86rem;
}

.footer-inner .footer-profile-link:hover,
.footer-inner .footer-profile-link:focus-visible {
  color: var(--brand);
  border-color: rgba(64, 88, 109, 0.36);
  background: rgba(64, 88, 109, 0.04);
}

.footer-profile-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(64, 88, 109, 0.08);
  color: rgba(64, 88, 109, 0.86);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}

.facebook-icon {
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-legal {
  color: rgba(64, 88, 109, 0.66);
}

.privacy-page .page-hero-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.privacy-page .lead {
  max-width: none;
}

.athletes-hero {
  padding-block: 96px 84px;
  background:
    linear-gradient(180deg, rgba(64, 88, 109, 0.06), rgba(255, 255, 255, 0.94)),
    var(--surface);
  border-bottom: 1px solid rgba(64, 88, 109, 0.12);
}

.athletes-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 72px;
}

.athletes-hero-copy h1 {
  max-width: 620px;
  font-size: 4rem;
  line-height: 1.08;
}

.athletes-hero-copy .lead {
  max-width: 600px;
}

.athletes-court-card {
  min-height: 420px;
  border: 1px solid rgba(64, 88, 109, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 66% 38%, rgba(179, 108, 80, 0.16), transparent 27%),
    linear-gradient(135deg, rgba(64, 88, 109, 0.08), rgba(238, 243, 240, 0.9)),
    var(--soft);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(64, 88, 109, 0.09);
}

.court-lines,
.court-center,
.court-lane,
.court-arc {
  position: absolute;
  inset: 0;
}

.court-lines {
  opacity: 0.72;
}

.court-lines::before,
.court-lines::after {
  content: "";
  position: absolute;
  background: rgba(64, 88, 109, 0.22);
}

.court-lines::before {
  width: 1px;
  inset-block: 0;
  inset-inline-start: 50%;
}

.court-lines::after {
  height: 1px;
  inset-inline: 0;
  inset-block-start: 50%;
}

.court-center {
  width: 132px;
  height: 132px;
  border: 1px solid rgba(64, 88, 109, 0.28);
  border-radius: 50%;
  inset-block-start: calc(50% - 66px);
  inset-inline-start: calc(50% - 66px);
}

.court-lane {
  width: 34%;
  height: 44%;
  border: 1px solid rgba(64, 88, 109, 0.24);
  border-block-start: 0;
  inset-block-start: 0;
  inset-inline-start: 12%;
}

.court-arc {
  width: 56%;
  height: 56%;
  border: 1px solid rgba(64, 88, 109, 0.2);
  border-radius: 50%;
  inset-block-start: -18%;
  inset-inline-start: 1%;
}

.athletes-focus-note {
  position: absolute;
  inset-inline-end: 26px;
  inset-block-end: 26px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(64, 88, 109, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  color: var(--brand);
}

.athletes-focus-note strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.athletes-focus-note span {
  color: var(--muted);
  font-size: 0.92rem;
}

.athletes-readable {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.athletes-readable p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.95;
}

.athletes-emphasis {
  margin-block-start: 28px;
  padding: 22px 26px;
  border: 1px solid rgba(64, 88, 109, 0.14);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink) !important;
  font-weight: 700;
}

.athletes-card-grid,
.athletes-fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.athletes-card,
.athletes-fit-grid article {
  padding: 22px;
  border: 1px solid rgba(64, 88, 109, 0.13);
  border-radius: 10px;
  background: var(--surface);
}

.athletes-card h3,
.athletes-fit-grid h3 {
  color: var(--ink);
}

.athletes-card p,
.athletes-fit-grid p {
  color: var(--muted);
}

.athletes-steps {
  align-self: start;
}

.athletes-about {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
}

.personal-image-card.compact {
  min-height: 320px;
  aspect-ratio: 4 / 5;
}

.personal-image-card.compact img {
  min-height: 320px;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 72px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 22px;
    padding-block: 10px;
  }

  .nav {
    flex: 1 1 280px;
    justify-content: center;
    gap: 14px;
  }

  .hero-grid,
  .split,
  .about-grid,
  .contact-grid,
  .athletes-hero-grid,
  .athletes-about,
  .video-intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    min-height: 0;
  }

  .hero-cinematic {
    min-height: 82vh;
    padding-block: 138px 72px;
  }

  .home-brand strong {
    font-size: 1.22rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-cinematic .hero-copy h1 {
    font-size: 2.75rem;
    line-height: 1.24;
  }

  .page-hero h1,
  .about-story-section h1,
  .article-header h1 {
    font-size: 3rem;
  }

  .article-content h2 {
    font-size: 2rem;
  }

  .visual {
    min-height: 300px;
  }

  .personal-image-card {
    min-height: 340px;
  }

  .personal-image-card img {
    min-height: 340px;
  }

  .video-card {
    min-height: 220px;
  }

  .post-grid,
  .audience-grid,
  .process-steps,
  .athletes-card-grid,
  .athletes-fit-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .athletes-hero-copy h1 {
    font-size: 3rem;
  }

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

@media (max-width: 760px) {
  .site-header {
    z-index: 220;
  }

  .header-inner,
  .home-header.scrolled .header-inner {
    min-height: 64px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding-block: 10px;
  }

  .home-header .header-inner {
    min-height: 74px;
    flex-direction: row;
    padding-block: 14px;
    text-align: initial;
  }

  .brand,
  .home-brand {
    order: 1;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    flex: 0 0 auto;
  }

  .nav,
  .home-header .nav,
  .home-header.scrolled .nav {
    display: none;
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-block: 8px 2px;
    border-top: 1px solid rgba(64, 88, 109, 0.14);
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .home-header:not(.scrolled).nav-open {
    background: rgba(24, 35, 43, 0.82);
    backdrop-filter: blur(16px);
  }

  .home-header.scrolled.nav-open,
  .site-header.nav-open:not(.home-header) {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(64, 88, 109, 0.14);
    box-shadow: 0 10px 28px rgba(32, 36, 35, 0.05);
  }

  .home-header:not(.scrolled) .nav {
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .nav a,
  .home-header .nav a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 4px;
    font-size: 0.96rem;
    border-bottom: 1px solid rgba(64, 88, 109, 0.12);
  }

  .home-header:not(.scrolled) .nav a {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .home-header.scrolled .nav a,
  .site-header:not(.home-header) .nav a {
    color: #18232b;
  }

  .nav a:last-child {
    border-bottom-color: transparent;
  }

  .hero-cinematic {
    padding-block-start: 104px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .blog-article {
    width: min(100% - 28px, 780px);
    padding-block: 60px;
  }

  .article-content {
    font-size: 1.04rem;
  }

  .article-cta {
    padding: 22px;
  }

  .about-longform {
    width: min(100% - 28px, 780px);
    padding-block: 64px;
  }

  .about-story-section {
    padding-block: 36px;
  }

  .about-story-section p {
    font-size: 1.04rem;
  }

  .about-story-cta {
    padding: 24px;
  }

  .section {
    padding-block: 60px;
  }

  .hero {
    padding-block-start: 48px;
  }

  .home-header .header-inner {
    min-height: 74px;
    padding-block: 14px;
    gap: 10px 14px;
  }

  .home-header .nav {
    gap: 0;
  }

  .home-header.scrolled .header-inner {
    min-height: 64px;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding-block: 10px;
  }

  .home-header.scrolled .nav {
    flex: 1 1 100%;
    gap: 0;
  }

  .hero-cinematic {
    min-height: 82vh;
    padding-block: 104px 56px;
  }

  .nav {
    gap: 0;
  }

  .nav a {
    padding: 11px 4px;
    font-size: 0.96rem;
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1.14;
  }

  h2 {
    font-size: 1.85rem;
    line-height: 1.22;
  }

  h3 {
    font-size: 1.12rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .home-brand strong {
    font-size: 1.12rem;
  }

  .hero-cinematic .hero-copy h1 {
    font-size: 2.02rem;
    line-height: 1.22;
  }

  .hero-cinematic .lead {
    font-size: 1rem;
    line-height: 1.8;
  }

  .page-hero h1,
  .about-story-section h1,
  .article-header h1 {
    font-size: 2.45rem;
  }

  .article-content {
    line-height: 1.95;
  }

  .article-content h2 {
    font-size: 1.65rem;
  }

  .standalone-highlight {
    font-size: 1.35rem;
  }

  .featured-post h3 {
    font-size: 1.55rem;
  }

  .hero-actions,
  .footer-inner {
    align-items: center;
  }

  .hero-cinematic .hero-actions {
    align-items: center;
  }

  .hero-cinematic .button {
    width: auto;
  }

  .hero-cinematic .button.tertiary {
    width: auto;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .post-grid,
  .audience-grid,
  .process-steps,
  .athletes-card-grid,
  .athletes-fit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .athletes-hero {
    padding-block: 72px 60px;
  }

  .athletes-hero-copy h1 {
    font-size: 2.45rem;
  }

  .athletes-court-card {
    min-height: 280px;
  }

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

  .article-row > span {
    grid-column: 1;
    grid-row: auto;
  }

  .featured-post {
    padding: 22px;
  }

  .contact-form {
    padding: 18px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .site-brand strong,
  .home-brand strong {
    font-size: 1.08rem;
  }

  .hero-cinematic .hero-copy h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.08rem);
    line-height: 1.2;
  }

  .hero-cinematic .lead {
    max-width: 31ch;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .page-hero h1,
  .about-story-section h1,
  .article-header h1 {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .article-content {
    font-size: 1rem;
  }

  .button,
  .text-link {
    min-height: 46px;
  }
}
