:root {
  --ink: #111311;
  --ink-soft: #2d302d;
  --paper: #f8f6f2;
  --white: #ffffff;
  --blue: #b8dff3;
  --rose: #df9a9d;
  --coral: #c87865;
  --gold: #c99a58;
  --green: #365e51;
  --line: rgba(17, 19, 17, 0.16);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --condensed: "Barlow Condensed", Impact, sans-serif;
  --shell: min(1280px, calc(100% - 48px));
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.5rem);
}

h3 {
  margin-bottom: 12px;
  line-height: 1.1;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 84px;
  padding: 14px 36px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--ink);
}

.site-header-dark {
  position: relative;
  background: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}

.brand > span:last-child {
  display: grid;
}

.brand strong {
  font-family: var(--condensed);
  font-size: 19px;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
  text-transform: none;
}

.brand-mark-light {
  color: var(--gold);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

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

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 20px;
  transition: transform 160ms ease;
}

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

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

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

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

.section-pad {
  padding: 112px 0;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.eyebrow-gold {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 900px;
  height: 92vh;
  max-height: 1040px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: var(--header-height) auto 0 0;
  width: 50.2%;
  background-position: center;
  background-size: cover;
}

.hero-media-women {
  left: 0;
  background-image: url("assets/hero-feminine.png");
  background-position: right center;
  transform: scaleX(-1);
}

.hero-media-men {
  right: 0;
  left: auto;
  background-image: url("assets/hero-masculine.png");
  background-position: right center;
}

.hero-shade {
  position: absolute;
  inset: var(--header-height) 0 0;
  background:
    linear-gradient(
      90deg,
      rgba(13, 14, 13, 0.74),
      rgba(13, 14, 13, 0.2) 38%,
      rgba(13, 14, 13, 0.2) 62%,
      rgba(13, 14, 13, 0.66)
    ),
    linear-gradient(0deg, rgba(13, 14, 13, 0.8), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(880px, calc(100% - 48px));
  height: 100%;
  min-height: 790px;
  margin: 0 auto;
  padding: 130px 0 118px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 700;
  line-height: 0.85;
  text-transform: uppercase;
}

.hero-statement {
  margin: 24px 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 4.8rem);
  line-height: 1;
}

.hero-statement em {
  display: block;
  color: var(--blue);
  font-weight: 400;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 17px;
}

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

.hero-audiences {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 76px;
  padding: 0 32px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: rgba(17, 19, 17, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-family: var(--condensed);
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.hero-audiences span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.manifesto {
  background: var(--white);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 9vw;
  align-items: start;
}

.manifesto-grid h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.manifesto-copy {
  padding-top: 42px;
  color: var(--ink-soft);
  font-size: 18px;
}

.manifesto-copy p + p {
  margin-top: 22px;
}

.audience-band {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1fr 1fr;
}

.audience-image {
  min-height: 620px;
  background-position: center;
  background-size: cover;
}

.audience-clients .audience-image {
  background-image: url("assets/client-training-together.png");
  background-position: center;
}

.audience-coaches .audience-image {
  background-image: url("assets/male-coaching.png");
  background-color: #050605;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.audience-copy {
  display: flex;
  padding: clamp(60px, 8vw, 130px);
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background: var(--blue);
}

.audience-copy-dark {
  color: var(--white);
  background: var(--ink);
}

.audience-clients .audience-copy {
  background: var(--white);
}

.audience-coaches {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
}

.audience-coaches .audience-copy {
  padding: clamp(52px, 5vw, 92px);
}

.audience-coaches .audience-copy h2 {
  font-size: clamp(3.4rem, 5vw, 5.8rem);
}

.audience-copy h2 {
  max-width: 750px;
  font-size: clamp(3.5rem, 6vw, 6.8rem);
}

.audience-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: 18px;
}

.feature-list {
  width: min(100%, 640px);
  margin: 8px 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 19, 17, 0.25);
}

.feature-list li {
  padding: 15px 0 15px 27px;
  border-bottom: 1px solid rgba(17, 19, 17, 0.25);
}

.feature-list li::before {
  display: inline-block;
  width: 20px;
  margin-left: -27px;
  color: var(--coral);
  content: "+";
  font-weight: 700;
}

.feature-list-dark {
  border-color: rgba(255, 255, 255, 0.22);
}

.feature-list-dark li {
  border-color: rgba(255, 255, 255, 0.22);
}

.feature-list-dark li::before {
  color: var(--gold);
}

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

.section-heading {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 7vw;
  align-items: end;
}

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 17px;
}

