:root {
  --black: #080808;
  --soft-black: #111111;
  --white: #ffffff;
  --off-white: #f4f4f2;
  --grey: #a5a5a5;
  --dark-grey: #222222;
  --border: #d8d8d8;

  --heading-font: "Barlow Condensed", sans-serif;
  --body-font: "Inter", sans-serif;

  --container: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: #ffffff;
  color: var(--black);
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--body-font);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  color: var(--white);
}

.site-header .container {
  width: calc(100% - 48px);
  margin-inline: 0;
  margin-left: 24px;
}

.nav-wrapper {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand-logo {
  width: 155px;
  height: auto;
}

.site-header .brand-logo {
  transform: translateY(20px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  transform: translateY(20px);
}

.main-nav a {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.main-nav a:not(.nav-cta):hover {
  color: #cccccc;
}

.nav-cta {
  padding: 13px 18px;
  background: var(--white);
  color: var(--black);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 34px;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.88) 35%,
      rgba(0, 0, 0, 0.12) 72%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../images/hero.png");
  background-position: right -20px bottom 0;
  background-size: 78%;
  background-color: #000;
  background-repeat: no-repeat;
  color: var(--white);
}

@media (min-width: 1200px) {
  .hero {
    min-height: 560px;
    padding-top: 100px;
    padding-bottom: 34px;
  }

  .hero,
  .coaching-page-hero,
  .application-hero,
  .legal-hero,
  .thank-you-hero {
    height: 675px;
    min-height: 675px;
  }

  .index-page .hero {
    height: 675px;
    min-height: 675px;
    padding-top: 100px;
    padding-bottom: 34px;
  }

  .coaching-page-hero {
    padding-top: 100px;
    padding-bottom: 34px;
  }

  .application-hero {
    padding-top: 100px;
    padding-bottom: 34px;
  }

  .legal-hero {
    padding-top: 100px;
    padding-bottom: 34px;
  }

  .thank-you-hero {
    padding-top: 100px;
    padding-bottom: 34px;
  }

  .index-page .hero-actions {
    transform: translateY(-18px);
  }

  .index-header .brand-logo,
  .coaching-header .brand-logo,
  .apply-header .brand-logo {
    width: 110px;
  }

  .site-header .brand-logo {
    width: 110px;
  }

  .hero-content {
    transform: translateY(30px);
  }

  .index-page .hero-description {
    max-width: 470px;
    margin-top: 18px;
    font-size: 1.2rem;
  }

  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow),
  .thank-you-intro,
  .legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
    max-width: 470px;
    margin-top: 18px;
    font-size: 1.2rem;
  }
}

@media (min-width: 821px) and (max-width: 1199px) {
  .coaching-page-hero .hero-copy {
    transform: translateY(232px) !important;
  }

  .application-hero-inner {
    transform: translateY(1px) !important;
  }

  .legal-hero-inner {
    width: min(100% - 48px, var(--container));
    margin-left: 24px;
    transform: translateY(-50px) !important;
  }

  .thank-you-hero-inner {
    width: min(100% - 48px, var(--container));
    margin-left: 24px;
    transform: translateY(30px) !important;
  }

  .hero h1,
  .coaching-page-hero h1,
  .application-hero h1,
  .thank-you-hero h1,
  .legal-hero h1 {
    font-size: 5.2rem !important;
    line-height: 0.92 !important;
    letter-spacing: -0.12rem !important;
  }

  .hero-description,
  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow),
  .thank-you-intro,
  .legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
    width: 470px !important;
    max-width: 470px !important;
    margin-top: 18px !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
}

@media (min-width: 1600px) {
  .hero,
  .coaching-page-hero,
  .application-hero,
  .legal-hero,
  .thank-you-hero {
    height: 750px;
    min-height: 750px;
  }

  .index-page .hero {
    height: 750px;
    min-height: 750px;
  }

  .coaching-page-hero .hero-copy {
    transform: translateY(24px) !important;
  }

  .application-hero-inner {
    transform: translateY(-10px) !important;
  }

  .legal-hero-inner {
    width: min(100% - 48px, var(--container)) !important;
    margin-left: 24px !important;
    transform: translateY(-13px) !important;
  }

  .thank-you-hero-inner {
    width: min(100% - 48px, var(--container)) !important;
    margin-left: 24px !important;
    transform: translateY(61px) !important;
  }

  .hero h1,
  .coaching-page-hero h1,
  .application-hero h1,
  .thank-you-hero h1,
  .legal-hero h1 {
    font-size: 10rem !important;
    line-height: 0.92 !important;
    letter-spacing: -0.12rem !important;
  }

  .hero-description,
  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow),
  .thank-you-intro,
  .legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
    width: 900px !important;
    max-width: 900px !important;
    margin-top: 18px !important;
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
  }

  .site-header .brand-logo {
    width: 150px !important;
  }

  .index-page .hero h1 {
    max-width: 1100px !important;
    font-size: 10rem !important;
  }

  .index-page .hero-copy {
    max-width: 1100px;
  }

  .index-page .hero-content {
    transform: translateY(20px);
  }

  .index-header .brand-logo {
    width: 150px !important;
  }

  .index-page .hero-actions {
    transform: translateY(-20px);
  }

  .index-page .video-link {
    gap: 16px;
    font-size: 1rem;
  }

  .index-page .play-icon {
    width: 52px;
    height: 52px;
    font-size: 0.78rem;
  }

  .index-page .hero-description {
    max-width: 900px;
    font-size: 1.25rem !important;
  }

  .hero-copy-compact {
    display: none;
  }

  .hero-copy-wide {
    display: inline;
  }
}

