/* =========================================================
   RECYCLING SURPLUS — SHARED STYLES
   ========================================================= */

:root {
  --forest: #0E2A24; --forest-deep: #071814; --forest-soft: #1A3A33;
  --moss: #2F5D52;
  /* Brand accent — refined green that bridges to the ABM System logo green */
  --copper: #2E8B40; --copper-bright: #3DAE45;
  /* Brand secondary — refined blue from logo, used sparingly */
  --brand-blue: #1F5BA3;
  --cream: #F5F1EA; --cream-warm: #EDE6D8; --parchment: #F9F5EE;
  --charcoal: #1A1A1A; --ink: #0D1F1B;
  --rule: rgba(14, 42, 36, 0.12);
  --rule-light: rgba(245, 241, 234, 0.18);
  --display-font: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono-font: 'JetBrains Mono', 'Courier New', monospace;
}

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  color: var(--ink); background: var(--parchment);
  line-height: 1.55; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
img, svg { max-width: 100%; display: block; }

/* CONTAINER */
.container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 2rem; }

/* UTILITY BAR */
.utility-bar {
  background: var(--forest-deep); color: var(--cream);
  font-size: 0.78rem; letter-spacing: 0.04em;
  padding: 0.6rem 0; border-bottom: 1px solid var(--rule-light);
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.utility-bar a { color: var(--cream); text-decoration: none; opacity: 0.8; transition: opacity 0.2s; }
.utility-bar a:hover { opacity: 1; color: var(--copper-bright); }
.utility-bar .left, .utility-bar .right { display: flex; gap: 1.5rem; align-items: center; }
.utility-bar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); display: inline-block; margin-right: 0.5rem; }

/* NAV */
nav.main {
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(249, 245, 238, 0.94);
}
nav.main .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.1rem; padding-bottom: 1.1rem;
}
.logo {
  font-family: var(--display-font); font-weight: 600;
  font-size: 1.35rem; color: var(--forest);
  text-decoration: none; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 0.7rem;
}
.logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.logo-img {
  height: 78px; width: auto; flex-shrink: 0;
  display: block;
}
.footer-brand .logo-img {
  /* Scale by width so it never gets horizontally squished in the narrow footer column.
     Height auto preserves aspect ratio. Max-width caps it at natural size for 100px tall. */
  height: auto;
  width: 100%;
  max-width: 360px;
}
@media (max-width: 768px) {
  .logo-img { height: 56px; }
  .footer-brand .logo-img { max-width: 280px; }
}
.logo span.tag {
  font-family: var(--mono-font); font-size: 0.62rem;
  color: var(--copper); letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; border-left: 1px solid var(--rule); padding-left: 0.7rem;
  margin-left: 0.3rem;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links li { position: relative; }
.nav-links a {
  color: var(--ink); text-decoration: none;
  font-size: 0.92rem; font-weight: 500;
  padding: 0.3rem 0; transition: color 0.2s; display: inline-block;
}
.nav-links a:hover, .nav-links a.active { color: var(--copper); }
.nav-links a.has-sub::after { content: ' ▾'; font-size: 0.7rem; opacity: 0.5; }
.submenu {
  position: absolute; top: 100%; left: -1rem;
  background: var(--parchment); border: 1px solid var(--rule);
  border-radius: 4px; padding: 0.7rem 0;
  min-width: 280px; list-style: none;
  box-shadow: 0 18px 40px rgba(14, 42, 36, 0.1);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}
.nav-links li:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: 0.65rem 1.3rem; font-size: 0.9rem; color: var(--ink); transition: background 0.15s, color 0.15s; }
.submenu a:hover { background: var(--cream-warm); color: var(--copper); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.6rem; border-radius: 999px;
  font-family: var(--body-font); font-weight: 500;
  font-size: 0.9rem; letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s ease; border: none;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--copper); transform: translateY(-1px); box-shadow: 0 10px 30px rgba(46, 139, 64, 0.3); }
