:root {
  color-scheme: light;
  --navy: oklch(35% 0.075 259);
  --navy-deep: oklch(22% 0.055 259);
  --navy-dark: oklch(17% 0.04 259);
  --amber: oklch(74% 0.15 76);
  --amber-bright: oklch(81% 0.155 82);
  --paper: oklch(97% 0.009 84);
  --paper-deep: oklch(92% 0.014 84);
  --ink: oklch(22% 0.035 259);
  --muted: oklch(48% 0.025 259);
  --line: oklch(82% 0.018 259);
  --focus: oklch(70% 0.18 60);
  --shadow-low: 0 18px 50px rgb(26 40 65 / 0.12);
  --shadow-high: 0 28px 80px rgb(18 29 50 / 0.2);
  --display: "Antonio", "Arial Narrow", sans-serif;
  --body: "Atkinson Hyperlegible Next", "Segoe UI", sans-serif;
  --page-gutter: clamp(1.25rem, 4vw, 5.5rem);
  --section-space: clamp(5.5rem, 10vw, 10rem);
  --content-max: 90rem;
  --header-height: 4.5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, 0.97rem + 0.16vw, 1.125rem);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

::selection {
  background: var(--amber);
  color: var(--navy-dark);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  translate: 0 -160%;
  background: var(--amber);
  color: var(--navy-dark);
  padding: 0.7rem 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: translate 180ms var(--ease-out);
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 240ms var(--ease-out),
    border-color 240ms var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgb(26 40 65 / 0.08);
}

.header-inner {
  width: min(100%, var(--content-max));
  min-height: var(--header-height);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  position: relative;
  z-index: 103;
  width: clamp(10rem, 14vw, 13.75rem);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: var(--navy-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--amber);
  scale: 0 1;
  transform-origin: right;
  transition: scale 240ms var(--ease-out);
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  scale: 1;
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 0;
  border-radius: 0.25rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  transition:
    translate 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.nav-cta {
  min-height: 2.8rem;
  padding: 0.75rem 1.1rem;
  background: var(--navy);
  color: var(--paper);
  font-size: 0.83rem;
}

.nav-cta svg,
.button svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: translate 220ms var(--ease-out);
}

.nav-cta:hover,
.button:hover {
  translate: 0 -2px;
}

.nav-cta:hover svg,
.button:hover svg {
  translate: 0.2rem 0;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  transition:
    rotate 220ms var(--ease-out),
    translate 220ms var(--ease-out);
}

.menu-toggle span:first-child {
  translate: 0 -0.25rem;
}

.menu-toggle span:last-child {
  translate: 0 0.25rem;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  translate: 0;
  rotate: 45deg;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  translate: 0;
  rotate: -45deg;
}

.hero {
  position: relative;
  min-height: max(47rem, 100svh);
  padding-top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(24rem, 0.94fr);
  background: var(--navy-deep);
  color: var(--paper);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: var(--header-height) auto 0 0;
  width: min(17vw, 17rem);
  opacity: 0.18;
  background-image: repeating-linear-gradient(
    152deg,
    transparent 0 20px,
    var(--amber) 20px 22px,
    transparent 22px 43px
  );
  clip-path: polygon(0 0, 100% 0, 35% 100%, 0 100%);
}

.hero-copy {
  z-index: 2;
  align-self: center;
  width: min(100%, 52rem);
  padding: clamp(7rem, 12vh, 10rem) clamp(2rem, 6vw, 8rem) clamp(8rem, 13vh, 10rem) var(--page-gutter);
}

.eyebrow,
.section-index,
.service-label {
  margin: 0 0 1.4rem;
  color: var(--amber-bright);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 2.7rem;
  height: 2px;
  background: var(--amber);
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.93;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(4rem, 7.4vw, 8.6rem);
}

.hero h1 span {
  color: var(--amber);
}

