: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: 900px;
  margin-bottom: 30px;
  font-size: clamp(3.6rem, 6vw, 5.9rem);
}

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: 20;
  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 .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;
}


/* HERO */

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

  background:
    linear-gradient(
      90deg,
      rgba(4,4,4,0.99) 0%,
      rgba(4,4,4,0.96) 26%,
      rgba(4,4,4,0.78) 46%,
      rgba(4,4,4,0.30) 67%,
      rgba(4,4,4,0.04) 100%
    ),
    url("images/hero.jpg") 86% 42% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0) 28%,
      rgba(0,0,0,0) 70%,
      rgba(0,0,0,0.34) 100%
    );
}

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

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

.hero-intro {
  max-width: 560px;
  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;
}


/* IDENTITY / COACH */

.identity-section {
  position: relative;
  overflow: hidden;

  /*
    Full-bleed image, anchored high enough to keep your face visible.
    Text sits on the dark left side.
  */
  background:
    linear-gradient(
      90deg,
      rgba(8,8,8,0.99) 0%,
      rgba(8,8,8,0.96) 25%,
      rgba(8,8,8,0.80) 46%,
      rgba(8,8,8,0.40) 67%,
      rgba(8,8,8,0.10) 100%
    ),
    url("images/coach.jpg") 82% 24% / cover no-repeat;
}

.identity-section .content {
  max-width: 720px;
  margin-left: max(
    24px,
    calc((100vw - var(--max-wide)) / 2)
  );
  margin-right: auto;
}

.identity-section h2 {
  max-width: 700px;
  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 */

@media (max-width: 980px) {

  .section {
    padding-block: 78px;
  }

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

  .hero-inner {
    display: block;
  }

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

  .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 {
    background:
      linear-gradient(
        90deg,
        rgba(8,8,8,0.96) 0%,
        rgba(8,8,8,0.86) 38%,
        rgba(8,8,8,0.48) 70%,
        rgba(8,8,8,0.12) 100%
      ),
      url("images/coach.jpg") 76% 18% / cover no-repeat;
  }

  .identity-section .content {
    max-width: var(--max-narrow);
    margin-inline: auto;
  }

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

  .copyright {
    text-align: center;
  }
}


/* MOBILE */

@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;
  }


  /* MOBILE HERO */

  .hero {
    min-height: auto;
    padding: 118px 20px 66px;

    /*
      Zoomed further into the portrait so the outer edge of the source
      image is much less visible. Face stays toward upper-right.
    */
    background:
      linear-gradient(
        180deg,
        rgba(3,3,3,0.10) 0%,
        rgba(3,3,3,0.18) 24%,
        rgba(3,3,3,0.48) 52%,
        rgba(3,3,3,0.86) 74%,
        rgba(3,3,3,0.99) 100%
      ),
      linear-gradient(
        90deg,
        rgba(3,3,3,0.62) 0%,
        rgba(3,3,3,0.34) 58%,
        rgba(3,3,3,0.06) 100%
      ),
      url("images/hero.jpg") 74% 4% / auto 92% no-repeat;

    background-color: #070707;
  }

  .hero-overlay {
    background: none;
  }

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

  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;
  }


  /* MOBILE REAL LIFE */

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

  .life-image {
    /*
      The crop is deliberately lowered so Quinn's full head remains
      inside the frame.
    */
    min-height: 455px;

    background:
      linear-gradient(
        0deg,
        rgba(0,0,0,0.04),
        rgba(0,0,0,0)
      ),
      url("images/life.jpg") 39% 64% / 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);
  }


  /* MOBILE MANIFESTO */

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

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

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


  /* MOBILE IDENTITY / COACH */

  .identity-section {
    /*
      No separate photo card and no blank black strip.
      The image fills the complete section and is anchored around
      head/upper-body height.
    */
    padding-top: 245px;

    background:
      linear-gradient(
        180deg,
        rgba(8,8,8,0.03) 0%,
        rgba(8,8,8,0.08) 18%,
        rgba(8,8,8,0.28) 34%,
        rgba(8,8,8,0.72) 49%,
        rgba(8,8,8,0.96) 61%,
        rgba(8,8,8,1) 100%
      ),
      linear-gradient(
        90deg,
        rgba(8,8,8,0.18) 0%,
        rgba(8,8,8,0.06) 52%,
        rgba(8,8,8,0.02) 100%
      ),
      url("images/coach.jpg") 58% 8% / cover no-repeat;

    background-color: #080808;
  }

  .identity-section .content {
    max-width: none;
    margin-inline: auto;
  }

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

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

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


  /* MOBILE FINAL */

  .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;
  }
}


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