/* ============================================================
   PINES ENERGY GROUP LLC - Industrial Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Barlow:wght@300;400;500;600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ---- CSS Variables ---------------------------------------- */
:root {
  --steel-blue:     #385d90;
  --steel-blue-dk:  #2a4870;
  --steel-blue-lt:  #4a72a8;
  --industrial-red: #933635;
  --red-dk:         #742a29;
  --red-lt:         #b04544;
  --warm-neutral:   #fef7ec;
  --warm-mid:       #f0e6d3;
  --warm-dark:      #d9c9b0;
  --ink:            #171410;
  --charcoal:       #242220;
  --mid-dark:       #333028;
  --mid:            #5a5650;
  --muted:          #8a837a;
  --rule:           rgba(255,255,255,0.08);
  --rule-light:     rgba(0,0,0,0.10);
  --font-display:   'Barlow Condensed', sans-serif;
  --font-body:      'Barlow', sans-serif;
  --font-serif:     'Libre Baskerville', serif;
  --transition:     0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:          1200px;
  --section-pad:    5rem 2rem;
}

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--warm-neutral);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--mid-dark);
}

.text-upper {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---- Utility Classes -------------------------------------- */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: var(--section-pad); }
.on-dark p  { color: rgba(255,255,255,0.78); }
.on-dark    { color: #fff; }

.flex       { display: flex; }
.flex-center{ display: flex; align-items: center; justify-content: center; }
.grid-2     { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.grid-3     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.accent-line {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--industrial-red);
  margin: 1rem 0 1.5rem;
}
.accent-line.blue { background: var(--steel-blue); }
.accent-line.center { margin: 1rem auto 1.5rem; }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--industrial-red);
  color: #fff;
  border-color: var(--industrial-red);
}
.btn-primary:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--warm-neutral);
}

.btn-blue {
  background: var(--steel-blue);
  color: #fff;
  border-color: var(--steel-blue);
}
.btn-blue:hover {
  background: var(--steel-blue-dk);
  border-color: var(--steel-blue-dk);
}

/* ---- Navigation ------------------------------------------- */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--charcoal);
  border-bottom: 3px solid var(--industrial-red);
  transition: box-shadow var(--transition);
}
#site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-blue-lt);
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 0 1.1rem;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: var(--industrial-red);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ink);
  border-top: 2px solid var(--industrial-red);
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  height: auto;
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid var(--rule);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}
.dropdown-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-bottom-color: var(--rule);
}
.dropdown-menu a:last-child { border-bottom: none; }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* ---- Page Header (inner pages) ---------------------------- */
.page-header {
  padding: 9rem 2rem 4rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 80px
  );
}
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow {
  color: var(--steel-blue-lt);
  margin-bottom: 0.75rem;
}
.page-header h1 { color: #fff; max-width: 720px; }
.page-header .subtitle {
  color: rgba(255,255,255,0.62);
  font-size: 1.125rem;
  margin-top: 1.25rem;
  max-width: 600px;
  font-family: var(--font-body);
  font-weight: 300;
}

/* ---- Hero Section ----------------------------------------- */
.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,0.025) 59px,
      rgba(255,255,255,0.025) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,0.025) 59px,
      rgba(255,255,255,0.025) 60px
    );
}

.hero-accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--industrial-red);
}

.hero-side-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--industrial-red);
}
.hero-eyebrow span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--steel-blue-lt);
}

.hero h1 {
  color: #fff;
  max-width: 820px;
  line-height: 1.0;
}
.hero h1 em {
  font-style: normal;
  color: var(--industrial-red);
}

.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 1.75rem 0 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 5rem;
  border-top: 1px solid var(--rule);
  padding-top: 2.5rem;
  max-width: 640px;
}
.hero-stat {
  padding-right: 2.5rem;
  border-right: 1px solid var(--rule);
}
.hero-stat:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 2.5rem;
}
.hero-stat:nth-child(2) { padding-left: 2.5rem; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-top: 0.35rem;
  font-family: var(--font-display);
}

/* ---- Section Labels --------------------------------------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--industrial-red);
}
.section-label span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Pipeline Section ------------------------------------- */
.pipeline-section {
  background: var(--warm-neutral);
  padding: 5rem 2rem;
}

.pipeline-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.pipeline-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 2.5rem;
}
.pipeline-divider .v-line {
  width: 1px;
  height: 60px;
  background: var(--warm-dark);
}
.pipeline-divider .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pipeline-divider .icon svg {
  width: 22px;
  height: 22px;
  fill: var(--warm-neutral);
}

