:root {
  --black: #111111;
  --white: #f7f5ed;
  --cream: #e9e5d8;
  --blue: #2557ff;
  --lime: #c8ff27;
  --orange: #ff6a35;
  --pink: #ff4fc3;
  --gray: #777777;

  --display: "Anton", sans-serif;
  --body: "DM Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

::selection {
  background: var(--lime);
  color: var(--black);
}


/* =========================
   OPENING
========================= */

.opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--blue);
  color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.opening.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.opening-content {
  position: relative;
  z-index: 5;
  text-align: center;
}

.opening-small {
  font-size: 10px;
  letter-spacing: 0.4em;
  margin-bottom: 18px;
  opacity: 0;
  animation: openingText 0.8s 0.3s forwards;
}

.opening-logo {
  font-family: var(--display);
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 0.8;
  letter-spacing: -0.03em;
  transform: scale(0.65);
  opacity: 0;
  animation: logoEnter 1s 0.45s cubic-bezier(.2,.8,.2,1) forwards;
}

.opening-logo span {
  color: var(--lime);
}

.opening-line {
  width: min(330px, 50vw);
  height: 2px;
  background: rgba(255,255,255,.25);
  margin: 30px auto 18px;
  overflow: hidden;
}

.opening-line span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--lime);
  animation: lineGrow 1.2s 0.8s forwards;
}

.opening-tagline {
  font-size: 10px;
  letter-spacing: 0.35em;
  opacity: 0;
  animation: openingText 0.8s 1s forwards;
}

.opening-number {
  position: absolute;
  bottom: 35px;
  right: 40px;
  font-size: 9px;
  letter-spacing: .2em;
}

.opening-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .9;
}

.shape-one {
  width: 28vw;
  height: 28vw;
  background: var(--lime);
  left: -10vw;
  top: -8vw;
  animation: shapeMove 2.5s ease-in-out infinite alternate;
}

.shape-two {
  width: 18vw;
  height: 18vw;
  background: var(--orange);
  right: -5vw;
  bottom: -4vw;
  animation: shapeMove 2s .3s ease-in-out infinite alternate;
}

.shape-three {
  width: 9vw;
  height: 9vw;
  background: var(--pink);
  right: 15vw;
  top: 12vw;
  animation: shapeFloat 3s ease-in-out infinite alternate;
}

@keyframes logoEnter {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes openingText {
  to {
    opacity: 1;
  }
}

@keyframes lineGrow {
  to {
    width: 100%;
  }
}

@keyframes shapeMove {
  from {
    transform: translate(0,0) rotate(0deg);
  }

  to {
    transform: translate(30px,-20px) rotate(30deg);
  }
}

@keyframes shapeFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(40px);
  }
}


/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 5vw;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: white;

  transition: .35s ease;
}

.header.scrolled {
  background: rgba(17,17,17,.88);
  backdrop-filter: blur(14px);
  height: 68px;
}

.logo {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -.02em;
}

.logo span,
.footer-logo span {
  color: var(--lime);
}

.header nav {
  display: flex;
  gap: 35px;
  margin-left: auto;
  margin-right: 40px;
}

.header nav a {
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: .25s;
}

.header nav a:hover {
  color: var(--lime);
}

.header-button {
  border: 1px solid rgba(255,255,255,.6);
  padding: 13px 18px;
  font-size: 8px;
  letter-spacing: .18em;
  transition: .3s;
}

.header-button:hover {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

.mobile-menu-button {
  display: none;
  background: transparent;
  border: 0;
  width: 35px;
}

.mobile-menu-button span {
  height: 2px;
  background: white;
  width: 26px;
  display: block;
  margin: 5px 0;
}


/* MOBILE NAV */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--blue);
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 8vw;
  gap: 18px;

  transform: translateY(-100%);
  transition: transform .6s cubic-bezier(.77,0,.18,1);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  font-family: var(--display);
  font-size: clamp(4rem, 15vw, 9rem);
  line-height: .9;
}

.mobile-close {
  position: absolute;
  right: 25px;
  top: 20px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 45px;
}


/* =========================
   COMMON
========================= */

.section {
  position: relative;
  padding: 150px 7vw;
}

.section-label {
  font-size: 9px;
  letter-spacing: .3em;
  font-weight: 700;
}

.section-label.light {
  color: var(--lime);
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(.2,.65,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(5rem, 9vw, 10rem);
  line-height: .85;
  letter-spacing: -.025em;
}

h2 span {
  color: var(--blue);
}

.primary-button,
.outline-button,
.contact-button,
.client-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 54px;
  padding: 0 25px;
  font-size: 9px;
  letter-spacing: .18em;
  font-weight: 700;
  transition: .3s;
}

.primary-button {
  background: var(--lime);
  color: var(--black);
}

.primary-button:hover {
  background: white;
  transform: translateY(-4px);
}

