:root {
  --green-950: #062c1d;
  --green-900: #0a3d29;
  --green-800: #0f5638;
  --green-700: #137247;
  --green-100: #e9f6ed;
  --green-50: #f6fbf7;
  --white: #ffffff;
  --ink: #12211a;
  --muted: #5a6f64;
  --line: rgba(10, 61, 41, 0.16);
  --shadow: 0 24px 80px rgba(6, 44, 29, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(6, 44, 29, 0.94);
  box-shadow: 0 10px 30px rgba(6, 44, 29, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--green-950);
  background: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 6vw, 76px) 28px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 44, 29, 0.93), rgba(6, 44, 29, 0.58) 42%, rgba(6, 44, 29, 0.18)),
    linear-gradient(0deg, rgba(6, 44, 29, 0.58), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: clamp(32px, 8vw, 96px);
}

.hero-portrait {
  position: absolute;
  right: clamp(18px, 6vw, 76px);
  bottom: clamp(120px, 18vw, 190px);
  z-index: 1;
  width: min(34vw, 420px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(6, 44, 29, 0.42);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green-100);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--green-700);
}

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

h1 {
  max-width: 8.8em;
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary.dark {
  color: var(--green-950);
  border-color: var(--line);
  background: var(--green-100);
}

.button.outline {
  color: var(--green-900);
  border-color: var(--line);
  background: var(--white);
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(820px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
}

.hero-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.hero-stats span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 6vw, 76px);
}

.split,
.section-heading,
.journal-layout,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.flow p,
.section-heading p,
.journal-layout p,
.contact-panel p {
  color: var(--muted);
  font-size: 18px;
}

.about-intro {
  display: grid;
  gap: 28px;
}

.about-photo {
  width: min(100%, 460px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.philosophy {
  margin: 30px 0 0;
  padding: 24px;
  color: var(--green-950);
  border-left: 5px solid var(--green-700);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(6, 44, 29, 0.08);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.coaching-section {
  background: var(--white);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 42px auto 0;
}

.program-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--green-50), var(--white));
}

.program-card p {
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 44px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.camps-section {
  background:
    linear-gradient(180deg, var(--green-50), var(--white));
}

.camp-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
  max-width: 1180px;
  margin: 42px auto 0;
}

.camp-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: clamp(26px, 4vw, 44px);
  color: var(--white);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 16%, rgba(196, 235, 61, 0.42), transparent 22%),
    linear-gradient(135deg, var(--green-900), var(--green-700));
}

.camp-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.camp-copy .button {
  align-self: flex-start;
}

.camp-list {
  display: grid;
  gap: 14px;
}

.camp-list article {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.camp-list span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.camp-list strong {
  max-width: 520px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
}

.reflections-section {
  background: var(--green-950);
  color: var(--white);
}

.reflections-section .section-kicker {
  color: #9ee5b6;
}

.journal-layout > div > p,
.reflection-list p {
  color: rgba(255, 255, 255, 0.72);
}

.reflection-list {
  display: grid;
  gap: 16px;
}

.reflection-list article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.reflection-list time {
  display: block;
  margin-bottom: 14px;
  color: #9ee5b6;
  font-size: 13px;
  font-weight: 800;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 16px;
  max-width: 1180px;
  margin: 40px auto 0;
}

.insta-tile {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 180px;
  padding: 20px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 24%, rgba(196, 235, 61, 0.72), transparent 22%),
    linear-gradient(135deg, var(--green-900), var(--green-700));
}

.insta-tile::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.insta-tile.tall {
  grid-row: span 2;
}

.insta-tile.light {
  color: var(--green-950);
  background:
    radial-gradient(circle at 70% 25%, rgba(19, 114, 71, 0.24), transparent 20%),
    linear-gradient(135deg, #f3fbf5, #d6f0df);
}

.insta-tile span {
  position: relative;
  z-index: 1;
  font-size: 26px;
  font-weight: 900;
}

.contact-section {
  padding-bottom: clamp(52px, 8vw, 94px);
  background: var(--green-100);
}

.contact-panel {
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  border-radius: var(--radius);
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.contact-panel .section-kicker,
.contact-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--green-950);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--green-950);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--green-100);
  }

  .hero {
    min-height: 96svh;
    padding-top: 108px;
  }

  .hero-portrait {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 380px);
    margin: 0 0 28px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 44, 29, 0.6), rgba(6, 44, 29, 0.9)),
      linear-gradient(90deg, rgba(6, 44, 29, 0.75), rgba(6, 44, 29, 0.32));
  }

  .hero-stats,
  .split,
  .section-heading,
  .camp-feature,
  .journal-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-auto-rows: 170px;
  }

  .insta-tile.tall {
    grid-row: span 1;
  }

  .program-card {
    min-height: auto;
  }

  .card-icon {
    margin-bottom: 28px;
  }

  .camp-copy {
    min-height: auto;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 145px;
    line-height: 1.05;
  }

  h1 {
    font-size: 50px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