.platform-figure {
  margin: 0;
}

.platform-figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.platform-figure figcaption {
  padding: 12px 0;
  color: #656963;
  font-size: 12px;
}

.platform-pillars {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform-pillars article {
  min-height: 230px;
  padding: 30px;
}

.platform-pillars article + article {
  border-left: 1px solid var(--line);
}

.platform-pillars span,
.journey-steps span,
.fact-grid span {
  color: var(--coral);
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
}

.platform-pillars h3,
.journey-steps h3,
.fact-grid h3 {
  margin-top: 45px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.platform-pillars p,
.journey-steps p,
.fact-grid p {
  margin-bottom: 0;
  color: #5f635e;
  font-size: 14px;
}

.journey {
  color: var(--white);
  background: var(--green);
}

.journey h2 {
  max-width: 950px;
}

.journey-steps {
  display: grid;
  margin: 70px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.journey-steps li {
  min-height: 300px;
  padding: 34px;
}

.journey-steps li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.journey-steps span {
  color: var(--blue);
}

.journey-steps p {
  color: rgba(255, 255, 255, 0.72);
}

.packages {
  background: var(--white);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  border: 1px solid var(--line);
}

.package {
  display: flex;
  min-height: 530px;
  padding: 38px;
  flex-direction: column;
}

.package + .package {
  border-left: 1px solid var(--line);
}

.package-featured {
  color: var(--white);
  background: var(--ink);
}

.package-index {
  margin-bottom: 65px;
  color: var(--coral);
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
}

.package h3 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}

.package-price {
  display: flex;
  margin: 18px 0 24px;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.package-price strong {
  font-family: var(--condensed);
  font-size: 48px;
  line-height: 1;
}

.package-price span {
  color: #777b75;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.package-featured .package-price span,
.package-featured > p:not(.package-index, .package-price) {
  color: rgba(255, 255, 255, 0.68);
}

.package > p:not(.package-index, .package-price) {
  margin-bottom: 40px;
}

.package .button {
  width: 100%;
  margin-top: auto;
}

.package-featured .button {
  color: var(--ink);
}

.package-note {
  margin: 18px 0 0;
  color: #686c66;
  font-size: 12px;
}

.talent-preview {
  display: grid;
  min-height: 700px;
  grid-template-columns: 0.85fr 1.15fr;
  color: var(--white);
  background: var(--ink);
}

.talent-art {
  display: flex;
  padding: 60px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: var(--gold);
  font-family: var(--serif);
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
}

.talent-art span {
  font-size: clamp(8rem, 18vw, 18rem);
}

.talent-art strong {
  margin-top: 26px;
  font-family: var(--condensed);
  font-size: clamp(3rem, 7vw, 7rem);
}

.talent-copy {
  display: flex;
  max-width: 900px;
  padding: clamp(70px, 9vw, 150px);
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.talent-copy h2 {
  font-size: clamp(3.5rem, 6.4vw, 7rem);
}

.talent-copy > p:not(.eyebrow) {
  max-width: 670px;
  font-size: 18px;
}

.talent-copy .talent-detail {
  margin: 12px 0 32px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9vw;
  align-items: end;
}

.contact-grid h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.contact-grid > div:last-child p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

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

.site-footer {
  display: grid;
  padding: 58px 36px 30px;
  grid-template-columns: auto 1fr auto;
  gap: 38px;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--condensed);
  text-transform: uppercase;
}

.site-footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer nav a {
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Talent page */
.talent-page {
  background: var(--paper);
}

.talent-hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.4fr 0.6fr;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.talent-hero-copy {
  display: flex;
  padding: clamp(70px, 10vw, 160px);
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.talent-hero h1 {
  max-width: 960px;
  margin-bottom: 30px;
  font-size: clamp(5rem, 9vw, 10rem);
}

.talent-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.talent-hero-stat {
  display: flex;
  min-width: 0;
  padding: 40px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: var(--gold);
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.talent-hero-stat strong {
  max-width: 100%;
  font-family: var(--serif);
  font-size: clamp(12rem, 24vw, 25rem);
  font-weight: 400;
  line-height: 0.9;
}

.talent-facts {
  background: var(--white);
}

.fact-grid {
  display: grid;
  margin-bottom: 38px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-grid article {
  min-height: 290px;
  padding: 32px;
}

.fact-grid article + article {
  border-left: 1px solid var(--line);
}

.plain-notice {
  padding: 24px;
  color: #5e625d;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  font-size: 13px;
}

.application-section {
  color: var(--white);
  background: var(--green);
}

.application-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
  align-items: start;
}

.application-intro {
  position: sticky;
  top: 40px;
}

.application-intro h2 {
  font-size: clamp(4rem, 7vw, 7rem);
}

.application-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.application-route {
  margin-top: 34px;
  padding-top: 24px;
  overflow-wrap: anywhere;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

.talent-form {
  display: grid;
  padding: 46px;
  gap: 25px;
  color: var(--ink);
  background: var(--white);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.talent-form label:not(.consent-check) {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.talent-form input,
.talent-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #bdc1bb;
  border-radius: 1px;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}

.talent-form input {
  min-height: 52px;
}

.talent-form textarea {
  min-height: 190px;
  resize: vertical;
}

.talent-form input:focus,
.talent-form textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(54, 94, 81, 0.18);
  outline-offset: 1px;
}

.talent-form small,
.form-help {
  margin: 0;
  color: #696d67;
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
}

.consent-check input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
}

.talent-form .button {
  width: fit-content;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.email-fallback {
  padding: 18px;
  overflow-wrap: anywhere;
  background: var(--paper);
  border-left: 3px solid var(--coral);
  font-size: 13px;
}

.email-fallback p {
  margin-bottom: 5px;
}

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

@media (max-width: 1080px) {
  .site-header {
    padding: 14px 24px;
    gap: 20px;
  }

  .site-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .manifesto-grid,
  .section-heading,
  .contact-grid,
  .application-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .manifesto-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .platform-pillars,
  .journey-steps,
  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-pillars article:nth-child(3),
  .platform-pillars article:nth-child(4),
  .journey-steps li:nth-child(3),
  .journey-steps li:nth-child(4),
  .fact-grid article:nth-child(3),
  .fact-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .journey-steps li:nth-child(3),
  .journey-steps li:nth-child(4) {
    border-top-color: rgba(255, 255, 255, 0.26);
  }

  .platform-pillars article:nth-child(3),
  .journey-steps li:nth-child(3),
  .fact-grid article:nth-child(3) {
    border-left: 0;
  }

  .application-intro {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

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

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

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

  .hero {
    min-height: 820px;
    height: 94svh;
  }

  .hero-media {
    inset: var(--header-height) 0 0;
    width: 100%;
  }

  .hero-media-men {
    display: none;
  }

  .hero-media-women {
    background-position: 86% center;
    transform: none;
  }

  .hero-shade {
    background: rgba(13, 14, 13, 0.58);
  }

  .hero-content {
    min-height: 750px;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(5rem, 22vw, 8rem);
  }

  .hero-statement {
    font-size: clamp(2.5rem, 11vw, 4.5rem);
  }

  .hero-audiences {
    min-height: 66px;
    padding: 0 14px;
    grid-template-columns: 1fr 1fr;
    font-size: 13px;
  }

  .hero-audiences span:last-child {
    display: none;
  }

  .section-pad {
    padding: 80px 0;
  }

  .audience-band {
    grid-template-columns: 1fr;
  }

  .audience-coaches {
    grid-template-columns: 1fr;
  }

  .audience-image {
    min-height: 70vw;
  }

  .audience-copy {
    padding: 70px 28px;
  }

  .audience-coaches .audience-copy {
    order: 2;
  }

  .audience-coaches .audience-image {
    order: 1;
    background-size: contain;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package + .package {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .package {
    min-height: 440px;
  }

  .talent-preview,
  .talent-hero {
    grid-template-columns: 1fr;
  }

  .talent-art {
    min-height: 400px;
  }

  .talent-hero-stat {
    min-height: 390px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }

  .talent-page .site-header {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 23px;
  }

  .brand strong {
    font-size: 16px;
  }

  .hero-actions,
  .field-row {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    font-size: 15px;
  }

  h2,
  .audience-copy h2 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .platform-pillars,
  .journey-steps,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .platform-pillars article + article,
  .journey-steps li + li,
  .fact-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .journey-steps li + li {
    border-top-color: rgba(255, 255, 255, 0.26);
  }

  .platform-pillars article,
  .journey-steps li,
  .fact-grid article {
    min-height: 230px;
  }

  .talent-copy,
  .talent-hero-copy {
    padding: 76px 24px;
  }

  .talent-hero h1 {
    font-size: clamp(4.2rem, 20vw, 6.5rem);
  }

  .talent-form {
    padding: 28px 20px;
  }

  .talent-form .button {
    width: 100%;
  }

  .talent-page .site-header .text-link {
    max-width: 120px;
    font-size: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