.pipeline-card {
  background: #fff;
  border: 1px solid var(--warm-dark);
  padding: 2.5rem;
  position: relative;
}
.pipeline-card.supply { border-left: 4px solid var(--steel-blue); }
.pipeline-card.demand { border-left: 4px solid var(--industrial-red); }
.pipeline-card .pc-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.pipeline-card h3 { margin-bottom: 1rem; }
.pipeline-card .supply-label { color: var(--steel-blue); }
.pipeline-card .demand-label { color: var(--industrial-red); }
.pipeline-card p { font-size: 0.975rem; margin-bottom: 1.5rem; }
.pipeline-card .feature-list li {
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--warm-dark);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--mid-dark);
}
.pipeline-card .feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--industrial-red);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.pipeline-card.supply .feature-list li::before { background: var(--steel-blue); }
.pipeline-card .feature-list li:last-child { border-bottom: none; }

/* ---- Operations Section ----------------------------------- */
.operations-section {
  background: var(--charcoal);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.operations-section::after {
  content: 'OPERATIONS';
  position: absolute;
  right: -1rem;
  bottom: 1rem;
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  letter-spacing: 0.1em;
  pointer-events: none;
}

.ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ops-content h2 { color: #fff; }
.ops-content p { color: rgba(255,255,255,0.68); margin-bottom: 1.25rem; }

.ops-list { margin-top: 2rem; }
.ops-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.ops-list li:last-child { border-bottom: none; }
.ops-list .ops-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--industrial-red);
  line-height: 1;
  min-width: 2.5rem;
  opacity: 0.7;
}
.ops-list .ops-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ops-list .ops-text span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.52);
}

.ops-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--rule);
}
.ops-tile {
  background: var(--mid-dark);
  padding: 2rem 1.75rem;
  position: relative;
}
.ops-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--steel-blue);
}
.ops-tile.red::before { background: var(--industrial-red); }
.ops-tile .tile-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.ops-tile h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.ops-tile p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ---- Branches Cards --------------------------------------- */
.branches-section {
  background: var(--warm-neutral);
  padding: 5rem 2rem;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--warm-dark);
  margin-top: 3rem;
}

.branch-card {
  background: var(--warm-neutral);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.branch-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
}
.branch-card.biofuel::after { background: var(--industrial-red); }
.branch-card.recycling::after { background: var(--steel-blue); }
.branch-card:hover { background: #fff; }

.branch-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.75rem;
  position: relative;
}
.branch-icon .bi-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  opacity: 0.12;
}
.branch-card.biofuel .branch-icon .bi-bg { background: var(--industrial-red); }
.branch-card.recycling .branch-icon .bi-bg { background: var(--steel-blue); }
.branch-icon svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  margin: 12px;
}

.branch-card h3 { margin-bottom: 0.5rem; }
.branch-card .branch-tag {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.branch-card p { font-size: 0.975rem; margin-bottom: 2rem; }
.branch-card .branch-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--warm-dark);
}
.branch-spec strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.branch-spec span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
}

/* ---- Service Area ----------------------------------------- */
.service-area {
  background: var(--steel-blue);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.service-area::before {
  content: 'TEXAS';
  position: absolute;
  left: -1rem;
  top: -2rem;
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 800;
  color: rgba(0,0,0,0.12);
  letter-spacing: -0.02em;
  pointer-events: none;
}
.service-area .container { position: relative; z-index: 1; }
.service-area h2 { color: #fff; }
.service-area .section-label span { color: rgba(255,255,255,0.5); }
.service-area .section-label::before { background: rgba(255,255,255,0.4); }

.sa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2.5rem;
}

.sa-text p { color: rgba(255,255,255,0.72); margin-bottom: 1.25rem; }

.location-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.location-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.location-item:last-child { border-bottom: none; }
.location-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm-neutral);
  flex-shrink: 0;
}
.location-item strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  display: block;
  line-height: 1;
}
.location-item small {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.48);
  display: block;
  margin-top: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.sa-map {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-graphic { width: 100%; height: 100%; }

/* ---- Credibility Strip ------------------------------------ */
.credibility-strip {
  background: var(--ink);
  padding: 4rem 2rem;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
}
.cred-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.cred-item:last-child { border-right: none; }
.cred-item .cred-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.cred-item .cred-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.cred-item .cred-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
}

