:root {
  --black: #090909;
  --charcoal: #111111;
  --charcoal-2: #181818;
  --cream: #f1efe8;
  --warm-white: #faf9f5;
  --white: #ffffff;
  --text-dark: #111111;
  --muted-dark: #66645e;
  --muted-light: #aaa9a4;
  --yellow: #f3c900;

  --display: "Barlow Condensed", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;

  --max-wide: 1240px;
  --max-narrow: 820px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

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

h1,
h2,
h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1;
}

h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(3.6rem, 5.5vw, 5.4rem);
}

h1 span {
  color: var(--yellow);
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.35rem, 4.1vw, 4rem);
}

h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

p {
  margin-bottom: 18px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dark-eyebrow {
  color: #8c7600;
}

.large-copy {
  font-size: clamp(1.16rem, 1.8vw, 1.5rem);
  line-height: 1.48;
}

.strong {
  font-weight: 700;
}

.yellow-text {
  color: var(--yellow);
}

.centered {
  text-align: center;
}

.max-text {
  max-width: 680px;
  margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 48px), var(--max-wide));
  min-height: 84px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  color: white;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.brand span {
  color: var(--yellow);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: #dededc;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: white;
}

.main-nav a[aria-current="page"] {
  color: var(--yellow);
}

.main-nav .nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
}

.menu-toggle {
  display: none;
}


/* =========================================================
   COMMON LAYOUT
   ========================================================= */

.section {
  position: relative;
  padding: 92px 24px;
}

.content {
  margin-inline: auto;
}

.content.wide {
  max-width: var(--max-wide);
}

.content.narrow {
  max-width: var(--max-narrow);
}

.section-light {
  background: var(--warm-white);
  color: var(--text-dark);
}

.section-cream {
  background: var(--cream);
  color: var(--text-dark);
}

.section-dark {
  background: var(--charcoal);
}

.copy-block {
  margin-block: 30px;
}

.short-lines p {
  margin-bottom: 4px;
}

.divider {
  width: 72px;
  height: 4px;
  margin-block: 40px;
  background: var(--yellow);
}

.split,
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 68px;
}

.section-heading {
  align-self: start;
}

.section-copy {
  max-width: 590px;
}


/* =========================================================
   BUTTON
   ========================================================= */

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px solid transparent;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: var(--yellow);
  color: #090909;
}

.button-primary:hover {
  background: #ffe21d;
}

.large-button {
  min-height: 58px;
  margin-top: 28px;
  padding-inline: 28px;
  font-size: 1.03rem;
}


/* =========================================================
   HOME HERO — DESKTOP
   ========================================================= */

.hero {
  position: relative;
  display: flex;
  min-height: 90vh;
  padding: 145px 24px 80px;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -4%;
  right: -9%;
  bottom: -8%;
  width: 70%;

  background:
    url("images/hero.jpg")
    54% 44% / 126% auto no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      #050505 0%,
      #050505 35%,
      rgba(5,5,5,0.99) 40%,
      rgba(5,5,5,0.95) 45%,
      rgba(5,5,5,0.84) 51%,
      rgba(5,5,5,0.66) 57%,
      rgba(5,5,5,0.44) 63%,
      rgba(5,5,5,0.24) 69%,
      rgba(5,5,5,0.10) 75%,
      rgba(5,5,5,0.02) 82%,
      rgba(5,5,5,0) 88%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.02) 30%,
      rgba(0,0,0,0.03) 70%,
      rgba(0,0,0,0.30) 100%
    );
}

.hero-overlay {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(100%, var(--max-wide));
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.56fr) minmax(340px, 0.44fr);
}

.hero-copy {
  max-width: 700px;
  grid-column: 1;
}

.hero-intro {
  max-width: 540px;
  margin-bottom: 32px;
  color: #d1d1ce;
  font-size: 1rem;
}


/* =========================================================
   DISCIPLINE
   ========================================================= */

