:root {
  --ink: #10201d;
  --muted: #6e7c78;
  --paper: #ffffff;
  --surface: #f5f3ed;
  --dark: #071614;
  --dark-2: #10231f;
  --green: #94b66d;
  --green-bright: #c9f08f;
  --forest: #31563c;
  --clay: #d49b72;
  --line: rgba(16, 32, 29, 0.12);
  --glass: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 80px rgba(7, 22, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Poppins, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(7, 22, 20, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(16, 32, 29, 0.1);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 118px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
}

.brand span {
  font-size: 0.82rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  opacity: 0.9;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: rgba(16, 32, 29, 0.07);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.showcase-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 88px) 46px;
  color: #ffffff;
  background: var(--dark);
}

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

.showcase-video {
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.showcase-scrim {
  background:
    linear-gradient(90deg, rgba(7, 22, 20, 0.94), rgba(7, 22, 20, 0.72) 46%, rgba(7, 22, 20, 0.26)),
    linear-gradient(0deg, rgba(7, 22, 20, 0.72), rgba(7, 22, 20, 0.05) 62%);
}

.showcase-copy {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 12px;
  color: var(--green-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-copy h1 {
  max-width: 980px;
  margin: 0;
  font-family: Amiri, Georgia, serif;
  font-size: clamp(4rem, 9vw, 8.8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.showcase-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  color: var(--dark);
  background: var(--green-bright);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button.secondary.dark {
  color: var(--forest);
  background: transparent;
  border-color: rgba(49, 86, 60, 0.45);
}

.signal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, 100%);
  margin-top: 56px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.signal-panel div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.signal-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-bright);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-panel strong {
  font-size: 0.95rem;
}

.intro-strip {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: -32px auto 0;
  padding: 22px 26px;
  position: relative;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-strip p {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.intro-strip a {
  color: var(--forest);
  font-weight: 800;
  white-space: nowrap;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  font-family: Amiri, Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.24;
}

p,
li {
  color: var(--muted);
  font-size: 0.98rem;
}

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

.chain-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  background: var(--dark);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7, 22, 20, 0.16);
}

.chain-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 500ms ease, opacity 300ms ease;
}

.chain-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 22, 20, 0.9), rgba(7, 22, 20, 0.08));
}

.chain-card:hover img {
  transform: scale(1.05);
  opacity: 0.76;
}

.chain-card span,
.chain-card h3,
.chain-card p {
  position: relative;
  z-index: 1;
}

.chain-card span {
  color: var(--green-bright);
  font-weight: 800;
}

.chain-card h3 {
  margin-top: 80px;
  font-family: Amiri, Georgia, serif;
  font-size: 2.1rem;
}

.chain-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.impact-band,
.method-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.impact-inner,
.method-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.impact-inner h2,
.impact-inner p,
.method-section h2,
.method-section p {
  color: #ffffff;
}

.impact-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
  gap: 18px;
}

.feature-operation {
  display: grid;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-operation img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.feature-operation div {
  padding: 28px;
}

.feature-operation h3 {
  font-family: Amiri, Georgia, serif;
  font-size: 2.4rem;
}

.feature-operation a {
  color: var(--forest);
  font-weight: 800;
}

.operation-stack {
  display: grid;
  gap: 10px;
}

.operation-row {
  display: grid;
  min-height: 96px;
  align-content: center;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 22, 20, 0.06);
  font-size: 1.18rem;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease;
}

.operation-row:hover {
  transform: translateX(4px);
  border-color: rgba(49, 86, 60, 0.34);
}

.operation-row span {
  color: var(--clay);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.lss-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(280px, 1.12fr);
  gap: 28px;
  margin-top: 18px;
  padding: 30px;
  color: #ffffff;
  background: var(--dark);
  border-radius: 8px;
}

.lss-panel h3 {
  font-family: Amiri, Georgia, serif;
  font-size: 2rem;
}

