:root {
  --ink: #243528;
  --ink-soft: #4a5a48;
  --olive: #3f5c3a;
  --olive-deep: #2f452c;
  --leaf: #6f8a52;
  --peach: #e39a62;
  --peach-deep: #c77a45;
  --peach-soft: #f0b584;
  --mist: #e8efe3;
  --paper: #f5f7f2;
  --line: rgba(63, 92, 58, 0.14);
  --shadow: 0 18px 50px rgba(36, 53, 40, 0.12);

  --font-display: "Outfit", "Segoe UI", sans-serif;
  --font-body: "Sora", system-ui, sans-serif;

  --radius: 18px;
  --max: 1120px;
  --nav-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1000px 520px at 8% -8%, rgba(227, 154, 98, 0.14), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(111, 138, 82, 0.18), transparent 50%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 42%, #eef3ea 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--olive-deep);
}

p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.75rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--peach);
  color: #fff;
  box-shadow: 0 10px 24px rgba(227, 154, 98, 0.32);
}

.btn-primary:hover {
  background: var(--peach-deep);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(63, 92, 58, 0.28);
  color: var(--olive);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: #fff;
  border-color: var(--olive);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(245, 247, 242, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 247, 242, 0.94);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive);
}

.brand-logo {
  width: 2.75rem;
  height: 2.4rem;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--leaf);
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--olive);
  background: rgba(63, 92, 58, 0.08);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(var(--nav-h) - 0.25rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: hero-rise 1.4s ease-out both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(36, 53, 40, 0.2) 0%, rgba(36, 53, 40, 0.55) 48%, rgba(36, 53, 40, 0.86) 100%),
    linear-gradient(90deg, rgba(36, 53, 40, 0.5) 0%, transparent 58%);
}

.hero-content {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 10vh, 6rem) 0 clamp(2.5rem, 6vh, 4rem);
  color: #f5faf7;
  max-width: 42rem;
  animation: copy-in 0.9s 0.2s ease both;
}

.hero-logo {
  width: min(160px, 38vw);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
  animation: logo-float 4.5s ease-in-out infinite;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.hero-brand span {
  font-size: 0.42em;
  font-weight: 650;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  color: rgba(245, 250, 247, 0.92);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes hero-rise {
  from {
    transform: scale(1.06);
    opacity: 0.55;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.reveal:nth-child(2).is-visible {
  transition-delay: 0.08s;
}

.reveal:nth-child(3).is-visible {
  transition-delay: 0.16s;
}

/* Mission band */
.mission {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: #eef6f1;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.mission-inner {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
}

.mission h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
}

.mission p {
  color: rgba(238, 246, 241, 0.88);
  font-size: 1.05rem;
}

/* Activity list */
.activity-list {
  display: grid;
  gap: 1rem;
}

.activity-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  transition: transform 0.35s ease;
}

.activity-item:last-child {
  border-bottom: 1px solid var(--line);
}

.activity-item:hover {
  transform: translateX(4px);
}

.activity-index {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--peach);
  min-width: 2rem;
  padding-top: 0.15rem;
}

.activity-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.activity-item p {
  color: var(--ink-soft);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split-visual {
  position: relative;
  min-height: 360px;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.split-copy h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 0.85rem;
}

.split-copy p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.split-copy .meta {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.split-copy .meta li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--ink-soft);
}

.split-copy .meta li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--peach);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split-visual {
    min-height: 260px;
  }

  .split-visual img {
    min-height: 260px;
  }
}

/* CTA band */
.cta-band {
  padding: 0 0 clamp(3.5rem, 8vw, 6rem);
}

.cta-panel {
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(2rem, 5vw, 3rem);
  background:
    radial-gradient(600px 280px at 90% 10%, rgba(227, 154, 98, 0.35), transparent 55%),
    linear-gradient(135deg, var(--olive-deep) 0%, var(--olive) 100%);
  color: #f4faf7;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  grid-template-columns: 1.4fr auto;
}

.cta-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin-bottom: 0.5rem;
  color: #fff;
}

.cta-panel p {
  color: rgba(244, 250, 247, 0.85);
  max-width: 34rem;
}

@media (max-width: 720px) {
  .cta-panel {
    grid-template-columns: 1fr;
  }
}

/* Page hero */
.page-hero {
  padding: clamp(2.5rem, 7vw, 4.5rem) 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.75rem;
  max-width: 16ch;
}

.page-hero p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 38rem;
}

/* Docs */
.doc-list {
  display: grid;
  gap: 0.75rem;
}

.doc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.doc-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--olive-deep);
}

.doc-row span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-facts {
  display: grid;
  gap: 1.25rem;
}

.contact-facts h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.contact-facts p,
.contact-facts a {
  color: var(--ink-soft);
}

.contact-facts a:hover {
  color: var(--olive);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(63, 92, 58, 0.16);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.form-success {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(63, 92, 58, 0.1);
  color: var(--olive);
  font-weight: 500;
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2.5rem;
  background: rgba(255, 255, 255, 0.4);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.3fr 1fr 1fr;
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.footer p,
.footer a {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer a:hover {
  color: var(--olive);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.footer-brand img {
  width: 3rem;
  height: auto;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.85rem;
  display: grid;
  gap: 0.55rem;
}

.footer-credits {
  font-size: 0.8rem;
  max-width: 40rem;
  line-height: 1.45;
}

.footer-credits a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.footer-credits a:hover {
  color: var(--olive-deep);
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.prose {
  max-width: 42rem;
  display: grid;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.prose h2 {
  color: var(--olive-deep);
  font-size: 1.55rem;
  margin-top: 1rem;
}

.prose strong {
  color: var(--ink);
}

.prose a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
