:root {
  color-scheme: light;
  --ink: #111715;
  --muted: #53625d;
  --line: #d8ddd8;
  --paper: #f7f7f1;
  --panel: #ffffff;
  --green: #18483c;
  --lime: #d8ff5f;
  --orange: #e86f36;
  --shadow: 0 24px 70px rgb(17 23 21 / 14%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid rgb(17 23 21 / 12%);
  background: rgb(247 247 241 / 92%);
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: var(--green);
  background: var(--lime);
}

nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-action {
  padding: 10px 14px;
  border-radius: 6px;
  color: white;
  background: var(--green);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 32px;
  padding: 8vh 5vw 6vh;
  background:
    linear-gradient(90deg, rgb(10 17 16 / 82%), rgb(10 17 16 / 34) 48%, rgb(10 17 16 / 8)),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: white;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 7vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.intro {
  max-width: 620px;
  color: rgb(255 255 255 / 86%);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.join {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
}

.primary {
  color: var(--green);
  background: var(--lime);
}

.secondary {
  color: white;
  border-color: rgb(255 255 255 / 46%);
  background: rgb(255 255 255 / 12%);
}

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 8px;
  background: rgb(255 255 255 / 20%);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 24px;
  background: rgb(6 12 11 / 48%);
}

.hero-panel strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: rgb(255 255 255 / 74%);
}

.section,
.split,
.band,
.join {
  padding: 84px 5vw;
}

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

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.program-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.program-grid span {
  display: block;
  margin-bottom: 64px;
  color: var(--orange);
  font-weight: 900;
}

.program-grid p,
.split p,
.join p {
  color: var(--muted);
  line-height: 1.65;
}

.band {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: 30px;
  color: white;
  background: var(--green);
}

.schedule {
  display: grid;
  gap: 10px;
}

.schedule div {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.schedule span {
  color: var(--lime);
  font-weight: 900;
}

.schedule em {
  color: rgb(255 255 255 / 65%);
  font-style: normal;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  align-items: center;
  gap: 38px;
}

.coach-card {
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.coach-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.coach-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.coach-card span {
  color: var(--muted);
}

.join {
  flex-direction: column;
  align-items: flex-start;
  background: white;
}

.join p {
  max-width: 640px;
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .band,
  .split,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 80px 20px 32px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .section,
  .split,
  .band,
  .join {
    padding: 56px 20px;
  }

  .schedule div {
    grid-template-columns: 72px 1fr;
  }

  .schedule em {
    grid-column: 2;
  }

  .coach-card div {
    flex-direction: column;
  }
}