/* ---- CTA Section ------------------------------------------ */
.cta-section {
  background: var(--industrial-red);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(0,0,0,0.04) 30px,
    rgba(0,0,0,0.04) 31px
  );
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; max-width: 640px; margin: 0 auto 1.25rem; }
.cta-section p {
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ---- Content Blocks --------------------------------------- */
.content-section { padding: 5rem 2rem; }

.content-2col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.content-2col.reverse { grid-template-columns: 1.2fr 1fr; }

.content-sticky { position: sticky; top: 5rem; }

.info-block {
  background: var(--warm-mid);
  border-left: 4px solid var(--steel-blue);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}
.info-block.red { border-left-color: var(--industrial-red); }
.info-block h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.info-block p { font-size: 0.95rem; }

.spec-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.spec-table tr { border-bottom: 1px solid var(--warm-dark); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 0.875rem 0;
  font-size: 0.95rem;
  vertical-align: top;
}
.spec-table td:first-child {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  width: 35%;
}
.spec-table td:last-child { color: var(--mid-dark); }

/* ---- Benefit Cards ---------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--warm-dark);
  margin: 3rem 0;
}
.benefit-card {
  background: var(--warm-neutral);
  padding: 2.5rem 2rem;
}
.benefit-card .bc-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--warm-dark);
  line-height: 1;
  margin-bottom: 1rem;
}
.benefit-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.benefit-card p { font-size: 0.92rem; }

/* ---- Process Flow ----------------------------------------- */
.process-flow {
  background: var(--charcoal);
  padding: 5rem 2rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.process-step {
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
}
.process-step .step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}
.process-step.active .step-dot {
  background: var(--industrial-red);
  border-color: var(--industrial-red);
  color: #fff;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.48); }

/* ---- Environmental Impact --------------------------------- */
.impact-numbers {
  background: var(--ink);
  padding: 5rem 2rem;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  margin-top: 3rem;
}
.impact-tile {
  background: var(--charcoal);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.impact-tile::after {
  content: attr(data-icon);
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 5rem;
  opacity: 0.06;
  font-family: var(--font-display);
  font-weight: 800;
}
.impact-tile .it-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--steel-blue-lt);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-tile .it-num.red { color: var(--red-lt); }
.impact-tile h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.impact-tile p { font-size: 0.88rem; color: rgba(255,255,255,0.48); }

/* ---- Team / Founder --------------------------------------- */
.founder-section {
  padding: 5rem 2rem;
  background: var(--warm-neutral);
}
.founder-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}
.founder-portrait {
  background: var(--charcoal);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.founder-portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(180deg, var(--mid-dark) 0%, var(--ink) 100%);
}
.founder-portrait-placeholder .fp-initial {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.05em;
}
.founder-portrait .portrait-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--industrial-red);
  padding: 1.25rem 1.75rem;
}
.portrait-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.portrait-badge span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.founder-content h2 { margin-bottom: 0.5rem; }
.founder-content .founder-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.founder-content p { margin-bottom: 1.25rem; }
.founder-content blockquote {
  border-left: 4px solid var(--industrial-red);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: var(--warm-mid);
}
.founder-content blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mid-dark);
  margin-bottom: 0;
}
.founder-principles {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 0;
}

/* ---- Contact Page ----------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info p { font-size: 0.95rem; margin-bottom: 2rem; }

.contact-detail {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--warm-dark);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail:last-of-type { border-bottom: none; }
.cd-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 80px;
  padding-top: 2px;
}
.cd-value { font-size: 0.95rem; color: var(--ink); }

.social-links-contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--warm-dark);
}
.social-links-contact .slc-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.social-row { display: flex; gap: 0.75rem; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--warm-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  transition: var(--transition);
  background: #fff;
}
.social-btn:hover {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.social-btn svg { width: 14px; height: 14px; }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--warm-dark);
  padding: 3rem;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.form-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--warm-dark);
  background: var(--warm-neutral);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--steel-blue);
  background: #fff;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a837a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ---- Footer ----------------------------------------------- */
#site-footer {
  background: var(--ink);
  border-top: 3px solid var(--industrial-red);
  padding: 4rem 2rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
}

