* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "League Spartan", Helvetica, Arial, sans-serif;
  background: #120b0b;
  color: #fffaec;
}

a {
  color: inherit;
}

/* Typography */

.nav,
.button,
.hero-note,
.hero-text,
.site-footer,
.intro p,
.class-card p,
.first-time ul,
.location p:not(.section-label) {
  font-family: "Quicksand", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.eyebrow,
.section-label {
  display: block;
  margin-bottom: 24px;
  font-family: "Cardo", Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 6px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ccb49a;
}

.intro h2,
.classes h2,
.first-time h2,
.location h2 {
  margin-bottom: 26px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -3px;
}

.intro p,
.class-card p,
.first-time ul,
.location p:not(.section-label) {
  max-width: 690px;
  font-size: 18px;
  line-height: 1.65;
}

.class-card p,
.first-time ul {
  color: rgba(255, 250, 236, 0.82);
}

/* Header */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px clamp(24px, 8vw, 120px);
  color: #fffaec;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 280px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav a:hover {
  color: #84a2d0;
  opacity: 1;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(255, 250, 236, 0.7);
  border-radius: 999px;
  font-weight: 600;
}

.nav .nav-cta:hover,
.nav .nav-cta:focus {
  background: #84a2d0;
  border-color: #84a2d0;
  color: #2a0000;
  opacity: 1;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(42, 0, 0, 0.88), rgba(42, 0, 0, 0.34)),
    url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 38%, rgba(132, 162, 208, 0.18), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin-left: clamp(24px, 8vw, 120px);
  padding-top: 80px;
}

h1 {
  margin-top: 22px;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.88;
  letter-spacing: -5px;
  max-width: 850px;
}

.hero-text {
  margin-top: 26px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 250, 236, 0.82);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: #fffaec;
  color: #2a0000;
}

.secondary {
  border: 1px solid rgba(255, 250, 236, 0.68);
  color: #fffaec;
}

.secondary:hover {
  background: #84a2d0;
  color: #2a0000;
  border-color: #84a2d0;
}

.hero-note {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 250, 236, 0.68);
}

/* Sections */

.intro,
.classes,
.first-time,
.location {
  padding: 110px clamp(24px, 7vw, 110px);
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 50px;
  background: #fffaec;
  color: #2a0000;
}

.classes {
  background: #2a0000;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin-top: 0;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.class-card {
  min-height: 340px;
  padding: 30px;
  border: 1px solid rgba(255, 250, 236, 0.2);
  border-radius: 28px;
  background: rgba(255, 250, 236, 0.045);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.class-card:hover {
  border-color: rgba(132, 162, 208, 0.7);
  transform: translateY(-2px);
}

.class-card span {
  display: block;
  margin-bottom: 80px;
  color: #84a2d0;
  font-family: "Cardo", Georgia, "Times New Roman", serif;
  font-size: 25px;
  letter-spacing: 2px;
}

.class-card h3 {
  font-size: 28px;
  letter-spacing: -1px;
}

.class-card p {
  margin-top: 18px;
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

/* Image Break */

.image-break {
  background: #fffaec;
  padding: 0;
}

.image-break img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* First Time */

.first-time {
  background: #120b0b;
}

.split-text {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.first-time ul {
  list-style: none;
  display: grid;
  gap: 18px;
}

.first-time li {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 250, 236, 0.16);
}

/* Location */

.location {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  background: #ccb49a;
  color: #2a0000;
}

.location .section-label {
  color: #2a0000;
}

.location .button {
  margin-top: 24px;
  white-space: nowrap;
}

.location .secondary {
  border-color: rgba(42, 0, 0, 0.42);
  color: #2a0000;
}

.location .secondary:hover {
  background: #84a2d0;
  border-color: #84a2d0;
  color: #2a0000;
}

/* Footer */

.site-footer {
  display: grid;
  gap: 12px;
  justify-content: center;
  padding: 26px 20px;
  background: #120b0b;
  color: rgba(255, 250, 236, 0.72);
  font-family: "Quicksand", Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 1.6px;
  line-height: 1.8;
  text-transform: uppercase;
}

.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: #84a2d0;
}

/* Mobile */

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    padding: 20px;
  }

  .brand img {
    width: 160px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 46px;
    align-items: flex-start;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 0;
    width: calc(100% - 44px);
  }

  .eyebrow,
  .section-label {
    margin-bottom: 24px;
    font-size: 16px;
    letter-spacing: 6px;
  }

  h1 {
    margin-top: 0;
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.92;
    letter-spacing: -2.5px;
  }

  .hero-text {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .button {
    min-height: 44px;
    padding: 12px 18px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero-note {
    margin-top: 20px;
    font-size: 10px;
    line-height: 1.45;
  }

  .intro,
  .classes,
  .first-time,
  .location {
    padding: 52px 24px;
  }

  .intro,
  .split-text,
  .location {
    grid-template-columns: 1fr;
    display: grid;
    gap: 0;
  }

  .intro h2,
  .classes h2,
  .first-time h2,
  .location h2 {
    margin-bottom: 24px;
    font-size: clamp(38px, 11vw, 56px);
    line-height: 0.95;
    letter-spacing: -2px;
  }

 .intro p,
.class-card p,
.first-time ul,
.location p:not(.section-label) {
  font-size: 18px;
  line-height: 1.6;
}

  .image-break {
    padding: 0;
    background: #fffaec;
  }

  .image-break img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
  }

  .classes {
    padding-top: 52px;
  }

  .class-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

  .class-card {
    min-height: auto;
    padding: 30px 28px;
    border-radius: 24px;
  }

  .class-card span {
    margin-bottom: 42px;
    font-size: 30px;
  }

  .class-card h3 {
    font-size: 34px;
  }

  .center-action {
    margin-top: 32px;
  }

  .first-time ul {
    gap: 12px;
  }

  .first-time li {
    padding-bottom: 14px;
  }

  .location {
    align-items: start;
    gap: 16px;
    padding-bottom: 46px;
  }

  .location .section-label {
    color: #2a0000;
  }

  .location .button {
    width: auto;
    min-width: 160px;
    max-width: fit-content;
    justify-self: center;
    margin-top: 10px;
    text-align: center;
    white-space: nowrap;
  }

  .site-footer {
    padding: 24px 20px;
  }
}

/* Legal Pages */

.legal-page {
  min-height: 100vh;
  background: #120b0b;
  color: #fffaec;
}

.legal-content {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}

.legal-content h1 {
  margin-bottom: 42px;
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.9;
  letter-spacing: -4px;
  text-transform: lowercase;
}

.legal-content section {
  margin-bottom: 34px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-family: "Cardo", Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #ccb49a;
}

.legal-content p {
  font-family: "Quicksand", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 250, 236, 0.8);
}

.legal-content a {
  color: #fffaec;
  text-underline-offset: 4px;
}

.back-link {
  display: inline-block;
  margin-bottom: 44px;
  font-family: "Quicksand", Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 250, 236, 0.72);
  text-decoration: none;
}

.back-link:hover {
  color: #84a2d0;
}

@media (max-width: 860px) {
  .legal-content {
    width: calc(100% - 44px);
    padding: 56px 0;
  }

  .legal-content h1 {
    font-size: clamp(48px, 15vw, 72px);
    letter-spacing: -2.5px;
  }

  .legal-content p {
    font-size: 16px;
    line-height: 1.7;
  }
}