.hero-lead {
  max-width: 39rem;
  margin: clamp(1.75rem, 4vw, 3rem) 0 0;
  color: oklch(90% 0.015 259);
  font-size: clamp(1.08rem, 1rem + 0.42vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 2.3rem;
  display: flex;
  align-items: center;
  gap: 1.4rem 1.8rem;
  flex-wrap: wrap;
}

.button {
  padding: 1rem 1.5rem;
}

.button-primary {
  background: var(--amber);
  color: var(--navy-dark);
  box-shadow: 0 12px 34px rgb(13 22 38 / 0.2);
}

.button-primary:hover {
  background: var(--amber-bright);
  box-shadow: 0 18px 40px rgb(13 22 38 / 0.28);
}

.text-link {
  position: relative;
  color: var(--paper);
  font-weight: 700;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 1px;
}

.text-link.dark {
  color: var(--navy);
}

.service-secondary .text-link.dark {
  color: var(--paper);
}

.hero-credentials {
  max-width: 44rem;
  margin-top: clamp(2.5rem, 5vh, 4rem);
  padding-top: 1.25rem;
  display: flex;
  gap: 0.65rem 1.25rem;
  flex-wrap: wrap;
  border-top: 1px solid oklch(100% 0 0 / 0.18);
}

.hero-credentials span {
  color: oklch(89% 0.018 259);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-credentials span + span::before {
  content: "/";
  margin-right: 1.25rem;
  color: var(--amber);
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgb(28 42 70 / 0.08) 45%, rgb(20 31 53 / 0.58) 100%);
  pointer-events: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, 50% 50%);
  opacity: 0;
  scale: 1.02;
  transition:
    opacity 900ms var(--ease-out),
    scale 8s linear;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  scale: 1.065;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: var(--page-gutter);
  bottom: 4.2rem;
  max-width: 16rem;
  margin: 0;
  padding-top: 0.9rem;
  border-top: 3px solid var(--amber);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-align: right;
  text-transform: uppercase;
}

