:root {
  --green-950: #062913;
  --green-900: #0b3d1b;
  --green-800: #135b2b;
  --green-100: #e7f1e8;
  --green-050: #f5faf4;
  --gold: #c9a227;
  --ink: #172019;
  --muted: #5d6a60;
  --line: #d8e4da;
  --white: #ffffff;
  --sky: #dcebf2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(90deg, var(--green-100), #fff 12%, #fff 88%, var(--green-100));
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 10px 36px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  color: var(--green-900);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.site-header nav a,
.header-action,
.button {
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.site-header nav a {
  padding: 9px 11px;
  color: var(--green-950);
  font-size: 14px;
}

.site-header nav a:hover {
  background: var(--green-050);
}

.header-action {
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-800);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 18px;
  min-height: calc(100vh - 140px);
  align-items: stretch;
}

.hero-copy,
.hero-media,
.quick-links,
.section,
.site-footer {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(6, 41, 19, 0.08);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(11, 61, 27, 0.98), rgba(6, 41, 19, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.28), transparent 28%);
}

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

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

h1 {
  max-width: 680px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 58px;
  line-height: 1;
}

h2 {
  margin-bottom: 14px;
  color: var(--green-950);
  font-size: 34px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  color: var(--green-950);
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-copy p {
  color: #ecf7ed;
}

.lead {
  font-size: 18px;
}

.status-note {
  display: grid;
  gap: 4px;
  margin: 8px 0 22px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.status-note span {
  color: #e6f1e6;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
}

.button.primary {
  color: var(--green-950);
  background: var(--gold);
}

.button.secondary {
  color: var(--green-950);
  background: var(--white);
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--green-950);
}

.photo-rotator {
  position: absolute;
  inset: 0;
}

.photo-rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 2200ms ease;
}

.photo-rotator img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 44%, rgba(6, 41, 19, 0.82));
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 4px;
  width: min(320px, calc(100% - 48px));
  padding: 16px;
  color: var(--white);
  background: rgba(6, 41, 19, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.hero-badge span {
  color: #deeadf;
  font-size: 14px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  background: var(--line);
}

.quick-links a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: var(--white);
  text-decoration: none;
}

.quick-links span {
  color: var(--muted);
  font-size: 13px;
}

.quick-links strong {
  color: var(--green-950);
  font-size: 18px;
}

.section {
  margin-top: 22px;
  padding: 34px;
  background: var(--white);
}

.page-hero {
  padding: 54px 46px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(11, 61, 27, 0.98), rgba(6, 41, 19, 0.96)),
    radial-gradient(circle at 15% 20%, rgba(201, 162, 39, 0.28), transparent 30%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(6, 41, 19, 0.08);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 14px;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: #ecf7ed;
  font-size: 18px;
}

.coaches-hero h1 {
  max-width: 1120px;
  font-size: 44px;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.section-copy p:last-child,
.clinics p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 20px;
}

.section-heading.row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
}

.cards {
  display: grid;
  gap: 14px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(180deg, var(--green-050), #fff);
}

.card p {
  margin-bottom: 0;
  font-size: 14px;
}

.card p strong {
  color: var(--green-950);
}

.linked-card {
  display: grid;
  gap: 8px;
}

.coach-grid {
  grid-template-columns: repeat(3, 1fr);
}

.coach-grid .card span {
  color: var(--green-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.coach-band {
  background:
    linear-gradient(90deg, rgba(220, 235, 242, 0.76), rgba(245, 250, 244, 0.9)),
    var(--white);
}

.text-link {
  color: var(--green-800);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

.schedule article {
  display: grid;
  grid-template-columns: 130px 1fr 1fr 230px;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--green-050);
}

.schedule time {
  color: var(--green-800);
  font-weight: 900;
}

.schedule h3,
.schedule p {
  margin-bottom: 0;
}

.schedule span {
  color: var(--green-950);
  font-weight: 800;
}

.clinics {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.clinic-panel {
  padding: 24px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 7px;
}

.clinic-panel p {
  color: #e6f1e6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: 24px;
  background: var(--green-950);
  color: var(--white);
}

.site-footer div {
  display: grid;
  gap: 5px;
}

.site-footer span,
.site-footer a {
  color: #dce8dd;
}

.site-footer nav {
  display: flex;
  gap: 14px;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .site-header nav {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
  }

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

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 460px;
  }

  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .coach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule article {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

@media (max-width: 680px) {
  .site-header,
  main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .brand span {
    font-size: 17px;
  }

  .site-header nav {
    order: 2;
    width: 100%;
  }

  .header-action {
    order: 3;
    width: fit-content;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-copy,
  .section,
  .page-hero {
    padding: 24px;
  }

  .quick-links,
  .cards.four,
  .coach-grid {
    grid-template-columns: 1fr;
  }

  .coaches-hero h1 {
    font-size: 38px;
  }

  .hero-media {
    min-height: 380px;
  }

  .section-heading.row,
  .site-footer {
    display: grid;
  }

  .site-footer nav {
    display: grid;
  }
}
