:root {
  --ink: #18211f;
  --ink-soft: #485551;
  --forest: #173e36;
  --forest-2: #24584e;
  --teal: #2e6e67;
  --sage: #dce7df;
  --sage-pale: #edf3ee;
  --paper: #f7f2e9;
  --paper-deep: #eee5d8;
  --white: #fffdf9;
  --gold: #b58c4b;
  --gold-soft: #d8bd8f;
  --terracotta: #8c5c47;
  --line: rgba(24, 33, 31, 0.16);
  --shadow-sm: 0 10px 32px rgba(22, 47, 41, 0.08);
  --shadow-lg: 0 28px 80px rgba(15, 38, 33, 0.18);
  --radius-sm: 0.65rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --max: 76rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #c38d33;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--teal);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  transform: translateY(-200%);
}

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

.container {
  width: min(calc(100% - 2.25rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2.25rem), 52rem);
  margin-inline: auto;
}

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

.section-compact {
  padding: clamp(3.25rem, 6vw, 5.5rem) 0;
}

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

.section-sage {
  background: var(--sage-pale);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(181, 140, 75, 0.18), transparent 26rem),
    var(--forest);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.15rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.9rem, 7.4vw, 6.6rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 47rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.section-dark .lead {
  color: rgba(255, 253, 249, 0.75);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading.centered {
  display: block;
  max-width: 53rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered .lead {
  margin: 1.4rem auto 0;
}

.status-bar {
  position: relative;
  z-index: 101;
  padding: 0.45rem 1rem;
  color: var(--white);
  background: #102f29;
  font-size: 0.77rem;
  letter-spacing: 0.025em;
  text-align: center;
}

.status-bar strong {
  color: var(--gold-soft);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50% 50% 48% 52% / 44% 56% 44% 56%;
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: -0.06em;
}

.brand-text span {
  display: block;
}

.primary-nav,
.nav-actions {
  display: flex;
  align-items: center;
}

.primary-nav {
  gap: 0.2rem;
}

.primary-nav a {
  position: relative;
  padding: 0.7rem 0.72rem;
  border-radius: 999px;
  color: #30423d;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--forest);
  background: rgba(36, 88, 78, 0.09);
}

.nav-actions {
  gap: 0.7rem;
}

.lang-link {
  min-width: 2.7rem;
  padding: 0.58rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.22rem auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 8px 20px rgba(23, 62, 54, 0.18);
}

.btn-primary:hover {
  background: var(--forest-2);
  box-shadow: 0 12px 26px rgba(23, 62, 54, 0.22);
}

.btn-secondary {
  color: var(--forest);
  border-color: rgba(23, 62, 54, 0.28);
  background: transparent;
}

.btn-light {
  color: var(--forest);
  background: var(--white);
}

.btn-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  min-height: min(53rem, calc(100vh - 6.7rem));
  overflow: hidden;
  color: var(--white);
  background: #102d27;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 27, 23, 0.93) 0%, rgba(8, 27, 23, 0.79) 36%, rgba(8, 27, 23, 0.18) 72%, rgba(8, 27, 23, 0.3) 100%),
    linear-gradient(0deg, rgba(8, 27, 23, 0.58), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(53rem, calc(100vh - 6.7rem));
  align-content: center;
  padding-block: 7rem 8.5rem;
}

.hero-copy {
  max-width: 52rem;
}

.hero h1 {
  max-width: 50rem;
}

.hero .lead {
  max-width: 42rem;
  margin-top: 1.7rem;
  color: rgba(255, 253, 249, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.2rem;
  max-width: 25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  text-align: right;
}

.hero-note {
  display: flex;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  width: min(calc(100% - 2.25rem), var(--max));
  min-height: 4.6rem;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.35rem;
  color: var(--forest);
  background: var(--paper);
  border-radius: 1rem 1rem 0 0;
  transform: translateX(-50%);
}

.hero-note-label {
  flex: 0 0 auto;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-note p {
  font-size: 0.88rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 10vw, 9.5rem) 0 clamp(4.5rem, 9vw, 8rem);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(216, 189, 143, 0.17), transparent 22rem),
    linear-gradient(135deg, #173e36, #102f29 70%);
}

.page-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -17rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.025), 0 0 0 9rem rgba(255, 255, 255, 0.018);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 64rem;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero .lead {
  max-width: 49rem;
  margin-top: 1.6rem;
  color: rgba(255, 253, 249, 0.78);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: inherit;
}

.breadcrumbs span[aria-current="page"] {
  color: var(--gold-soft);
}

.grid-2,
.grid-3,
.grid-4,
.split {
  display: grid;
  gap: 1.25rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.split {
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.88fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.split.reverse > :first-child {
  order: 2;
}

.stack > * + * {
  margin-top: 1.25rem;
}

.stack-lg > * + * {
  margin-top: 2rem;
}

.card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow-sm);
}

.card h3 + p,
.card .card-kicker + h3,
.card p + p {
  margin-top: 0.9rem;
}

.card p {
  color: var(--ink-soft);
}

.card-kicker {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
  color: var(--forest);
  font-size: 0.87rem;
  font-weight: 800;
}

.ecosystem-card {
  min-height: 22rem;
  padding-top: 5.6rem;
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.ecosystem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(22, 47, 41, 0.13);
}

.ecosystem-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-family: var(--serif);
}

.ecosystem-card:nth-child(2) .ecosystem-number { background: #7b5944; }
.ecosystem-card:nth-child(3) .ecosystem-number { background: #2e677e; }
.ecosystem-card:nth-child(4) .ecosystem-number { background: #725d78; }
.ecosystem-card:nth-child(5) .ecosystem-number { background: #8b7843; }

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

.ecosystems-grid .ecosystem-card {
  grid-column: span 2;
}

.ecosystems-grid .ecosystem-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.ecosystems-grid .ecosystem-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.target-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.target {
  padding: 2.4rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.target:last-child {
  border-right: 0;
}

.target strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.target span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.target-disclaimer {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.77rem;
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card figcaption {
  padding: 0.8rem 1rem 0.9rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.4;
}

.ai-label {
  display: inline-block;
  margin-right: 0.35rem;
  padding: 0.15rem 0.42rem;
  color: var(--forest);
  background: var(--sage);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.feature-list li::before {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
  content: "✓";
  font-size: 0.86rem;
  font-weight: 900;
}

.feature-list strong {
  display: block;
  color: var(--ink);
}

.feature-list span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.quote-panel {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow-lg);
}

.quote-panel blockquote {
  max-width: 62rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.6vw, 3.1rem);
  line-height: 1.25;
}

.quote-panel footer {
  margin-top: 1.5rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.notice {
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(140, 92, 71, 0.28);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius-sm);
  background: #f7ece5;
}

.notice strong {
  color: #6e4333;
}

.notice p {
  color: #59473f;
}

.notice strong + p {
  margin-top: 0.4rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.pill-list li {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
}

.steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  list-style: none;
}

.step {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  counter-increment: steps;
}

.step::before {
  color: var(--gold);
  content: "0" counter(steps);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.step h3 {
  margin-bottom: 0.6rem;
}

.step p {
  max-width: 48rem;
  color: var(--ink-soft);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.timeline::before {
  position: absolute;
  top: 1.25rem;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-top: 3.25rem;
}

.timeline-item::before {
  position: absolute;
  z-index: 1;
  top: 0.8rem;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  border: 4px solid var(--paper);
  border-radius: 50%;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.timeline-year {
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-top: 0.5rem;
  font-size: 1.35rem;
}

.timeline-item p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.service-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.service-band strong {
  margin-right: 0.5rem;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.service-band span {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.trust-seal {
  display: grid;
  aspect-ratio: 1;
  max-width: 24rem;
  place-items: center;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 0 0 1.25rem rgba(255, 255, 255, 0.025), 0 0 0 2.5rem rgba(255, 255, 255, 0.018);
}

.trust-points {
  display: grid;
  gap: 0;
}

.trust-point {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-point:first-child {
  border-top: 0;
}

.trust-point .num {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.trust-point h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.trust-point p {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.prose {
  color: var(--ink-soft);
}

.prose > * + * {
  margin-top: 1.2rem;
}

.prose h2,
.prose h3 {
  color: var(--ink);
}

.prose h2 {
  margin-top: 3.6rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.prose h3 {
  margin-top: 2.2rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 0.5rem;
}

.prose a {
  color: var(--forest);
  font-weight: 700;
}

.data-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.data-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--forest);
  background: var(--sage-pale);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 1.4rem 3rem 1.4rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  color: var(--teal);
  content: "+";
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 300;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details > div {
  max-width: 49rem;
  padding: 0 3rem 1.5rem 0;
  color: var(--ink-soft);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(216, 189, 143, 0.2), transparent 18rem),
    var(--forest);
  box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
}

.cta-panel p {
  max-width: 45rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field label {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(24, 33, 31, 0.26);
  border-radius: 0.7rem;
  background: var(--paper);
  padding: 0.8rem 0.9rem;
  color: var(--ink);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal);
}

.form-note,
.form-status {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.form-status:not(:empty) {
  padding: 0.75rem;
  border-radius: 0.6rem;
  background: var(--sage-pale);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #0d2b25;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 0.75fr));
  gap: 2.5rem;
  padding: 4.5rem 0 3.5rem;
}

.site-footer .brand {
  color: var(--white);
}

.footer-intro {
  max-width: 24rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  font-size: 0.87rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links a {
  color: inherit;
}

.error-page {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 5rem 0;
  text-align: center;
}

.error-code {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(5rem, 20vw, 12rem);
  line-height: 0.8;
}

.error-page h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.error-page p {
  max-width: 35rem;
  margin: 1rem auto 1.8rem;
  color: var(--ink-soft);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 68rem) {
  .primary-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav.is-open {
    display: grid;
    position: fixed;
    z-index: 99;
    top: 6.85rem;
    right: 0;
    bottom: 0;
    left: 0;
    align-content: start;
    gap: 0.3rem;
    padding: 2rem 1.15rem;
    background: var(--paper);
  }

  .primary-nav.is-open a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-family: var(--serif);
    font-size: 1.5rem;
  }

  .section-heading,
  .split,
  .trust-grid,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: 0;
  }

  .grid-4,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystems-grid .ecosystem-card,
  .ecosystems-grid .ecosystem-card:nth-child(4),
  .ecosystems-grid .ecosystem-card:nth-child(5) {
    grid-column: auto;
  }

  .ecosystems-grid .ecosystem-card:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .target-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .target:nth-child(2) {
    border-right: 0;
  }

  .target:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
  }

  .footer-main > :last-child {
    grid-column: 2;
  }
}

@media (max-width: 42rem) {
  body {
    font-size: 0.97rem;
  }

  .container,
  .narrow {
    width: min(calc(100% - 1.35rem), var(--max));
  }

  .status-bar {
    font-size: 0.68rem;
  }

  .nav-wrap {
    min-height: 4.65rem;
  }

  .brand-text {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 44rem;
  }

  .hero-inner {
    align-content: start;
    padding-top: 5rem;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(8, 27, 23, 0.9) 0%, rgba(8, 27, 23, 0.72) 58%, rgba(8, 27, 23, 0.7) 100%);
  }

  .hero-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .hero-meta {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .ecosystems-grid,
  .timeline,
  .target-strip {
    grid-template-columns: 1fr;
  }

  .ecosystems-grid .ecosystem-card:last-child {
    grid-column: auto;
  }

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

  .target {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .target:last-child {
    border-bottom: 0;
  }

  .timeline::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0.42rem;
    width: 1px;
    height: auto;
  }

  .timeline-item {
    padding: 0 0 2rem 2.2rem;
  }

  .timeline-item::before {
    top: 0.2rem;
    left: 0;
  }

  .step {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 0.5rem;
  }

  .trust-seal {
    max-width: 18rem;
    margin-inline: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .status-bar,
  .site-header,
  .site-footer,
  .hero-actions,
  .cta-panel,
  .menu-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .section-compact {
    padding: 2rem 0;
  }

  .card,
  .image-card,
  .quote-panel {
    box-shadow: none;
    break-inside: avoid;
  }
}

/* Topic library and long-form guides */
.wide-image {
  width: min(100%, 68rem);
  margin-inline: auto;
}

.topic-directory {
  background:
    radial-gradient(circle at 92% 8%, rgba(181, 140, 75, 0.18), transparent 25rem),
    var(--sage-pale);
}

.directory-tools {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.directory-search {
  display: grid;
  gap: 0.45rem;
  color: var(--forest);
  font-weight: 750;
}

.directory-search input {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 62, 54, 0.3);
  border-radius: 0.8rem;
}

.directory-search input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(46, 110, 103, 0.13);
  outline: 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-chip {
  min-height: 2.7rem;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(23, 62, 54, 0.26);
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.directory-count,
.directory-empty {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.directory-empty {
  padding: 2rem;
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

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

.topic-card {
  display: flex;
  min-width: 0;
  min-height: 20rem;
  flex-direction: column;
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  background: var(--white);
  border: 1px solid rgba(23, 62, 54, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(23, 62, 54, 0.06);
}

.topic-card[hidden] {
  display: none !important;
}

.topic-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.14;
}

.topic-card h3 a {
  text-decoration: none;
}

.topic-card h3 a:hover {
  color: var(--teal);
}

.topic-card > p:not(.card-kicker) {
  display: -webkit-box;
  margin: 0 0 1.25rem;
  overflow: hidden;
  color: var(--ink-soft);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.topic-card .card-link {
  margin-top: auto;
}

.topic-hero {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.topic-hero h1 {
  max-width: 16ch;
}

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

.topic-intro {
  align-items: center;
}

.topic-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: topic-step;
}

.topic-section {
  position: relative;
  min-height: 19rem;
  padding: 4.4rem 1.5rem 1.5rem;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.topic-step {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: rgba(23, 62, 54, 0.18);
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
}

.topic-section h3 {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.18;
}

.topic-section p {
  margin: 0;
  color: var(--ink-soft);
}

.topic-checklist {
  margin: 0;
}

.image-policy-note {
  margin: 0;
  padding: 1rem 1.1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  background: var(--sage-pale);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.related-topics .section-heading {
  align-items: end;
}

.related-card h3 a {
  text-decoration: none;
}

.related-card h3 a:hover {
  color: var(--teal);
}

@media (max-width: 980px) {
  .topic-grid,
  .topic-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .topic-grid,
  .topic-sections {
    grid-template-columns: 1fr;
  }

  .topic-card,
  .topic-section {
    min-height: auto;
  }

  .topic-hero-actions .btn {
    width: 100%;
  }
}