.btn-outline { background: transparent; color: var(--forest); border: 1px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--forest); }
.btn-cream:hover { background: var(--copper); color: var(--cream); }
.btn-copper { background: var(--copper); color: var(--cream); }
.btn-copper:hover { background: var(--copper-bright); transform: translateY(-1px); box-shadow: 0 10px 30px rgba(46, 139, 64, 0.4); }
.btn .arrow { width: 18px; height: 1px; background: currentColor; position: relative; transition: width 0.25s; }
.btn .arrow::after {
  content: ''; position: absolute; right: 0; top: 50%;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arrow { width: 24px; }

/* PAGE HERO (smaller than homepage hero) */
.page-hero {
  background: var(--forest); color: var(--cream);
  padding: 5rem 0 5.5rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at top right, rgba(46, 139, 64, 0.18), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(47, 93, 82, 0.4), transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245, 241, 234, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 234, 0.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  font-family: var(--mono-font);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper-bright); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.page-hero .breadcrumb a { color: rgba(245, 241, 234, 0.6); text-decoration: none; transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--copper-bright); }
.page-hero .breadcrumb .sep { color: rgba(245, 241, 234, 0.3); }
.page-hero h1 {
  font-family: var(--display-font); font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 1.5rem; max-width: 900px;
}
.page-hero h1 em { font-style: italic; color: var(--copper-bright); }
.page-hero p.lede {
  font-size: 1.15rem; color: rgba(245, 241, 234, 0.75);
  max-width: 620px; line-height: 1.6;
}
.page-hero .hero-stats {
  display: flex; gap: 3rem; margin-top: 3rem;
  padding-top: 2.5rem; border-top: 1px solid var(--rule-light);
  flex-wrap: wrap;
}
.page-hero .hero-stat .label {
  font-family: var(--mono-font);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper-bright); margin-bottom: 0.4rem;
}
.page-hero .hero-stat .value {
  font-family: var(--display-font);
  font-size: 1.6rem; color: var(--cream); font-weight: 400;
  letter-spacing: -0.02em;
}

/* SECTION BASE */
section { padding: 6rem 0; position: relative; }
.section-eyebrow {
  font-family: var(--mono-font);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-eyebrow .line { width: 30px; height: 1px; background: var(--copper); }
h2.section-title {
  font-family: var(--display-font); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--forest); max-width: 800px;
}
h2.section-title em { font-style: italic; color: var(--copper); }
h3.subsection-title {
  font-family: var(--display-font); font-weight: 400;
  font-size: 1.6rem; line-height: 1.2;
  color: var(--forest); letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* TWO-COLUMN LAYOUT */
.two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }
.two-col-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.two-col-reverse { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }

/* CONTENT BLOCKS */
.content-block p {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(13, 31, 27, 0.78); margin-bottom: 1.5rem;
}
.content-block p.lead {
  font-family: var(--display-font);
  font-size: 1.4rem; line-height: 1.5;
  color: var(--forest); font-weight: 400;
  margin: 2rem 0; font-style: italic;
}

