@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --black: #080808;
  --white: #f5f5f0;
  --acid: #c9ff18;
  --grey: #aaa;
  --line: #242424;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}


/* NAV */

.nav {
  height: 78px;
  padding: 0 4vw;
  background: var(--black);
  color: white;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 0;
  z-index: 20;

  border-bottom: 1px solid #333;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;

  background: var(--acid);
  color: #000;

  display: grid;
  place-items: center;

  font-family: "Archivo Black";
  font-size: 12px;

  transform: rotate(-4deg);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;

  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-button {
  background: var(--acid);
  color: #000;
  padding: 12px 18px;
}


/* HERO */

.hero {
  min-height: calc(100vh - 78px);

  background: var(--black);
  color: white;

  padding: 8vh 4vw 0;

  display: flex;
  flex-direction: column;

  overflow: hidden;
}

.eyebrow,
.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.booking h2 {
  font-family: "Archivo Black", sans-serif;

  margin: 20px 0;

  font-size: clamp(76px, 15vw, 210px);
  line-height: .78;

  letter-spacing: -.07em;
}

.hero h1 span {
  color: var(--acid);
}

.hero-copy {
  max-width: 600px;

  font-size: 18px;
  line-height: 1.6;

  color: #c9c9c9;
}

.hero-actions {
  display: flex;
  gap: 12px;

  margin: 28px 0 60px;
}

.button {
  padding: 16px 22px;

  font-weight: 800;
  font-size: 13px;

  text-transform: uppercase;
}

.primary {
  background: var(--acid);
  color: black;
}

.secondary {
  border: 1px solid #555;
  color: white;
}

.ticker {
  margin-top: auto;
  margin-left: -4vw;

  width: 108vw;

  background: var(--acid);
  color: #000;

  padding: 14px 4vw;

  display: flex;
  justify-content: space-between;

  font-family: "Archivo Black";
  font-size: 18px;
}


/* SECTIONS */

.section {
  padding: 90px 4vw;
}

.section-heading {
  display: grid;

  grid-template-columns: 1.6fr .7fr;

  align-items: end;
  gap: 40px;

  margin: 30px 0 55px;
}

.section-heading h2 {
  font-size: clamp(55px, 9vw, 120px);
}

.section-heading p {
  line-height: 1.6;
  color: #555;

  max-width: 430px;
}


/* CLASSES */

.class-grid {
  border-top: 2px solid #000;
}

.class-card {
  min-height: 220px;

  padding: 30px 12px;

  border-bottom: 1px solid #aaa;

  display: grid;

  grid-template-columns:
    70px
    1fr
    190px;

  gap: 30px;

  align-items: center;

  transition:
    background .2s ease,
    padding .2s ease;
}

.class-card:hover {
  padding-left: 24px;
  background: #e8e8e2;
}

.class-card.featured {
  background: var(--acid);
}

.class-card.featured:hover {
  background: var(--acid);
}

.class-number {
  align-self: start;

  padding-top: 8px;

  font-size: 12px;
  font-weight: 800;
}

.class-meta {
  display: flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 10px;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .08em;

  text-transform: uppercase;
}

.class-meta span {
  border: 1px solid currentColor;

  padding: 5px 8px;
}

.class-info h3 {
  margin: 6px 0 10px;

  font-family: "Archivo Black";

  font-size: clamp(32px, 4vw, 55px);

  line-height: .95;

  letter-spacing: -.045em;
}

.class-info p {
  max-width: 650px;

  margin: 0;

  color: #555;

  line-height: 1.55;
}

.class-price {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 20px;

  white-space: nowrap;
}

.class-price span {
  font-family: "Archivo Black";

  font-size: clamp(25px, 2.4vw, 38px);

  letter-spacing: -.04em;
}

.class-price strong {
  font-size: 28px;

  transition: transform .2s ease;
}

.class-card:hover .class-price strong {
  transform: translateX(6px);
}


/* STATEMENT */

.statement {
  background: var(--black);
  color: white;

  padding: 90px 4vw;
}

.light {
  color: #888;
}

.statement p {
  font-family: "Archivo Black";

  font-size: clamp(45px, 8vw, 112px);

  line-height: .95;

  letter-spacing: -.055em;

  max-width: 1400px;

  margin-bottom: 0;
}

.statement span {
  color: var(--acid);
}


/* HOW IT WORKS */

.steps {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  margin-top: 45px;

  border-top: 2px solid #000;
}

.steps > div {
  padding: 32px 30px 20px 0;

  border-right: 1px solid #bbb;

  min-height: 240px;
}

.steps > div + div {
  padding-left: 30px;
}

.steps > div:last-child {
  border-right: 0;
}

.steps strong {
  font-size: 12px;
}

.steps h3 {
  font-family: "Archivo Black";

  font-size: 30px;

  margin: 45px 0 12px;
}

.steps p {
  color: #666;
  line-height: 1.5;
}


/* LOCATION */

.location-copy {
  max-width: 500px;
}

.location-name {
  margin: 0 0 8px !important;

  font-family: "Archivo Black";

  font-size: 28px;

  color: var(--black) !important;

  letter-spacing: -.03em;
}

.location-station {
  margin: 0 0 22px;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: .12em;

  text-transform: uppercase;

  color: #777 !important;
}

.location-link {
  display: inline-block;

  margin-top: 18px;

  padding-bottom: 4px;

  border-bottom: 2px solid var(--black);

  font-size: 12px;
  font-weight: 800;
}


/* BOOKING */

.booking {
  background: var(--black);
  color: white;

  padding: 90px 4vw;

  display: grid;

  grid-template-columns: 1fr .7fr;

  align-items: end;

  gap: 50px;
}

.booking h2 {
  font-size: clamp(58px, 9vw, 120px);

  margin-bottom: 0;
}

.booking-note {
  color: #aaa;

  line-height: 1.5;

  margin-top: 18px;
}

.book-big {
  background: var(--acid);
  color: #000;

  min-height: 180px;

  padding: 30px;

  font-family: "Archivo Black";

  font-size: clamp(24px, 3vw, 44px);

  display: flex;

  justify-content: space-between;
  align-items: flex-end;
}

.book-big span {
  font-size: 45px;
}


/* FAQ */

.faq details {
  border-top: 1px solid #aaa;

  padding: 25px 0;
}

.faq details:last-child {
  border-bottom: 1px solid #aaa;
}

.faq summary {
  font-family: "Archivo Black";

  font-size: 22px;

  cursor: pointer;
}

.faq details p {
  max-width: 700px;

  color: #666;

  line-height: 1.6;
}


/* FOOTER */

footer {
  background: var(--black);
  color: white;

  padding: 35px 4vw;

  display: flex;

  justify-content: space-between;
  align-items: center;

  border-top: 1px solid #333;
}

footer p {
  color: #777;

  font-size: 10px;

  letter-spacing: .12em;
}


/* MOBILE */

@media (max-width: 760px) {

  .nav nav a:not(.nav-button) {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero h1 {
    font-size: 25vw;
  }

  .ticker {
    gap: 35px;

    width: max-content;
    min-width: 108vw;
  }

  .section {
    padding: 65px 5vw;
  }

  .section-heading,
  .booking {
    grid-template-columns: 1fr;
  }


  /* MOBILE CLASS LAYOUT */

  .class-card {
    min-height: auto;

    padding: 28px 5px;

    grid-template-columns:
      35px
      1fr;

    gap: 15px;
  }

  .class-card:hover {
    padding-left: 5px;
  }

  .class-number {
    grid-column: 1;
  }

  .class-info {
    grid-column: 2;
  }

  .class-price {
    grid-column: 2;

    justify-content: flex-start;

    margin-top: 8px;
  }

  .class-price span {
    font-size: 28px;
  }

  .class-price strong {
    font-size: 23px;
  }

  .class-meta {
    flex-wrap: wrap;
  }


  /* HOW IT WORKS */

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

  .steps > div,
  .steps > div + div {
    border-right: 0;

    border-bottom: 1px solid #bbb;

    padding-left: 0;
  }


  /* FOOTER */

  footer {
    align-items: flex-start;

    gap: 30px;

    flex-direction: column;
  }

}