.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.footer-brand .logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-blue-lt);
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.42);
  margin-top: 1.25rem;
  line-height: 1.65;
}
.footer-brand .f-location {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-social { display: flex; gap: 0.625rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--industrial-red);
  background: var(--industrial-red);
}
.footer-social svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.6); }
.footer-social a:hover svg { fill: #fff; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  transition: color var(--transition);
  font-family: var(--font-body);
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

.footer-col .fc-contact {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 0.625rem;
  line-height: 1.5;
}
.footer-col .fc-contact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.2rem;
}
.footer-col .fc-contact a { color: rgba(255,255,255,0.55); }
.footer-col .fc-contact a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}
.footer-bottom .fb-right { display: flex; gap: 1.5rem; }
.footer-bottom .fb-right a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-bottom .fb-right a:hover { color: rgba(255,255,255,0.6); }

/* ---- Mobile Nav ------------------------------------------- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--ink);
  z-index: 999;
  flex-direction: column;
  border-top: 1px solid var(--rule);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--rule);
  display: block;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.mobile-nav .mn-section {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.2);
  padding: 0.75rem 2rem 0.25rem;
  border-bottom: none;
  pointer-events: none;
}

/* ---- Breadcrumb ------------------------------------------- */
.breadcrumb {
  background: var(--charcoal);
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb-inner a, .breadcrumb-inner span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.breadcrumb-inner a:hover { color: rgba(255,255,255,0.6); }
.breadcrumb-inner .bc-sep { color: rgba(255,255,255,0.15); font-size: 0.6rem; }
.breadcrumb-inner .bc-current { color: rgba(255,255,255,0.6); }

/* ---- Notification Bar ------------------------------------- */
.notice-bar {
  background: var(--steel-blue);
  padding: 0.625rem 2rem;
  text-align: center;
}
.notice-bar p {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.notice-bar a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.notice-bar a:hover { border-bottom-color: #fff; }

/* ---- About Page Specifics --------------------------------- */
.about-intro {
  background: var(--warm-neutral);
  padding: 5rem 2rem;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro-grid h2 { margin-bottom: 1.5rem; }
.about-intro-grid p { margin-bottom: 1.25rem; }

.about-panel {
  background: var(--charcoal);
  padding: 3rem;
  position: relative;
}
.about-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--industrial-red);
}
.about-panel h3 { color: #fff; margin-bottom: 1.5rem; }
.about-panel-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-panel-list li:last-child { border-bottom: none; }
.about-panel-list li .apl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--industrial-red);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.about-panel-list li span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
}

.mission-section {
  background: var(--charcoal);
  padding: 5rem 2rem;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  margin-top: 3.5rem;
}
.mission-tile {
  background: var(--mid-dark);
  padding: 2.5rem 2rem;
}
.mission-tile .mt-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--industrial-red);
  margin-bottom: 1rem;
}
.mission-tile h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.mission-tile p { font-size: 0.9rem; color: rgba(255,255,255,0.52); }

