:root {
  --color-orange: #f45116;
  --color-orange-dark: #d93e08;
  --color-dark: #0b1115;
  --color-dark-2: #121b21;
  --color-light: #f6f3ee;
  --color-white: #fffdfa;
  --color-text: #171b1e;
  --color-muted: #626a6e;
  --color-green-accent: #88a778;
  --container-width: 1220px;
  --radius: 10px;
  --section-space: clamp(5rem, 8vw, 7.5rem);
  --shadow-soft: 0 18px 50px rgba(12, 17, 20, 0.12);
  --header-height: 140px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-light);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.035em; }
h2 { margin-bottom: 1.5rem; font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.1; }
h3 { line-height: 1.25; }
p { color: var(--color-muted); }

.container { width: min(calc(100% - 48px), var(--container-width)); margin-inline: auto; }
.section { position: relative; padding-block: var(--section-space); }
.section-light { background: var(--color-white); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--color-orange);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: var(--color-orange);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow::before { width: 26px; height: 2px; background: currentColor; content: ""; }
.eyebrow-light { color: #ff7441; }
.eyebrow-green { color: var(--color-green-accent); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--color-orange);
  border-radius: 5px;
  color: #fff;
  background: var(--color-orange);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button svg, .product-item a svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.button:hover { border-color: var(--color-orange-dark); background: var(--color-orange-dark); transform: translateY(-1px); }
.button-small { min-height: 44px; padding-inline: 1.15rem; }
.button-outline-light { border-color: rgba(255,255,255,.45); background: transparent; }
.button-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8, 13, 16, .52);
  backdrop-filter: blur(12px);
  transition: height 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled { height: 118px; background: rgba(8,13,16,.94); box-shadow: 0 10px 30px rgba(0,0,0,.16); }
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 28px; }
.brand, .footer-brand { flex: 0 0 auto; text-decoration: none; }
.brand-surface {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand > .brand-surface { width: auto; height: 128px; padding: 0; overflow: visible; }
.brand > .brand-surface img { display: block; width: auto; height: 118px; max-width: none; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 38px); }
.site-nav > a:not(.button) { position: relative; padding-block: 12px; color: rgba(255,255,255,.78); font-size: .82rem; font-weight: 600; text-decoration: none; }
.site-nav > a:not(.button)::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 2px; background: var(--color-orange); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.site-nav > a:hover, .site-nav > a.is-active { color: #fff; }
.site-nav > a:hover::after, .site-nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; border-radius: 4px; color: #fff; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }

/* Hero */
.hero { position: relative; display: grid; min-height: min(860px, 100svh); padding-top: var(--header-height); overflow: hidden; color: #fff; background: var(--color-dark); }
.hero-visual, .hero-shade { position: absolute; inset: 0; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.hero-shade { background: linear-gradient(90deg, rgba(5,10,13,.97) 0%, rgba(5,10,13,.91) 35%, rgba(5,10,13,.28) 67%, rgba(5,10,13,.1) 100%), linear-gradient(0deg, rgba(5,10,13,.52), transparent 50%); }
.hero-content { position: relative; display: flex; align-items: center; padding-block: clamp(5.5rem, 10vw, 9rem) 8rem; }
.hero-copy { width: min(650px, 58%); }
.hero h1 { max-width: 12ch; margin-bottom: 1.8rem; font-size: clamp(2.75rem, 5.3vw, 5.35rem); line-height: 1.02; }
.hero h1 span { display: block; color: var(--color-orange); }
.hero-lead { max-width: 620px; margin-bottom: 1rem; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.35vw, 1.18rem); }
.hero-note { margin-bottom: 2rem; color: rgba(255,255,255,.58); font-size: .92rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-points { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, max-content); gap: 40px; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.72); font-size: .73rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-points span { display: flex; align-items: center; gap: 10px; }
.hero-points span::before { width: 5px; height: 5px; border-radius: 50%; background: var(--color-orange); content: ""; }

/* About */
.about-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.about-image { position: relative; margin: 0; }
.about-image::before { position: absolute; z-index: 2; top: -14px; left: -14px; width: 56px; height: 56px; border-top: 2px solid var(--color-orange); border-left: 2px solid var(--color-orange); content: ""; }
.about-image img { width: 100%; aspect-ratio: 4 / 4.25; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow-soft); }
.about-image figcaption { position: absolute; right: -18px; bottom: 28px; max-width: 210px; padding: 14px 18px; color: #fff; background: var(--color-dark-2); font-size: .72rem; font-weight: 700; line-height: 1.5; text-transform: uppercase; }
.about-copy > p:not(.eyebrow) { max-width: 680px; margin-bottom: 1rem; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 2.4rem; padding-top: 2.15rem; border-top: 1px solid #ddd8d1; }
.values > div { display: flex; align-items: flex-start; gap: 14px; min-width: 0; }
.values img { flex: 0 0 auto; width: 36px; height: 36px; margin-top: 1px; }
.values span { color: var(--color-muted); font-size: .72rem; line-height: 1.6; }
.values strong { display: block; margin-bottom: 5px; color: var(--color-text); font-size: .78rem; line-height: 1.35; }

/* Products */
.products { background: #f1eee8; }
.section-heading { max-width: 760px; margin: 0 auto clamp(3rem, 5vw, 4.75rem); text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading > p:last-child { max-width: 680px; margin-inline: auto; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #d8d2c9; border-bottom: 1px solid #d8d2c9; }
.product-item { position: relative; min-width: 0; padding: 2.5rem clamp(1.25rem, 2.3vw, 2rem) 2.25rem; }
.product-item + .product-item { border-left: 1px solid #d8d2c9; }
.product-number { position: absolute; top: 18px; right: 18px; color: #b7afa5; font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.product-item h3 { min-height: 3.1rem; margin-bottom: 1rem; font-size: 1.17rem; }
.product-item p { min-height: 7.8rem; margin-bottom: 1.4rem; font-size: .84rem; }
.product-item > a { display: inline-flex; align-items: center; gap: 9px; color: var(--color-orange-dark); font-size: .78rem; font-weight: 800; text-decoration: none; }
.product-item > a svg { width: 16px; transition: transform 180ms ease; }
.product-item > a:hover svg { transform: translateX(4px); }
.product-visual { display: flex; width: min(100%, 164px); height: 110px; align-items: center; margin-bottom: 1.45rem; }
.product-visual img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }

/* Recycling */
.recycling { overflow: hidden; color: #fff; background: #111b1a; }
.recycling::before { position: absolute; inset: 0; background: linear-gradient(130deg, rgba(93,121,80,.08), transparent 50%); content: ""; pointer-events: none; }
.recycling-layout { position: relative; display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.recycling-copy h2 { max-width: 13ch; }
.recycling-copy p { max-width: 640px; color: rgba(255,255,255,.65); }
.recycling-image { position: relative; margin: 0; }
.recycling-image::after { position: absolute; inset: -14px 14px 14px -14px; z-index: 0; border: 1px solid rgba(136,167,120,.42); content: ""; }
.recycling-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/3; border-radius: 5px; object-fit: cover; }
.benefits { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 5vw, 5rem); margin-top: clamp(3.5rem, 6vw, 5.5rem); padding-block: 2rem; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.benefit { display: flex; align-items: flex-start; gap: 18px; min-width: 0; }
.benefit > img { flex: 0 0 auto; width: 39px; height: 39px; margin-top: 1px; }
.benefit h3 { margin-bottom: 7px; font-size: .9rem; line-height: 1.35; }
.benefit p { margin: 0; color: rgba(255,255,255,.52); font-size: .77rem; line-height: 1.62; }
.recycling-cta { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 3rem; }
.recycling-cta span { color: var(--color-green-accent); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.recycling-cta h3 { margin: .25rem 0 0; font-size: clamp(1.3rem, 2.4vw, 2rem); }

/* Contact */
.contact { color: #fff; background: var(--color-dark-2); }
.contact::before { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 42px 42px; content: ""; }
.contact-layout { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3.5rem, 8vw, 8rem); }
.contact-copy h2 { max-width: 12ch; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.contact-copy > p { max-width: 480px; color: rgba(255,255,255,.6); }
.contact-list { display: grid; gap: 20px; margin-top: 2.6rem; font-style: normal; }
.contact-entry { display: flex; align-items: flex-start; gap: 16px; min-width: 0; }
.contact-list svg { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 3px; fill: none; stroke: var(--color-orange); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.contact-content { display: grid; min-width: 0; }
.contact-list small { margin-bottom: 1px; color: rgba(255,255,255,.45); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-list strong, .contact-list a { color: rgba(255,255,255,.88); font-size: .86rem; font-weight: 600; text-decoration: none; }
.contact-list a { width: fit-content; }
.contact-list a + a { margin-top: 4px; }
.contact-list a:hover { color: var(--color-orange); }
.address-locations { display: grid; gap: 14px; margin-top: 10px; }
.address-location { padding-left: 12px; border-left: 2px solid rgba(244,81,22,.55); }
.address-location strong { display: block; margin-bottom: 3px; color: #fff; font-size: .74rem; letter-spacing: .04em; }
.address-location p { margin: 0; color: rgba(255,255,255,.66); font-size: .78rem; line-height: 1.6; overflow-wrap: anywhere; }
.contact-form { padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field label { color: rgba(255,255,255,.7); font-size: .73rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; border: 1px solid rgba(255,255,255,.14); border-radius: 4px; outline: 0; color: #fff; background: rgba(255,255,255,.055); transition: border-color 180ms ease, background-color 180ms ease; }
.field input, .field select { padding: 0 14px; }
.field textarea { min-height: 130px; padding: 13px 14px; resize: vertical; }
.field select { color-scheme: dark; }
.field select option { color: #111; background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--color-orange); background: rgba(255,255,255,.075); }
.field [aria-invalid="true"] { border-color: #ff8e65; }
.form-submit { width: 100%; }
.form-submit:disabled { cursor: wait; opacity: .72; transform: none; }
.form-status { min-height: 24px; margin: 12px 0 0; color: rgba(255,255,255,.62); font-size: .77rem; text-align: center; }
.form-status.is-success { color: #a9cc9f; }
.form-status.is-error { color: #ffae91; }

/* Footer */
.site-footer { padding-block: 1.6rem; color: rgba(255,255,255,.55); background: #080d10; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.footer-brand .brand-surface { width: 64px; height: 64px; padding: 0; }
.footer-brand .brand-surface img { display: block; width: 64px; height: auto; object-fit: contain; }
.footer-inner p { margin: 0; color: inherit; font-size: .7rem; }
.footer-inner nav { display: flex; gap: 22px; }
.footer-inner nav a { font-size: .7rem; text-decoration: none; }
.footer-inner nav a:hover { color: #fff; }
.copyright { grid-column: 2 / 4; margin-top: -18px !important; }

/* Reveal */
.reveal { transition: opacity 650ms ease, transform 650ms ease; }
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1023px) {
  :root { --section-space: clamp(4.5rem, 9vw, 6.25rem); }
  .site-nav { gap: 18px; }
  .hero-copy { width: 64%; }
  .hero h1 { font-size: clamp(2.8rem, 6vw, 4.7rem); }
  .about-layout { grid-template-columns: .9fr 1.1fr; gap: 3.5rem; }
  .values { grid-template-columns: 1fr 1fr; }
  .values > div:last-child { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-item:nth-child(3) { border-left: 0; border-top: 1px solid #d8d2c9; }
  .product-item:nth-child(4) { border-top: 1px solid #d8d2c9; }
  .product-item p { min-height: 0; }
  .recycling-layout, .contact-layout { gap: 3.5rem; }
}

@media (min-width: 1440px) {
  :root { --header-height: 150px; }
  .site-header.is-scrolled { height: 128px; }
  .brand > .brand-surface { height: 140px; }
  .brand > .brand-surface img { width: auto; height: 128px; }
}

@media (max-width: 820px) {
  :root { --header-height: 128px; }
  .container { width: min(calc(100% - 40px), var(--container-width)); }
  .site-header.is-scrolled { height: 112px; }
  .brand > .brand-surface { width: auto; height: 118px; padding: 0; }
  .brand > .brand-surface img { width: auto; height: 108px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; top: var(--header-height); right: 0; left: 0; display: grid; max-height: calc(100svh - var(--header-height)); align-items: stretch; gap: 0; padding: 16px 20px 24px; overflow-y: auto; border-top: 1px solid rgba(255,255,255,.08); background: rgba(8,13,16,.985); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity 180ms ease, transform 180ms ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav > a:not(.button) { min-height: 50px; padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 16px; }
  .hero { min-height: 780px; }
  .hero-visual img { object-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,10,13,.96) 0%, rgba(5,10,13,.82) 58%, rgba(5,10,13,.36)), linear-gradient(0deg, rgba(5,10,13,.65), transparent 60%); }
  .hero-copy { width: min(640px, 83%); }
  .hero-points { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .about-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-image { width: min(100%, 560px); }
  .about-image img { aspect-ratio: 16/10; }
  .about-image figcaption { right: -8px; }
  .recycling-layout { grid-template-columns: 1fr; }
  .recycling-copy h2 { max-width: 15ch; }
  .recycling-image { width: min(100%, 620px); }
  .benefits { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy h2 { max-width: 15ch; }
  .contact-copy > p { max-width: 650px; }
  .contact-list { grid-template-columns: 1fr 1fr; }
  .contact-addresses { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 40px), var(--container-width)); }
  h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero { display: block; min-height: auto; padding-top: var(--header-height); }
  .hero-visual { position: relative; height: 42vh; min-height: 300px; margin-top: 0; }
  .hero-visual img { object-position: 68% center; }
  .hero-shade { top: var(--header-height); bottom: auto; height: 42vh; min-height: 300px; background: linear-gradient(0deg, var(--color-dark) 0%, transparent 58%), linear-gradient(90deg, rgba(5,10,13,.4), transparent); }
  .hero-content { display: block; padding-block: 2rem 2.5rem; }
  .hero-copy { width: 100%; }
  .hero h1 { max-width: 11ch; font-size: clamp(2.55rem, 12vw, 3.8rem); }
  .hero-points { position: relative; grid-template-columns: 1fr; gap: 11px; padding-block: 20px 26px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .about-image img { aspect-ratio: 4/3; }
  .about-image figcaption { right: 10px; bottom: 10px; max-width: 190px; }
  .values { grid-template-columns: 1fr; }
  .values > div:last-child { grid-column: auto; }
  .product-grid { grid-template-columns: 1fr; }
  .product-item + .product-item { border-top: 1px solid #d8d2c9; border-left: 0; }
  .product-item { padding-inline: 1rem; }
  .product-item h3 { min-height: 0; }
  .product-visual { width: 158px; height: 106px; margin-bottom: 1.3rem; }
  .recycling-image::after { inset: -9px 9px 9px -9px; }
  .recycling-cta { align-items: stretch; flex-direction: column; }
  .recycling-cta .button { width: 100%; }
  .contact-list, .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.25rem; }
  .footer-inner { grid-template-columns: auto 1fr; }
  .footer-inner nav { grid-column: 1 / -1; grid-row: 2; flex-wrap: wrap; }
  .copyright { grid-column: 1 / -1; margin-top: 0 !important; }
}

@media (max-width: 379px) {
  .container { width: min(calc(100% - 32px), var(--container-width)); }
  .hero h1 { font-size: 2.35rem; }
  .button { padding-inline: 1rem; }
  .about-image figcaption { position: static; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
}