.hero-carousel-controls {
  position: absolute;
  z-index: 3;
  left: max(2rem, var(--page-gutter));
  bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hero-dots {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.hero-dot,
.hero-pause {
  border: 1px solid oklch(94% 0.01 259 / 0.72);
  color: var(--paper);
  background: oklch(24% 0.04 259 / 0.76);
  cursor: pointer;
}

.hero-dot {
  width: 2.75rem;
  height: 0.3rem;
  padding: 0;
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.hero-dot.is-active {
  border-color: var(--amber);
  background: var(--amber);
}

.hero-pause {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
}

.hero-pause svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-pause .play-icon {
  display: none;
  fill: currentColor;
}

.hero-pause.is-paused .pause-icon {
  display: none;
}

.hero-pause.is-paused .play-icon {
  display: block;
}

.hero-pause[hidden] {
  display: none;
}

.hero-dot:focus-visible,
.hero-pause:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.discipline-band {
  overflow: hidden;
  background: var(--amber);
  color: var(--navy-dark);
}

.discipline-track {
  width: max-content;
  min-width: 100%;
  padding: 1.05rem var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  font-family: var(--display);
  font-size: clamp(1rem, 1.3vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.discipline-track i {
  width: 0.45rem;
  height: 0.45rem;
  rotate: 45deg;
  background: var(--navy);
}

.section {
  padding: var(--section-space) var(--page-gutter);
}

.section-heading,
.service-layout,
.method,
.about,
.athletes,
.social,
.site-footer {
  margin-inline: auto;
}

.section-heading {
  width: min(100%, var(--content-max));
  margin-bottom: clamp(3rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: minmax(10rem, 0.38fr) minmax(0, 1fr);
  gap: 2rem;
}

.section-index {
  color: var(--muted);
}

.section-index.light {
  color: var(--amber-bright);
}

.section-index.dark {
  color: var(--navy-deep);
}

.section-heading h2,
.method h2,
.about h2,
.social h2 {
  max-width: 14ch;
  font-size: clamp(3.2rem, 6vw, 7rem);
  color: var(--navy-deep);
}

.section-heading > div > p,
.method-intro > p:last-child {
  max-width: 46rem;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.3rem);
}

.services {
  background: var(--paper);
}

.service-layout {
  width: min(100%, var(--content-max));
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(20rem, 0.72fr);
  align-items: stretch;
}

.service-primary,
.service-secondary,
.service-tertiary {
  position: relative;
  overflow: hidden;
}

.service-primary {
  min-height: 38rem;
  padding: clamp(2.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  background: var(--navy);
  color: var(--paper);
}

.service-primary::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -28%;
  width: min(28rem, 52vw);
  aspect-ratio: 1;
  border: clamp(3rem, 6vw, 7rem) solid oklch(100% 0 0 / 0.055);
  border-radius: 50%;
}

.service-secondary {
  margin: clamp(2rem, 5vw, 5rem) 0 clamp(2rem, 5vw, 5rem) clamp(-1.5rem, -2vw, -0.75rem);
  padding: clamp(2rem, 4vw, 3.8rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 2vw, 2rem);
  background: var(--amber);
  color: var(--navy-deep);
  box-shadow: var(--shadow-high);
}

.service-tertiary {
  grid-column: 1 / -1;
  padding: clamp(2.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--line);
  background: oklch(94% 0.018 259);
  color: var(--navy-deep);
}

.service-tertiary::after {
  content: "";
  position: absolute;
  right: clamp(-8rem, -7vw, -3rem);
  bottom: clamp(-10rem, -9vw, -5rem);
  width: min(25rem, 45vw);
  aspect-ratio: 1;
  border: clamp(2rem, 4vw, 4.5rem) solid oklch(47% 0.075 259 / 0.07);
  border-radius: 50%;
}

.service-number {
  position: relative;
  z-index: 2;
  color: var(--amber);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

.service-secondary .service-number {
  color: var(--navy);
}

.service-tertiary .service-number {
  color: var(--amber-deep);
}

.service-content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.service-label {
  margin-bottom: 1rem;
}

.service-secondary .service-label {
  color: var(--navy);
}

.service-tertiary .service-label {
  color: var(--amber-deep);
}

.service-content h3 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.3vw, 5.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-secondary .service-content h3 {
  color: var(--paper);
  font-size: clamp(2.35rem, 3.4vw, 4.2rem);
  line-height: 1.06;
  text-shadow: 0 0.1em 0.35em oklch(20% 0.055 259 / 0.14);
}

.service-tertiary .service-content {
  max-width: none;
}

.service-tertiary .service-content h3 {
  max-width: 17ch;
  color: var(--navy-deep);
  font-size: clamp(2.6rem, 4.2vw, 5rem);
}

.service-content > p:not(.service-label) {
  max-width: 42rem;
  margin: 1.6rem 0 0;
  color: oklch(90% 0.015 259);
}

.service-secondary .service-content > p:not(.service-label) {
  color: var(--navy-deep);
}

.assessment-copy {
  max-width: 64rem;
  margin: 2rem 0 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
}

.assessment-copy p {
  margin: 0;
  color: var(--muted);
}

.service-tertiary .text-link.dark {
  color: var(--navy-deep);
}

.feature-list {
  margin: 2rem 0 2.4rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.5rem;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: oklch(90% 0.015 259);
  font-size: 0.94rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  rotate: 45deg;
  background: var(--amber);
}

.button-light {
  background: var(--paper);
  color: var(--navy-deep);
}

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

.fit-list-title {
  margin-top: 2rem !important;
  color: var(--navy-deep) !important;
  font-weight: 700;
}

.fit-adjustments {
  margin: 0.75rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid oklch(28% 0.07 259 / 0.3);
  list-style: none;
}

.fit-adjustments li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.25rem;
  border-bottom: 1px solid oklch(28% 0.07 259 / 0.3);
  font-size: 0.88rem;
  font-weight: 600;
}

.fit-adjustments li::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 0.1rem;
  width: 0.4rem;
  height: 0.4rem;
  rotate: 45deg;
  background: var(--navy);
}

.method {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding-inline: max(var(--page-gutter), calc((100% - var(--content-max)) / 2 + var(--page-gutter)));
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(28rem, 1.22fr);
  gap: clamp(4rem, 9vw, 10rem);
  background: var(--navy-deep);
  color: var(--paper);
}

.method::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("assets/section-method-bg.webp");
  background-position: 62% center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.18;
  filter: saturate(0.55) contrast(1.08);
  scale: 1.015;
}

.method::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, oklch(20% 0.055 259 / 0.78) 0%, oklch(20% 0.055 259 / 0.18) 72%);
  pointer-events: none;
}

.method > * {
  position: relative;
  z-index: 1;
}

.method-intro {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.method h2 {
  color: var(--paper);
}

.method-intro > p:last-child {
  color: oklch(82% 0.02 259);
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  min-height: 13rem;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  border-top: 1px solid oklch(100% 0 0 / 0.17);
}

.method-steps li:last-child {
  border-bottom: 1px solid oklch(100% 0 0 / 0.17);
}

.method-steps > li > span {
  color: var(--amber);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
}

.method-steps h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.method-steps p {
  max-width: 35rem;
  margin: 1rem 0 0;
  color: oklch(82% 0.02 259);
}

.about {
  width: min(100%, var(--content-max));
  background: var(--paper-deep);
}

.about.section {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--page-gutter), calc((100% - var(--content-max)) / 2 + var(--page-gutter)));
}

.about-copy {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}

.about-copy > .section-index {
  text-align: center;
}