.statement-stack {
  margin-bottom: 40px;
}

.statement-stack p {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.04;
  text-transform: uppercase;
}

.statement-stack p:last-child {
  color: #9c8300;
}

.accent-lines {
  margin-top: 32px;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}


/* =========================================================
   CYCLE
   ========================================================= */

.cycle-lines {
  margin-bottom: 52px;
  text-align: center;
}

.cycle-lines p {
  margin-bottom: 7px;
  color: #4d4b46;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 600;
  text-transform: uppercase;
}

.contrast-statement {
  margin-block: 38px;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.6vw, 3.3rem);
  font-weight: 700;
  line-height: 1.04;
  text-transform: uppercase;
}

.contrast-statement p {
  margin-bottom: 5px;
}

.contrast-statement .highlight {
  color: #8c7600;
}


/* =========================================================
   REAL LIFE
   ========================================================= */

.life-section {
  display: grid;
  min-height: 650px;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
}

.life-image {
  min-height: 560px;

  background:
    linear-gradient(
      0deg,
      rgba(0,0,0,0.08),
      rgba(0,0,0,0)
    ),
    url("images/life.jpg") 40% 54% / cover no-repeat;
}

.life-copy {
  max-width: 640px;
  padding: 82px 58px;
  align-self: center;
}

.life-copy h2 {
  font-size: clamp(2.5rem, 3.8vw, 3.7rem);
}

.oversized-line {
  margin: 30px 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(1.95rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.life-list {
  margin-block: 28px;
}

.life-list p {
  margin: 0;
  color: #d4d3d0;
}


/* =========================================================
   MANIFESTO
   ========================================================= */

.manifesto {
  background: #080808;
  text-align: center;
}

.belief-small {
  max-width: 540px;
  margin: 0 auto 36px;
  color: #a7a7a3;
}

.manifesto h2 {
  color: var(--yellow);
}

.manifesto-main {
  margin: 30px auto;
  max-width: 850px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  font-weight: 700;
  line-height: 1.03;
  text-transform: uppercase;
}

.manifesto-main span {
  color: var(--yellow);
}

.fixed-flexible {
  display: grid;
  margin-block: 54px;
  align-items: center;
  grid-template-columns: 1fr 90px 1fr;
}

.fixed-flexible > div:not(.line) {
  display: flex;
  flex-direction: column;
}

.fixed-flexible .label {
  color: var(--muted-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fixed-flexible strong {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.8vw, 2.6rem);
  text-transform: uppercase;
}

.fixed-flexible .line {
  height: 2px;
  background: var(--yellow);
}

.final-belief {
  color: #d4d4d0;
}


/* =========================================================
   EDITORIAL
   ========================================================= */

.editorial-copy {
  max-width: 650px;
}

.bold-lines {
  margin-block: 26px;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.restart {
  display: flex;
  margin-block: 32px;
  flex-direction: column;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.restart span:nth-child(2),
.restart span:nth-child(3) {
  color: #8c7600;
}


/* =========================================================
   HOME COACH / IDENTITY — DESKTOP
   ========================================================= */

.identity-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #080808;
}

.identity-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;

  background:
    url("images/coach.jpg")
    center 20% / cover no-repeat;
}

.identity-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      #080808 0%,
      #080808 35%,
      rgba(8,8,8,0.98) 41%,
      rgba(8,8,8,0.86) 47%,
      rgba(8,8,8,0.58) 54%,
      rgba(8,8,8,0.24) 62%,
      rgba(8,8,8,0.05) 72%,
      rgba(8,8,8,0) 80%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.02) 35%,
      rgba(0,0,0,0.08) 72%,
      rgba(0,0,0,0.34) 100%
    );
}

.identity-section .content {
  position: relative;
  z-index: 3;
  max-width: 690px;
  margin-left: max(24px, calc((100vw - var(--max-wide)) / 2));
  margin-right: auto;
}

.identity-section h2 {
  max-width: 650px;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
}

