:root {
  --ink: #17261f;
  --ink-soft: #33453c;
  --paper: #f5f1e8;
  --paper-deep: #e9e1d2;
  --sun: #ef693f;
  --sun-bright: #ff8a4e;
  --water: #9cc7c9;
  --line: rgba(23, 38, 31, 0.17);
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --radius: 1.25rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 var(--page-pad);
  color: #fff;
  transition: color 240ms ease, background-color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(245, 241, 232, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--ink);
  background: var(--sun-bright);
  border-radius: 50% 50% 44% 56% / 58% 44% 56% 42%;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  transform: rotate(-6deg);
}

.brand-mark::first-letter {
  transform: rotate(6deg);
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.5rem);
}

.primary-navigation a {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.primary-navigation a:not(.nav-cta) {
  position: relative;
}

.primary-navigation a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.25rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.65rem 1rem;
  color: var(--ink);
  background: var(--sun-bright);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.8rem;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.4rem 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #243b31;
}

.hero-backdrop {
  position: absolute;
  z-index: -3;
  inset: -5%;
  overflow: hidden;
  background:
    radial-gradient(circle at 19% 18%, rgba(255, 189, 112, 0.25), transparent 24%),
    linear-gradient(148deg, #263e34 0%, #45695a 48%, #a64a32 100%);
  will-change: opacity, transform;
}

.hero-backdrop::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.sun-disc {
  position: absolute;
  top: 12%;
  right: 12%;
  width: min(31vw, 27rem);
  aspect-ratio: 1;
  background: var(--sun-bright);
  border-radius: 50%;
  box-shadow: 0 0 8rem rgba(255, 138, 78, 0.35);
}

.ridge {
  position: absolute;
  right: -12%;
  bottom: -19%;
  left: 12%;
  height: 56%;
  background: #28483a;
  clip-path: polygon(0 46%, 12% 31%, 26% 51%, 40% 21%, 54% 47%, 70% 10%, 100% 52%, 100% 100%, 0 100%);
}

.ridge-back {
  bottom: -6%;
  background: rgba(239, 105, 63, 0.42);
  transform: scale(1.12);
}

.ridge-front {
  background: #172c23;
}

.hero-wordmark {
  position: absolute;
  right: -0.06em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.055);
  font-family: "Manrope", sans-serif;
  font-size: clamp(13rem, 34vw, 40rem);
  font-weight: 600;
  letter-spacing: -0.12em;
  line-height: 1;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 24, 19, 0.74), rgba(13, 24, 19, 0.1) 68%),
    linear-gradient(0deg, rgba(13, 24, 19, 0.55), transparent 48%);
}

.hero-content {
  width: min(57rem, 88vw);
  padding: clamp(8rem, 17vh, 11rem) var(--page-pad) clamp(5rem, 12vh, 8rem);
}

.eyebrow,
.section-label,
.chapter-kicker {
  margin: 0 0 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.light,
.section-label.light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.display-heading,
.story-title,
.chapter-copy h3,
.impact-number,
.founder-copy h2,
.join h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(3.4rem, 7.6vw, 8rem);
}

