/* ============================================================
   BENDER EXPORTS — MAIN LAYOUT STYLES
   css/main.css

   Sections in this file:
   1.  Reset & Base
   2.  Navigation
   3.  Hero
   4.  Marquee / Ticker Bar
   5.  Stats Bar
   6.  About Section
   7.  Photo Strip
   8.  Washing Stations
   9.  Dark Separator
   10. Process Section
   11. Certifications
   12. Impact Section
   13. Contact / Enquire
   14. Footer
   15. Responsive (Mobile)
   ============================================================ */


/* ── 1. RESET & BASE ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

section {
  padding: var(--pad) var(--side);
}

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

a {
  text-decoration: none;
}


/* ── 2. NAVIGATION ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 78px;
  transition: background 0.45s, height 0.35s, box-shadow 0.45s;
}

nav.solid {
  background: rgba(11, 8, 5, 0.97);
  backdrop-filter: blur(18px);
  height: 65px;
  border-bottom: 1px solid rgba(196, 154, 53, 0.15);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 42px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.25s;
}

.nav-logo:hover img { opacity: 1; }

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.nav-brand-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Menu links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-menu a:hover { color: #fff; }

/* CTA button in nav */
.nav-cta {
  padding: 9px 22px !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: background 0.25s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: #fff;
  display: block;
  transition: all 0.3s;
}

/* Mobile full-screen overlay */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 8, 5, 0.98);
  z-index: 590;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mob-overlay.show { display: flex; }

.mob-overlay a {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.mob-overlay a:hover { color: var(--gold-light); }


/* ── 3. HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hslide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hslide.on { opacity: 1; }

/* Dark overlay gradient over slides */
.hslide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(11,8,5,0.82) 0%,
    rgba(11,8,5,0.35) 55%,
    rgba(11,8,5,0.6)  100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6%;
  padding-top: 78px;
  max-width: 820px;
}

/* Small tag above heading */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  opacity: 0;
  animation: rise 0.85s 0.3s forwards;
}

.hero-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-chip-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
}

h1.hero-title {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: rise 0.85s 0.5s forwards;
}

h1.hero-title span {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  margin-top: 20px;
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.52);
  max-width: 500px;
  opacity: 0;
  animation: rise 0.85s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.85s 0.9s forwards;
}

/* Slide dots (bottom left) */
.hero-nav {
  position: absolute;
  bottom: 36px;
  left: 6%;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hdot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.35s;
}

.hdot.on {
  background: var(--gold);
  width: 48px;
}

/* Scroll indicator (bottom right) */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 6%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: rise 0.85s 1.1s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(196, 154, 53, 0.6), transparent);
  animation: pulse 2s infinite;
}

/* Hero animations */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}


/* ── 4. MARQUEE / TICKER BAR ───────────────────────────── */
.marquee-bar {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 28px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
}

.marquee-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dark);
  opacity: 0.35;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── 5. STATS BAR ─────────────────────────────────────── */
