:root {
  --green: #67b246;
  --green-dark: #4b9430;
  --green-soft: #edf7e6;
  --green-soft-2: #f8fcf4;
  --text: #20261f;
  --muted: #606c5f;
  --line: rgba(74, 104, 70, 0.14);
  --line-strong: rgba(74, 104, 70, 0.22);
  --surface: #ffffff;
  --surface-soft: #fbfdf9;
  --shadow: 0 16px 42px rgba(27, 40, 24, 0.08);
  --shadow-strong: 0 26px 60px rgba(27, 40, 24, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--green-soft-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid rgba(103, 178, 70, 0.2);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Barlow Condensed", "IBM Plex Sans", sans-serif;
  color: #1f2a1d;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.15;
}

p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 60ch;
  justify-self: end;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand img {
  width: 190px;
  height: auto;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 700;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #3f4d3e;
}

.nav-item {
  position: relative;
}

.nav-item > a,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 8px 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.nav-item:hover > a,
.nav-item:hover > button,
.nav-item.current > a,
.nav-item.current > button {
  color: var(--green-dark);
}

section[id] {
  scroll-margin-top: 108px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu,
.nav-item.open .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}

.submenu a:hover,
.submenu a.current {
  background: var(--green-soft);
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: white;
  box-shadow: 0 10px 28px rgba(103, 178, 70, 0.22);
}

.hero {
  padding: 36px 0 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcf4 100%);
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #204b22 0%, #2d6a2d 58%, #4b9430 100%);
  box-shadow: var(--shadow-strong);
}

.hero-shell .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  color: #eff8ea;
}

.hero-shell .eyebrow::before {
  background: #ffffff;
}

.hero-shell h1 {
  color: #ffffff;
}