.about h2 {
  max-width: 17ch;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

.about-text {
  max-width: 70rem;
  margin-top: 2.2rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.about-text p {
  margin: 0;
  color: var(--muted);
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}

.about-statement {
  max-width: 58rem;
  margin: clamp(3rem, 7vw, 6rem) auto 0;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-block: 1px solid var(--line);
  color: var(--amber);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-align: center;
  text-wrap: balance;
  text-transform: uppercase;
}

.timeline {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 5vw, 5rem);
  list-style: none;
}

.timeline > li {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.timeline > li:last-child {
  border-bottom: 0;
}

.timeline time {
  color: var(--amber);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
}

.timeline p {
  margin: 0;
  align-self: center;
  font-weight: 600;
}

.verification-note {
  max-width: 49rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.athletes {
  width: min(100%, calc(var(--content-max) + 2 * var(--page-gutter)));
  background: var(--paper);
}

.athletes .section-heading {
  padding-inline: 0;
}

.athlete-records {
  width: min(100%, var(--content-max));
  margin: clamp(3rem, 7vw, 6rem) auto 0;
  border-top: 2px solid var(--navy);
}

.record-head,
.athlete-records article {
  display: grid;
  grid-template-columns: 8rem minmax(10rem, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(1.25rem, 3vw, 3.5rem);
}

.record-head {
  padding: 0.85rem 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.athlete-records article {
  padding: clamp(1.25rem, 2.5vw, 2rem) 0;
  align-items: center;
  border-top: 1px solid var(--line);
}

.athlete-records article:last-child {
  border-bottom: 1px solid var(--line);
}

.athlete-photo {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 0.25rem;
  background: var(--paper-deep);
}

.athlete-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--athlete-position, 50% 50%);
  transition: scale 700ms var(--ease-out);
}

.athlete-records article:hover .athlete-photo img {
  scale: 1.035;
}

.athlete-identity {
  min-width: 0;
}

.athlete-records h3 {
  margin: 0;
}

.athlete-records h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.athlete-achievements {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  list-style: none;
}

.athlete-achievements li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.athlete-achievements li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--amber);
}

.records-note {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}

.testimonials {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding-inline: max(var(--page-gutter), calc((100% - var(--content-max)) / 2 + var(--page-gutter)));
  background: var(--navy-deep);
  color: var(--paper);
}

.testimonials::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url("assets/section-testimonials-bg.webp");
  background-position: center 38%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.07;
  filter: grayscale(0.65) contrast(1.1);
}

.testimonials > * {
  position: relative;
  z-index: 1;
}

.testimonials-heading {
  text-align: center;
}

.testimonials-heading h2 {
  max-width: 15ch;
  margin-inline: auto;
  color: var(--paper);
  font-size: clamp(3.25rem, 15vw, 5rem);
  line-height: 0.96;
}

.testimonials-heading > div > p {
  max-width: 36rem;
  margin: 1.25rem auto 0;
  color: oklch(86% 0.018 259);
}

.testimonial-carousel {
  margin-top: clamp(3rem, 8vw, 6rem);
}

.testimonial-stage {
  position: relative;
}

.testimonial-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border: 1px solid oklch(82% 0.03 259 / 0.62);
  border-radius: 50%;
  background: oklch(25% 0.06 259 / 0.94);
  color: var(--paper);
  box-shadow: 0 0.5rem 1.5rem oklch(16% 0.04 259 / 0.3);
  cursor: pointer;
  transition:
    background-color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    color 220ms var(--ease-out),
    opacity 220ms var(--ease-out);
}

.testimonial-arrow--previous {
  left: -1rem;
}

.testimonial-arrow--next {
  right: -1rem;
}

.testimonial-arrow:hover:not(:disabled),
.testimonial-arrow:focus-visible {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--navy-deep);
}

.testimonial-arrow:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.testimonial-arrow:disabled {
  opacity: 0.32;
  cursor: default;
}

.testimonial-arrow svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.testimonial-pagination {
  min-height: 1.5rem;
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-dot {
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.testimonial-dot::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid var(--amber);
  border-radius: 50%;
  background: transparent;
  opacity: 0.72;
  transition:
    width 180ms var(--ease-out),
    height 180ms var(--ease-out),
    background-color 180ms var(--ease-out),
    opacity 180ms var(--ease-out);
}

.testimonial-dot:hover::before,
.testimonial-dot:focus-visible::before,
.testimonial-dot.is-active::before {
  background: var(--amber);
  opacity: 1;
}

.testimonial-dot.is-active::before {
  width: 0.75rem;
  height: 0.75rem;
}

.testimonial-dot:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.testimonial-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0.1rem;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

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

.testimonial-list {
  --testimonial-gap: 1rem;

  min-width: 100%;
  display: flex;
  gap: var(--testimonial-gap);
}

.testimonial-list article {
  min-width: 0;
  flex: 0 0 calc(100% - 2rem);
  padding-top: clamp(2rem, 6vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 6vw, 2.5rem);
  overflow: hidden;
  border: 1px solid oklch(78% 0.03 259 / 0.32);
  border-radius: 0.35rem;
  background: oklch(30% 0.055 259);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.testimonial-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--navy-deep);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.82) contrast(1.04);
}

.testimonial-photo figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  background: oklch(20% 0.055 259 / 0.88);
  color: var(--paper);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.testimonial-athlete {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  margin: 0 clamp(1.5rem, 6vw, 2rem) clamp(1.5rem, 6vw, 2rem);
}

.testimonial-avatar {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid oklch(85% 0.03 259 / 0.5);
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy-deep);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
}

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

.testimonial-athlete h3,
.testimonial-athlete a,
.testimonial-copy p {
  margin: 0;
}