.lss-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.lss-panel nav {
  display: grid;
  gap: 10px;
}

.lss-panel a {
  padding: 14px 0;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
}

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

.method-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.method-grid span {
  color: var(--green-bright);
  font-weight: 800;
}

.method-grid h3 {
  margin-top: 30px;
}

.method-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-cta div {
  max-width: 760px;
}

.transparency-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.transparency-cta h2,
.transparency-cta p {
  color: #ffffff;
}

.transparency-cta p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.transparency-cta .button {
  white-space: nowrap;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 60px);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 118px;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  z-index: 40;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.page-hero {
  position: relative;
  min-height: 46vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 88px) 54px;
  color: #ffffff;
  background: var(--dark);
}

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

.hero-image,
.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 20, 0.94), rgba(7, 22, 20, 0.66) 55%, rgba(7, 22, 20, 0.24)),
    linear-gradient(0deg, rgba(7, 22, 20, 0.6), rgba(7, 22, 20, 0.03));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.page-hero h1 {
  margin: 0;
  font-family: Amiri, Georgia, serif;
  font-size: clamp(2.35rem, 4.8vw, 4.15rem);
  line-height: 1.02;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
}

.page-intro-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 1px;
  width: min(980px, calc(100% - 40px));
  margin: -26px auto 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-intro-bar div,
.page-intro-bar > a {
  display: grid;
  align-content: center;
  min-height: 82px;
  padding: 16px 22px;
  background: var(--paper);
}

.page-intro-bar span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-intro-bar strong {
  margin-top: 4px;
}

.page-intro-bar > a {
  color: var(--dark);
  background: var(--green-bright);
  font-weight: 800;
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(28px, 5vw, 70px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

.content-prose {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}

.content-section,
.mini-card,
.toc,
.contact-form,
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 22, 20, 0.06);
}

.content-section {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
}

.content-section:nth-child(3n + 2) {
  background: #f1f6ec;
}

.content-section:nth-child(3n + 3) {
  background: #f7f2ec;
}

.content-section--lead,
.content-section--wide {
  grid-column: 1 / -1;
}

.content-section--lead {
  padding: clamp(30px, 5vw, 54px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 22, 20, 0.98), rgba(16, 35, 31, 0.95));
}

.content-section--lead h2,
.content-section--lead p {
  color: #ffffff;
}

.content-section-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.content-section-heading > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--forest);
  background: var(--green-bright);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
}

.content-section h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.content-section p {
  max-width: 76ch;
  margin: 12px 0 0;
  line-height: 1.72;
}

.content-section--lead p {
  color: rgba(255, 255, 255, 0.8);
}

.listish {
  padding-left: 18px;
  border-left: 3px solid var(--green);
}

.side-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  align-self: start;
}

.toc,
.mini-card {
  padding: 20px;
}

.toc {
  display: grid;
  gap: 6px;
}

.toc a {
  padding: 8px 0;
  color: var(--forest);
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 700;
}

.toc a:last-child {
  border-bottom: 0;
}

.mini-card p,
.contact-card p {
  margin: 7px 0 0;
  overflow-wrap: anywhere;
}

.page-contact-card address {
  display: grid;
  gap: 4px;
  margin: 16px 0;
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}

.page-contact-details {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.page-contact-details .contact-detail {
  grid-template-columns: 1fr;
  gap: 2px;
}

.transparency-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
}

.company-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: -26px auto 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.company-facts article {
  display: grid;
  align-content: center;
  min-height: 104px;
  padding: 20px 22px;
  background: var(--paper);
}