.not-really {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.identity-list {
  margin-block: 40px;
}

.identity-list p {
  padding: 13px 0 13px 22px;
  border-left: 2px solid var(--yellow);
  color: #d3d3cf;
}

.quiet {
  margin-top: 48px;
  color: #969691;
}

.compact {
  margin-bottom: 0;
  text-align: left;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
}


/* =========================================================
   IMAGINE
   ========================================================= */

.imagine {
  background: var(--charcoal-2);
}

.imagine-list {
  margin-block: 36px;
}

.imagine-list p {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  font-size: 1.05rem;
}

.three-words {
  display: flex;
  margin-top: 38px;
  gap: 14px;
  flex-wrap: wrap;
}

.three-words span {
  padding: 8px 14px;
  border: 1px solid #555;
  color: #d7d7d3;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
}

.three-words span:last-child {
  border-color: var(--yellow);
  color: var(--yellow);
}


/* =========================================================
   FINAL
   ========================================================= */

.final-section {
  padding-block: 112px;
  background: #050505;
}

.final-truth {
  margin-block: 38px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.9rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.final-section h2 {
  margin-block: 28px;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 48px 24px;
  border-top: 1px solid #252525;
  background: #050505;
}

.footer-inner {
  display: grid;
  width: min(100%, var(--max-wide));
  margin-inline: auto;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
}

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

.footer-nav a {
  color: #aaa9a5;
  font-size: .78rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: white;
}

.copyright {
  margin: 0;
  color: #747470;
  font-size: .72rem;
  text-align: right;
}


/* =========================================================
   TABLET — HOME
   ========================================================= */

@media (max-width: 980px) {

  .section {
    padding-block: 78px;
  }

  .split,
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    min-height: 820px;
  }

  .hero::before {
    top: -3%;
    right: -10%;
    bottom: -7%;
    width: 72%;
    background-position: 54% 43%;
    background-size: 130% auto;
  }

  .hero::after {
    background:
      linear-gradient(
        90deg,
        #050505 0%,
        #050505 30%,
        rgba(5,5,5,0.98) 38%,
        rgba(5,5,5,0.86) 46%,
        rgba(5,5,5,0.62) 56%,
        rgba(5,5,5,0.32) 66%,
        rgba(5,5,5,0.10) 76%,
        rgba(5,5,5,0) 86%
      );
  }

  .hero-inner {
    display: block;
  }

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

  .life-section {
    grid-template-columns: 1fr;
  }

  .life-image {
    min-height: 460px;
    background-position: 40% 56%;
  }

  .life-copy {
    max-width: none;
    padding: 64px 34px 76px;
  }

  .fixed-flexible {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fixed-flexible .line {
    width: 70px;
    margin: auto;
  }

  .identity-section {
    min-height: 760px;
  }

  .identity-section::before {
    width: 61%;
    background-position: center 16%;
  }

  .identity-section::after {
    background:
      linear-gradient(
        90deg,
        #080808 0%,
        #080808 30%,
        rgba(8,8,8,0.95) 38%,
        rgba(8,8,8,0.70) 49%,
        rgba(8,8,8,0.28) 64%,
        rgba(8,8,8,0) 80%
      );
  }

  .identity-section .content {
    max-width: 610px;
    margin-left: 34px;
    margin-right: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .copyright {
    text-align: center;
  }
}


/* =========================================================
   MOBILE — HOME
   HERO + COACH IMAGES REMOVED
   LIFE IMAGE RETAINED
   ========================================================= */

@media (max-width: 760px) {

  body {
    font-size: 16px;
  }

  .header-inner {
    width: calc(100% - 32px);
    min-height: 72px;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    padding: 28px 22px 32px;
    border-top: 1px solid #222;
    background: #090909;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav .nav-cta {
    width: fit-content;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 132px 20px 72px;
    background: #050505;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    display: block;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero .eyebrow {
    margin-bottom: 24px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 11vw, 3.8rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(2.05rem, 8.3vw, 2.95rem);
    line-height: 1.02;
  }

  h3 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero-intro {
    max-width: 94%;
  }

  .section {
    padding: 64px 20px;
  }

  .statement-stack p {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .large-copy {
    font-size: 1.16rem;
  }

  .life-section {
    display: block;
    padding: 0;
  }

  .life-image {
    min-height: 475px;
    background:
      linear-gradient(
        0deg,
        rgba(0,0,0,0.04),
        rgba(0,0,0,0)
      ),
      url("images/life.jpg")
      39% 28% / cover no-repeat;
  }

  .life-copy {
    padding: 58px 20px 68px;
  }

  .life-copy h2 {
    font-size: clamp(2.15rem, 8.5vw, 3rem);
  }

  .oversized-line {
    font-size: clamp(1.8rem, 7vw, 2.35rem);
  }

  .manifesto-main {
    font-size: clamp(1.95rem, 7.8vw, 2.7rem);
  }

  .fixed-flexible {
    margin-block: 44px;
  }

  .fixed-flexible strong {
    font-size: 2rem;
  }

  .identity-section {
    min-height: 0;
    padding: 72px 20px;
    background: #080808;
  }

  .identity-section::before {
    display: none;
  }

  .identity-section::after {
    display: none;
  }

  .identity-section .content {
    position: relative;
    z-index: 3;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .identity-section h2 {
    max-width: 100%;
    font-size: clamp(2.05rem, 8vw, 2.85rem);
  }

  .not-really {
    font-size: 1.55rem;
  }

  .identity-list {
    margin-block: 36px;
  }

  .identity-list p {
    padding: 14px 0 14px 18px;
  }

  .quiet {
    margin-top: 42px;
  }

  .final-section {
    padding-block: 80px;
  }

  .final-section h2 {
    font-size: clamp(2.05rem, 8.2vw, 2.9rem);
    line-height: 1.02;
  }

  .final-truth {
    font-size: clamp(1.65rem, 6.6vw, 2.2rem);
  }

  .large-button {
    width: 100%;
    min-height: 58px;
    padding-inline: 18px;
  }

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

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* =========================================================
   ABOUT PAGE
   ========================================================= */


/* =========================================================
   ABOUT HERO
   ========================================================= */

.page-about .about-hero {
  position: relative;
  display: flex;
  min-height: 820px;
  padding: 145px 24px 90px;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.page-about .about-hero-image {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;

  background:
    url("images/hero.jpg")
    center 36% / cover no-repeat;
}

.page-about .about-hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      #050505 0%,
      #050505 37%,
      rgba(5,5,5,0.98) 44%,
      rgba(5,5,5,0.88) 50%,
      rgba(5,5,5,0.62) 57%,
      rgba(5,5,5,0.32) 64%,
      rgba(5,5,5,0.12) 72%,
      rgba(5,5,5,0) 82%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.12),
      rgba(0,0,0,0.02) 60%,
      rgba(0,0,0,0.28)
    );
}

.page-about .about-hero-inner {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max-wide));
  margin-inline: auto;
}

.page-about .about-hero-copy {
  max-width: 690px;
}

.page-about .about-hero-title {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: clamp(3.3rem, 5vw, 5rem);
}

.page-about .about-hero-turn {
  max-width: 670px;
  margin-bottom: 34px;
  font-size: clamp(2.45rem, 3.8vw, 3.8rem);
  line-height: 0.98;
}

.page-about .about-hero-turn span {
  color: var(--yellow);
}

.page-about .about-hero-intro {
  max-width: 580px;
  margin-bottom: 0;
  color: #d3d3d0;
  font-size: 1.06rem;
  line-height: 1.58;
}


/* =========================================================
   ABOUT LESSON
   ========================================================= */

.page-about .about-lesson {
  padding-block: 96px;
}

.page-about .about-lesson-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.72fr);
  gap: 78px;
}