.outline-button {
  border: 1px solid rgba(255,255,255,.6);
}

.outline-button:hover {
  background: white;
  color: var(--black);
}


/* =========================
   HERO
========================= */

.hero {
  height: 100svh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: white;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background:
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=2400&q=95")
    center / cover;

  transform: scale(1.08);
  animation: heroZoom 2s ease forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-color {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(17,17,17,.95),
      rgba(17,17,17,.6) 45%,
      rgba(37,87,255,.18)
    );
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .12;

  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);

  background-size: 90px 90px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1100px;
  margin-left: 8vw;
  margin-top: 4vh;
}

.hero-top {
  display: flex;
  gap: 70px;
  margin-bottom: 35px;
}

.hero-top span {
  font-size: 8px;
  letter-spacing: .25em;
  color: #d2d2d2;
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(7rem, 16vw, 17rem);
  line-height: .72;
  letter-spacing: -.035em;
}

.hero-title span {
  display: block;
  margin-left: 12vw;
}

.hero-title em {
  display: block;
  color: var(--lime);
  font-style: normal;
  margin-left: 5vw;
}

.hero-description {
  max-width: 370px;
  margin-top: 45px;
  margin-left: 5vw;
  font-size: 13px;
  line-height: 1.8;
  color: #d0d0d0;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-left: 5vw;
  margin-top: 28px;
}

.hero-side-text {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: rotate(90deg);
  font-family: var(--display);
  font-size: 70px;
  color: rgba(255,255,255,.08);
}

.hero-bottom {
  position: absolute;
  left: 7vw;
  bottom: 30px;
  z-index: 3;

  display: flex;
  gap: 60px;
}

.hero-bottom div {
  display: flex;
  flex-direction: column;
}

.hero-bottom strong {
  font-family: var(--display);
  font-size: 27px;
  color: var(--lime);
}

.hero-bottom span {
  font-size: 7px;
  letter-spacing: .2em;
}

.hero-scroll {
  position: absolute;
  right: 7vw;
  bottom: 28px;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  font-size: 7px;
  letter-spacing: .2em;
}

.hero-scroll i {
  width: 55px;
  height: 1px;
  background: var(--lime);
}


/* =========================
   MARQUEE
========================= */

.marquee {
  background: var(--lime);
  color: var(--black);
  padding: 23px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 35px;

  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);

  animation: marquee 18s linear infinite;
}

.marquee-track b {
  font-family: var(--body);
  font-size: 25px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}


/* =========================
   INTRO
========================= */

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 10vw;
  margin-top: 80px;
  margin-bottom: 90px;
}

.intro-heading p,
.program-heading p,
.coaches-heading p {
  font-size: 9px;
  letter-spacing: .25em;
  font-weight: 700;
  margin-bottom: 25px;
}

.intro-heading h2 {
  max-width: 700px;
}

.intro-heading h2 span {
  display: block;
}

.intro-text {
  padding-top: 30px;
}

.intro-text p {
  max-width: 450px;
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.dark-link {
  display: inline-block;
  margin-top: 25px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  border-bottom: 2px solid var(--black);
  padding-bottom: 7px;
}

.intro-image {
  height: 650px;
  position: relative;
  overflow: hidden;
}

.intro-image img {
  transition: transform 1s ease;
}

.intro-image:hover img {
  transform: scale(1.04);
}

.image-stamp {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: var(--lime);
  color: var(--black);
  padding: 14px 18px;

  font-family: var(--display);
  font-size: 27px;
  line-height: .9;
}

.image-stamp span {
  display: block;
  font-family: var(--body);
  font-size: 6px;
  letter-spacing: .2em;
  margin-top: 7px;
}


/* =========================
   STATS
========================= */

.stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--black);
  color: white;
}

.stat {
  min-height: 190px;
  padding: 45px 4vw;
  border-right: 1px solid #333;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 65px;
  color: var(--lime);
  line-height: .9;
}

.stat span {
  display: block;
  font-size: 8px;
  letter-spacing: .2em;
  margin-top: 15px;
}


/* =========================
   PROGRAMS
========================= */

.programs {
  background: var(--cream);
}

.program-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 80px;
  gap: 50px;
}

.program-heading h2 {
  max-width: 800px;
}

.program-heading h2 span {
  color: var(--orange);
}

.program-intro {
  max-width: 350px;
  color: #666;
  font-size: 13px;
  line-height: 1.8;
}

.program-list {
  margin-top: 80px;
  width: 62%;
}

.program {
  display: grid;
  grid-template-columns: 60px 1fr 50px;
  align-items: center;
  gap: 15px;

  border-top: 2px solid var(--black);
  padding: 28px 0;

  cursor: pointer;
  transition: .35s;
}

.program:last-child {
  border-bottom: 2px solid var(--black);
}

