:root {
  color-scheme: light;
  --sky: #d9eff5;
  --cream: #fff4dc;
  --cream-2: #f7e5bf;
  --paper: #fff9eb;
  --grass: #6cab42;
  --grass-dark: #3d7b48;
  --water: #287fa8;
  --teal: #2d7c72;
  --roof: #c94732;
  --wood: #8f6234;
  --wood-dark: #54391f;
  --gold: #efb84a;
  --ink: #2f2a20;
  --muted: #665d4d;
  --soft: rgba(47, 42, 32, 0.72);
  --line: rgba(93, 67, 35, 0.22);
  --radius: 8px;
  --shadow: 0 18px 44px rgba(91, 65, 32, 0.18);
  --shadow-soft: 0 10px 28px rgba(91, 65, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(217, 239, 245, 0.95) 0, rgba(255, 244, 220, 0.98) 36rem),
    radial-gradient(circle at 12% 18rem, rgba(108, 171, 66, 0.22), transparent 24rem),
    radial-gradient(circle at 88% 28rem, rgba(40, 127, 168, 0.16), transparent 28rem),
    var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, rgba(69, 50, 28, 0.42), rgba(69, 50, 28, 0));
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 235, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  color: var(--paper);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(50, 34, 18, 0.45);
}

.site-header.is-scrolled .brand {
  color: var(--ink);
  text-shadow: none;
}

.brand-mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 2px solid rgba(255, 249, 235, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7d56c, #7cc466 50%, #e96f4c);
  color: #271c10;
  box-shadow: 0 10px 22px rgba(60, 38, 17, 0.22);
}

.nav-links {
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.75rem);
  color: rgba(255, 249, 235, 0.86);
  font-size: 0.94rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(50, 34, 18, 0.45);
}

.site-header.is-scrolled .nav-links {
  color: var(--muted);
  text-shadow: none;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--roof);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-cta {
  border: 2px solid rgba(255, 249, 235, 0.78);
  padding: 0 1rem;
  background: rgba(255, 249, 235, 0.2);
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(50, 34, 18, 0.45);
}

.site-header.is-scrolled .nav-cta {
  border-color: rgba(84, 57, 31, 0.24);
  background: var(--gold);
  color: var(--wood-dark);
  text-shadow: none;
}

.button {
  padding: 0 1.15rem;
}

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

.button.primary {
  border: 2px solid rgba(84, 57, 31, 0.28);
  background: linear-gradient(180deg, #f6ca63, var(--gold));
  color: var(--wood-dark);
  box-shadow: 0 14px 28px rgba(143, 98, 52, 0.22);
}

.button.secondary {
  border: 2px solid rgba(255, 249, 235, 0.56);
  background: rgba(255, 249, 235, 0.2);
  color: var(--paper);
  box-shadow: 0 12px 28px rgba(47, 42, 32, 0.18);
}

.button.large {
  min-height: 3.2rem;
  padding-inline: 1.4rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(92vh, 860px);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 6rem;
  background: linear-gradient(180deg, transparent, var(--cream));
}

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

.hero-image {
  object-fit: cover;
  object-position: center top;
  z-index: -3;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(53, 37, 20, 0.84) 0%, rgba(53, 37, 20, 0.52) 34%, rgba(53, 37, 20, 0.05) 74%),
    linear-gradient(180deg, rgba(53, 37, 20, 0.04), rgba(53, 37, 20, 0.48));
}

.hero-content {
  width: min(48rem, calc(100% - 2rem));
  align-self: end;
  margin-left: clamp(1rem, 8vw, 6rem);
  padding: 8rem 0 clamp(3.5rem, 8vw, 6rem);
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(45, 29, 14, 0.55);
}

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

.section .eyebrow,
.intro-band .eyebrow,
.final-cta .eyebrow {
  color: var(--teal);
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.5rem, 8.5vw, 7rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 40rem;
  color: rgba(255, 249, 235, 0.92);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions,
.site-footer div {
  gap: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 43rem;
  margin: 2.25rem 0 0;
}

.hero-stats div {
  border: 1px solid rgba(255, 249, 235, 0.38);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 249, 235, 0.18);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  color: rgba(255, 249, 235, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0.25rem 0 0;
  color: var(--paper);
  font-weight: 900;
}

.intro-band,
.media-strip,
.section,
.final-cta {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1rem, 3vw, 2rem);
}

.intro-card,
.media-card,
.feature,
.alpha-steps article,
.community-panel,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 235, 0.88);
  box-shadow: var(--shadow-soft);
}

.intro-card {
  min-height: 13rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.intro-card h2 {
  max-width: 8.5ch;
  margin-bottom: 0.85rem;
  color: var(--wood-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
}

.intro-card p,
.feature p,
.alpha-steps p,
.faq p {
  margin-bottom: 0;
}

.icon-tile {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(45, 124, 114, 0.18);
  border-radius: var(--radius);
  background: #d9f0d3;
  color: var(--teal);
  font-weight: 900;
}

.media-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.35fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0 0;
}

.media-card {
  position: relative;
  display: flex;
  min-height: 12rem;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  background: var(--paper);
}

.media-card.large {
  grid-row: 1 / span 2;
  min-height: 25rem;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(45, 29, 14, 0.62));
}