.page-about .about-lesson-left {
  padding-right: 26px;
}

.page-about .about-lesson-left h2 {
  max-width: 700px;
  font-size: clamp(2.6rem, 4.1vw, 4.1rem);
}

.page-about .about-lesson-left p,
.page-about .about-lesson-right p {
  max-width: 620px;
}

.page-about .about-lesson-right {
  padding-left: 58px;
  border-left: 1px solid #ccc9bf;
}

.page-about .about-better-stack {
  display: flex;
  margin: 34px 0 26px;
  flex-direction: column;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 700;
  line-height: 1.13;
}

.page-about .about-better-stack span:last-child {
  position: relative;
  width: fit-content;
}

.page-about .about-better-stack span:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 3px;
  background: var(--yellow);
}

.page-about .about-until {
  margin-top: 34px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 3.4vw, 3.5rem);
}

.page-about .about-emphasis-copy {
  margin-block: 30px;
  font-weight: 500;
}

.page-about .about-yellow-statement {
  margin-top: 38px;
  margin-bottom: 0;
  color: #b78f00;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}


/* =========================================================
   ABOUT QUESTION
   ========================================================= */

.page-about .about-question-section {
  padding: 76px 24px;
  background: #050505;
}

.page-about .about-question-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
}

.page-about .about-question-image {
  min-height: 560px;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.05),
      rgba(0,0,0,0.18)
    ),
    url("images/life.jpg")
    34% 50% / cover no-repeat;
}