.company-facts span {
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-facts strong {
  margin-top: 6px;
  font-size: 0.94rem;
}

.company-report {
  display: grid;
  gap: 18px;
}

.company-report-lead {
  padding: clamp(34px, 6vw, 70px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 22, 20, 0.99), rgba(16, 35, 31, 0.96));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.company-report-lead h2,
.company-report-lead p {
  color: #ffffff;
}

.company-report-lead p:not(.section-kicker) {
  max-width: 84ch;
  color: rgba(255, 255, 255, 0.76);
}

.company-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.company-report-grid article {
  padding: clamp(26px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 22, 20, 0.06);
}

.company-report-grid article:nth-child(3n + 2) {
  background: #f1f6ec;
}

.company-report-grid article:nth-child(3n + 3) {
  background: #f7f2ec;
}

.company-report-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--forest);
  background: var(--green-bright);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
}

.company-report-grid h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.company-report-grid p {
  margin: 12px 0 0;
  line-height: 1.72;
}

.report-list {
  display: grid;
  gap: 12px;
  padding-top: 0;
}

.report-card {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 22, 20, 0.05);
}

.report-card summary {
  display: grid;
  grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
}

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

.report-card summary span {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-card summary strong {
  font-family: Amiri, Georgia, serif;
  font-size: 1.45rem;
}

.report-card[open] summary {
  color: #ffffff;
  background: var(--dark);
}

.report-card[open] summary span {
  color: var(--green-bright);
}

.report-content {
  display: grid;
  gap: 26px;
  padding: 26px;
}

.report-content section {
  max-width: 82ch;
}

.report-content h2 {
  font-size: 1.55rem;
}

.report-content p {
  margin: 10px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.contact-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--green);
}

.contact-card-heading {
  padding: 26px 28px 22px;
  background: rgba(148, 182, 109, 0.1);
  border-bottom: 1px solid var(--line);
}

.contact-card-heading .section-kicker {
  margin-bottom: 8px;
  color: var(--forest);
}

.contact-card h2 {
  font-family: Amiri, Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.08;
}

.contact-block {
  padding: 22px 28px;
}

.contact-block + .contact-block {
  padding-top: 0;
}

.contact-block h3 {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-block address {
  display: grid;
  gap: 3px;
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-detail {
  display: grid;
  grid-template-columns: minmax(100px, 0.38fr) minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.contact-detail span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-detail a {
  color: var(--forest);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-role {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form {
  padding: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfbf8;
  border: 1px solid rgba(16, 32, 29, 0.18);
  border-radius: 8px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.95rem;
}

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

  .operations-layout,
  .impact-inner,
  .method-section,
  .lss-panel,
  .contact,
  .page-shell,
  .transparency-intro,
  .transparency-cta {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .content-prose {
    grid-template-columns: 1fr;
  }

  .content-section--lead,
  .content-section--wide {
    grid-column: auto;
  }

  .contact-directory {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-header {
    border-radius: 24px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 32, 29, 0.1);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .brand span {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, 1180px);
  }

  .brand img {
    width: 100px;
  }

  .showcase-hero {
    min-height: 92svh;
    padding: 118px 18px 34px;
  }

  .showcase-copy h1 {
    font-size: clamp(3.15rem, 18vw, 5.2rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    border-radius: 8px;
  }

  .signal-panel,
  .method-grid,
  .chain-grid,
  .contact-directory {
    grid-template-columns: 1fr;
  }

  .intro-strip,
  .contact-cta,
  .site-footer,
  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .impact-inner,
  .method-section,
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .chain-card {
    min-height: 360px;
  }

  .page-hero {
    min-height: 48vh;
    padding: 112px 20px 48px;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .page-intro-bar {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 980px);
    margin-top: -18px;
  }

  .transparency-cta {
    width: min(100% - 28px, 1180px);
  }

  .company-facts,
  .company-report-grid {
    grid-template-columns: 1fr;
  }

  .company-facts {
    width: min(100% - 28px, 1180px);
    margin-top: -18px;
  }

  .page-intro-bar div,
  .page-intro-bar > a {
    min-height: 70px;
  }

  .content-section,
  .contact-card-heading,
  .contact-block,
  .contact-form {
    padding: 22px;
  }

  .contact-detail {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .report-card summary {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 20px;
  }

  .report-content {
    padding: 20px;
  }
}