/* PROCESS STEPS */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 4rem;
  border-top: 1px solid var(--rule);
}
.process-step {
  padding: 2.5rem 1.5rem 1rem 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step .step-num {
  font-family: var(--display-font);
  font-size: 3rem; font-weight: 300;
  color: var(--copper); line-height: 1;
  margin-bottom: 1rem; letter-spacing: -0.04em;
}
.process-step h4 {
  font-family: var(--display-font); font-weight: 500;
  font-size: 1.1rem; color: var(--forest);
  margin-bottom: 0.6rem; letter-spacing: -0.01em;
}
.process-step p {
  font-size: 0.92rem; color: rgba(13, 31, 27, 0.65);
  line-height: 1.6;
}

/* PROCESS LIST (vertical with checkmarks) */
.process-list { list-style: none; margin: 1.5rem 0; }
.process-list li {
  display: grid; grid-template-columns: 30px 1fr;
  gap: 1rem; margin-bottom: 1.2rem;
  align-items: start;
}
.process-list li::before {
  content: ''; width: 18px; height: 18px;
  border: 1.5px solid var(--copper); border-radius: 50%;
  margin-top: 4px; position: relative;
  background: var(--parchment);
}
.process-list li.checked::before {
  background: var(--copper); border-color: var(--copper);
}
.process-list li.checked::after {
  content: ''; position: absolute;
  width: 8px; height: 4px;
  border-left: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(-45deg);
  margin-left: 5px; margin-top: 9px;
}
.process-list li > div strong { display: block; color: var(--forest); margin-bottom: 0.2rem; font-weight: 600; }
.process-list li > div p { font-size: 0.95rem; color: rgba(13, 31, 27, 0.7); margin: 0; }

/* FEATURE GRID */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 3rem;
  border-top: 1px solid var(--rule-light);
  border-left: 1px solid var(--rule-light);
}
.feature-card {
  border-right: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  padding: 2.5rem;
  background: var(--forest); color: var(--cream);
  transition: background 0.3s ease;
}
.feature-card:hover { background: var(--forest-soft); }
.feature-card .icon {
  width: 42px; height: 42px; color: var(--copper-bright);
  margin-bottom: 1.5rem;
}
.feature-card h4 {
  font-family: var(--display-font);
  font-size: 1.3rem; font-weight: 400;
  margin-bottom: 0.7rem; color: var(--cream);
  letter-spacing: -0.02em;
}
.feature-card p { color: rgba(245, 241, 234, 0.7); font-size: 0.95rem; line-height: 1.6; }

/* FEATURE GRID (LIGHT) */
.feature-grid-light {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.feature-card-light {
  background: var(--parchment); border: 1px solid var(--rule);
  border-radius: 4px; padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card-light:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(14, 42, 36, 0.08); }
.feature-card-light .icon {
  width: 36px; height: 36px; color: var(--copper); margin-bottom: 1rem;
}
.feature-card-light h4 {
  font-family: var(--display-font);
  font-size: 1.2rem; font-weight: 500;
  margin-bottom: 0.6rem; color: var(--forest); letter-spacing: -0.01em;
}
.feature-card-light p { color: rgba(13, 31, 27, 0.7); font-size: 0.95rem; line-height: 1.6; }

/* COMPLIANCE BANNER */
.compliance-banner {
  background: var(--cream-warm);
  padding: 3rem; border-left: 4px solid var(--copper);
  border-radius: 4px; margin: 3rem 0;
}
.compliance-banner .label {
  font-family: var(--mono-font);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 0.8rem;
}
.compliance-banner h3 {
  font-family: var(--display-font);
  font-size: 1.7rem; font-weight: 400;
  color: var(--forest); margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.compliance-banner p {
  font-size: 1rem; color: rgba(13, 31, 27, 0.75);
  line-height: 1.7; margin-bottom: 0;
}

/* FORMS */
.form-card {
  background: var(--parchment);
  border: 1px solid var(--rule);
  padding: 3rem; border-radius: 4px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--mono-font);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--moss); font-weight: 500;
}
.form-field label .req { color: var(--copper); margin-left: 0.2rem; }
.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--cream);
  font-family: var(--body-font);
  font-size: 0.95rem; color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none; border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(46, 139, 64, 0.12);
}
.form-field textarea { min-height: 130px; resize: vertical; font-family: var(--body-font); }
.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230E2A24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.7rem center; padding-right: 2.5rem; }
.form-helper { font-size: 0.82rem; color: rgba(13, 31, 27, 0.55); }
.form-submit {
  margin-top: 1rem;
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.form-submit .privacy-note {
  font-size: 0.82rem; color: rgba(13, 31, 27, 0.55);
}

/* CONTACT CARD GRID */
.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.contact-card {
  background: var(--parchment); border: 1px solid var(--rule);
  border-radius: 4px; padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--copper); }