.page-about .about-question-copy {
  max-width: 650px;
}

.page-about .about-small-label {
  margin-bottom: 25px;
  color: #c8c8c4;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-about .about-not-but {
  margin-bottom: 10px;
  color: #9b9b96;
  font-size: 0.92rem;
}

.page-about .about-question-old,
.page-about .about-question-new {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 3.6vw, 3.7rem);
  line-height: 1;
}

.page-about .about-question-new span {
  color: var(--yellow);
}

.page-about .about-question-divider {
  width: 100%;
  max-width: 480px;
  height: 1px;
  margin: 30px 0;
  background: #454545;
}

.page-about .about-question-ending {
  max-width: 500px;
  margin-top: 34px;
  color: #d0d0cc;
}


/* =========================================================
   ABOUT PRINCIPLE
   ========================================================= */

.page-about .about-principle {
  padding-block: 86px;
}

.page-about .about-principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.page-about .about-principle-title {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.3vw, 4.3rem);
}

.page-about .about-principle-title span {
  display: block;
  color: #ad8600;
}

.page-about .about-principle-right {
  max-width: 540px;
}

.page-about .about-principle-right p {
  margin-bottom: 7px;
}

.page-about .about-methods-adapt {
  width: fit-content;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
}

.page-about .about-principle-bottom {
  margin-top: 62px;
  text-align: center;
}

.page-about .about-principle-bottom p {
  margin-bottom: 12px;
}

.page-about .about-principle-bottom h3 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 3.6vw, 3.5rem);
}


/* =========================================================
   ABOUT 25 YEARS
   ========================================================= */

.page-about .about-years {
  padding-block: 96px;
}

.page-about .about-years-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.page-about .about-years-heading {
  padding-right: 60px;
  border-right: 1px solid #d0cdc4;
}

.page-about .about-years-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4.2vw, 4.2rem);
}

.page-about .about-years-list p {
  margin-bottom: 4px;
  font-weight: 600;
}

.page-about .about-years-centre {
  margin: 60px auto 44px;
  text-align: center;
}

.page-about .about-years-centre h3 {
  margin-bottom: 15px;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
}

.page-about .about-years-centre p {
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--yellow);
}