.program:hover,
.program.active {
  background: var(--lime);
  padding-left: 20px;
  padding-right: 20px;
}

.program-number {
  font-size: 9px;
  font-weight: 700;
}

.program-main h3 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 5rem);
  line-height: .9;
}

.program-main p {
  font-size: 11px;
  color: #666;
  margin-top: 8px;
}

.program-arrow {
  font-size: 25px;
}

.program-preview {
  position: absolute;
  right: 7vw;
  top: 430px;
  width: 29vw;
  height: 520px;
  overflow: hidden;
}

.program-preview img {
  transition: opacity .25s, transform .6s;
}

.preview-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--blue);
  color: white;
  padding: 13px 17px;
}

.preview-label span {
  display: block;
  font-size: 6px;
  letter-spacing: .2em;
  color: var(--lime);
}

.preview-label strong {
  display: block;
  font-family: var(--display);
  font-size: 27px;
  margin-top: 3px;
}


/* =========================
   ENERGY BREAK
========================= */

.energy-break {
  height: 750px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
}

.energy-image {
  position: absolute;
  inset: 0;

  background:
    url("https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?auto=format&fit=crop&w=2200&q=90")
    center / cover;

  transform: scale(1.03);
}

.energy-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(17,17,17,.9),
      rgba(17,17,17,.2)
    );
}

.energy-content {
  position: relative;
  z-index: 2;
  margin-left: 9vw;
}

.energy-content > span {
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--lime);
}

.energy-content h2 {
  font-size: clamp(6rem, 13vw, 15rem);
  margin-top: 20px;
  color: white;
}

.energy-content h2 em {
  color: var(--lime);
  font-style: normal;
}

.energy-content p {
  margin-top: 30px;
  color: #ddd;
  font-size: 13px;
}


/* =========================
   COACHES
========================= */

.coaches {
  background: var(--white);
}

.coaches-heading {
  margin-top: 80px;
}

.coach-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.coach-card:nth-child(2) {
  margin-top: 70px;
}

.coach-image {
  height: 540px;
  position: relative;
  overflow: hidden;
}

.coach-image img {
  transition: transform .8s ease;
}

.coach-card:hover .coach-image img {
  transform: scale(1.05);
}

.coach-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--lime);
  color: var(--black);
  padding: 9px 12px;
  font-size: 8px;
  font-weight: 700;
}

.coach-info {
  padding: 18px 0 30px;
  border-bottom: 2px solid var(--black);
}

.coach-info h3 {
  font-family: var(--display);
  font-size: 30px;
}

.coach-info p {
  font-size: 7px;
  letter-spacing: .2em;
  margin-top: 7px;
  color: #777;
}


/* =========================
   STUDIO
========================= */

.studio {
  height: 780px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.studio-image {
  position: absolute;
  inset: 0;

  background:
    url("https://images.unsplash.com/photo-1571902943202-507ec2618e8f?auto=format&fit=crop&w=2200&q=90")
    center / cover;
}

.studio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37,87,255,.55);
  mix-blend-mode: multiply;
}

.studio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.75),transparent);
}

.studio-content {
  position: relative;
  z-index: 2;
  margin-left: 9vw;
  max-width: 750px;
}

.studio-content h2 {
  margin-top: 30px;
  font-size: clamp(6rem, 12vw, 14rem);
}

.studio-content h2 span {
  display: block;
  color: var(--lime);
}

.studio-content > p {
  max-width: 390px;
  font-size: 14px;
  line-height: 1.8;
  color: #ddd;
  margin: 30px 0;
}


/* =========================
   FEATURES
========================= */

.features {
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 2px solid var(--black);
}

.feature {
  min-height: 330px;
  padding: 30px 25px;
  border-right: 2px solid var(--black);
}

.feature:last-child {
  border-right: 0;
}

.feature > span {
  font-size: 8px;
  font-weight: 700;
}

.feature h3 {
  font-family: var(--display);
  font-size: 48px;
  line-height: .9;
  margin-top: 65px;
}

.feature:nth-child(2) h3 {
  color: var(--blue);
}

.feature:nth-child(3) h3 {
  color: var(--orange);
}

.feature:nth-child(4) h3 {
  color: var(--pink);
}

.feature p {
  color: #666;
  font-size: 11px;
  line-height: 1.7;
  margin-top: 30px;
}


/* =========================
   CONTACT
========================= */

.contact {
  min-height: 750px;
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--lime);
  right: -120px;
  top: -120px;
  filter: blur(2px);
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-content .section-label {
  color: var(--lime);
}

.contact h2 {
  font-size: clamp(7rem, 15vw, 16rem);
  margin-top: 35px;
}

.contact h2 span {
  display: block;
  color: var(--lime);
}

.contact-content > p:not(.section-label) {
  margin: 35px auto;
  font-size: 14px;
}