.media-card img,
.journey-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card img {
  transition: transform 220ms ease;
}

.media-card:hover img {
  transform: scale(1.035);
}

.media-card span {
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  background: rgba(255, 249, 235, 0.9);
  padding: 0.55rem 0.7rem;
  color: var(--wood-dark);
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(45, 29, 14, 0.18);
}

.journey {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.journey-shot {
  position: relative;
  min-height: 26rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.journey-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(45, 29, 14, 0.72));
}

.journey-shot figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1rem;
  color: rgba(255, 249, 235, 0.86);
  line-height: 1.55;
}

.journey-shot strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--paper);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.1rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 7rem;
}

.section-copy p,
.section-heading p,
.community-panel p,
.final-cta p {
  max-width: 42rem;
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  min-height: 12rem;
  padding: 1.2rem;
}

.feature h3,
.alpha-steps h3,
.faq summary {
  color: var(--wood-dark);
}

.feature-dot {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  margin-bottom: 2.2rem;
  border-radius: 999px;
}

.amber {
  background: var(--gold);
}

.teal {
  background: var(--teal);
}

.coral {
  background: var(--roof);
}

.green {
  background: var(--grass);
}

.alpha-section {
  width: 100%;
  max-width: none;
  border-top: 1px solid rgba(93, 67, 35, 0.14);
  border-bottom: 1px solid rgba(93, 67, 35, 0.14);
  background:
    linear-gradient(180deg, rgba(217, 240, 211, 0.68), rgba(255, 244, 220, 0.78)),
    var(--cream);
}

.alpha-section > * {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin-bottom: 1.25rem;
}

.alpha-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.alpha-steps article {
  min-height: 15rem;
  padding: 1.25rem;
}

.alpha-steps span {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(143, 98, 52, 0.22);
  border-radius: 999px;
  background: #e7f2d1;
  color: var(--grass-dark);
  font-weight: 900;
}

.community {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.community-panel {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background:
    linear-gradient(135deg, rgba(239, 184, 74, 0.18), rgba(108, 171, 66, 0.14)),
    rgba(255, 249, 235, 0.9);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  padding: 1rem 1.1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq summary::marker {
  color: var(--grass-dark);
}

.faq p {
  padding-top: 0.7rem;
}

.final-cta {
  margin-top: 2rem;
  margin-bottom: 5rem;
  border: 1px solid rgba(143, 98, 52, 0.22);
  border-radius: var(--radius);
  padding: clamp(2rem, 7vw, 5rem);
  background:
    linear-gradient(135deg, rgba(247, 213, 108, 0.38), rgba(217, 240, 211, 0.86) 50%, rgba(40, 127, 168, 0.14)),
    var(--paper);
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  background: #f2dfb7;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  color: inherit;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 4.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 249, 235, 0.9);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
  }

  .brand {
    color: var(--ink);
    text-shadow: none;
  }

  .nav-links {
    display: none;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    border-color: rgba(84, 57, 31, 0.16);
  }

  .nav-cta {
    min-height: 2.45rem;
    border-color: rgba(84, 57, 31, 0.24);
    background: var(--gold);
    color: var(--wood-dark);
    text-shadow: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(53, 37, 20, 0.06) 0%, rgba(53, 37, 20, 0.28) 38%, rgba(53, 37, 20, 0.72) 100%),
      linear-gradient(90deg, rgba(53, 37, 20, 0.36), rgba(53, 37, 20, 0.08));
  }

  .hero-content {
    align-self: end;
    width: min(100% - 2rem, 35rem);
    margin: 0 auto;
    padding: 6.75rem 0 2.5rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  p {
    line-height: 1.62;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-stats,
  .intro-band,
  .split,
  .feature-grid,
  .alpha-steps,
  .community,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 0.5rem;
    margin-top: 1.25rem;
  }

  .hero-stats div {
    padding: 0.75rem;
  }

  .intro-card,
  .feature,
  .alpha-steps article {
    min-height: auto;
  }

  .intro-card h2 {
    max-width: none;
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .media-strip {
    display: none;
  }

  .journey-shot {
    min-height: 0;
  }

  .journey-shot img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .journey-shot::after {
    display: none;
  }

  .journey-shot figcaption {
    position: static;
    padding: 1rem;
    background: var(--paper);
    color: var(--muted);
  }

  .journey-shot strong {
    color: var(--wood-dark);
  }

  .section-copy {
    position: static;
  }

  .alpha-steps article {
    min-height: auto;
  }

  .alpha-steps span {
    margin-bottom: 1rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 0.8rem;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    min-height: 2.55rem;
    padding-inline: 0.85rem;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    width: min(100% - 1.5rem, 30rem);
    padding-bottom: 1.5rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 1.25rem;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    display: none;
  }

  .intro-band,
  .section,
  .final-cta {
    width: min(100% - 1.5rem, 1180px);
  }

  .alpha-section > * {
    width: min(100% - 1.5rem, 1180px);
  }

  .section {
    padding: 3rem 0;
  }

  .section-copy p,
  .section-heading p,
  .community-panel p,
  .final-cta p {
    font-size: 1rem;
  }

  .journey-shot strong {
    font-size: 1rem;
  }

  .final-cta {
    margin-bottom: 2rem;
    padding: 1.35rem;
  }
}