.page-about .about-years-body {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.page-about .about-years-body p {
  margin-bottom: 12px;
}

.page-about .about-years-strong {
  margin-top: 24px;
  font-weight: 700;
}


/* =========================================================
   ABOUT EXPERIENCE
   ========================================================= */

.page-about .about-experience {
  padding-block: 94px;
  background: #050505;
}

.page-about .about-experience-intro {
  max-width: 560px;
  margin-bottom: 60px;
}

.page-about .about-experience-intro h2 {
  font-size: clamp(2.7rem, 4vw, 4rem);
}

.page-about .about-experience-intro p {
  color: #d0d0cc;
}

.page-about .about-credentials {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.page-about .about-credential {
  padding: 28px 24px;
  text-align: center;
}

.page-about .about-credential + .about-credential {
  border-left: 1px solid #333;
}

.page-about .about-credential strong {
  display: block;
  margin-bottom: 5px;
  color: white;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.page-about .about-credential span {
  color: #aaa9a5;
  font-size: 0.78rem;
}

.page-about .about-experience-copy {
  max-width: 780px;
}

.page-about .about-experience-copy p {
  color: #d2d2ce;
}

.page-about .about-qualification-list {
  margin: 25px 0 32px;
  padding-left: 22px;
}

.page-about .about-qualification-list li {
  margin-bottom: 8px;
  color: #d8d8d4;
}

.page-about .about-experience-copy h3 {
  margin: 34px 0 26px;
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.page-about .about-experience-copy h3 span {
  display: block;
  color: var(--yellow);
}


/* =========================================================
   ABOUT NEXT STEP
   ========================================================= */

.page-about .about-next {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1fr 1fr;
  background: #050505;
  border-top: 1px solid #2a2a2a;
}

.page-about .about-next-image {
  min-height: 620px;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.02),
      rgba(0,0,0,0.16)
    ),
    url("images/coach.jpg")
    center 22% / cover no-repeat;
}

.page-about .about-next-copy {
  display: flex;
  max-width: 650px;
  padding: 80px 64px;
  justify-content: center;
  flex-direction: column;
}

.page-about .about-next-copy p {
  max-width: 540px;
  color: #d3d3cf;
}

.page-about .about-next-emphasis {
  color: var(--yellow) !important;
  font-weight: 700;
}


/* =========================================================
   ABOUT TABLET
   ========================================================= */

@media (max-width: 980px) {

  .page-about .about-hero {
    min-height: 760px;
  }

  .page-about .about-hero-image {
    width: 58%;
  }

  .page-about .about-hero-copy {
    max-width: 610px;
  }

  .page-about .about-lesson-grid,
  .page-about .about-principle-grid,
  .page-about .about-years-grid {
    gap: 50px;
  }

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

  .page-about .about-question-image {
    min-height: 460px;
  }

  .page-about .about-question-copy {
    max-width: 760px;
  }

  .page-about .about-credentials {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-about .about-credential:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #333;
  }

  .page-about .about-credential:nth-child(4) {
    border-top: 1px solid #333;
  }

  .page-about .about-next-copy {
    padding: 64px 40px;
  }
}


/* =========================================================
   ABOUT MOBILE
   ========================================================= */

@media (max-width: 760px) {

  /*
    Unlike the HOME page, the About page keeps one visual
    introduction, but it is separated from the copy so the
    photograph does not fight the headline.
  */

  .page-about .about-hero {
    display: block;
    min-height: 0;
    padding: 72px 0 0;
    background: #050505;
  }

  .page-about .about-hero-image {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 390px;

    background:
      url("images/hero.jpg")
      center 24% / cover no-repeat;
  }

  .page-about .about-hero-shade {
    display: none;
  }

  .page-about .about-hero-inner {
    padding: 54px 20px 68px;
  }

  .page-about .about-hero-copy {
    max-width: none;
  }

  .page-about .about-hero-title {
    max-width: none;
    margin-bottom: 28px;
    font-size: clamp(2.7rem, 10vw, 3.6rem);
  }

  .page-about .about-hero-turn {
    max-width: none;
    margin-bottom: 28px;
    font-size: clamp(2.15rem, 8.3vw, 2.95rem);
  }

  .page-about .about-hero-intro {
    max-width: none;
  }


  /* LESSON */

  .page-about .about-lesson {
    padding: 64px 20px;
  }

  .page-about .about-lesson-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .page-about .about-lesson-left {
    padding-right: 0;
  }

  .page-about .about-lesson-left h2 {
    font-size: clamp(2.15rem, 8vw, 2.9rem);
  }

  .page-about .about-lesson-right {
    padding: 38px 0 0;
    border-top: 1px solid #d0cdc4;
    border-left: 0;
  }

  .page-about .about-better-stack {
    font-size: 1.55rem;
  }

  .page-about .about-until {
    font-size: clamp(2rem, 7.5vw, 2.7rem);
  }


  /* QUESTION */

  .page-about .about-question-section {
    padding: 0;
  }

  .page-about .about-question-grid {
    display: block;
  }

  .page-about .about-question-image {
    min-height: 430px;

    background:
      linear-gradient(
        0deg,
        rgba(0,0,0,0.08),
        rgba(0,0,0,0)
      ),
      url("images/life.jpg")
      39% 28% / cover no-repeat;
  }

  .page-about .about-question-copy {
    max-width: none;
    padding: 58px 20px 68px;
  }

  .page-about .about-question-old,
  .page-about .about-question-new {
    font-size: clamp(2.1rem, 8.1vw, 2.9rem);
  }


  /* PRINCIPLE */

  .page-about .about-principle {
    padding: 64px 20px;
  }

  .page-about .about-principle-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .page-about .about-principle-title {
    font-size: clamp(2.3rem, 8.7vw, 3.1rem);
  }

  .page-about .about-principle-bottom {
    margin-top: 48px;
    text-align: left;
  }

  .page-about .about-principle-bottom h3 {
    font-size: clamp(2.2rem, 8vw, 2.9rem);
  }


  /* 25 YEARS */

  .page-about .about-years {
    padding: 64px 20px;
  }

  .page-about .about-years-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .page-about .about-years-heading {
    padding-right: 0;
    padding-bottom: 30px;
    border-right: 0;
    border-bottom: 1px solid #d0cdc4;
  }

  .page-about .about-years-heading h2 {
    font-size: clamp(2.2rem, 8.3vw, 3rem);
  }

  .page-about .about-years-centre {
    margin: 46px 0 40px;
    text-align: left;
  }

  .page-about .about-years-centre h3 {
    font-size: clamp(2.5rem, 9vw, 3.3rem);
  }

  .page-about .about-years-centre p {
    margin: 0;
  }

  .page-about .about-years-body {
    text-align: left;
  }


  /* EXPERIENCE */

  .page-about .about-experience {
    padding: 68px 20px;
  }

  .page-about .about-experience-intro {
    margin-bottom: 44px;
  }

  .page-about .about-experience-intro h2 {
    font-size: clamp(2.3rem, 8.3vw, 3rem);
  }

  .page-about .about-credentials {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 52px;
  }

  .page-about .about-credential {
    padding: 24px 14px;
  }

  .page-about .about-credential strong {
    font-size: 1.8rem;
  }

  .page-about .about-experience-copy h3 {
    font-size: clamp(2.3rem, 8.5vw, 3rem);
  }


  /* NEXT */

  .page-about .about-next {
    display: block;
    min-height: 0;
  }

  .page-about .about-next-image {
    min-height: 420px;

    background:
      url("images/coach.jpg")
      center 12% / cover no-repeat;
  }

  .page-about .about-next-copy {
    max-width: none;
    padding: 58px 20px 72px;
  }

  .page-about .about-next-copy .button {
    width: 100%;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 440px) {

  .page-about .about-hero-image {
    min-height: 350px;
  }

  .page-about .about-question-image {
    min-height: 390px;
  }

  .page-about .about-next-image {
    min-height: 380px;
  }

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

  .page-about .about-credential + .about-credential {
    border-top: 1px solid #333;
    border-left: 0;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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