:root {
  --ink: #17211a;
  --ink-soft: #39433c;
  --forest: #1d3a2a;
  --forest-deep: #11261a;
  --sage: #768774;
  --sand: #ddd5c6;
  --paper: #f4f0e8;
  --cream: #fbf9f4;
  --line: rgba(23, 33, 26, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-shell { min-height: 100vh; overflow: hidden; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem clamp(1.4rem, 5vw, 5.5rem);
}
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 0.8rem; }
.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1;
}
.brand-name { font-family: var(--serif); font-size: 1.4rem; letter-spacing: 0.01em; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.primary-nav a:not(.portal-link) { position: relative; }
.primary-nav a:not(.portal-link)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.portal-link {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}
.portal-link:hover, .portal-link:focus-visible { background: var(--ink); color: var(--cream); }

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.03fr) minmax(28rem, 0.97fr);
  align-items: stretch;
  background: radial-gradient(circle at 23% 30%, rgba(221, 213, 198, 0.4), transparent 30%), var(--paper);
}
.hero-copy {
  display: flex;
  min-height: 46rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 9rem clamp(2rem, 7vw, 8.5rem) 8rem clamp(1.5rem, 6vw, 7rem);
}
.eyebrow, .section-label {
  margin: 0 0 1.8rem;
  color: var(--sage);
  font-size: 0.71rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 46rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 7.2vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}
.hero-intro {
  max-width: 38rem;
  margin: 2.4rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.35vw, 1.3rem);
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 1.6rem; margin-top: 2.8rem; }
.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover, .button-dark:focus-visible { background: var(--forest); }
.text-link { padding: 0.5rem 0; border-bottom: 1px solid var(--line); font-size: 0.82rem; font-weight: 600; }

.hero-visual { position: relative; min-height: 46rem; margin: 0; overflow: hidden; background: var(--forest-deep); }
.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 38, 26, 0.04), rgba(17, 38, 26, 0.44));
  content: "";
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.74) contrast(1.02);
  transform: scale(1.015);
}
.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(1.4rem, 4vw, 3.5rem);
  bottom: 3.6rem;
  left: clamp(1.4rem, 4vw, 3.5rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  padding-top: 1.2rem;
  color: white;
}
.hero-visual figcaption span { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase; }
.hero-visual figcaption strong { font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.55rem); font-weight: 400; }
.hero-index {
  position: absolute;
  bottom: 1.8rem;
  left: clamp(1.5rem, 6vw, 7rem);
  display: flex;
  gap: 1.6rem;
  color: var(--sage);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.statement-section, .approach-section, .stewardship-section, .private-section {
  padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 7vw, 8rem);
}
.statement-section {
  display: grid;
  grid-template-columns: minmax(11rem, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(2rem, 6vw, 7rem);
  background: var(--cream);
}
.statement-section blockquote {
  max-width: 64rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.2vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.approach-section { background: var(--paper); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) minmax(15rem, 0.68fr);
  column-gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}
.section-heading .section-label { grid-column: 1 / -1; }
.section-heading h2, .focus-intro h2, .stewardship-title h2, .private-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.3vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.section-heading > p:last-child, .focus-intro > p:last-child, .stewardship-copy p, .private-card > div > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--line); }
.principle-card { min-height: 20rem; padding: 2rem clamp(1.5rem, 3vw, 3.2rem) 1.5rem 0; border-right: 1px solid var(--line); }
.principle-card + .principle-card { padding-left: clamp(1.5rem, 3vw, 3.2rem); }
.principle-card:last-child { border-right: 0; }
.principle-card > span, .focus-list article > span {
  color: var(--sage);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}
.principle-card h3 { margin: 5.2rem 0 1rem; font-family: var(--serif); font-size: clamp(1.6rem, 2.2vw, 2.25rem); font-weight: 400; }
.principle-card p, .focus-list p { margin: 0; color: var(--ink-soft); font-size: 0.93rem; line-height: 1.75; }