.structure-section {
  background: var(--warm-neutral);
  padding: 5rem 2rem;
}
.structure-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.structure-diagram {
  max-width: 900px;
  margin: 0 auto;
}
.sd-parent {
  text-align: center;
  margin-bottom: 0;
}
.sd-parent-box {
  display: inline-block;
  background: var(--charcoal);
  color: #fff;
  padding: 1.5rem 3rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 4px solid var(--industrial-red);
  position: relative;
}
.sd-parent-box::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 24px;
  background: var(--warm-dark);
}
.sd-connector {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-top: 24px;
  position: relative;
}
.sd-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 1px;
  background: var(--warm-dark);
}
.sd-branch {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sd-branch-line {
  width: 1px;
  height: 28px;
  background: var(--warm-dark);
}
.sd-branch-box {
  padding: 1.75rem 2rem;
  width: 90%;
  position: relative;
}
.sd-branch-box.bf {
  background: #fff;
  border: 1px solid var(--warm-dark);
  border-top: 4px solid var(--industrial-red);
}
.sd-branch-box.or {
  background: #fff;
  border: 1px solid var(--warm-dark);
  border-top: 4px solid var(--steel-blue);
}
.sd-branch-box h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.sd-branch-box .sdb-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.sd-branch-box p { font-size: 0.88rem; }
.sd-branch-box a { color: var(--steel-blue); }

/* ---- BioFuel Page Specifics ------------------------------- */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
.comparison-table thead tr {
  background: var(--charcoal);
}
.comparison-table thead th {
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: left;
  border-bottom: 2px solid var(--industrial-red);
}
.comparison-table thead th:first-child { color: rgba(255,255,255,0.35); }
.comparison-table tbody tr {
  border-bottom: 1px solid var(--warm-dark);
}
.comparison-table tbody tr:nth-child(even) { background: rgba(0,0,0,0.02); }
.comparison-table tbody td {
  padding: 0.875rem 1.25rem;
  font-size: 0.92rem;
  color: var(--mid-dark);
}
.comparison-table tbody td:first-child {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.comparison-table .good { color: #2d7a2d; font-weight: 600; }
.comparison-table .neutral { color: var(--mid); }

/* ---- Recycling Page Specifics ----------------------------- */
.pickup-process {
  background: var(--warm-neutral);
  padding: 5rem 2rem;
}
.pickup-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--warm-dark);
  margin-top: 3rem;
}
.pickup-step {
  background: var(--warm-neutral);
  padding: 2.5rem 2rem;
  position: relative;
}
.pickup-step .ps-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--warm-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.pickup-step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.pickup-step p { font-size: 0.88rem; color: var(--mid); }

.restaurant-cta {
  background: var(--steel-blue);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.restaurant-cta::before {
  content: 'UCO';
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  font-family: var(--font-display);
  font-size: 16rem;
  font-weight: 800;
  color: rgba(0,0,0,0.08);
  letter-spacing: -0.02em;
  pointer-events: none;
}
.restaurant-cta .container { position: relative; z-index: 1; }
.restaurant-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.restaurant-cta h2 { color: #fff; }
.restaurant-cta p { color: rgba(255,255,255,0.72); margin-top: 0.75rem; }

/* ---- Environmental Page Specifics ------------------------- */
.cycle-section {
  background: var(--charcoal);
  padding: 5rem 2rem;
}
.cycle-diagram {
  max-width: 720px;
  margin: 3rem auto 0;
  position: relative;
}
.cycle-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
}
.cycle-step {
  background: var(--mid-dark);
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
}
.cycle-step .cs-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cycle-step .cs-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--steel-blue-lt);
  fill: none;
}
.cycle-step h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.5rem;
}
.cycle-step p { font-size: 0.83rem; color: rgba(255,255,255,0.45); }
.cycle-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.emissions-section {
  background: var(--warm-neutral);
  padding: 5rem 2rem;
}
.emissions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}
.emissions-bars { }
.emission-bar-item {
  margin-bottom: 1.75rem;
}
.emission-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.emission-bar-label span:first-child {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.emission-bar-label span:last-child {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.emission-bar-track {
  height: 8px;
  background: var(--warm-dark);
  position: relative;
}
.emission-bar-fill {
  height: 100%;
  background: var(--industrial-red);
  transition: width 1s ease;
}
.emission-bar-fill.low { background: #2d7a2d; }

/* ---- Form Success State ----------------------------------- */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; }
.form-success .fs-icon {
  width: 60px;
  height: 60px;
  border: 2px solid #2d7a2d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h4 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; }
.form-success p { font-size: 0.95rem; color: var(--mid); }

/* ---- Responsive ------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-2col { grid-template-columns: 1fr; gap: 3rem; }
  .content-2col.reverse { grid-template-columns: 1fr; }
  .content-sticky { position: static; }
  .founder-layout { grid-template-columns: 280px 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .pickup-steps { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .emissions-grid { grid-template-columns: 1fr; gap: 3rem; }
  .restaurant-cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.6rem); }
  .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; border: none; padding-top: 0; }
  .hero-stat { border: none !important; padding: 0 !important; }

  .pipeline-grid { grid-template-columns: 1fr; }
  .pipeline-divider { display: none; }

  .ops-grid { grid-template-columns: 1fr; }
  .ops-panel { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .sa-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .location-list { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .founder-layout { grid-template-columns: 1fr; }
  .founder-principles { grid-template-columns: 1fr; }
  .founder-portrait { aspect-ratio: 4/3; }
  .hero-eyebrow { margin-bottom: 1rem; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .pickup-steps { grid-template-columns: 1fr; }
  .cycle-steps { grid-template-columns: 1fr; }
  .sd-connector { flex-direction: column; align-items: center; }
  .sd-connector::before { display: none; }
  .sd-branch { width: 100%; }
  .sd-branch-box { width: 100%; }
}

@media (max-width: 480px) {
  .cred-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .social-row { flex-direction: column; }
  .branch-card .branch-specs { grid-template-columns: 1fr; }
}