.testimonial-athlete h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.testimonial-source {
  display: inline-block;
  margin-top: 0.25rem;
  color: oklch(78% 0.025 259);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}

.testimonial-source:hover,
.testimonial-source:focus-visible {
  color: var(--amber-bright);
}

.testimonial-source:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.testimonial-copy {
  position: relative;
  max-width: 34rem;
  margin-inline: clamp(1.5rem, 6vw, 2rem);
  padding-top: 1.15rem;
}

.testimonial-copy::before {
  content: "“";
  position: absolute;
  top: -0.7rem;
  left: 0;
  color: var(--amber-bright);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.testimonial-copy > p:last-child {
  color: oklch(91% 0.012 259);
  font-size: clamp(1.05rem, 4.7vw, 1.35rem);
  line-height: 1.5;
}

.faq {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--page-gutter), calc((100% - var(--content-max)) / 2 + var(--page-gutter)));
  display: grid;
  gap: clamp(3rem, 10vw, 6rem);
  background: var(--paper-deep);
}

.faq-intro h2 {
  max-width: 14ch;
  margin-inline: auto;
  font-size: clamp(3.25rem, 15vw, 5rem);
  line-height: 0.96;
}

.faq-intro {
  text-align: center;
}

.faq-intro > p:last-child {
  max-width: 34rem;
  margin: 1.25rem auto 0;
  color: var(--muted);
}

.faq-list {
  border-top: 2px solid var(--navy);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  transition:
    background-color 260ms var(--ease-out),
    border-color 260ms var(--ease-out);
}

.faq-list details[open] {
  border-color: oklch(45% 0.06 259 / 0.32);
  background: transparent;
}

.faq-list summary {
  min-height: 4.75rem;
  padding-block: 1.1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.75rem;
  gap: 1rem;
  align-items: center;
  color: var(--navy-deep);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span:first-child {
  font-family: var(--display);
  font-size: clamp(1.45rem, 6.3vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.faq-list summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.faq-toggle {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--navy);
  border-radius: 50%;
  transition:
    rotate 300ms var(--ease-out),
    color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    background-color 220ms var(--ease-out);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 2px;
  background: var(--navy);
  translate: -50% -50%;
  transition: scale 220ms var(--ease-out);
}

.faq-toggle::after {
  rotate: 90deg;
}

.faq-list details[open] .faq-toggle::after {
  scale: 0 1;
}

.faq-list details[open] .faq-toggle {
  rotate: 180deg;
  border-color: var(--amber);
  background: var(--amber);
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
}

.faq-list details[open]:not(.is-closing) .faq-answer {
  animation: faq-answer-in 320ms var(--ease-out) both;
}

.faq-answer p {
  max-width: 70ch;
  margin: 0;
  padding: 0 3.75rem 1.5rem 0;
  color: var(--muted);
}

@media (min-width: 48rem) {
  .testimonials-heading h2,
  .faq-intro h2 {
    max-width: none;
  }

  .testimonial-stage {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) 3rem;
    align-items: center;
    gap: 1rem;
  }

  .testimonial-arrow {
    position: static;
    width: 3rem;
    height: 3rem;
    transform: none;
  }

  .testimonial-list {
    --testimonial-gap: clamp(1rem, 2vw, 1.5rem);
  }

  .testimonial-list article {
    flex-basis: calc((100% - var(--testimonial-gap)) / 2);
    min-height: 28rem;
  }

  .testimonial-athlete {
    margin-top: auto;
  }

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

  .faq-intro {
    position: static;
  }

  .faq-list {
    width: min(100%, 70rem);
    margin-inline: auto;
  }
}

@media (min-width: 64rem) {
  .testimonial-list article {
    flex-basis: calc(
      (100% - var(--testimonial-gap) - var(--testimonial-gap)) / 3
    );
  }
}

.social {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding-inline: max(var(--page-gutter), calc((100% - var(--content-max)) / 2 + var(--page-gutter)));
  background: var(--amber);
  color: var(--navy-deep);
}

.social::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/section-social-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.1;
  filter: grayscale(0.5) contrast(1.08);
  mix-blend-mode: multiply;
}

.social > * {
  position: relative;
  z-index: 1;
}

.social-heading {
  width: 100%;
  text-align: center;
}

.social h2 {
  max-width: none;
  margin-inline: auto;
  color: var(--paper);
  font-size: clamp(3.5rem, 5.3vw, 6.4rem);
  line-height: 0.92;
  text-shadow: 0 0.12em 0.45em oklch(20% 0.055 259 / 0.16);
}

.social-links {
  width: 100%;
  margin-top: clamp(3.5rem, 7vw, 7rem);
  border-top: 2px solid var(--navy-deep);
}