#stats {
  background: var(--black);
  padding: clamp(55px, 7vw, 85px) var(--side);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.stat {
  padding: 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat:last-child { border-right: none; }

.stat-n {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-l {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}


/* ── 6. ABOUT SECTION ─────────────────────────────────── */
#about {
  background: var(--cream);
  padding: var(--pad) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

/* Left — photo */
.about-imgs {
  position: relative;
  overflow: hidden;
}

.about-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.about-imgs:hover .about-img-main { transform: scale(1.04); }

/* Year badge over photo */
.about-yr {
  position: absolute;
  top: 0; left: 0;
  background: var(--gold);
  color: var(--dark);
  padding: 22px 28px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  line-height: 1;
}

.about-yr strong {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  writing-mode: horizontal-tb;
  transform: none;
}

/* Right — text */
.about-txt {
  padding: 80px 7% 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.about-txt .sec-body { margin-top: 22px; }

/* Founders row */
.founders-row {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(74, 46, 16, 0.12);
  border-bottom: 1px solid rgba(74, 46, 16, 0.12);
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.founder-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
}

.founder-title {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-top: 3px;
}

/* Values pillars grid */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.pillar { display: flex; flex-direction: column; gap: 5px; }
.pillar-ico { font-size: 1.3rem; }
.pillar strong { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.pillar span   { font-size: 0.8rem; font-weight: 300; color: var(--muted); line-height: 1.55; }


/* ── 7. PHOTO STRIP ───────────────────────────────────── */
#photostrip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 420px;
  gap: 3px;
}

.ps-cell {
  overflow: hidden;
  position: relative;
}

.ps-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.ps-cell:hover img { transform: scale(1.06); }

/* Label overlay on each photo */
.ps-cell-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(11, 8, 5, 0.72);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}


/* ── 8. WASHING STATIONS ──────────────────────────────── */
#stations {
  background: var(--warm);
  padding: var(--pad) 0;
}

.stations-hd {
  padding: 0 var(--side);
  margin-bottom: 64px;
}

.stations-hd .sec-body { margin-top: 16px; }

/* Each station row */
.s-row {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 520px;
}

/* Alternating image left/right */
.s-row:nth-child(odd)  { direction: ltr; }
.s-row:nth-child(even) { direction: rtl; }
.s-row:nth-child(even) > * { direction: ltr; }

/* Station image panel */
.s-img {
  overflow: hidden;
  position: relative;
}

.s-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.s-img:hover img { transform: scale(1.05); }

/* Large background number */
.s-num {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.03em;
}

.s-row:nth-child(even) .s-num { left: auto; right: 24px; }

/* Province tag on image */
.s-img-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 6px 16px;
  background: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
}

.s-row:nth-child(even) .s-img-tag { left: auto; right: 22px; }

/* Station text panel */
.s-txt {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--warm);
}

.s-txt h3 {
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
}

.s-txt h3 em {
  font-weight: 300;
  font-style: italic;
  color: var(--brown);
}

/* Tags row */
.s-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.s-tag {
  padding: 4px 12px;
  border: 1px solid rgba(74, 46, 16, 0.2);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
}

.s-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Metrics row (KGS / Jobs / Gender) */
.s-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(74, 46, 16, 0.1);
}

.s-m {
  padding: 16px 18px;
  border-right: 1px solid rgba(74, 46, 16, 0.1);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.s-m:last-child { border-right: none; }

.s-m-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.s-m-key {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
}


/* ── 9. DARK SEPARATOR ────────────────────────────────── */
.sep-dark {
  background: var(--dark);
  padding: clamp(50px, 6vw, 80px) var(--side);
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.sep-quote {
  flex: 1;
  min-width: 260px;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sep-quote em {
  color: var(--gold-light);
  font-weight: 300;
  font-style: italic;
}

.sep-facts {
  flex: 1;
  min-width: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.sep-fact {
  background: var(--dark);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.3s;
}

.sep-fact:hover { background: rgba(196, 154, 53, 0.08); }

.sep-fact-v {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}

.sep-fact-l {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}


/* ── 10. PROCESS SECTION ──────────────────────────────── */
#process {
  background: var(--dark);
  padding: var(--pad) var(--side);
}

.process-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

/* Step circles row */
.step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 0;
}

.step-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12%; right: 12%;
  height: 1px;
  background: rgba(196, 154, 53, 0.2);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 8px;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 154, 53, 0.35);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.35s;
}

.step:hover .step-circle {
  background: var(--gold);
  border-color: var(--gold);
}

.step-n {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
}

.step:hover .step-n { color: var(--dark); }

.step-name {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
}

.step-desc {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.5;
}

/* Image row below steps */
.process-imgs {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  height: 340px;
}

.pi { overflow: hidden; }

.pi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.pi:hover img { transform: scale(1.07); }


/* ── 11. CERTIFICATIONS ───────────────────────────────── */
#certs {
  background: var(--cream);
  padding: clamp(60px, 7vw, 90px) var(--side);
}

.certs-wrap {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.certs-left { flex: 1; min-width: 260px; }

.cert-grid {
  flex: 2;
  min-width: 280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(74, 46, 16, 0.08);
}

.cert-cell {
  background: var(--cream);
  padding: 30px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: background 0.3s;
}

.cert-cell:hover { background: var(--warm); }

.cert-ico  { font-size: 1.6rem; }
.cert-name { font-size: 0.75rem; font-weight: 600; color: var(--dark); }
.cert-sub  { font-size: 0.68rem; font-weight: 300; color: var(--muted); }


/* ── 12. IMPACT SECTION ──────────────────────────────── */
#impact {
  background: var(--brown-dark);
  padding: var(--pad) var(--side);
}