.contact-button {
  background: var(--black);
  color: white;
}

.contact-button:hover {
  background: var(--lime);
  color: var(--black);
  transform: translateY(-4px);
}


/* =========================
   CLIENT CTA
========================= */

.client-cta {
  min-height: 650px;
  background: var(--black);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 100px 7vw;
}

.client-content {
  max-width: 950px;
}

.client-content > p:first-child {
  color: var(--lime);
  font-size: 9px;
  letter-spacing: .3em;
  font-weight: 700;
}

.client-content h2 {
  margin-top: 30px;
  font-size: clamp(5rem, 11vw, 12rem);
}

.client-content h2 span {
  display: block;
  color: var(--lime);
}

.client-text {
  max-width: 600px;
  color: #999;
  font-size: 13px;
  line-height: 1.9;
  margin: 40px auto;
}

.client-button {
  border: 1px solid var(--lime);
  color: var(--lime);
}

.client-button:hover {
  background: var(--lime);
  color: var(--black);
}


/* =========================
   FOOTER
========================= */

footer {
  background: #080808;
  color: white;
  padding: 90px 6vw 25px;
}

.footer-logo {
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 18rem);
  line-height: .75;
  color: white;
}

.footer-middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 90px;
  padding-bottom: 70px;
}

.footer-middle p {
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: .2em;
  color: #777;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 35px;
  align-content: start;
}

.footer-links a {
  font-size: 9px;
  letter-spacing: .15em;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid #2b2b2b;
  padding-top: 20px;

  display: flex;
  justify-content: space-between;

  color: #666;
  font-size: 7px;
  letter-spacing: .2em;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .header nav,
  .header-button {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero-title {
    font-size: clamp(6rem, 17vw, 12rem);
  }

  .program-list {
    width: 100%;
  }

  .program-preview {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 500px;
    margin-top: 40px;
  }

  .coach-grid {
    grid-template-columns: 1fr 1fr;
  }

  .coach-card:nth-child(2) {
    margin-top: 0;
  }

  .coach-card:last-child {
    grid-column: span 2;
    width: 50%;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(-n+2) {
    border-bottom: 2px solid var(--black);
  }

  .feature:nth-child(3) {
    border-right: 2px solid var(--black);
  }

}


@media (max-width: 700px) {

  .section {
    padding: 100px 6vw;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    margin-left: 6vw;
  }

  .hero-top {
    flex-direction: column;
    gap: 8px;
  }

  .hero-title {
    font-size: clamp(5.2rem, 20vw, 8rem);
  }

  .hero-title span {
    margin-left: 7vw;
  }

  .hero-title em {
    margin-left: 2vw;
  }

  .hero-description {
    margin-left: 2vw;
  }

  .hero-actions {
    margin-left: 2vw;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-bottom {
    left: 6vw;
    gap: 28px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-side-text {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .intro-image {
    height: 430px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    min-height: 150px;
    border-bottom: 1px solid #333;
  }

  .stat strong {
    font-size: 48px;
  }

  .program-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .program {
    grid-template-columns: 35px 1fr 25px;
  }

  .program-main h3 {
    font-size: 38px;
  }

  .energy-break {
    height: 600px;
  }

  .energy-content {
    margin-left: 6vw;
  }

  .energy-content h2 {
    font-size: clamp(5rem, 18vw, 8rem);
  }

  .coach-grid {
    grid-template-columns: 1fr;
  }

  .coach-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .coach-image {
    height: 470px;
  }

  .studio {
    height: 650px;
  }

  .studio-content {
    margin-left: 6vw;
    margin-right: 6vw;
  }

  .studio-content h2 {
    font-size: clamp(5rem, 18vw, 8rem);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature,
  .feature:nth-child(3) {
    border-right: 0;
    border-bottom: 2px solid var(--black);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .feature h3 {
    margin-top: 45px;
  }

  .contact {
    min-height: 600px;
  }

  .contact h2 {
    font-size: clamp(5.5rem, 20vw, 9rem);
  }

  .client-cta {
    min-height: 600px;
    padding: 80px 6vw;
  }

  .client-content h2 {
    font-size: clamp(5rem, 18vw, 8rem);
  }

  .footer-middle {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

}


@media (max-width: 450px) {

  .opening-logo {
    font-size: 5.5rem;
  }

  .header {
    padding: 0 6vw;
  }

  .logo {
    font-size: 27px;
  }

  .hero-title {
    font-size: 4.8rem;
  }

  .hero-bottom {
    gap: 18px;
  }

  .hero-bottom strong {
    font-size: 21px;
  }

  .hero-bottom span {
    font-size: 6px;
  }

  .intro-image {
    height: 350px;
  }

  .program-preview {
    height: 400px;
  }

  .coach-image {
    height: 400px;
  }

  .footer-logo {
    font-size: 6.5rem;
  }

}