.social-link {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  display: grid;
  grid-template-columns: minmax(10rem, 0.5fr) minmax(0, 1.5fr) auto;
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid oklch(25% 0.05 259 / 0.35);
  text-decoration: none;
}

.social-name {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-name svg,
.social-arrow {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-name svg .fill-icon {
  fill: currentColor;
  stroke: none;
}

.social-link:nth-child(2) .social-name svg path {
  fill: currentColor;
  stroke: none;
}

.social-name svg .strava-mark {
  fill: currentColor;
  stroke: none;
}

.social-link strong {
  overflow-wrap: anywhere;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0.1em 0.35em oklch(20% 0.055 259 / 0.14);
}

.social-arrow {
  width: 2.5rem;
  height: 2.5rem;
  transition: translate 260ms var(--ease-out);
}

.social-link:hover .social-arrow {
  translate: 0.4rem -0.4rem;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 13vw, 13rem) var(--page-gutter);
  background-image:
    linear-gradient(oklch(16% 0.045 259 / 0.72), oklch(16% 0.045 259 / 0.72)),
    url("assets/section-contact-mtb-bg.webp");
  background-position: center, 50% 34%;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--paper);
  text-align: center;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(10rem, 24vw, 28rem);
  height: 0.2rem;
  background: var(--amber);
}

.contact::before {
  left: 0;
  transform: rotate(-18deg);
  transform-origin: left;
}