.contact-card .icon {
  width: 32px; height: 32px; color: var(--copper); margin-bottom: 1rem;
}
.contact-card .label {
  font-family: var(--mono-font);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 0.7rem;
}
.contact-card .value {
  font-family: var(--display-font);
  font-size: 1.15rem; color: var(--forest); font-weight: 500;
  line-height: 1.4; letter-spacing: -0.01em; margin-bottom: 0.4rem;
}
.contact-card .desc {
  font-size: 0.88rem; color: rgba(13, 31, 27, 0.6);
  margin-top: auto; padding-top: 0.5rem;
}

/* FAQ */
.faq-list { margin-top: 3rem; }
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 1.6rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; font-family: var(--display-font);
  font-size: 1.2rem; color: var(--forest); font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--display-font);
  font-size: 1.6rem; color: var(--copper);
  font-weight: 300; transition: transform 0.3s ease;
  flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  margin-top: 1rem; padding-right: 3rem;
  color: rgba(13, 31, 27, 0.75);
  font-size: 1rem; line-height: 1.7;
}

/* RELATED SERVICES */
.related-services {
  background: var(--cream-warm);
  padding: 5rem 0;
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.related-card {
  background: var(--parchment); border: 1px solid var(--rule);
  padding: 2rem; border-radius: 4px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(14, 42, 36, 0.08); }
.related-card .num {
  font-family: var(--mono-font);
  font-size: 0.7rem; letter-spacing: 0.18em;
  color: var(--copper); margin-bottom: 0.8rem;
}
.related-card h4 {
  font-family: var(--display-font); font-weight: 500;
  font-size: 1.3rem; color: var(--forest);
  margin-bottom: 0.6rem; letter-spacing: -0.02em;
}
.related-card p { font-size: 0.92rem; color: rgba(13, 31, 27, 0.65); line-height: 1.6; flex-grow: 1; }
.related-card .learn {
  margin-top: 1.2rem; font-size: 0.78rem;
  font-family: var(--mono-font);
  letter-spacing: 0.15em; color: var(--copper);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: gap 0.25s ease;
}
.related-card .learn::after { content: '→'; }
.related-card:hover .learn { gap: 0.9rem; }

/* CTA SECTION */
.cta { background: var(--forest-deep); color: var(--cream); position: relative; overflow: hidden; }
.cta::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(46, 139, 64, 0.18), transparent 60%);
  pointer-events: none;
}
.cta .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 4rem; align-items: center;
}
.cta h2 {
  font-family: var(--display-font); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--cream); margin-bottom: 1.5rem;
}
.cta h2 em { font-style: italic; color: var(--copper-bright); }
.cta p { color: rgba(245, 241, 234, 0.7); font-size: 1.05rem; line-height: 1.6; max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.cta-phone { font-family: var(--mono-font); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper-bright); margin-bottom: 0.4rem; }
.cta-number {
  font-family: var(--display-font); font-size: 2.2rem;
  color: var(--cream); font-weight: 400; text-decoration: none;
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 1.5rem; display: block;
  transition: color 0.2s;
}
.cta-number:hover { color: var(--copper-bright); }

/* FOOTER */
footer { background: var(--charcoal); color: var(--cream); padding: 5rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-light);
}
.footer-brand .logo { color: var(--cream); margin-bottom: 1.2rem; }
.footer-brand p { color: rgba(245, 241, 234, 0.6); font-size: 0.92rem; line-height: 1.6; max-width: 320px; }
.footer-col h4 {
  font-family: var(--mono-font);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper-bright); margin-bottom: 1.5rem; font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a, .footer-col p {
  color: rgba(245, 241, 234, 0.7); text-decoration: none;
  font-size: 0.92rem; line-height: 1.6; transition: color 0.2s;
}
.footer-col a:hover { color: var(--copper-bright); }
.footer-col .phone-list a { display: block; }
.footer-bottom {
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p {
  font-family: var(--mono-font);
  font-size: 0.75rem; color: rgba(245, 241, 234, 0.5); letter-spacing: 0.05em;
}
.footer-socials { display: flex; gap: 0.8rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--rule-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); text-decoration: none; transition: all 0.25s;
}
.footer-socials a:hover { background: var(--copper); border-color: var(--copper); }