.hero-intro {
  max-width: 35rem;
  margin: 2rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  padding-bottom: 0.25rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.light-link {
  color: #fff;
}

.scroll-note {
  position: absolute;
  right: var(--page-pad);
  bottom: 3rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.section-pad {
  padding: clamp(5rem, 11vw, 10rem) var(--page-pad);
}

.section-label {
  color: #6b756e;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(19rem, 0.7fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
}

.display-heading {
  max-width: 16ch;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
}

.body-copy {
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
}

.body-copy p {
  margin: 0 0 1.4rem;
}

.body-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.focus-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.focus-line span {
  padding: 1.15rem 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.focus-line span:not(:last-child) {
  border-right: 1px solid var(--line);
}

.focus-line span:nth-child(2),
.focus-line span:nth-child(3) {
  padding-left: 1.5rem;
}

.story-intro {
  color: var(--paper);
  background: var(--ink);
}

.story-title {
  font-size: clamp(3rem, 7vw, 7.2rem);
}

.story-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 44rem;
}

.chapter-dark {
  color: var(--paper);
  background: #203b30;
}

.chapter-light {
  color: var(--ink);
  background: #ece6da;
}

.chapter-warm {
  color: #271d18;
  background: #d96a43;
}

.chapter-visual,
.chapter-copy {
  min-width: 0;
  padding: clamp(3rem, 7vw, 7.5rem) var(--page-pad);
}

.chapter-visual {
  position: relative;
  display: flex;
  min-height: 38rem;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.chapter-visual::after {
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.3;
}

.visual-origin {
  color: #17261f;
  background: #e7b551;
}

.visual-origin::after {
  right: -5%;
  bottom: -8%;
  box-shadow: 0 0 0 5rem rgba(23, 38, 31, 0.05),
    0 0 0 10rem rgba(23, 38, 31, 0.035);
}

.visual-water {
  color: #173336;
  background:
    radial-gradient(circle at 68% 34%, rgba(255, 255, 255, 0.45), transparent 18%),
    var(--water);
}

.visual-water::after {
  right: 16%;
  bottom: 18%;
  border-radius: 58% 42% 64% 36% / 32% 45% 55% 68%;
  transform: rotate(23deg);
}

.visual-plan {
  color: #f5f1e8;
  background: #60362f;
}

.visual-plan::after {
  top: 18%;
  left: 18%;
  box-shadow: 3rem 3rem 0 rgba(239, 105, 63, 0.4);
}

.visual-number {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.chapter-visual p {
  position: relative;
  z-index: 1;
  max-width: 19rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.chapter-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chapter-copy h3 {
  max-width: 15ch;
  margin-bottom: 2.3rem;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}

.chapter-copy > p:not(.chapter-kicker) {
  max-width: 39rem;
  margin: 0 0 1.4rem;
  color: currentColor;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  opacity: 0.85;
}

.chapter-copy strong {
  font-weight: 600;
  opacity: 1;
}

blockquote {
  max-width: 37rem;
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.45;
  border-top: 1px solid currentColor;
}

.goal-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: 35rem;
  margin: 1.2rem 0 2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(39, 29, 24, 0.38);
  border-bottom: 1px solid rgba(39, 29, 24, 0.38);
}

.goal-card span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.goal-card strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.impact {
  color: var(--paper);
  background: #101d17;
}

.impact-inner {
  text-align: center;
}

.impact-prelude {
  margin: 4rem 0 0;
  color: rgba(245, 241, 232, 0.65);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.impact-number {
  margin-top: 0.25rem;
  color: var(--sun-bright);
  font-size: clamp(6rem, 20vw, 20rem);
}

.impact-caption {
  margin: 0.4rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
}

.impact-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  max-width: 70rem;
  margin: clamp(5rem, 10vw, 9rem) auto 0;
  text-align: left;
}

.impact-copy p {
  margin: 0;
  color: rgba(245, 241, 232, 0.75);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.manifesto {
  display: grid;
  min-height: 70vh;
  place-items: center;
  background: var(--sun-bright);
}

.manifesto p {
  max-width: 24ch;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.founder {
  background: var(--paper);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: center;
}

.founder-monogram {
  display: grid;
  width: min(100%, 26rem);
  aspect-ratio: 1;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 49% 51% 36% 64% / 57% 37% 63% 43%;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: -0.08em;
}

.founder-copy h2 {
  font-size: clamp(3.1rem, 6vw, 6.7rem);
}

.founder-copy > p:last-child {
  max-width: 38rem;
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.join {
  color: var(--paper);
  background: #24483a;
}

.join-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.join h2 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.join-copy p {
  max-width: 34rem;
  margin: 0 0 2.2rem;
  color: rgba(245, 241, 232, 0.75);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}

.email-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 34rem;
  padding: 1.1rem 1.3rem;
  color: var(--ink);
  background: var(--sun-bright);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

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

.email-address {
  display: inline-block;
  margin-top: 1.4rem;
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem var(--page-pad);
  color: var(--paper);
  background: #101d17;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 0;
  color: rgba(245, 241, 232, 0.55);
  font-size: 0.76rem;
}

.site-footer p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--sun-bright);
  outline-offset: 4px;
}

@media (max-width: 800px) {
  .site-header {
    height: 4.5rem;
  }

  .menu-button {
    display: block;
  }

  .primary-navigation {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.4rem;
    padding: 6rem var(--page-pad);
    color: var(--paper);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .primary-navigation.open {
    opacity: 1;
    pointer-events: auto;
  }

  .primary-navigation a {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.3rem, 11vw, 4rem);
    letter-spacing: -0.05em;
  }

  .primary-navigation .nav-cta {
    margin-top: 0.75rem;
    padding: 0.55rem 1rem;
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    letter-spacing: 0;
  }

  .site-header.menu-active {
    color: var(--paper);
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  .site-header.menu-active .menu-button span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.menu-active .menu-button span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero-content {
    width: 100%;
    padding-bottom: 6rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 5.5rem);
  }

  .scroll-note {
    display: none;
  }

  .sun-disc {
    top: 16%;
    right: -16%;
    width: 64vw;
  }

  .about-grid,
  .story-chapter,
  .founder-grid,
  .join-grid,
  .impact-copy {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .founder-grid,
  .join-grid {
    gap: 2.8rem;
  }

  .focus-line {
    grid-template-columns: 1fr;
  }

  .focus-line span:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .focus-line span:nth-child(2),
  .focus-line span:nth-child(3) {
    padding-left: 0;
  }

  .chapter-light .chapter-copy {
    order: 2;
  }

  .chapter-light .chapter-visual {
    order: 1;
  }

  .chapter-visual {
    min-height: 24rem;
  }

  .chapter-copy {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .impact-copy {
    gap: 1.4rem;
  }

  .manifesto {
    min-height: 60vh;
  }

  .founder-monogram {
    width: min(68vw, 20rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Community background */
section[id] { scroll-margin-top: 5rem; }
.community { background: #e5ece6; }
.community-heading { display:grid;grid-template-columns:1.2fr 1fr;gap:4rem;align-items:start; }
.community-heading > p { margin:0;font-size:1.15rem;color:var(--ink-soft);max-width:38rem; }
.community-media { display:grid;grid-template-columns:minmax(0,2fr) minmax(15rem,1fr);gap:2rem;margin:3.5rem 0 4rem;align-items:start; }
.community figure { margin:0;min-width:0; }
.community-photo img { width:100%;height:auto;display:block; }
.community-map { background:#fff;padding:1.5rem; }
.community-map img { display:block;margin:0 auto 1.5rem;width:185px;max-width:100%;height:auto; }
.community figcaption { margin-top:1rem;font-size:.875rem;line-height:1.6;color:var(--ink-soft); }
.community-map .chapter-kicker { margin-bottom:1.5rem; }
.context-title { font-family:Manrope,sans-serif;font-size:clamp(1.8rem,3vw,3rem);font-weight:500;letter-spacing:-.04em;line-height:1.15; }
.context-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:2.5rem;margin:2.5rem 0; }
.context-grid article { border-top:1px solid var(--line);padding-top:1.5rem; }
.context-grid h4 { font-size:1.45rem;line-height:1.25;font-weight:500;margin:1rem 0; }
.context-grid p { color:var(--ink-soft); }
.context-grid a { display:block;font-size:.875rem;margin-top:.6rem;text-underline-offset:3px; }
.context-note { font-size:.875rem;color:var(--ink-soft);max-width:65rem; }
@media(max-width:800px) {
 .community-heading,.community-media,.context-grid { grid-template-columns:1fr;gap:2rem; }
 .community-map { max-width:100%; }
}