.hero-copy p {
  max-width: 62ch;
  margin-top: 18px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-note {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.hero-media {
  display: grid;
  gap: 14px;
}

.hero-image {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 48px rgba(15, 32, 15, 0.28);
  background: white;
}

.hero-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.hero .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.section.compact-top {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.compact {
  padding-top: 0;
  padding-bottom: 40px;
}

.metric {
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(103, 178, 70, 0.12);
  background: var(--surface-soft);
}

.metric strong {
  display: block;
  font-size: 1.28rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: 56px 0 36px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcf4 100%);
}

.page-hero-shell {
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(103, 178, 70, 0.14);
  background: white;
  box-shadow: var(--shadow);
}

.page-hero p {
  margin-top: 16px;
  max-width: 64ch;
  font-size: 1.04rem;
}

.logo-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(103, 178, 70, 0.12);
  background: white;
  box-shadow: var(--shadow);
}

.logo-panel h3 {
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.logo-strip,
.logo-single,
.pellet-grid,
.about-grid,
.about-overview,
.cta-banner,
.plant-layout,
.contact-layout {
  display: grid;
  gap: 28px;
}

.logo-strip {
  grid-template-columns: repeat(5, 1fr);
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: white;
}

.logo-card img {
  max-height: 58px;
  width: auto;
  object-fit: contain;
}

.logo-single {
  grid-template-columns: repeat(5, 1fr);
}

.logo-single .logo-card {
  min-height: 120px;
  grid-column: 3;
}

.logo-single .logo-card img {
  max-height: 58px;
}

.logo-meta {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: -4px;
}

.pellet-grid,
.about-grid,
.about-overview,
.cta-banner,
.plant-layout,
.contact-layout {
  grid-template-columns: 1fr 1fr;
}

.about-overview {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  align-items: start;
  gap: 12px;
}

.about-overview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: start;
  max-width: 535px;
  padding: 12px;
}

.about-overview-image img {
  display: block;
  width: min(100%, 440px);
  height: auto;
  margin: -86px 0 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.company-overview-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.company-overview-section .section-head {
  margin-bottom: 34px;
}

.business-milestones-section {
  background: linear-gradient(180deg, #f3f1ea 0%, #eeece3 100%);
}

.card,
.spec-card,
.feature-card,
.step,
.material-card,
.product-card,
.market-card,
.stat-card,
.chart-card,
.video-embed-card,
.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(103, 178, 70, 0.12);
  background: white;
  box-shadow: var(--shadow);
}

.card,
.video-embed-card,
.contact-card {
  padding: 28px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
  background: #0f2f1f;
  aspect-ratio: 16 / 9;
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.page-embed-frame {
  aspect-ratio: 16 / 10;
}

.bullet-list,
.contact-list,
.spec-list {
  display: grid;
  gap: 12px;
}

.bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #3f4d3e;
}

.bullet::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 8px;
  flex: 0 0 auto;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.spec-card {
  padding: 20px;
}

.pellet-product-image {
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  min-height: 100%;
  border: 1px solid rgba(103, 178, 70, 0.12);
  background: #f7fbf3;
}

.pellet-product-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: contain;
  display: block;
}

.pellet-image-card {
  padding: 0;
  overflow: hidden;
}

.spec-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.spec-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-banner {
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(103, 178, 70, 0.16);
  background: linear-gradient(135deg, #f8fcf4 0%, #edf7e6 100%);
  box-shadow: var(--shadow);
  align-items: center;
  margin-top: 26px;
}

.cta-banner p {
  max-width: 54ch;
  margin-top: 10px;
}

.story-grid,
.feature-grid,
.gallery-grid,
.materials-grid,
.products-grid,
.market-grid,
.stats-grid,
.charts-grid,
.choose-grid {
  display: grid;
  gap: 18px;
}

.story-grid,
.feature-grid,
.market-grid,
.choose-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid,
.materials-grid,
.products-grid,
.charts-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.charts-grid,
.gallery-grid {
  margin-top: 22px;
}

.feature-card,
.step,
.market-card,
.stat-card,
.chart-card,
.choose-card {
  padding: 24px;
}

.choose-section {
  padding-top: 54px;
}

.choose-head {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.choose-head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.choose-head p {
  margin-top: 12px;
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}

.choose-card {
  border-radius: 22px;
  border: 1px solid rgba(103, 178, 70, 0.12);
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.choose-card img {
  width: 53px;
  height: 53px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.choose-card h3 {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.choose-card p {
  margin-top: 12px;
  color: #4a5449;
  font-size: 0.95rem;
  line-height: 1.6;
}

.milestones-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.milestones-grid .feature-card {
  position: relative;
}

.milestones-grid .feature-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  left: calc(100% + 8px);
  width: 18px;
  border-top: 2px dotted rgba(103, 178, 70, 0.42);
}

.feature-no,
.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.milestones-grid .feature-no {
  white-space: nowrap;
  width: auto;
  min-width: 44px;
  padding: 0 14px;
}

.plant-main,
.gallery-item,
.material-card,
.product-card,
.market-card,
.chart-card {
  overflow: hidden;
}

.plant-main img,
.gallery-item img {
  width: 100%;
  object-fit: cover;
}

.plant-main {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  background: white;
}

.plant-main img {
  height: 470px;
}

.plant-section .section-head {
  margin-bottom: 16px;
  align-items: start;
}

.page-hero + .plant-section {
  padding-top: 40px;
}

.plant-section .section-head p {
  justify-self: start;
  max-width: 52ch;
}

.plant-section .plant-layout {
  align-items: start;
  gap: 16px;
}

.plant-section .card {
  padding: 20px;
}

.plant-section .gallery-grid {
  margin-top: 14px;
}

.gallery-item,
.material-card,
.product-card,
.market-card {
  border-radius: 20px;
  border: 1px solid rgba(103, 178, 70, 0.22);
  background: white;
  box-shadow: var(--shadow);
}

.gallery-item img,
.material-card img,
.product-card img,
.market-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.product-card--specs img {
  object-fit: contain;
  background: #ffffff;
}

.gallery-caption,
.card-body {
  padding: 18px 18px 20px;
}

.gallery-caption {
  color: #465446;
  font-weight: 700;
  font-size: 0.92rem;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.process-visual {
  margin-bottom: 24px;
  padding: 18px;
}

#process .section-head {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

#process .section-head p,
#materials .section-head p,
#products .section-head p {
  margin-top: 16px;
  justify-self: start;
  max-width: 66ch;
}

#materials .section-head,
#products .section-head {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.process-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 8px);
}

.market-section-head {
  margin-bottom: 28px;
}

.market-section-head p {
  margin-top: 14px;
  max-width: 68ch;
}

.market-opportunity-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.market-opportunity-grid > * {
  height: 100%;
}

.market-policy-card p + p {
  margin-top: 14px;
}

.market-policy-card strong {
  color: #2d4c23;
}

.market-summary-card {
  display: flex;
  flex-direction: column;
}

.market-card-source {
  margin-top: 14px;
  color: #667161;
  font-size: 0.9rem;
  font-weight: 600;
}

.market-trend-card {
  margin-top: 22px;
  margin-bottom: 18px;
  overflow: hidden;
}

.market-trend-copy {
  padding-bottom: 8px;
}

.market-trend-copy h3 {
  margin-bottom: 8px;
}

.market-trend-visual {
  padding: 0 18px 22px;
}

.market-trend-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.market-trend-source {
  padding: 0 24px 22px;
  color: #667161;
  font-size: 0.9rem;
  font-weight: 600;
}

.market-axis {
  stroke: rgba(31, 42, 29, 0.72);
  stroke-width: 2;
}

.market-gridline {
  stroke: rgba(103, 178, 70, 0.14);
  stroke-width: 1;
}

.market-line-shadow {
  fill: none;
  stroke: rgba(75, 148, 48, 0.14);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market-line {
  fill: none;
  stroke: #4b9430;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market-point {
  fill: #67b246;
  stroke: #ffffff;
  stroke-width: 4;
}

.market-value {
  fill: #2d4c23;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.market-axis-title,
.market-axis-caption,
.market-tick {
  fill: #4b5648;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.market-label {
  fill: #4b5648;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.market-stats-grid {
  margin-top: 0;
  margin-bottom: 22px;
}

.market-stat-card {
  padding: 24px 20px;
  text-align: center;
}

.market-stat-card h3 {
  font-size: 1.95rem;
}

.market-stat-card p {
  margin-top: 10px;
  color: #4b5648;
  font-weight: 600;
}

.market-summary-card h3 {
  margin-bottom: 12px;
}

.market-summary-card .bullet-list {
  margin-top: 18px;
}

.market-signal-grid,
.market-position-grid {
  display: grid;
  gap: 18px;
}

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

.market-position-grid {
  grid-template-columns: 1fr 1.05fr;
  align-items: start;
}

.market-position-copy {
  display: grid;
  gap: 18px;
}

.market-cta-banner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 18px;
}

.market-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.market-partner-section {
  background:
    linear-gradient(180deg, #f3f1ea 0%, #eeece3 100%);
}

.market-partner-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.market-partner-head p {
  margin-top: 14px;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.market-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.market-partner-card {
  min-height: 230px;
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  padding: 34px 24px 30px;
  background: rgba(255, 255, 255, 0.94);
}

.market-partner-card h3 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  color: #14925f;
  line-height: 0.95;
}

.market-partner-card p {
  margin-top: 18px;
  max-width: 18ch;
  font-size: 1.02rem;
  font-weight: 700;
  color: #324360;
  line-height: 1.35;
}

.step p {
  font-size: 0.92rem;
}

.tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--green-dark);
}

.home-stat-card {
  text-align: center;
  padding: 28px 24px;
}

.stats-grid:has(.home-stat-card) {
  grid-template-columns: repeat(3, minmax(220px, 280px));
  justify-content: center;
}

.home-stat-card p {
  margin-top: 10px;
  color: #493e37;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.chart-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: white;
  border-bottom: 1px solid var(--line);
}

.themed-market-chart {
  height: 300px;
  border-bottom: 1px solid var(--line);
}

.themed-market-chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.regional-biomass-chart {
  position: relative;
  width: min(100%, 236px);
  height: 300px;
  margin: 0 auto;
}

.regional-biomass-chart img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
  border-bottom: 1px solid var(--line);
}

.regional-biomass-highlight {
  position: absolute;
  left: 6.8%;
  top: 37.1%;
  width: 86.8%;
  height: 2.45%;
  border-radius: 999px;
  background: rgba(151, 214, 134, 0.32);
  border: 2px solid rgba(103, 178, 70, 0.9);
  box-shadow: 0 0 0 3px rgba(151, 214, 134, 0.14);
  pointer-events: none;
}

.burn-kicker {
  fill: #6d7c68;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.burn-title {
  fill: #26401f;
  font-family: "Barlow Condensed", "IBM Plex Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.burn-subtitle,
.burn-footnote,
.burn-legend-label {
  fill: #5d6a59;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.burn-axis {
  stroke: rgba(31, 42, 29, 0.68);
  stroke-width: 2;
}

.burn-grid {
  stroke: rgba(103, 178, 70, 0.16);
  stroke-width: 1;
}

.burn-tick,
.burn-label {
  fill: #4a5647;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.burn-2020,
.burn-2020-dot {
  fill: #8cbf63;
}

.burn-2021,
.burn-2021-dot {
  fill: #4b9430;
}

.burn-2022,
.burn-2022-dot {
  fill: #2a5a21;
}

.burn-table-bg {
  fill: rgba(255, 255, 255, 0.88);
  stroke: rgba(103, 178, 70, 0.16);
  stroke-width: 1.25;
}

.burn-table-line {
  stroke: rgba(103, 178, 70, 0.14);
  stroke-width: 1;
}

.burn-table-month,
.burn-table-value,
.burn-row-label {
  fill: #445341;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.image-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.image-lightbox-trigger img {
  transition: transform 180ms ease;
}

.image-lightbox-trigger:hover img {
  transform: scale(1.02);
}

.image-lightbox-trigger:hover .regional-biomass-chart img {
  transform: scale(1.02);
}

.image-lightbox-trigger:focus-visible {
  outline: 3px solid rgba(103, 178, 70, 0.4);
  outline-offset: -3px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(17, 24, 16, 0.82);
  z-index: 1200;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox__content .regional-biomass-chart {
  width: min(90vw, 620px);
  height: auto;
  aspect-ratio: 694 / 883;
}

.image-lightbox__content .regional-biomass-chart img {
  width: 100%;
  height: 100%;
  border-bottom: 0;
}

.image-lightbox__inner {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 56px);
}

.image-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 56px);
  object-fit: contain;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.image-lightbox__content {
  width: 100%;
  max-height: calc(100vh - 56px);
  overflow: auto;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.image-lightbox__content .themed-market-chart {
  height: auto;
  min-height: 420px;
  border-bottom: 0;
}

.image-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 38, 31, 0.88);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.chart-card .card-body {
  padding-top: 16px;
}

.contact-card h3 {
  margin-bottom: 18px;
}

.contact-item {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(103, 178, 70, 0.12);
  background: var(--green-soft-2);
}

.contact-item small {
  display: block;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: white;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(103, 178, 70, 0.48);
  box-shadow: 0 0 0 4px rgba(103, 178, 70, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: white;
  box-shadow: 0 10px 28px rgba(103, 178, 70, 0.22);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border-color: var(--line-strong);
}

footer {
  padding: 30px 0 44px;
  background: #f5faef;
  border-top: 1px solid rgba(103, 178, 70, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 14px;
}

.footer-title {
  font-weight: 800;
  color: #2a3428;
  margin-bottom: 10px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-base {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(103, 178, 70, 0.14);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .metrics,
  .logo-strip,
  .spec-grid,
  .story-grid,
  .feature-grid,
  .choose-grid,
  .gallery-grid,
  .materials-grid,
  .products-grid,
  .market-grid,
  .stats-grid,
  .charts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .milestones-grid .feature-card:nth-child(2)::after {
    display: none;
  }

  .logo-single {
    grid-template-columns: repeat(5, 1fr);
  }

  .logo-single .logo-card {
    grid-column: 2 / 5;
  }

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

  .market-opportunity-grid,
  .market-position-grid {
    grid-template-columns: 1fr 1fr;
  }

  .market-opportunity-grid .market-summary-card {
    grid-column: 1 / -1;
  }

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

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 16px 20px;
    background: white;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open .nav-links {
    display: flex;
  }

  .nav-item:hover .submenu {
    opacity: 0;
    pointer-events: none;
  }

  .submenu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 6px 0 0 16px;
    display: none;
    background: transparent;
  }

  .nav-item.open .submenu {
    display: grid;
  }

  .hero-shell,
  .section-head,
  .pellet-grid,
  .about-grid,
  .about-overview,
  .cta-banner,
  .market-position-grid,
  .plant-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head p {
    justify-self: start;
  }

  .market-signal-grid,
  .market-opportunity-grid,
  .market-cta-banner {
    grid-template-columns: 1fr;
  }

  .market-cta-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 680px) {
  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-shell,
  .page-hero-shell,
  .logo-panel,
  .card,
  .feature-card,
  .step,
  .spec-card,
  .stat-card,
  .chart-card,
  .contact-card,
  .cta-banner {
    padding: 22px;
  }

  .hero-image img,
  .plant-main img {
    height: 320px;
  }

  .metrics,
  .logo-strip,
  .spec-grid,
  .story-grid,
  .feature-grid,
  .choose-grid,
  .gallery-grid,
  .step-grid,
  .materials-grid,
  .products-grid,
  .market-grid,
  .stats-grid,
  .charts-grid,
  .market-signal-grid,
  .market-opportunity-grid,
  .market-partner-grid {
    grid-template-columns: 1fr;
  }

  .milestones-grid .feature-card::after {
    display: none;
  }

  .brand img {
    width: 160px;
  }

  .logo-single {
    grid-template-columns: 1fr;
  }

  .logo-single .logo-card {
    grid-column: auto;
  }

  .founder-inline {
    grid-template-columns: 1fr !important;
  }
}