/* INFO PANEL (sidebar) */
.info-panel {
  background: var(--forest); color: var(--cream);
  padding: 2.5rem; border-radius: 4px;
  position: relative; overflow: hidden;
}
.info-panel::before {
  content: ''; position: absolute;
  top: -30%; right: -30%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(46, 139, 64, 0.2), transparent 60%);
  pointer-events: none;
}
.info-panel > * { position: relative; z-index: 1; }
.info-panel .panel-eyebrow {
  font-family: var(--mono-font);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper-bright); margin-bottom: 1rem;
}
.info-panel h3 {
  font-family: var(--display-font);
  font-size: 1.5rem; font-weight: 400;
  color: var(--cream); margin-bottom: 1.2rem;
  letter-spacing: -0.02em; line-height: 1.2;
}
.info-panel .info-list { list-style: none; }
.info-panel .info-list li {
  padding: 1rem 0; border-bottom: 1px solid var(--rule-light);
  display: flex; align-items: flex-start; gap: 1rem;
}
.info-panel .info-list li:last-child { border-bottom: none; }
.info-panel .info-list .label {
  font-family: var(--mono-font); font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--copper-bright); margin-bottom: 0.3rem; display: block;
}
.info-panel .info-list .value { color: var(--cream); font-size: 0.98rem; line-height: 1.4; }
.info-panel .info-list a { color: var(--cream); text-decoration: none; transition: color 0.2s; }
.info-panel .info-list a:hover { color: var(--copper-bright); }

/* RESPONSIVE */
@media (max-width: 980px) {
  .container, .container-narrow { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .page-hero { padding: 3.5rem 0 4rem; }
  .page-hero .hero-stats { gap: 1.5rem; }
  .two-col, .two-col-equal, .two-col-reverse { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--rule); padding-right: 0; padding-bottom: 2rem; }
  .feature-grid, .feature-grid-light { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .cta .container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .utility-bar .left .hide-mobile { display: none; }
  section { padding: 4rem 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   EQUIPMENT SHOWCASE — compact grid of items we process
   ========================================================= */
.equipment-showcase {
  background: var(--parchment);
  padding: 6rem 0;
  border-top: 1px solid var(--rule);
}
.equipment-showcase .section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.equipment-showcase .eyebrow {
  font-family: var(--mono-font);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--copper);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1.1rem;
}
.equipment-showcase h2 {
  font-family: var(--display-font);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.equipment-showcase h2 em {
  font-style: italic;
  color: var(--copper);
  font-weight: 500;
}
.equipment-showcase .lede {
  color: rgba(13, 31, 27, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.equipment-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.equipment-card .image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-warm);
  border: 1px solid var(--rule);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.equipment-card:hover .image-wrap {
  border-color: var(--copper);
  box-shadow: 0 12px 40px rgba(14, 42, 36, 0.1);
}
.equipment-card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.equipment-card:hover .image-wrap img {
  transform: scale(1.06);
}
.equipment-card h3 {
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--forest);
  margin-top: 1.1rem;
  letter-spacing: -0.01em;
}
@media (max-width: 1024px) {
  .equipment-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .equipment-showcase { padding: 4rem 0; }
  .equipment-showcase h2 { font-size: 1.9rem; }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .equipment-card h3 { font-size: 1rem; }
}
@media (max-width: 380px) {
  .equipment-grid { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
}