.focus-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 1.08fr);
  gap: clamp(4rem, 10vw, 12rem);
  padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 7vw, 8rem);
  background: var(--forest-deep);
  color: white;
}
.section-label-light { color: #a8b6a5; }
.focus-intro > p:last-child { max-width: 34rem; margin-top: 2rem; color: rgba(255, 255, 255, 0.66); }
.focus-list { border-top: 1px solid rgba(255, 255, 255, 0.23); }
.focus-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}
.focus-list article > span { color: #a8b6a5; }
.focus-list h3 { margin: 0 0 0.65rem; font-family: var(--serif); font-size: clamp(1.45rem, 2vw, 2rem); font-weight: 400; }
.focus-list p { color: rgba(255, 255, 255, 0.62); }

.stewardship-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 9vw, 10rem);
  background: var(--cream);
}
.stewardship-title h2 { max-width: 48rem; }
.stewardship-copy { display: flex; flex-direction: column; justify-content: flex-end; gap: 1.5rem; padding-bottom: 0.3rem; }
.private-section { padding-top: 0; background: var(--cream); }
.private-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--sand);
}
.private-card h2 { margin-bottom: 1rem; font-size: clamp(2.2rem, 4vw, 4.5rem); }
.private-card .section-label { margin-bottom: 1rem; }
.private-card > div > p:last-child { max-width: 42rem; }
.lock-mark { position: relative; width: 4.5rem; height: 4.5rem; border: 1px solid rgba(23, 33, 26, 0.35); border-radius: 50%; }
.lock-mark::before {
  position: absolute;
  top: 1.15rem;
  left: 1.55rem;
  width: 1.35rem;
  height: 1.25rem;
  border: 1px solid var(--ink);
  border-bottom: 0;
  border-radius: 0.8rem 0.8rem 0 0;
  content: "";
}
.lock-mark span { position: absolute; top: 2.25rem; left: 1.35rem; width: 1.75rem; height: 1.35rem; border: 1px solid var(--ink); }
.button-outline { border-color: rgba(23, 33, 26, 0.42); white-space: nowrap; }
.button-outline:hover, .button-outline:focus-visible { background: var(--ink); color: white; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.9fr) auto;
  gap: 3rem;
  align-items: end;
  padding: 3.5rem clamp(1.5rem, 7vw, 8rem);
  background: #0c1710;
  color: rgba(255, 255, 255, 0.82);
}
.footer-brand strong { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.footer-brand div span, .site-footer > span, .site-footer > p { color: rgba(255, 255, 255, 0.5); font-size: 0.68rem; line-height: 1.6; }
.footer-brand div span, .site-footer > span { letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer > p { max-width: 35rem; margin: 0; }

.reveal { animation: rise-in 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.reveal-delay { animation-delay: 120ms; }
@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .site-header { position: relative; background: var(--paper); }
  .primary-nav a:not(.portal-link) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: auto; padding-top: 6rem; padding-bottom: 7rem; }
  .hero-visual { min-height: 35rem; }
  .hero-index { top: calc(100% - 35rem - 3rem); bottom: auto; color: rgba(255, 255, 255, 0.7); z-index: 3; }
  .statement-section, .section-heading, .focus-section, .stewardship-section { grid-template-columns: 1fr; }
  .statement-section { gap: 1rem; }
  .section-heading { align-items: start; }
  .section-heading > p:last-child { max-width: 36rem; margin-top: 1.5rem; }
  .focus-section { gap: 4rem; }
  .stewardship-copy { max-width: 42rem; }
  .private-card { grid-template-columns: auto 1fr; }
  .private-card .button { grid-column: 2; justify-self: start; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > span { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .site-header { padding: 1.25rem 1.2rem; }
  .brand-name { font-size: 1.25rem; }
  .portal-link { padding: 0.62rem 0.8rem; font-size: 0.64rem; }
  .hero-copy { padding: 4.8rem 1.25rem 6.2rem; }
  .hero h1 { font-size: clamp(3.65rem, 17vw, 5.4rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 28rem; }
  .hero-visual figcaption { bottom: 2rem; align-items: flex-start; flex-direction: column; gap: 0.65rem; }
  .hero-index { top: calc(100% - 28rem - 2.3rem); left: 1.25rem; gap: 0.8rem; font-size: 0.55rem; }
  .statement-section, .approach-section, .focus-section, .stewardship-section, .private-section { padding-right: 1.25rem; padding-left: 1.25rem; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card, .principle-card + .principle-card { min-height: auto; padding: 1.7rem 0 2.4rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle-card h3 { margin-top: 2.5rem; }
  .private-card { grid-template-columns: 1fr; }
  .private-card .button { grid-column: 1; }
  .lock-mark { width: 4rem; height: 4rem; }
  .lock-mark::before { top: 1rem; left: 1.35rem; }
  .lock-mark span { top: 2.05rem; left: 1.13rem; }
  .site-footer { grid-template-columns: 1fr; gap: 2.2rem; padding: 3rem 1.25rem; }
  .site-footer > span { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