@media (width: 1707px) {
  .index-page .hero {
    height: 750px;
    min-height: 750px;
  }

  .index-page .hero-content {
    transform: translateY(20px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--container));
  margin-inline: 0;
  margin-left: 24px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.hero-copy {
  max-width: 630px;
}

.eyebrow {
  margin-bottom: 18px;
  font-family: var(--heading-font);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}

.dark-eyebrow {
  color: #666666;
}

.hero h1,
.coaching-copy h2,
.about-copy h2,
.apply-section h2 {
  font-family: var(--heading-font);
  text-transform: uppercase;
  line-height: 0.92;
}

.index-page .hero h1 {
  max-width: 680px;
  font-size: clamp(4.4rem, 6vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -0.12rem;
}

.index-page .hero-description {
  max-width: 470px;
  margin-top: 18px;
  color: #d5d5d5;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 1599px) {
  .hero-copy-wide {
    display: none;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 24px;
  font-family: var(--heading-font);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover {
  background: #dddddd;
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-dark:hover {
  background: #222222;
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.button-outline-light:hover {
  background: var(--white);
  color: var(--black);
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.play-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  font-size: 0.68rem;
}

.locations {
  padding: 22px 0 27px;
  border-bottom: 1px solid #e8e8e8;
  background: var(--off-white);
}

.locations-title {
  margin-bottom: 18px;
  text-align: center;
  color: #777777;
  font-family: var(--heading-font);
  font-size: 0.72rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}

.location-carousel {
  overflow: visible;
}

.location-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
  white-space: nowrap;
  overflow-x: visible;
}

.location-list span {
  flex: 1 1 auto;
  padding: 3px 10px;
  border-right: 1px solid #cccccc;
  font-family: var(--heading-font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.location-list span:last-child {
  border-right: 0;
}

.approach-section {
  padding: 120px 0 110px;
  background: #f7f7f5;
  color: var(--black);
}

.approach-heading {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.approach-heading h2 {
  font-family: var(--heading-font);
  font-size: clamp(3.8rem, 6vw, 6.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.05rem;
  text-transform: uppercase;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
}

.approach-item {
  min-height: 280px;
  padding: 38px 34px 40px;
  border-right: 1px solid #cfcfcf;
}

.approach-item:last-child {
  border-right: 0;
}

.approach-number {
  display: block;
  margin-bottom: 50px;
  color: #777777;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
}

.approach-item h3 {
  margin-bottom: 14px;
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
}

.approach-item p {
  max-width: 230px;
  color: #555555;
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 900px) {

  .approach-section {
    padding: 90px 0;
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-item:nth-child(2) {
    border-right: 0;
  }

  .approach-item:nth-child(1),
  .approach-item:nth-child(2) {
    border-bottom: 1px solid #cfcfcf;
  }

}

@media (max-width: 560px) {

  .header-logo img,
  .brand-logo {
    width: 85px;
  }

  .footer-logo img {
    width: 160px;
  }

  .approach-heading {
    margin-bottom: 55px;
  }

  .approach-heading h2 {
    font-size: 3.6rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-item {
    min-height: auto;
    padding: 32px 8px;
    border-right: 0;
    border-bottom: 1px solid #cfcfcf;
  }

  .approach-item:last-child {
    border-bottom: 0;
  }

  .approach-number {
    margin-bottom: 25px;
  }

  .approach-item p {
    max-width: 100%;
  }

}

.coaching-page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 34px;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.88) 35%,
      rgba(0, 0, 0, 0.12) 72%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../images/coaching-hero.jpg");
  background-position: right 0 bottom 0;
  background-size: 74%;
  background-color: #000;
  background-repeat: no-repeat;
  color: var(--white);
}

@media (min-width: 1200px) {
  .coaching-page-hero {
    min-height: 560px;
    background-position: right 0 bottom 0;
  }
}

@media (min-width: 1600px) {
  .coaching-page-hero {
    min-height: 560px;
  }
}

.coaching-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--container));
  margin-inline: 0;
  margin-left: 24px;
}

.coaching-page-hero .hero-copy {
  max-width: 630px;
}

.coaching-page-hero .eyebrow {
  margin-bottom: 18px;
}

.coaching-page-hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(4.4rem, 8vw, 6.2rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.12rem;
  text-transform: uppercase;
}

.coaching-page-hero h1 span {
  display: block;
  white-space: nowrap;
}

.coaching-hero-text {
  max-width: 470px;
  margin-top: 18px;
  color: #d5d5d5;
  font-size: 1rem;
  line-height: 1.6;
}

.coaching-page-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 24px;
}

.coaching-page-heading {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.coaching-page-heading h2 {
  font-family: var(--heading-font);
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.light-heading {
  color: var(--white);
}

.coaching-included {
  background: #f7f7f5;
  color: var(--black);
  padding: 120px 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #c9c9c5;
  border-left: 1px solid #c9c9c5;
}

.included-item {
  min-height: 300px;
  padding: 38px;
  border-right: 1px solid #c9c9c5;
  border-bottom: 1px solid #c9c9c5;
}

.included-item > span {
  display: block;
  margin-bottom: 70px;
  font-family: var(--heading-font);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #777;
}

.included-item h3 {
  margin-bottom: 15px;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.included-item p {
  max-width: 320px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

.coaching-app {
  padding: 120px 0;
  background: #ffffff;
  color: var(--black);
}

.coaching-app-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.coaching-app-copy {
  max-width: 520px;
}

.coaching-app-copy h2 {
  font-family: var(--heading-font);
  font-size: clamp(4rem, 6vw, 6.5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.coaching-app-copy > p:not(.eyebrow):not(.coaching-app-note) {
  max-width: 470px;
  margin-top: 28px;
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.75;
}

.coaching-app .feature-list {
  margin: 35px 0;
  padding: 0;
}

.coaching-app .feature-list li {
  padding: 15px 0 15px 30px;
  margin: 0;
  border-bottom: 1px solid #d8d8d8;
  color: var(--black);
}

.coaching-app .feature-list li:first-child {
  border-top: 1px solid #d8d8d8;
}

.coaching-app .feature-list li::before {
  top: 15px;
}

.coaching-app-note {
  max-width: 470px;
  color: #777777;
  font-size: 0.85rem;
  line-height: 1.7;
}

.coaching-app-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coaching-app-visual img {
  width: 100%;
  height: auto;
}

.how-it-works {
  background: #080808;
  color: var(--white);
  padding: 120px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.process-item {
  min-height: 330px;
  padding: 40px 32px;
  border-right: 1px solid #333;
}

.process-item:first-child {
  border-left: 1px solid #333;
}

.process-number {
  display: block;
  margin-bottom: 85px;
  font-family: var(--heading-font);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #777;
}

.process-item h3 {
  margin-bottom: 16px;
  font-family: var(--heading-font);
  font-size: 1.55rem;
  text-transform: uppercase;
}

.process-item p {
  color: #999;
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .coaching-header {
    position: relative;
    background: var(--black);
  }

  .coaching-page-hero {
    min-height: auto;
    padding: 120px 0 70px;
  }

  .coaching-page-hero h1 {
    font-size: clamp(4rem, 13vw, 6rem);
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coaching-app {
    padding: 90px 0;
  }

  .coaching-app-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .coaching-app-copy {
    max-width: 650px;
  }

  .coaching-app-visual {
    min-height: 500px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-item {
    border-bottom: 1px solid #333;
  }
}

@media (max-width: 600px) {
  .coaching-page-hero {
    padding: 100px 0 55px;
    background-position: right 0 bottom 0;
  }

  .coaching-page-hero h1 {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }

  .coaching-hero-text {
    font-size: 1rem;
  }

  .coaching-included {
    padding: 50px 0;
  }

  .how-it-works {
    padding: 85px 0;
  }

  .coaching-app {
    padding: 85px 0;
  }

  .coaching-page-heading {
    margin-bottom: 50px;
  }

  .coaching-page-heading h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .included-item {
    min-height: auto;
    padding: 30px;
  }

  .coaching-app-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .coaching-app-copy h2 {
    font-size: clamp(3.5rem, 14vw, 5rem);
  }

  .coaching-app-copy > p:not(.eyebrow):not(.coaching-app-note) {
    margin-top: 24px;
  }

  .coaching-app .feature-list {
    margin: 30px 0;
  }

  .coaching-app-visual {
    min-height: 400px;
  }

  .included-item > span {
    margin-bottom: 45px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

      .process-item {
      min-height: auto;
      padding: 32px 25px;
    }

    .process-number {
      margin-bottom: 50px;
    }
}

@media (min-width: 561px) and (max-width: 900px) and (orientation: landscape) {
  .coaching-header {
    height: 90px;
  }

  .coaching-header .nav-wrapper {
    min-height: 90px;
  }

  .coaching-page-hero {
    background-image: url("../images/coaching-hero.jpg");
    background-position: right 0 top 126px;
    background-size: 108%;
  }

  .coaching-page-hero .hero-copy {
    transform: translateY(20px);
  }
}

/* =========================
   COACHING PRICE
========================= */

.coaching-price {
  padding: 120px 0;
  background: #f7f7f5;
  color: var(--black);
}

.price-inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.coaching-price .eyebrow {
  margin-bottom: 20px;
}

.coaching-price h2 {
  font-family: var(--heading-font);
  font-size: clamp(6rem, 11vw, 10rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.coaching-price h2 span {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #777777;
}

.price-intro {
  max-width: 520px;
  margin: 35px auto 55px;
  color: #666666;
  font-size: 1rem;
  line-height: 1.7;
}

.price-features {
  max-width: 650px;
  margin: 0 auto 45px;
  border-top: 1px solid #cccccc;
  text-align: left;
}

.price-features p {
  position: relative;
  padding: 18px 10px 18px 35px;
  border-bottom: 1px solid #cccccc;

  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-features p::before {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 18px;
  font-family: var(--body-font);
  font-size: 0.9rem;
}

.coaching-price .button {
  margin-top: 5px;
}

@media (max-width: 600px) {
  .coaching-price {
    padding: 85px 0;
  }

  .coaching-price h2 {
    font-size: 6rem;
  }

  .coaching-price h2 span {
    display: block;
    margin: 18px 0 0;
    font-size: 1.2rem;
  }

  .price-intro {
    margin: 30px auto 45px;
  }

  .price-features p {
    padding: 16px 8px 16px 32px;
    font-size: 1.05rem;
  }

  .price-features p::before {
    top: 16px;
  }
}

/* =========================
   COACHING FAQ
========================= */

.coaching-faq {
  padding: 120px 0;
  background: #ffffff;
  color: var(--black);
}

.coaching-faq .coaching-page-heading {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.coaching-faq .coaching-page-heading h2 {
  font-family: var(--heading-font);
  font-size: clamp(3.8rem, 6vw, 6.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.05rem;
  text-transform: uppercase;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  border-top: 1px solid #cccccc;
}

.faq-item {
  border-bottom: 1px solid #cccccc;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 27px 60px 27px 0;
  cursor: pointer;
  list-style: none;

  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";

  position: absolute;
  top: 50%;
  right: 5px;

  transform: translateY(-50%);

  font-family: var(--body-font);
  font-size: 1.6rem;
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 700px;
  padding: 0 60px 28px 0;

  color: #666666;
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-item summary {
  transition: opacity 180ms ease;
}

.faq-item summary:hover {
  opacity: 0.6;
}

@media (max-width: 600px) {
  .coaching-faq {
    padding: 85px 0;
  }

  .coaching-faq .coaching-page-heading {
    margin-bottom: 50px;
  }

  .coaching-faq .coaching-page-heading h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .faq-item summary {
    padding: 22px 45px 22px 0;
    font-size: 1.15rem;
  }

  .faq-item p {
    padding: 0 45px 24px 0;
  }
}

.coaching-split {
  display: grid;
  grid-template-columns: 45% 55%;
  background: #000;
}

.coaching-section {
  min-height: 650px;
  background: var(--black);
  color: var(--white);
}

.coaching-copy {
  display: flex;
  justify-content: flex-end;
  padding: 90px 8vw 90px 40px;
}

.coaching-inner {
  width: min(100%, 520px);
}

.coaching-copy h2,
.about-copy h2 {
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 600;
}

.coaching-copy p:not(.eyebrow),
.about-copy p {
  max-width: 500px;
  margin-top: 25px;
  color: #cccccc;
}

.feature-list {
  margin: 28px 0 34px;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 27px;
  font-family: var(--heading-font);
  font-size: 1rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

.coaching-image {
  min-height: 620px;
  background-image: url("../images/coaching.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #d5d5d5;
  color: #555555;
  font-family: var(--heading-font);
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.about-section {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: center;
}

.dark-placeholder {
  min-height: 570px;
  display: flex;
  background: #181818;
  color: #999999;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}

.about-copy p {
  margin-bottom: 20px;
}

.about-copy .button {
  margin-top: 14px;
}

.apply-section {
  padding: 105px 0;
  background: var(--soft-black);
  color: var(--white);
  text-align: center;
}

.apply-inner {
  max-width: 820px;
}

.apply-section h2 {
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 600;
}

.apply-section p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px auto 34px;
  color: #cccccc;
}

.application-section {
  padding: 100px 0 120px;
  background: #f7f7f5;
}

.application-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.application-intro h2 {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.92;
  text-transform: uppercase;
}

.application-intro p:not(.eyebrow) {
  max-width: 360px;
  margin-top: 24px;
  color: #666666;
}

.site-footer {
  padding: 70px 0 25px;
  background: #050505;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 60px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-grid p {
  max-width: 370px;
  color: #999999;
}

.footer-heading {
  color: var(--white) !important;
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  color: #bbbbbb;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid #252525;
  color: #777777;
  font-size: 0.78rem;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: 0.72rem;
  }

  .location-list {
    gap: 8px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .menu-button {
    display: block;
    position: relative;
    z-index: 31;
  }

  .main-nav {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 40px;
    background: rgba(5, 5, 5, 0.98);
    transform: translateX(100%);
    transition: transform 240ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1.5rem;
  }

  .nav-cta {
    margin-top: 12px;
  }

  .hero {
    min-height: 700px;
    background-position: 62% top 90px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 17vw, 6.2rem);
  }

  .hero-copy {
    max-width: 520px;
  }

  .location-list {
    gap: 6px;
  }

  .location-list span {
    border-right: 0;
  }

  .coaching-section {
    grid-template-columns: 1fr;
  }

  .coaching-copy {
    justify-content: flex-start;
    padding: 80px 30px;
  }

  
  .coaching-image {
    min-height: 480px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .application-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (min-width: 561px) and (max-width: 820px) and (orientation: portrait) {
  .site-header .brand-logo {
    width: 90px;
    transform: translateY(10px);
  }

  .index-page .hero {
    min-height: 450px;
    padding-top: 60px;
    padding-bottom: 35px;
    background-size: 100%;
  }

  .index-page .hero h1 {
    font-size: 3.8rem;
  }

  .hero-content {
    transform: translateY(20px);
  }

  .coaching-page-hero {
    background-position: right 0 bottom 0;
    background-size: auto 80%;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-actions {
    margin-top: 8px;
  }

  .coaching-page-hero {
    min-height: 500px;
    padding: 100px 0 45px;
  }
}

@media (min-width: 821px) and (max-width: 1199px) {
  .coaching-page-hero {
    align-items: flex-start !important;
  }

  .coaching-hero-inner {
    top: 0;
    transform: translateY(-191px) !important;
  }

  .application-hero {
    align-items: flex-start !important;
  }

  .application-hero-inner {
    transform: translateY(-98px) !important;
  }

  .legal-hero {
    align-items: flex-start !important;
  }

  .legal-hero-inner {
    width: min(100% - 48px, var(--container));
    margin-left: 24px !important;
    transform: translateY(-80px) !important;
  }

  .thank-you-hero {
    align-items: flex-start !important;
  }

  .thank-you-hero-inner {
    width: min(100% - 48px, var(--container));
    margin-left: 24px !important;
    transform: translateY(-79px) !important;
  }

  .hero h1,
  .coaching-page-hero h1,
  .application-hero h1,
  .thank-you-hero h1,
  .legal-hero h1 {
    font-size: 5.2rem !important;
    line-height: 0.92 !important;
    letter-spacing: -0.12rem !important;
  }

  .hero-description,
  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow),
  .thank-you-intro,
  .legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
    max-width: 470px !important;
    margin-top: 18px !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 400px) {
  .coaching-page-hero {
    padding-top: 109px;
  }

  .application-hero {
    padding-top: 109px;
  }

  .legal-hero {
    padding-top: 68px;
  }

  .thank-you-hero-inner {
    padding-top: 68px;
  }

  .hero h1,
  .coaching-page-hero h1,
  .application-hero h1,
  .thank-you-hero h1,
  .legal-hero h1 {
    font-size: 2.8rem;
  }

  .hero-description,
  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow),
  .thank-you-intro,
  .legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
    font-size: 0.65rem;
  }
}

@media (min-width: 1600px) {
  .coaching-page-hero {
    height: 960px !important;
    min-height: 960px !important;
  }

  .coaching-hero-inner {
    transform: translateY(-370px) !important;
  }
}

@media (min-width: 1600px) {
  .hero,
  .application-hero,
  .thank-you-hero,
  .legal-hero {
    height: 760px;
    min-height: 760px;
  }

  .coaching-page-hero {
    height: 820px;
    min-height: 820px;
  }

  .coaching-hero-inner {
    transform: translateY(-230px) !important;
  }

  .application-hero-inner {
    transform: translateY(-234px) !important;
  }

  .legal-hero-inner {
    transform: translateY(-261px) !important;
  }

  .thank-you-hero-inner {
    transform: translateY(-159px) !important;
  }
}

@media (min-width: 1600px) {
  .hero,
  .coaching-page-hero,
  .application-hero,
  .thank-you-hero,
  .legal-hero {
    height: 760px;
    min-height: 760px;
  }

  .coaching-hero-inner {
    transform: translateY(-230px) !important;
  }

  .application-hero-inner {
    transform: translateY(-234px) !important;
  }

  .legal-hero-inner {
    transform: translateY(-261px) !important;
  }

  .thank-you-hero-inner {
    transform: translateY(-159px) !important;
  }
}

@media (min-width: 1600px) {
  .hero,
  .coaching-page-hero,
  .application-hero,
  .thank-you-hero,
  .legal-hero {
    height: 760px;
    min-height: 760px;
  }

  .coaching-hero-inner {
    transform: translateY(-230px) !important;
  }

  .application-hero-inner {
    transform: translateY(-234px) !important;
  }

  .legal-hero-inner {
    transform: translateY(-261px) !important;
  }

  .thank-you-hero-inner {
    transform: translateY(-159px) !important;
  }
}

@media (min-width: 1600px) {
  .hero,
  .coaching-page-hero,
  .application-hero,
  .thank-you-hero,
  .legal-hero {
    height: 760px;
    min-height: 760px;
    padding-top: 100px;
    padding-bottom: 20px;
    align-items: flex-start;
  }

  .coaching-hero-inner,
  .application-hero-inner,
  .thank-you-hero-inner {
    position: absolute;
    top: 129px !important;
  }

  .coaching-hero-inner {
    transform: translateY(-370px) !important;
  }

  .application-hero-inner {
    transform: translateY(-234px) !important;
  }

  .thank-you-hero-inner {
    transform: translateY(-159px) !important;
  }

  .legal-hero-inner {
    position: absolute;
    top: 88px !important;
    transform: translateY(-261px) !important;
  }

  .legal-hero:has(.legal-hero-text) .legal-hero-inner {
    transform: translateY(-309px) !important;
  }

  .coaching-page-hero .hero-copy {
    transform: none !important;
  }

  .coaching-page-hero h1,
  .application-hero h1,
  .thank-you-hero h1,
  .legal-hero h1 {
    max-width: 1100px;
    font-size: 10rem;
    line-height: 0.92;
    letter-spacing: -0.12rem;
  }

  .application-hero-inner > h1,
  .application-hero-inner > p:not(.eyebrow),
  .legal-hero-inner > h1,
  .legal-hero-inner > p:not(.eyebrow):not(.legal-updated),
  .thank-you-hero-inner > h1,
  .thank-you-hero-inner > p:not(.eyebrow) {
    margin-left: 24px;
  }

  .application-hero-inner > h1,
  .legal-hero-inner > h1,
  .thank-you-hero-inner > h1 {
    position: relative;
    left: 24px;
  }

  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow),
  .thank-you-intro,
  .legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
    max-width: 900px;
    margin-top: 18px;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

@media (min-width: 821px) and (max-width: 1199px) {
  .coaching-page-hero .hero-copy {
    transform: translateY(232px) !important;
  }

  .application-hero-inner {
    transform: translateY(1px) !important;
  }

  .legal-hero-inner {
    width: min(100% - 48px, var(--container));
    margin-left: 24px;
    transform: translateY(-50px) !important;
  }

  .thank-you-hero-inner {
    width: min(100% - 48px, var(--container));
    margin-left: 24px;
    transform: translateY(30px) !important;
  }

  .hero h1,
  .coaching-page-hero h1,
  .application-hero h1,
  .thank-you-hero h1,
  .legal-hero h1 {
    font-size: 5.2rem !important;
    line-height: 0.92 !important;
    letter-spacing: -0.12rem !important;
  }

  .hero-description,
  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow),
  .thank-you-intro,
  .legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
    width: 470px !important;
    max-width: 470px !important;
    margin-top: 18px !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .index-page .hero {
    padding-bottom: 20px;
  }

  .index-page .hero-copy {
    max-width: 630px;
  }

  .index-page .hero-copy .hero-description {
    max-width: 470px;
  }
}

@keyframes location-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.location-carousel {
  overflow: hidden;
}

.location-track {
  display: flex;
  width: max-content;
  animation: location-marquee 32s linear infinite;
}

.location-list {
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

@media (prefers-reduced-motion: reduce) {
  .location-track {
    animation: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 50px;
  }

  .site-header .brand-logo {
    transform: translateY(6px);
  }

  .index-header,
  .coaching-header,
  .apply-header {
    height: 70px;
  }

  .index-header {
    height: 70px;
    background: #000;
    color: var(--white);
  }

  .index-header .nav-wrapper,
  .coaching-header .nav-wrapper,
  .apply-header .nav-wrapper {
    min-height: 70px;
  }

  .index-header .brand-logo,
  .coaching-header .brand-logo,
  .apply-header .brand-logo {
    width: 85px;
    transform: translateY(6px);
  }

  .index-header .brand-logo {
    width: 85px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav-wrapper {
    min-height: 50px;
  }

  .hero {
    margin-top: 69px;
    height: 105vw;
    min-height: 0;
    align-items: flex-end;
    padding-top: 0;
    padding-bottom: 0;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 75%,
        rgba(0, 0, 0, 1) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.46) 0%,
        rgba(0, 0, 0, 0) 25%
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.88) 35%,
        rgba(0, 0, 0, 0.12) 72%,
        rgba(0, 0, 0, 0) 100%
      ),
      url("../images/hero-mobile.png");
    background-position: 100% bottom;
    background-size: 60%;
    background-color: #000;
    background-repeat: no-repeat;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
  }

  .hero-content {
    padding-top: 90px;
    transform: translateY(-40px);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-description {
    width: 220px;
    max-width: 220px;
    margin-top: 28px;
  }

  .button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.76rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
    margin-top: 16px;
  }

  .coaching-page-hero {
    min-height: 490px;
    align-items: flex-end;
    padding: 0 0 40px;
    background-image:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.88) 35%,
        rgba(0, 0, 0, 0.12) 72%,
        rgba(0, 0, 0, 0) 100%
      ),
      url("../images/coaching-hero.jpg");
    background-position: 40% bottom;
    background-size: cover, 145%;
  }

  .application-hero {
    min-height: 600px;
  }

  .application-hero {
    background-image: none;
  }

  .coaching-hero-inner {
    padding-top: 90px;
  }

  .coaching-page-hero h1 {
    font-size: 3rem;
  }

  .coaching-hero-text {
    width: 220px;
    max-width: 220px;
  }

  .coaching-page-hero .hero-actions {
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
    margin-top: 16px;
  }

  .locations {
    padding: 60px 0 65px;
  }

  .locations-title {
    font-size: 1rem;
  }

  .location-carousel {
    position: relative;
    overflow: hidden;
  }

  .location-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .location-list span {
    border-right: 0;
    flex: 0 1 auto;
    padding: 4px 8px;
    font-size: 0.9rem;
  }

  .about-section {
    padding: 70px 0;
  }

  .coaching-copy h2,
  .about-copy h2 {
    font-size: 4rem;
  }

  .application-hero {
    padding: 130px 0 75px;
  }

  .application-hero h1 {
    font-size: 4rem;
  }

  .application-section {
    padding: 75px 0 85px;
  }

  .coaching-image {
    min-height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .site-header .brand-logo {
    width: 75px;
  }

  .hero {
    height: 92vw;
  }

  .hero-content {
    transform: translateY(-10px);
  }

  .hero-description,
  .hero-actions {
    transform: translateY(0);
  }

  .hero-actions {
    margin-top: 10px;
  }

  .hero-description {
    width: 200px;
    max-width: 200px;
    margin-top: 32px;
    font-size: 0.8rem;
  }

  .coaching-page-hero {
    min-height: 420px;
  }
}

@media (min-width: 401px) and (max-width: 450px) {
  .hero {
    height: 90vw;
  }

  .hero-content {
    transform: translateY(-20px);
  }

  .hero h1 {
    font-size: 3.3rem;
    letter-spacing: -0.1rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .index-page .hero h1 {
    font-size: 3.4rem;
  }

  .index-page .hero-description {
    width: 300px;
    max-width: 300px;
    font-size: 0.85rem;
  }

  .index-page .hero-content {
    transform: translateY(-70px);
  }
}

/* =========================
   APPLICATION PAGE
========================= */

.application-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 34px;
  background-image: none;
  background-color: #000;
  color: var(--white);
}

@media (min-width: 1200px) {
  .application-hero {
    min-height: 560px;
  }
}

.application-hero-inner {
  width: min(100% - 48px, var(--container));
  margin-inline: 0;
  margin-left: 24px;
}

.application-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(4.4rem, 8vw, 6.2rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.12rem;
  text-transform: uppercase;
  margin: 0;
  max-width: 680px;
}

.application-hero > .container > p:not(.eyebrow),
.application-hero-inner > p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 18px;
  color: #d5d5d5;
  font-size: 1rem;
  line-height: 1.6;
}

.application-price {
  margin-top: 30px !important;
  font-family: var(--heading-font);
  font-size: 1rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff !important;
}

/* =========================
   APPLICATION REASSURANCE
========================= */

.application-reassurance {
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.reassurance-item {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px 28px;
  border-right: 1px solid #dddddd;
}

.reassurance-item:first-child {
  border-left: 1px solid #dddddd;
}

.reassurance-item span {
  color: #888888;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.reassurance-item p {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 820px) {

  .reassurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reassurance-item {
    border-bottom: 1px solid #dddddd;
  }

}

@media (max-width: 560px) {

  .reassurance-grid {
    grid-template-columns: 1fr;
  }

  .reassurance-item {
    min-height: auto;
    padding: 20px 10px;
    border-left: 0;
    border-right: 0;
  }

  .reassurance-item:first-child {
    border-left: 0;
  }

}

/* =========================
   APPLICATION FORM SECTION
========================= */

.application-section {
  padding: 120px 0;
  background: #f7f7f5;
  color: var(--black);
}

.application-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

/* LEFT INTRO */

.application-intro {
  position: sticky;
  top: 40px;
}

.application-intro h2 {
  margin-bottom: 28px;
  font-family: var(--heading-font);
  font-size: clamp(3.8rem, 5.5vw, 5.8rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.application-intro p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 20px;
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* FORM */

.coaching-application-form {
  width: 100%;
}

.form-group {
  margin-bottom: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 11px;

  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aaaaaa;
  border-radius: 0;

  background: transparent;
  color: var(--black);

  padding: 13px 0;

  font-family: var(--body-font);
  font-size: 1rem;

  outline: none;

  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  line-height: 1.2;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: #080808;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999999;
}

/* SELECT ARROW */

.form-group select {
  appearance: none;
  -webkit-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #555 50%),
    linear-gradient(135deg, #555 50%, transparent 50%);

  background-position:
    calc(100% - 14px) 50%,
    calc(100% - 9px) 50%;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;
}

/* SUBMIT */

.form-submit {
  margin-top: 50px;
}

.form-submit .button {
  background-size: 40%;
  background-position: right 22% center;
  background-color: #000;
  background-repeat: no-repeat;
  color: var(--white);
  border: 0;
  cursor: pointer;
}

.form-submit p {
  margin-top: 18px;
  color: #777777;
  font-size: 0.82rem;
}

/* =========================
   APPLICATION NOTE
========================= */

.application-note {
  padding: 110px 0;
  background: #111111;
  color: var(--white);
  text-align: center;
}

.application-note .container {
  max-width: 850px;
}

.application-note h2 {
  font-family: var(--heading-font);
  font-size: clamp(4rem, 6vw, 6.5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.application-note p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px auto 0;
  color: #bdbdbd;
  line-height: 1.75;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .application-hero {
    min-height: auto;
    padding: 120px 0 70px;
  }

  .application-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .application-intro {
    position: static;
  }

  .application-intro p:not(.eyebrow) {
    max-width: 600px;
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .application-hero {
    padding: 135px 0 75px;
    background-image: none;
  }

  .application-hero h1 {
    font-size: 3rem;
  }

  .application-section {
    padding: 85px 0;
  }

  .application-layout {
    gap: 55px;
  }

  .application-intro h2 {
    font-size: clamp(3.3rem, 13vw, 4.5rem);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 30px;
  }

  .form-submit {
    margin-top: 40px;
  }

  .form-submit .button {
    width: 100%;
  }

  .application-note {
    padding: 85px 0;
  }

  .application-note h2 {
    font-size: clamp(3.5rem, 13vw, 4.8rem);
  }

}

/* =========================
   THANK YOU PAGE
========================= */

.thank-you-hero {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 34px;
  background: #080808;
  color: var(--white);
}

.thank-you-hero-inner {
  padding-top: 0;
}

.thank-you-hero h1 {
  max-width: 680px;
  font-family: var(--heading-font);
  font-size: clamp(4.4rem, 8vw, 6.2rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.12rem;
  text-transform: uppercase;
  margin: 0;
}

.thank-you-intro {
  max-width: 470px;
  margin-top: 18px;
  color: #d5d5d5;
  font-size: 1rem;
  line-height: 1.6;
}

.thank-you-email {
  margin-top: 18px;

  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================
   WHAT HAPPENS NEXT
========================= */

.thank-you-next {
  padding: 120px 0;

  background: #f7f7f5;
  color: var(--black);
}

.thank-you-heading {
  max-width: 760px;
  margin: 0 auto 75px;

  text-align: center;
}

.thank-you-heading h2 {
  font-family: var(--heading-font);
  font-size: clamp(4rem, 6vw, 6.5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

/* STEPS */

.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.thank-you-step {
  min-height: 340px;
  padding: 40px 35px;

  border-right: 1px solid #cccccc;
}

.thank-you-step:first-child {
  border-left: 1px solid #cccccc;
}

.thank-you-number {
  display: block;
  margin-bottom: 80px;

  color: #777777;

  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.thank-you-step h3 {
  margin-bottom: 16px;

  font-family: var(--heading-font);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.thank-you-step p {
  max-width: 310px;

  color: #666666;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =========================
   FINAL MESSAGE
========================= */

.thank-you-message {
  padding: 110px 0;

  background: #111111;
  color: var(--white);

  text-align: center;
}

.thank-you-message-inner {
  max-width: 820px;
}

.thank-you-message h2 {
  font-family: var(--heading-font);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.thank-you-message p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px auto 35px;

  color: #cccccc;
  line-height: 1.75;
}

/* =========================
   THANK YOU TABLET
========================= */

@media (max-width: 800px) {

  .thank-you-hero {
    min-height: 650px;
  }

  .thank-you-next {
    padding: 90px 0;
  }

  .thank-you-steps {
    grid-template-columns: 1fr;
  }

  .thank-you-step {
    min-height: auto;
    border-left: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
  }

  .thank-you-step:last-child {
    border-bottom: 0;
  }

  .thank-you-number {
    margin-bottom: 45px;
  }

}

/* =========================
   THANK YOU MOBILE
========================= */

@media (max-width: 560px) {

  .thank-you-hero {
    min-height: 640px;
    align-items: flex-end;
    padding-bottom: 70px;
  }

  .thank-you-hero-inner {
    padding-top: 100px;
  }

  .thank-you-hero h1 {
    font-size: 4rem;
  }

  .thank-you-next {
    padding: 75px 0;
  }

  .thank-you-heading {
    margin-bottom: 55px;
  }

  .thank-you-heading h2 {
    font-size: 3.8rem;
  }

  .thank-you-step {
    padding: 32px 25px;
  }

  .thank-you-message {
    padding: 85px 0;
  }

  .thank-you-message h2 {
    font-size: 4rem;
  }

}

/* =========================
   PERSONAL COACHING VALUE
========================= */

.personal-coaching {
  padding: 120px 0;
  background: #ffffff;
  color: var(--black);
}

.personal-coaching-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

/* LEFT */

.personal-coaching-heading {
  position: sticky;
  top: 50px;
}

.personal-coaching-heading .eyebrow {
  color: #666666;
}

.personal-coaching-heading h2 {
  font-family: var(--heading-font);
  font-size: clamp(4rem, 6vw, 6.5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

/* RIGHT */

.personal-coaching-copy {
  max-width: 600px;
}

.personal-coaching-copy > p {
  max-width: 550px;
  margin-bottom: 24px;

  color: #666666;
  font-size: 0.95rem;
  line-height: 1.8;
}

.personal-coaching-copy .personal-coaching-lead {
  color: #222222;
  font-size: 1.1rem;
  line-height: 1.75;
}

/* VALUE POINTS */

.personal-coaching-points {
  margin-top: 50px;
  border-top: 1px solid #cccccc;
}

.personal-coaching-points > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;

  padding: 22px 0;

  border-bottom: 1px solid #cccccc;
}

.personal-coaching-points span {
  color: #888888;

  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.personal-coaching-points p {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* TABLET */

@media (max-width: 800px) {

  .personal-coaching {
    padding: 90px 0;
  }

  .personal-coaching-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .personal-coaching-heading {
    position: static;
  }

  .personal-coaching-copy {
    max-width: 650px;
  }

}

/* MOBILE */

@media (max-width: 560px) {

  .personal-coaching {
    padding: 75px 0;
  }

  .personal-coaching-heading h2 {
    font-size: 3.8rem;
  }

  .personal-coaching-copy .personal-coaching-lead {
    font-size: 1rem;
  }

  .personal-coaching-points {
    margin-top: 40px;
  }

  .personal-coaching-points > div {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 19px 0;
  }

  .personal-coaching-points p {
    font-size: 1.05rem;
  }

}

/* =========================
   LEGAL PAGES
========================= */

.legal-hero {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 34px;
  background: #080808;
  color: var(--white);
}

.legal-hero-inner {
  width: 100%;
}

.legal-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(4.4rem, 8vw, 6.2rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.12rem;
  text-transform: uppercase;
  margin: 0;
  max-width: 680px;
}

.legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
  max-width: 470px;
  margin-top: 18px;
  color: #d5d5d5;
  font-size: 1rem;
  line-height: 1.6;
}

.legal-updated {
  margin-top: 28px;
  color: #888888;
  font-family: var(--heading-font);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-section {
  padding: 120px 0;
  background: #f7f7f5;
  color: var(--black);
}

.legal-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 50px;
}

.legal-sidebar h2 {
  font-family: var(--heading-font);
  font-size: clamp(3.2rem, 4.5vw, 5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.legal-sidebar > p:not(.eyebrow) {
  max-width: 360px;
  margin-top: 25px;
  color: #666666;
  font-size: 0.9rem;
  line-height: 1.75;
}

.legal-content {
  border-top: 1px solid #cccccc;
}

.legal-block {
  padding: 45px 0;
  border-bottom: 1px solid #cccccc;
}

.legal-number {
  display: block;
  margin-bottom: 25px;
  color: #888888;
  font-family: var(--heading-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.legal-block h2 {
  max-width: 650px;
  margin-bottom: 25px;
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-block h3 {
  margin: 30px 0 12px;
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-block p {
  max-width: 700px;
  margin-bottom: 18px;
  color: #5f5f5f;
  font-size: 0.92rem;
  line-height: 1.8;
}

.legal-block ul {
  max-width: 680px;
  margin: 20px 0 0;
  padding-left: 20px;
}

.legal-block li {
  margin-bottom: 12px;
  color: #5f5f5f;
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-block a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-contact {
  margin-top: 25px;
  color: #333333 !important;
}

@media (max-width: 800px) {

  .legal-section {
    padding: 90px 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-sidebar > p:not(.eyebrow) {
    max-width: 550px;
  }

}

@media (max-width: 560px) {

  .legal-hero {
    min-height: 500px;
    padding: 120px 0 60px;
  }

  .legal-hero h1 {
    font-size: 4rem;
  }

  .legal-section {
    padding: 75px 0;
  }

  .legal-layout {
    gap: 50px;
  }

  .legal-sidebar h2 {
    font-size: 3.5rem;
  }

  .legal-block {
    padding: 35px 0;
  }

  .legal-block h2 {
    font-size: 1.7rem;
  }

}

@media (min-width: 561px) and (max-width: 1024px) and (orientation: landscape),
  (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  body.menu-open {
    overflow: auto;
  }

  .site-header {
    height: 90px;
  }

  .site-header .brand-logo,
  .index-header .brand-logo {
    width: 110px;
    transform: translateY(20px);
  }

  .index-header .brand-logo {
    width: 110px;
  }

  .index-header,
  .coaching-header {
    height: 90px;
    background: transparent;
  }

  .coaching-header {
    background: #000;
  }

  .coaching-page-hero {
    min-height: 570px;
    background-position: right 0 bottom 0;
    margin-top: -1px;
    padding-top: 101px;
  }

  .application-hero {
    min-height: 600px;
  }

  .nav-wrapper,
  .index-header .nav-wrapper,
  .coaching-header .nav-wrapper {
    min-height: 90px;
  }

  .menu-button {
    display: none;
  }

  .main-nav {
    position: static;
    z-index: auto;
    inset: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 0;
    background: transparent;
    transform: translateY(20px);
    overflow: visible;
  }

  .main-nav.is-open {
    transform: translateY(20px);
  }

  .index-header .main-nav a {
    font-size: 0.8rem;
  }

  .site-header .main-nav a {
    font-size: 0.8rem;
  }

  .nav-cta {
    margin-top: 0;
  }

  .hero {
    margin-top: 0;
    height: auto;
    min-height: 670px;
    align-items: flex-end;
    padding-top: 140px;
    padding-bottom: 60px;
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.88) 35%,
        rgba(0, 0, 0, 0.12) 72%,
        rgba(0, 0, 0, 0) 100%
      ),
      url("../images/hero.png");
    background-position: right 0 bottom;
    background-size: 110%;
    background-color: #000;
    background-repeat: no-repeat;
  }

  .hero-content {
    padding-top: 0;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(5.2rem, 8.5vw, 8rem);
  }

  .coaching-page-hero h1 {
    font-size: clamp(4.8rem, 8vw, 7.8rem);
  }

  .hero-actions {
    margin-top: 36px;
  }

  .hero-description {
    max-width: 380px;
    margin-top: 18px;
    font-size: 1.1rem;
  }

  .locations {
    padding: 22px 0 27px;
  }

  .location-carousel {
    overflow: visible;
  }

  .location-list {
    width: auto;
    min-width: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    overflow-x: visible;
  }

  .location-list span {
    flex: 0 1 auto;
    padding: 3px 10px;
    border-right: 0;
    font-size: 0.82rem;
  }

  .approach-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .approach-item:nth-child(2) {
    border-right: 1px solid #cfcfcf;
  }

  .approach-item:nth-child(1),
  .approach-item:nth-child(2) {
    border-bottom: 0;
  }

  .coaching-section.coaching-split {
    grid-template-columns: 45% 55%;
  }

  .coaching-copy {
    justify-content: flex-end;
    padding: 90px 8vw 90px 40px;
  }

  .coaching-image {
    min-height: 620px;
  }

  .about-grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 80px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.7fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .application-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
  }
}

@media (min-width: 821px) and (max-width: 1199px) {
  .site-header .brand-logo {
    width: 100px;
  }

  .index-header .brand-logo {
    width: 100px;
  }

  .index-page .hero {
    height: 590px;
    min-height: 590px;
    padding-top: 60px;
    padding-bottom: 35px;
  }
}

@media (min-width: 1200px) {
  .hero,
  .coaching-page-hero,
  .application-hero,
  .thank-you-hero,
  .legal-hero {
    min-height: 560px;
    padding-top: 100px;
    padding-bottom: 34px;
    align-items: flex-end;
  }

  .hero-copy,
  .coaching-page-hero .hero-copy,
  .application-hero-inner,
  .thank-you-hero-inner,
  .legal-hero-inner {
    width: min(100% - 48px, var(--container));
    margin-left: 24px;
  }

  .hero-copy {
    max-width: 630px;
  }

  .hero-copy h1,
  .hero h1,
  .coaching-page-hero h1,
  .application-hero h1,
  .thank-you-hero h1,
  .legal-hero h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(4.4rem, 6vw, 6.2rem);
    line-height: 0.92;
    letter-spacing: -0.12rem;
  }

  .hero-description,
  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow),
  .thank-you-intro,
  .legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
    max-width: 470px;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-content,
  .coaching-hero-inner,
  .application-hero-inner,
  .thank-you-hero-inner,
  .legal-hero-inner,
  .coaching-page-hero .hero-copy {
    position: relative;
    top: 0;
    transform: none;
  }

  .index-page .hero-actions {
    transform: translateY(-18px);
  }
}

@media (min-width: 561px) and (max-width: 820px) and (orientation: portrait) {
  .hero h1,
  .coaching-page-hero h1,
  .application-hero h1,
  .thank-you-hero h1,
  .legal-hero h1 {
    font-size: 4rem;
  }
}

@media (min-width: 1200px) {
  .hero-copy .hero-description {
    max-width: 900px;
  }
}

@media (width: 1280px) {
  .coaching-page-hero {
    height: 760px;
    min-height: 760px;
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .coaching-hero-inner {
    transform: translateY(-210px);
  }

  .coaching-page-hero h1 {
    max-width: 680px;
    font-size: 102.4px;
    line-height: 0.92;
    letter-spacing: -0.12rem;
  }

  .coaching-hero-text {
    max-width: 470px;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (width: 1536px) {
  .coaching-page-hero {
    height: 860px;
    min-height: 860px;
    background-position: right 0 bottom 0;
  }

  .coaching-hero-inner {
    top: -185.4px;
  }

  .application-hero-inner {
    top: -66px;
  }

  .legal-hero-inner {
    top: -98.43px;
  }

  .coaching-page-hero h1,
  .application-hero h1,
  .thank-you-hero h1,
  .legal-hero h1 {
    font-size: 7.2rem;
  }

  .application-hero-inner > h1,
  .application-hero-inner > p:not(.eyebrow),
  .legal-hero-inner > h1,
  .legal-hero-inner > p:not(.eyebrow),
  .thank-you-hero-inner > h1,
  .thank-you-hero-inner > p {
    margin-left: 24px;
  }

  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow) {
    margin-top: 18px;
    line-height: 1.6;
  }
}

@media (width: 1536px) {
  .hero-copy {
    max-width: 900px;
  }

  .hero-copy .hero-description {
    max-width: 900px;
  }

  .hero-copy-compact {
    display: none;
  }

  .hero-copy-wide {
    display: inline;
  }

  .index-page .hero h1 {
    font-size: 7.2rem;
  }
}

@media (width: 1440px) {
  .hero {
    padding-bottom: 30px;
  }

  .coaching-page-hero {
    min-height: 815px;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-copy .hero-description {
    max-width: 900px;
  }

  .coaching-hero-inner {
    top: -227.88px;
  }

  .application-hero-inner {
    top: -112.88px;
  }

  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow) {
    margin-top: 18px;
    line-height: 1.6;
  }

  .hero-actions {
    transform: translateY(-20px);
  }
}

@media (width: 1024px) {
  .coaching-page-hero h1,
  .application-hero h1 {
    font-size: clamp(5.2rem, 8.5vw, 8rem);
    line-height: 0.92;
  }

  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .coaching-hero-inner {
    position: relative;
    top: -62.15px;
  }

  .application-hero-inner {
    position: relative;
    top: -53.15px;
  }
}

@media (max-width: 560px) {
  .coaching-page-hero {
    align-items: flex-start;
    min-height: 430px;
    padding-top: 93px;
  }

  .coaching-hero-inner {
    top: 0;
    padding-top: 0;
    transform: none;
  }

  .application-hero {
    align-items: flex-start;
    padding-top: 93px;
  }

  .application-hero h1 {
    margin: 0;
  }

  .legal-hero {
    align-items: flex-start;
    padding-top: 52px;
  }

  .legal-hero-inner {
    width: min(100% - 48px, var(--container));
    margin-left: 24px;
  }

  .thank-you-hero {
    align-items: flex-start;
  }

  .thank-you-hero-inner {
    width: min(100% - 48px, var(--container));
    margin-left: 24px;
    padding-top: 52px;
  }

  .hero h1,
  .coaching-page-hero h1,
  .application-hero h1,
  .thank-you-hero h1,
  .legal-hero h1 {
    font-size: 3.4rem;
    line-height: 0.92;
    letter-spacing: -0.12rem;
  }

  .hero-description,
  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow),
  .thank-you-intro,
  .legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
    width: 300px;
    max-width: 300px;
    margin-top: 18px;
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

@media (max-width: 400px) {
  .index-header .brand-logo {
    width: 75px;
  }

  .index-page .hero h1 {
    font-size: 2.8rem;
  }

  .index-page .hero-description {
    font-size: 0.65rem;
  }

  .index-page .hero-content {
    transform: translateY(-60px);
  }
}

@media (min-width: 561px) and (max-width: 820px) and (orientation: portrait) {
  .coaching-page-hero {
    align-items: flex-start;
    padding-top: 120px;
  }

  .coaching-hero-inner {
    top: 0;
    transform: none;
  }

  .legal-hero {
    align-items: flex-start;
    padding: 79px 0 60px;
  }

  .legal-hero-inner {
    width: min(100% - 48px, var(--container));
    margin-left: 24px;
  }

  .thank-you-hero {
    align-items: flex-start;
  }

  .thank-you-hero-inner {
    width: min(100% - 48px, var(--container));
    margin-left: 24px;
    padding-top: 79px;
  }

  .coaching-page-hero h1,
  .application-hero h1,
  .thank-you-hero h1,
  .legal-hero h1 {
    font-size: 3.8rem;
    line-height: 0.92;
    letter-spacing: -0.12rem;
  }

  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow),
  .thank-you-intro,
  .legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
    max-width: 470px;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 400px) {
  .coaching-page-hero {
    padding-top: 109px;
  }

  .application-hero {
    padding-top: 109px;
  }

  .legal-hero {
    padding-top: 68px;
  }

  .thank-you-hero-inner {
    padding-top: 68px;
  }

  .hero h1,
  .coaching-page-hero h1,
  .application-hero h1,
  .thank-you-hero h1,
  .legal-hero h1 {
    font-size: 2.8rem;
  }

  .hero-description,
  .coaching-hero-text,
  .application-hero > .container > p:not(.eyebrow),
  .application-hero-inner > p:not(.eyebrow),
  .thank-you-intro,
  .legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
    font-size: 0.65rem;
  }
}