.impact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}

/* Stacked images */
.impact-imgs {
  position: relative;
  height: 440px;
}

.imp-main {
  position: absolute;
  right: 0; top: 0;
  width: 75%; height: 100%;
  object-fit: cover;
}

.imp-accent {
  position: absolute;
  left: 0; bottom: -28px;
  width: 44%; height: 55%;
  object-fit: cover;
  border: 5px solid var(--brown-dark);
}

/* Three stat cards */
.impact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.impact-card {
  background: rgba(255, 255, 255, 0.025);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s;
}

.impact-card:hover { background: rgba(196, 154, 53, 0.1); }

.ic-ico { font-size: 1.4rem; margin-bottom: 4px; }

.ic-n {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ic-l {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.ic-t {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  margin-top: 6px;
}


/* ── 13. CONTACT / ENQUIRE ───────────────────────────── */
#contact {
  background: var(--warm);
  padding: var(--pad) var(--side);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 90px;
}

.contact-left .sec-body { margin-top: 18px; margin-bottom: 36px; }

/* Contact info items */
.cinfo {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.cinfo-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border: 1px solid rgba(74, 46, 16, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.cinfo-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.cinfo-val {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.5;
}

/* Export market tags */
.markets {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(74, 46, 16, 0.1);
}

.markets-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.market-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.market-tag {
  padding: 5px 14px;
  background: rgba(74, 46, 16, 0.06);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--sienna);
  letter-spacing: 0.06em;
}

/* Contact form card */
.form-box {
  background: var(--cream);
  padding: 46px 42px;
  border: 1px solid rgba(74, 46, 16, 0.1);
}

.form-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.form-box h3 em {
  font-weight: 300;
  font-style: italic;
  color: var(--brown);
}

/* 2-column form row */
.fr2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Form group */
.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.fg label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sienna);
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--warm);
  border: 1.5px solid rgba(74, 46, 16, 0.14);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.22s;
  appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--gold); }

.fg textarea { resize: vertical; min-height: 105px; }

.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%237a4520' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--dark);
  color: #fff;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.28s;
}

.btn-submit:hover { background: var(--brown); }

.form-note {
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}


/* ── 14. FOOTER ───────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 72px var(--side) 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.65;
  max-width: 210px;
}

.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 300;
  transition: color 0.22s;
}

.footer-col a:hover { color: rgba(255, 255, 255, 0.8); }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
}

.footer-copy a { color: var(--gold); }

.footer-badge {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.06em;
}


/* ── 15. RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1050px) {
  #stats                 { grid-template-columns: 1fr 1fr; }
  .stat                  { border-bottom: 1px solid rgba(255,255,255,.06); }
  .about-grid,
  .process-top,
  .impact-top,
  .contact-grid          { grid-template-columns: 1fr; }
  .s-row                 { grid-template-columns: 1fr; }
  .s-row:nth-child(even) { direction: ltr; }
  .s-img                 { height: 340px; }
  .impact-imgs           { height: 280px; }
  .about-imgs            { height: 360px; }
  .process-imgs          { grid-template-columns: 1fr 1fr; }
  .cert-grid             { grid-template-columns: 1fr 1fr; }
  .footer-top            { grid-template-columns: 1fr 1fr; }
  #photostrip            { grid-template-columns: 1fr 1fr; height: auto; }
  .ps-cell               { height: 220px; }
  .ps-cell:last-child    { display: none; }
  .sep-facts             { grid-template-columns: 1fr 1fr; }
  .pillars,
  .fr2                   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-cta-wrap          { display: none; }
  .hamburger             { display: flex; }
  #stats                 { grid-template-columns: 1fr; }
  .stat                  { border-right: none; }
  .impact-cards,
  .step-grid             { grid-template-columns: 1fr; }
  .step-grid::before     { display: none; }
  .process-imgs          { grid-template-columns: 1fr; height: 220px; }
  .pi:nth-child(2),
  .pi:nth-child(3)       { display: none; }
  #photostrip            { display: none; }
  .certs-wrap            { flex-direction: column; }
}