.contact::after {
  right: 0;
  transform: rotate(18deg);
  transform-origin: right;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-inner > p {
  margin: 0 0 1.2rem;
  color: oklch(80% 0.02 259);
}

.contact h2 {
  color: var(--paper);
  font-size: clamp(5rem, 14vw, 14rem);
}

.contact-button {
  margin-top: 2rem;
}

.phone-link {
  margin-top: 1.2rem;
  color: oklch(84% 0.02 259);
  font-size: 0.9rem;
  text-underline-offset: 0.3rem;
}

.site-footer {
  width: 100%;
  border-top: 4px solid var(--amber);
  padding: clamp(2.25rem, 4vw, 3.75rem) max(var(--page-gutter), calc((100% - var(--content-max)) / 2 + var(--page-gutter)));
  background: var(--paper);
}

.footer-brand {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(13rem, 0.7fr) minmax(20rem, 1.3fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.footer-left {
  justify-self: start;
  justify-items: center;
}

.footer-right {
  width: min(100%, 38rem);
  justify-self: end;
}

.footer-left,
.footer-right {
  display: grid;
  grid-template-rows: minmax(5.5rem, auto) auto;
  row-gap: 1rem;
  align-items: center;
}

.footer-brand img {
  width: clamp(7.5rem, 10vw, 9rem);
  height: auto;
  align-self: center;
}

.footer-brand p {
  max-width: 24rem;
  margin: 0;
  align-self: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-quote {
  position: relative;
  width: min(100%, 32rem);
  margin: 0 auto;
  align-self: center;
  text-align: center;
}

.footer-quote p {
  max-width: none;
  padding: 0;
  color: #213a61;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
}

.footer-quote p::before,
.footer-quote p::after {
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35em;
  font-weight: 700;
  line-height: 1;
}

.footer-quote p::before {
  content: "“";
  margin-right: 0.08em;
}

.footer-quote p::after {
  content: "”";
  margin-left: 0.08em;
}

.footer-social {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  align-self: center;
  justify-content: center;
}

.footer-social a {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid oklch(29% 0.06 259 / 0.35);
  border-radius: 50%;
  color: var(--navy-deep);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.footer-social a:hover {
  border-color: var(--amber);
  background: var(--amber);
}

.footer-social a:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-social .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-nav {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  align-items: center;
  align-self: center;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.86rem;
  font-weight: 700;
  text-underline-offset: 0.25rem;
}

.footer-bottom {
  width: 100%;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.65rem;
  justify-content: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.025em;
}

.footer-bottom span[aria-hidden] {
  color: var(--amber);
}

.footer-copyright,
.footer-cref {
  white-space: nowrap;
}

.floating-whatsapp {
  position: fixed;
  right: max(1rem, calc((100vw - var(--content-max)) / 2));
  bottom: 1rem;
  z-index: 80;
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: oklch(65% 0.19 145);
  color: oklch(98% 0.005 145);
  box-shadow: 0 12px 35px rgb(13 22 38 / 0.24);
  transition:
    scale 220ms var(--ease-out),
    translate 220ms var(--ease-out);
}

.floating-whatsapp:hover {
  scale: 1.05;
  translate: 0 -2px;
}

.floating-whatsapp svg {
  width: 1.85rem;
  height: 1.85rem;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  translate: 0 1.75rem;
  transition:
    opacity 700ms var(--ease-out),
    translate 700ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  translate: 0;
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    scale: 1.1;
  }
  to {
    opacity: 1;
    scale: 1.035;
  }
}

@media (max-width: 74rem) {
  .site-nav {
    gap: 1rem;
  }

  .site-nav > a:not(.nav-cta) {
    font-size: 0.78rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(22rem, 0.88fr);
  }

  .service-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  }

  .service-primary,
  .service-secondary,
  .service-tertiary {
    grid-template-columns: 1fr;
  }

  .service-secondary {
    margin-left: -1rem;
  }

  .about-text {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 60rem) {
  :root {
    --header-height: 4.25rem;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand {
    width: 10.75rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    padding: 7rem var(--page-gutter) 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    translate: 0 -1rem;
    transition:
      opacity 240ms var(--ease-out),
      translate 240ms var(--ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    translate: 0;
  }

  .site-nav > a:not(.nav-cta) {
    width: 100%;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding-top: var(--header-height);
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: clamp(5rem, 12vw, 7rem);
    padding-bottom: 5rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.7rem, 11vw, 6.6rem);
  }

  .hero-visual {
    min-height: 34rem;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-caption {
    bottom: 4.75rem;
  }

  .section-heading,
  .social-heading {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-primary {
    min-height: auto;
  }

  .service-secondary {
    margin: -1rem 1.25rem 0;
  }

  .method {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .method-intro {
    position: static;
  }

  .about-text {
    display: block;
  }

  .about-text p + p {
    margin-top: 1.25rem;
  }

  .record-head {
    display: none;
  }

  .athlete-records article {
    grid-template-columns: 7rem minmax(0, 1fr);
  }

  .athlete-achievements {
    grid-column: 2;
  }

  .social-link {
    grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1.65fr) auto;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 44rem) {
  :root {
    --page-gutter: clamp(1.1rem, 5vw, 1.6rem);
    --section-space: clamp(4.5rem, 18vw, 7rem);
    --header-height: 3.9rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand {
    width: 10rem;
  }

  .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
  }

  .hero {
    padding-top: var(--header-height);
  }

  .hero::before {
    top: var(--header-height);
    width: 36vw;
  }

  .hero-copy {
    padding-top: 4.5rem;
    padding-right: var(--page-gutter);
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.5rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-credentials {
    display: grid;
    gap: 0.45rem;
  }

  .hero-credentials span + span::before {
    content: none;
  }

  .hero-visual {
    min-height: 28rem;
  }

  .hero-caption {
    right: var(--page-gutter);
    bottom: 5.2rem;
    max-width: 13rem;
  }

  .hero-carousel-controls {
    left: var(--page-gutter);
    bottom: 1.35rem;
  }

  .hero-dot {
    width: 2.15rem;
  }

  .discipline-track {
    justify-content: flex-start;
    animation: band-scroll 24s linear infinite;
  }

  .section-heading h2,
  .method h2,
  .about h2,
  .social h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .social h2 {
    max-width: 100%;
    font-size: clamp(3.4rem, 14.2vw, 4.7rem);
  }

  .services.section {
    overflow: hidden;
    padding-bottom: 0;
  }

  .services .section-heading {
    margin-bottom: 3.5rem;
  }

  .services .section-heading h2 {
    max-width: 9ch;
    font-size: clamp(3.65rem, 17vw, 5.2rem);
  }

  .service-layout {
    width: calc(100% + 2 * var(--page-gutter));
    margin-inline: calc(var(--page-gutter) * -1);
  }

  .service-primary,
  .service-secondary,
  .service-tertiary {
    min-height: 88svh;
    padding: clamp(4.5rem, 15vw, 6.5rem) var(--page-gutter) 4.5rem;
    display: grid;
    align-items: center;
    box-shadow: none;
  }

  .service-primary {
    margin-inline: 0;
  }

  .service-secondary {
    min-height: 78svh;
    margin: 0;
    padding-top: clamp(6.5rem, 22vw, 8rem);
    clip-path: polygon(0 3.4rem, 100% 0, 100% 100%, 0 100%);
  }

  .service-tertiary {
    min-height: 74svh;
    padding-top: clamp(5rem, 18vw, 7rem);
    border: 0;
  }

  .service-number {
    position: absolute;
    top: 1.25rem;
    right: var(--page-gutter);
    z-index: 1;
    color: var(--paper);
    font-size: clamp(7rem, 34vw, 10rem);
    line-height: 0.8;
    opacity: 0.08;
    pointer-events: none;
  }

  .service-secondary .service-number {
    top: 4.2rem;
    color: var(--navy-deep);
    opacity: 0.1;
  }

  .service-tertiary .service-number {
    top: 2rem;
    color: var(--navy-deep);
  }

  .service-content {
    align-self: center;
  }

  .service-label {
    margin-bottom: 1.3rem;
  }

  .service-content h3,
  .service-secondary .service-content h3,
  .service-tertiary .service-content h3 {
    max-width: 100%;
    font-size: clamp(3.8rem, 18vw, 5.25rem);
    line-height: 0.91;
  }

  .service-secondary .service-content h3 {
    max-width: 100%;
    line-height: 1.04;
  }

  .service-tertiary .service-content h3 {
    line-height: 0.96;
  }

  .service-content > p:not(.service-label) {
    margin-top: 1.8rem;
    font-size: 1.03rem;
    line-height: 1.55;
  }

  .feature-list {
    margin-block: 2.2rem;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid oklch(100% 0 0 / 0.16);
  }

  .feature-list li {
    padding: 0.8rem 0 0.8rem 1.35rem;
    border-bottom: 1px solid oklch(100% 0 0 / 0.16);
  }

  .assessment-copy {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-content .button {
    width: 100%;
  }

  .service-secondary .text-link {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.85rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--navy-deep);
    border-radius: 0.25rem;
    text-decoration: none;
  }

  .service-tertiary .text-link {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.85rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--navy-deep);
    border-radius: 0.25rem;
    text-decoration: none;
  }

  .method {
    gap: 3rem;
  }

  .method::before {
    background-position: 62% center;
    opacity: 0.1;
  }

  .method::after {
    background: linear-gradient(180deg, oklch(20% 0.055 259 / 0.7) 0%, oklch(20% 0.055 259 / 0.16) 100%);
  }

  .social::before {
    width: 100%;
    background-position: center;
    opacity: 0.08;
  }

  .social-heading,
  .social-links {
    width: 100%;
  }

  .social h2 {
    max-width: 14ch;
  }

  .contact {
    background-position: center, 50% 28%;
  }

  .method-steps li {
    min-height: auto;
    grid-template-columns: 2.2rem 1fr;
  }

  .about-statement {
    font-size: clamp(2.65rem, 12.5vw, 4rem);
  }

  .about-text p {
    hyphens: none;
    text-align: left;
  }

  .timeline {
    display: block;
  }

  .timeline > li {
    grid-template-columns: 4.5rem 1fr;
  }

  .timeline > li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .athlete-records {
    margin-top: 4rem;
  }

  .athlete-records article {
    padding: 1.2rem 0;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 1rem;
  }

  .athlete-records h3 {
    font-size: 1.35rem;
  }

  .athlete-achievements {
    grid-column: 1 / -1;
    margin-top: 0.25rem;
  }

  .athlete-achievements li {
    font-size: 0.9rem;
  }

  .social-link {
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
  }

  .social-link strong {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: clamp(1.55rem, 7.4vw, 2.5rem);
  }

  .social-arrow {
    grid-column: 2;
    grid-row: 1;
    width: 1.9rem;
    height: 1.9rem;
  }

  .contact::before,
  .contact::after {
    opacity: 0.45;
  }

  .contact h2 {
    font-size: clamp(4.7rem, 23vw, 8rem);
  }

  .footer-brand {
    grid-template-columns: minmax(8rem, 0.85fr) minmax(0, 1.15fr);
    gap: 1rem;
  }

  .footer-left {
    min-width: 0;
  }

  .footer-left,
  .footer-right {
    grid-template-rows: minmax(4.6rem, auto) auto;
    row-gap: 0.85rem;
  }

  .footer-brand img {
    width: min(100%, 7.5rem);
  }

  .footer-brand p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .footer-quote p {
    font-size: 0.86rem;
  }

  .footer-nav {
    width: 100%;
    margin-top: 0;
    gap: 0.6rem 0.9rem;
    justify-content: center;
  }

  .footer-nav a {
    font-size: 0.8rem;
  }

  .footer-nav a:nth-child(3) {
    max-width: none;
    text-align: left;
  }

  .footer-social {
    width: auto;
    flex-wrap: nowrap;
    gap: 0.25rem;
  }

  .footer-social a {
    width: 1.8rem;
    height: 1.8rem;
    flex: 0 0 1.8rem;
  }

  .footer-social a {
    position: relative;
  }

  .footer-social a::before {
    content: "";
    position: absolute;
    inset: -0.475rem;
    border-radius: 50%;
  }

  .footer-social a + a {
    margin-left: 0.75rem;
  }

  .footer-social svg {
    width: 0.9rem;
    height: 0.9rem;
  }

  .floating-whatsapp {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 3.35rem;
    height: 3.35rem;
  }
}

@keyframes band-scroll {
  to {
    translate: -45% 0;
  }
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    translate: 0 -0.45rem;
    clip-path: inset(0 0 18% 0);
  }

  to {
    opacity: 1;
    translate: 0;
    clip-path: inset(0);
  }
}

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

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

  .reveal {
    opacity: 1;
    translate: 0;
  }
}
