/*
Theme Name: ClothingDrive4Funding
Theme URI: https://clothingdrive4funding.com
Author: ClothingDrive4Funding
Description: Custom WordPress theme for ClothingDrive4Funding - a nonprofit clothing drive fundraising organization serving the Northeast.
Version: 1.0.0
License: Private
Text Domain: cd4f
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --cd4f-green-8:       #0D1B0E;
  --cd4f-green-10:      #0F2210;
  --cd4f-green-13:      #162E18;
  --cd4f-green-14:      #1C2B1D;
  --cd4f-green-16:      #1A3A1C;
  --cd4f-green-24:      #1B5E20;
  --cd4f-green-34:      #2E7D32;
  --cd4f-green-39:      #388E3C;
  --cd4f-green-49:      #4CAF50;
  --cd4f-green-55:      #558B2F;
  --cd4f-green-64:      #81C784;
  --cd4f-green-87:      #D6E8D7;
  --cd4f-green-94:      #E8F5E9;
  --cd4f-green-99:      #FAFFF8;
  --cd4f-orange:        #F9A825;
  --cd4f-amber:         #FFD54F;
  --cd4f-grey-45:       #6B7C6D;
  --cd4f-brown-29:      #5D4037;
  --cd4f-brown-34:      #6D4C41;
  --cd4f-black:         #000000;
  --cd4f-white:         #FFFFFF;

  /* Typography */
  --cd4f-font-display:  'Bricolage Grotesque', sans-serif;
  --cd4f-font-body:     'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --cd4f-section-pad-v: clamp(60px, 7vw, 100px);
  --cd4f-section-pad-h: clamp(20px, 8.33vw, 120px);
  --cd4f-max-width:     1200px;
  --cd4f-nav-h:         68px;

  /* Border radius */
  --cd4f-radius-sm:     10px;
  --cd4f-radius-md:     16px;
  --cd4f-radius-lg:     20px;
  --cd4f-radius-xl:     24px;
  --cd4f-radius-pill:   50px;

  /* Transitions */
  --cd4f-transition:    0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--cd4f-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cd4f-green-14);
  background-color: var(--cd4f-green-99);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ============================================================
   TYPOGRAPHY SCALE (fluid)
   ============================================================ */
h1 { font-family: var(--cd4f-font-display); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; font-size: clamp(40px, 6vw, 79.2px); }
h2 { font-family: var(--cd4f-font-display); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; font-size: clamp(28px, 4vw, 48px); }
h3 { font-family: var(--cd4f-font-display); font-weight: 700; line-height: 1.2;  letter-spacing: -0.02em; font-size: clamp(16px, 2vw, 20px); }
h4 { font-family: var(--cd4f-font-display); font-weight: 700; line-height: 1.3;  font-size: clamp(14px, 1.4vw, 16px); }
p  { font-size: clamp(14px, 1.3vw, 16.8px); line-height: 1.8; }

.section-tag {
  font-family: var(--cd4f-font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cd4f-green-34);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--cd4f-max-width);
  margin: 0 auto;
  width: 100%;
}

.section-pad {
  padding: var(--cd4f-section-pad-v) var(--cd4f-section-pad-h);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--cd4f-radius-pill);
  font-family: var(--cd4f-font-display);
  font-weight: 700;
  font-size: clamp(13px, 1.1vw, 15.2px);
  cursor: pointer;
  transition: transform var(--cd4f-transition), box-shadow var(--cd4f-transition), background-color var(--cd4f-transition), opacity var(--cd4f-transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

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

.btn-primary {
  background-color: var(--cd4f-green-49);
  color: var(--cd4f-green-8);
}
.btn-primary:hover {
  background-color: #43A047;
  box-shadow: 0 8px 24px rgba(76,175,80,0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--cd4f-green-99);
  border: 2px solid rgba(250,255,248,0.4);
  padding: 12px 30px;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); }

.btn-light {
  background: var(--cd4f-green-99);
  color: var(--cd4f-green-34);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.btn-light:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-nav {
  background-color: var(--cd4f-green-49);
  color: var(--cd4f-green-8);
  padding: 9px 20px;
  font-family: var(--cd4f-font-body);
  font-weight: 700;
  font-size: 14.4px;
}

/* ============================================================
   SECTION TAGS & LABELS
   ============================================================ */
.section-tag-line {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag-line::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cd4f-green-49);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#cd4f-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--cd4f-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 72px;
  background: rgba(13,27,14,0.96);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-bottom: 1px solid rgba(129,199,132,0.15);
  transition: background var(--cd4f-transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: white;
}
.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.nav-logo-text {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 16.8px;
  letter-spacing: -0.5px;
  color: var(--cd4f-green-99);
  line-height: 1;
}
.nav-logo-text span.accent { color: var(--cd4f-green-49); }

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

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--cd4f-font-body);
  font-weight: 500;
  font-size: 14.4px;
  color: rgba(250,255,248,0.75);
  transition: color var(--cd4f-transition), background var(--cd4f-transition);
  text-decoration: none;
  letter-spacing: 0.2px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--cd4f-green-49);
}

.nav-cta {
  margin-left: 6px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cd4f-green-99);
  border-radius: 2px;
  transition: transform var(--cd4f-transition), opacity var(--cd4f-transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--cd4f-nav-h);
  left: 0;
  right: 0;
  background: var(--cd4f-green-8);
  border-bottom: 1px solid rgba(129,199,132,0.15);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu .nav-link {
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 8px;
}
.nav-mobile-menu .btn-nav {
  margin-top: 8px;
  border-radius: var(--cd4f-radius-pill);
  text-align: center;
}

/* ============================================================
   PAGE HERO (shared inner pages)
   ============================================================ */
.page-hero {
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 120px 72px 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(137deg, var(--cd4f-green-8) 0%, var(--cd4f-green-10) 45%, var(--cd4f-green-13) 100%);
}

.page-hero-blob-1 {
  position: absolute;
  right: -80px;
  top: -180px;
  width: 550px;
  height: 550px;
  border-radius: 275px;
  background: rgba(76,175,80,0.14);
  filter: blur(45px);
  pointer-events: none;
}
.page-hero-blob-2 {
  position: absolute;
  bottom: -60px;
  left: 25%;
  width: calc(43% - 60px);
  height: 260px;
  border-radius: 130px;
  background: rgba(249,168,37,0.09);
  filter: blur(45px);
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--cd4f-max-width);
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border-radius: var(--cd4f-radius-pill);
  border: 1px solid rgba(76,175,80,0.25);
  background: rgba(76,175,80,0.12);
  font-family: var(--cd4f-font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cd4f-green-64);
  margin-bottom: 22px;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
}

.page-hero-title {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 79.2px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cd4f-green-99);
}

.page-hero-desc {
  font-size: clamp(14px, 1.4vw, 17.3px);
  color: rgba(250,255,248,0.65);
  line-height: 1.8;
}

.page-hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 28px;
}
.page-hero-stat-num {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 35.2px;
  color: var(--cd4f-green-99);
  letter-spacing: -0.04em;
  line-height: 1;
}
.page-hero-stat-num .accent { color: var(--cd4f-green-49); }
.page-hero-stat-label {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(250,255,248,0.42);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.home-hero {
  min-height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 72px 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--cd4f-green-14) 0%, var(--cd4f-green-14) 100%);
}

.home-hero-blob-1 {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 250px;
  background: rgba(76,175,80,0.18);
  filter: blur(40px);
  pointer-events: none;
}
.home-hero-blob-2 {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: calc(41% - 40px);
  height: 300px;
  border-radius: 150px;
  background: rgba(249,168,37,0.1);
  filter: blur(40px);
  pointer-events: none;
}

.home-hero-inner {
  max-width: var(--cd4f-max-width);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-hero-content { display: flex; flex-direction: column; gap: 23px; }

.home-hero-title {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 67.2px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--cd4f-green-99);
}
.home-hero-title .accent-green { color: var(--cd4f-green-49); }
.home-hero-title .accent-orange { color: var(--cd4f-orange); }

.home-hero-desc {
  font-size: clamp(14px, 1.3vw, 17.6px);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 480px;
}

.home-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 0 24px;
}

.home-hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 41px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.home-hero-stat-num {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--cd4f-green-99);
  line-height: 1;
}
.home-hero-stat-num .accent { color: var(--cd4f-green-49); }
.home-hero-stat-label {
  font-size: 13.1px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.home-hero-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  border-radius: 16px;
  overflow: hidden;
}
.hero-photo-cell { overflow: hidden; border-radius: 0; }
.hero-photo-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hero-photo-cell:hover img { transform: scale(1.04); }
.hero-photo-cell-tall { grid-row: 1 / 3; border-radius: 16px 0 0 16px; overflow: hidden; }
.hero-photo-cell-top-right { border-radius: 0 16px 0 0; overflow: hidden; }
.hero-photo-cell-bottom-right { border-radius: 0 0 16px 0; overflow: hidden; }

/* ============================================================
   HOME ABOUT SECTION
   ============================================================ */
.home-about {
  background: var(--cd4f-green-99);
  padding: var(--cd4f-section-pad-v) var(--cd4f-section-pad-h);
}
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  max-width: var(--cd4f-max-width);
  margin: 0 auto;
}
.home-about-photos {
  position: relative;
  height: 500px;
}
.about-photo-main {
  position: absolute;
  left: 0;
  top: 0;
  right: 25%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(46,125,50,0.2);
}
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-secondary {
  position: absolute;
  bottom: 0;
  left: 45%;
  right: 0;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(46,125,50,0.2);
  border: 5px solid var(--cd4f-green-99);
}
.about-photo-secondary img { width: 100%; height: 100%; object-fit: cover; }
.home-about-content { display: flex; flex-direction: column; gap: 18px; }
.about-mission-quote {
  border-left: 4px solid var(--cd4f-green-49);
  background: var(--cd4f-green-94);
  border-radius: 0 14px 14px 0;
  padding: 18px 24px 20px 28px;
  font-style: italic;
  font-weight: 500;
  font-size: 16.8px;
  color: var(--cd4f-green-34);
  line-height: 1.7;
}

/* ============================================================
   HOW IT WORKS (home section)
   ============================================================ */
.home-hiw {
  background: #1A3A1C;
  padding: var(--cd4f-section-pad-v) var(--cd4f-section-pad-h);
}
.home-hiw-inner { max-width: var(--cd4f-max-width); margin: 0 auto; }
.home-hiw-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}
.home-hiw-title {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--cd4f-green-99);
  letter-spacing: -0.5px;
  line-height: 1.12;
}
.home-hiw-desc {
  font-size: 16.8px;
  color: rgba(250,255,248,0.7);
  line-height: 1.8;
  max-width: 503px;
}
.hiw-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hiw-step-card {
  background: var(--cd4f-white);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: transform var(--cd4f-transition), box-shadow var(--cd4f-transition);
  border: 1px solid rgba(76,175,80,0.15);
}
.hiw-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.hiw-step-num {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--cd4f-green-49);
}
.hiw-step-title {
  font-family: var(--cd4f-font-display);
  font-weight: 700;
  font-size: 17.6px;
  color: #030303;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-top: 5px;
}
.hiw-step-desc {
  font-size: 17px;
  color: rgba(13,27,14,0.95);
  line-height: 1.55;
}

/* ============================================================
   SERVICE MAP SECTION
   ============================================================ */
.service-map-section {
  background: var(--cd4f-green-94);
  padding: var(--cd4f-section-pad-v) var(--cd4f-section-pad-h);
}
.service-map-inner {
  max-width: var(--cd4f-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.service-map-img img { width: 100%; height: auto; }
.service-map-content { display: flex; flex-direction: column; gap: 16px; }
.service-map-title {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--cd4f-green-14);
  letter-spacing: -0.5px;
  line-height: 1.12;
}
.map-states {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0;
}
.map-state-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 19px;
  border-radius: var(--cd4f-radius-pill);
  background: var(--cd4f-green-99);
  border: 1px solid var(--cd4f-green-87);
  font-family: var(--cd4f-font-body);
  font-weight: 600;
  font-size: 14.1px;
  color: var(--cd4f-green-14);
}
.map-state-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: var(--cd4f-green-49);
  flex-shrink: 0;
}
.map-req-box {
  background: var(--cd4f-green-99);
  border: 1px solid var(--cd4f-green-87);
  border-radius: 16px;
  padding: 29px;
  margin-top: 8px;
}
.map-req-box h4 {
  font-family: var(--cd4f-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--cd4f-green-14);
  margin-bottom: 10px;
}
.map-req-box p {
  font-size: 14.7px;
  color: var(--cd4f-grey-45);
  line-height: 1.75;
  margin-bottom: 16px;
}
.map-req-ranges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.map-req-range {
  background: var(--cd4f-green-94);
  border-radius: 10px;
  padding: 12px 16px;
}
.map-req-range strong {
  font-family: var(--cd4f-font-display);
  font-weight: 700;
  font-size: 17.6px;
  color: var(--cd4f-green-34);
  display: block;
}
.map-req-range span {
  font-size: 13.6px;
  color: var(--cd4f-green-14);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--cd4f-green-34);
  padding: 80px var(--cd4f-section-pad-h);
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  right: -80px;
  top: -150px;
  width: 400px;
  height: 400px;
  border-radius: 200px;
  background: rgba(255,255,255,0.08);
  filter: blur(35px);
  pointer-events: none;
}
.cta-inner {
  max-width: var(--cd4f-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 41.6px);
  color: var(--cd4f-green-99);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 520px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT SECTION (home & contact page)
   ============================================================ */
.contact-section {
  padding: var(--cd4f-section-pad-v) var(--cd4f-section-pad-h);
  background: linear-gradient(133deg, #0D2A1A 0%, #162E18 100%);
}
.contact-inner {
  max-width: var(--cd4f-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-title {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 43.2px);
  color: var(--cd4f-green-99);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.contact-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 24px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: center; }
.contact-info-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  color: var(--cd4f-green-99);
}
.contact-info-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--cd4f-green-64); stroke-width: 2; }
.contact-info-text strong {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--cd4f-green-99);
}
.contact-info-text span {
  font-size: 12.8px;
  color: rgba(255,255,255,0.7);
}
.contact-social {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 33px;
}
.contact-social-label {
  font-family: var(--cd4f-font-display);
  font-weight: 700;
  font-size: 13.6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(250,255,248,0.4);
  margin-bottom: 14px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 19px;
  border-radius: var(--cd4f-radius-pill);
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.2);
  font-weight: 500;
  font-size: 14.1px;
  color: var(--cd4f-green-99);
  transition: background var(--cd4f-transition);
}
.social-link:hover { background: rgba(76,175,80,0.2); }
.social-link svg { width: 16px; height: 16px; fill: var(--cd4f-green-99); flex-shrink: 0; }

.contact-form-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(76,175,80,0.2);
  border-radius: 24px;
  padding: 41px 37px;
}
.contact-form-box h3 {
  font-family: var(--cd4f-font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20.8px);
  color: var(--cd4f-green-99);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 28px;
}

/* WS Form container styling */
.wsf-form-wrapper .wsf-form { /* WS Form overrides */ }
.wsf-form-wrapper input,
.wsf-form-wrapper select,
.wsf-form-wrapper textarea {
  border-radius: 12px !important;
  border: 1px solid rgba(76,175,80,0.2) !important;
  background: var(--cd4f-white) !important;
  font-family: var(--cd4f-font-body) !important;
  font-size: 15.2px !important;
  color: #1b1717 !important;
  padding: 14px 17px !important;
  width: 100% !important;
}
.wsf-form-wrapper input:focus,
.wsf-form-wrapper textarea:focus {
  outline: none !important;
  border-color: var(--cd4f-green-49) !important;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.15) !important;
}
.wsf-form-wrapper label {
  font-weight: 600 !important;
  font-size: 13.1px !important;
  color: var(--cd4f-white) !important;
  letter-spacing: 0.3px !important;
  margin-bottom: 6px !important;
  display: block !important;
}
.wsf-form-wrapper button[type="submit"],
.wsf-form-wrapper input[type="submit"] {
  background: var(--cd4f-green-49) !important;
  color: var(--cd4f-green-8) !important;
  border-radius: var(--cd4f-radius-pill) !important;
  border: none !important;
  font-family: var(--cd4f-font-display) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 15px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background var(--cd4f-transition) !important;
}
.wsf-form-wrapper button[type="submit"]:hover { background: #43A047 !important; }

/* ============================================================
   FOOTER
   ============================================================ */
#cd4f-footer {
  background: #0D1B0E;
  border-top: 1px solid rgba(76,175,80,0.1);
  padding: 41px var(--cd4f-section-pad-h) 28px;
}
.footer-inner { max-width: var(--cd4f-max-width); margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-logo-text {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--cd4f-green-99);
}
.footer-logo-text .accent { color: var(--cd4f-green-49); }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-link {
  font-size: 14.1px;
  color: rgba(255,255,255,0.8);
  transition: color var(--cd4f-transition);
}
.footer-link:hover { color: var(--cd4f-green-49); }
.footer-phone {
  font-family: var(--cd4f-font-body);
  font-weight: 700;
  font-size: 16.8px;
  color: var(--cd4f-white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-meta {
  font-size: 13.1px;
  color: #FCF1F1;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--cd4f-green-99); padding: var(--cd4f-section-pad-v) var(--cd4f-section-pad-h); }
.about-story-inner {
  max-width: var(--cd4f-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.about-story-photo {
  height: 580px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(46,125,50,0.18);
}
.about-story-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-story-content { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.about-story-quote {
  border-left: 4px solid var(--cd4f-green-49);
  background: var(--cd4f-green-94);
  border-radius: 0 14px 14px 0;
  padding: 20px 26px 22px 30px;
  position: relative;
}
.about-story-quote::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 12px;
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 80px;
  color: rgba(76,175,80,0.15);
  line-height: 1;
}
.about-story-quote p {
  font-style: italic;
  font-weight: 600;
  font-size: 17.6px;
  color: var(--cd4f-green-34);
  line-height: 1.7;
}

.about-values {
  padding: 80px var(--cd4f-section-pad-h);
  background: linear-gradient(135deg, var(--cd4f-green-8) 0%, var(--cd4f-green-10) 100%);
}
.about-values-inner { max-width: var(--cd4f-max-width); margin: 0 auto; }
.about-values-header { text-align: center; margin-bottom: 60px; }
.about-values-header .section-tag { color: var(--cd4f-green-64); justify-content: center; }
.about-values-header h2 {
  font-size: clamp(28px, 3.5vw, 41.6px);
  color: var(--cd4f-green-99);
  margin-top: 12px;
  margin-bottom: 16px;
}
.about-values-header p { color: rgba(250,255,248,0.55); font-size: 16px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: rgba(76,175,80,0.06);
  border: 1px solid rgba(76,175,80,0.14);
  border-radius: 20px;
  padding: 37px 29px;
  transition: transform var(--cd4f-transition), border-color var(--cd4f-transition);
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(76,175,80,0.3); }
.value-icon { font-size: 38px; margin-bottom: 10px; }
.value-card h3 {
  font-family: var(--cd4f-font-display);
  font-weight: 700;
  font-size: 18.4px;
  color: var(--cd4f-green-99);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  margin-top: 9px;
}
.value-card p { font-size: 14.7px; color: rgba(250,255,248,0.55); line-height: 1.75; }

.about-impact { background: var(--cd4f-green-94); padding: var(--cd4f-section-pad-v) var(--cd4f-section-pad-h); }
.about-impact-inner { max-width: var(--cd4f-max-width); margin: 0 auto; }
.impact-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.impact-card {
  background: var(--cd4f-green-99);
  border-radius: 20px;
  padding: 38px 30px;
  box-shadow: 0 4px 16px rgba(46,125,50,0.13);
}
.impact-card-num {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 48px;
  color: var(--cd4f-green-34);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.impact-card-num .accent { font-size: 22.4px; color: var(--cd4f-green-34); }
.impact-card p { font-size: 14.1px; color: var(--cd4f-grey-45); line-height: 1.5; }

.about-serve { background: var(--cd4f-green-99); padding: var(--cd4f-section-pad-v) var(--cd4f-section-pad-h); }
.about-serve-inner { max-width: var(--cd4f-max-width); margin: 0 auto; }
.serve-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.serve-card {
  background: var(--cd4f-green-94);
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform var(--cd4f-transition), box-shadow var(--cd4f-transition);
}
.serve-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(46,125,50,0.15); }
.serve-card-icon { width: 52px; height: 52px; }
.serve-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.serve-card h3 {
  font-family: var(--cd4f-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--cd4f-green-14);
  letter-spacing: -0.03em;
}

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.hiw-steps-section { background: var(--cd4f-green-99); padding: var(--cd4f-section-pad-v) var(--cd4f-section-pad-h); }
.hiw-steps-inner { max-width: var(--cd4f-max-width); margin: 0 auto; }

.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0 73px;
  border-bottom: 1px solid var(--cd4f-green-87);
  position: relative;
}
.step-row:last-child { border-bottom: none; }
.step-row.reverse { direction: rtl; }
.step-row.reverse > * { direction: ltr; }

.step-bg-num {
  position: absolute;
  top: 0;
  left: -12px;
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 144px;
  color: var(--cd4f-green-94);
  letter-spacing: -7.2px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.step-content { position: relative; z-index: 1; }
.step-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.step-badge-num {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--cd4f-green-34);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 12.5px;
  color: var(--cd4f-green-99);
}
.step-badge-label {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cd4f-green-34);
}
.step-title {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 35.2px);
  color: var(--cd4f-green-14);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 8px;
}
.step-lead { font-size: 16px; color: var(--cd4f-grey-45); margin-bottom: 24px; }
.step-details { display: flex; flex-direction: column; gap: 12px; }
.step-detail {
  background: var(--cd4f-green-94);
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 14.4px;
  color: var(--cd4f-green-14);
  line-height: 1.6;
}

.step-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(46,125,50,0.18);
}
.step-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.step-photo-fixed { height: 440px; }

.step-visual-card {
  border-radius: 24px;
  padding: 48px 40px;
  background: linear-gradient(136deg, var(--cd4f-green-8) 0%, var(--cd4f-green-13) 100%);
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.step-visual-icon { font-size: 56px; margin-bottom: 24px; }
.step-visual-title {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 25.6px;
  color: var(--cd4f-green-99);
  margin-bottom: 12px;
}
.step-visual-sub { font-size: 14.4px; color: rgba(250,255,248,0.5); line-height: 1.7; margin-bottom: 24px; }
.step-visual-stat {
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.25);
  border-radius: 14px;
  padding: 17px 21px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.step-visual-stat-num {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--cd4f-green-49);
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}
.step-visual-stat p { font-size: 13.1px; color: rgba(250,255,248,0.55); line-height: 1.5; }

/* ============================================================
   ITEMS ACCEPTED PAGE
   ============================================================ */
.items-section { background: var(--cd4f-green-99); padding: var(--cd4f-section-pad-v) var(--cd4f-section-pad-h); }
.items-inner { max-width: var(--cd4f-max-width); margin: 0 auto; }
.items-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.items-card {
  background: var(--cd4f-green-99);
  border: 1px solid var(--cd4f-green-87);
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--cd4f-transition), box-shadow var(--cd4f-transition);
}
.items-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(46,125,50,0.15); }
.items-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
}
.items-card-header h3 {
  font-family: var(--cd4f-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--cd4f-green-99);
  letter-spacing: -0.03em;
}
.items-card-icon { font-size: 28px; }
.items-list {
  padding: 0 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.items-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 14.4px;
  color: var(--cd4f-grey-45);
  border-bottom: 1px solid var(--cd4f-green-94);
}
.items-list li:last-child { border-bottom: none; padding-bottom: 0; }
.items-list-check {
  color: var(--cd4f-green-49);
  font-weight: 700;
  font-size: 12.8px;
  flex-shrink: 0;
  width: 14px;
}
.items-note {
  background: var(--cd4f-green-94);
  border: 1px solid var(--cd4f-amber);
  border-radius: 16px;
  padding: 21px 29px;
}
.items-note strong { color: #5D4037; }
.items-note p { font-size: 15.2px; color: #5D4037; line-height: 1.7; }

.items-notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 var(--cd4f-section-pad-h) 80px;
  max-width: calc(var(--cd4f-max-width) + 2 * var(--cd4f-section-pad-h));
  margin: 0 auto;
}
.note-card {
  border-radius: 20px;
  padding: 32px 28px;
}
.note-card-light { background: var(--cd4f-green-94); }
.note-card-border { border: 1px solid #060e07; }
.note-card-dark { background: linear-gradient(135deg, var(--cd4f-green-8) 0%, var(--cd4f-green-13) 100%); position: relative; overflow: hidden; }
.note-card h4 { font-family: var(--cd4f-font-display); font-weight: 800; font-size: 16px; margin-bottom: 8px; }
.note-card-light h4 { color: var(--cd4f-brown-29); }
.note-card-border h4 { color: var(--cd4f-black); }
.note-card-dark h4 { color: var(--cd4f-green-99); }
.note-card p { font-size: 14.4px; line-height: 1.75; }
.note-card-light p { color: var(--cd4f-brown-34); }
.note-card-border p { color: rgba(0,0,0,0.85); }
.note-card-dark p { color: rgba(250,255,248,0.6); }
.note-card-dark a { color: var(--cd4f-green-64); text-decoration: underline; }

.bagging-section { background: var(--cd4f-green-99); padding: var(--cd4f-section-pad-v) var(--cd4f-section-pad-h); }
.bagging-inner { max-width: var(--cd4f-max-width); margin: 0 auto; }
.bagging-header { text-align: center; margin-bottom: 56px; }
.bagging-header .section-tag { justify-content: center; }
.bagging-header h2 { font-size: clamp(26px, 3vw, 38.4px); color: var(--cd4f-green-14); margin-top: 12px; margin-bottom: 16px; letter-spacing: -0.03em; }
.bagging-header p { color: var(--cd4f-grey-45); font-size: 16px; max-width: 520px; margin: 0 auto; }
.bagging-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bagging-step {
  background: var(--cd4f-green-94);
  border: 2px solid rgba(0,0,0,0);
  border-radius: 20px;
  padding: 34px 26px;
  text-align: center;
  transition: transform var(--cd4f-transition);
}
.bagging-step:hover { transform: translateY(-4px); }
.bagging-step h3 {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 15.2px;
  color: var(--cd4f-green-14);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  margin-top: 6px;
}
.bagging-step p { font-size: 13.6px; color: var(--cd4f-grey-45); line-height: 1.6; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { background: var(--cd4f-green-99); padding: 50px var(--cd4f-section-pad-h) 80px; }
.faq-inner { max-width: 1100px; margin: 0 auto; }
.faq-group { margin-bottom: 20px; }
.faq-group-title {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cd4f-green-34);
  padding: 12px 24px 8px;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--cd4f-green-99);
  border: 1px solid var(--cd4f-green-87);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow var(--cd4f-transition);
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(46,125,50,0.1); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-question-text {
  font-family: var(--cd4f-font-display);
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 15.7px);
  color: var(--cd4f-green-14);
  line-height: 1.4;
}
.faq-chevron {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: var(--cd4f-green-94);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--cd4f-transition), background var(--cd4f-transition);
}
.faq-chevron svg { width: 14px; height: 14px; stroke: var(--cd4f-green-34); stroke-width: 2; fill: none; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--cd4f-green-49); }
.faq-item.open .faq-chevron svg { stroke: var(--cd4f-white); }
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--cd4f-grey-45);
  line-height: 1.75;
  border-top: 1px solid var(--cd4f-green-94);
  padding-top: 16px;
}
.faq-item.open .faq-answer { display: block; }

.faq-stats { background: var(--cd4f-green-94); padding: 64px var(--cd4f-section-pad-h); }
.faq-stats-inner { max-width: 1100px; margin: 0 auto; }
.faq-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.faq-stat-card {
  background: var(--cd4f-green-99);
  border-radius: 18px;
  padding: 29px 24px 30px;
  text-align: center;
}
.faq-stat-num {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 28.8px);
  color: var(--cd4f-green-34);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.faq-stat-label { font-size: 13.6px; color: var(--cd4f-grey-45); line-height: 1.5; }

.still-questions { background: var(--cd4f-green-99); padding: 80px var(--cd4f-section-pad-h); }
.still-questions-inner { max-width: 1100px; margin: 0 auto; }
.still-questions-header { text-align: center; margin-bottom: 48px; }
.still-questions-header .section-tag-line { justify-content: center; }
.still-questions-header h2 { font-size: clamp(26px, 3vw, 38.4px); color: var(--cd4f-green-14); margin-top: 12px; margin-bottom: 16px; }
.still-questions-header p { color: var(--cd4f-grey-45); max-width: 500px; margin: 0 auto; }
.still-questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sq-card {
  background: var(--cd4f-green-99);
  border: 1px solid var(--cd4f-green-87);
  border-radius: 20px;
  padding: 33px 27px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform var(--cd4f-transition), box-shadow var(--cd4f-transition);
}
.sq-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(46,125,50,0.12); }
.sq-card h3 {
  font-family: var(--cd4f-font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--cd4f-green-14);
  margin-top: 7px;
}
.sq-card p { font-size: 14.1px; color: var(--cd4f-grey-45); line-height: 1.7; }
.sq-card-link {
  display: block;
  font-weight: 700;
  font-size: 14.1px;
  color: var(--cd4f-green-34);
  margin-top: 11px;
  transition: color var(--cd4f-transition);
}
.sq-card-link:hover { color: var(--cd4f-green-49); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: var(--cd4f-section-pad-v) var(--cd4f-section-pad-h); background: linear-gradient(133deg, #0D2A1A 0%, #162E18 100%); }
.contact-page-inner { max-width: var(--cd4f-max-width); margin: 0 auto; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hiw-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid,
  .faq-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  #cd4f-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .home-hero { padding: 100px 24px 60px; }
  .home-hero-inner,
  .grid-2,
  .home-about-grid,
  .service-map-inner,
  .contact-inner,
  .about-story-inner,
  .step-row,
  .page-hero-layout { grid-template-columns: 1fr; gap: 40px; }

  .step-row.reverse { direction: ltr; }
  .step-bg-num { display: none; }
  .home-about-photos { height: 280px; }
  .about-photo-main { right: 0; position: relative; width: 100%; height: 280px; }
  .about-photo-secondary { display: none; }

  .home-hero-photo-grid { height: 260px; grid-template-rows: 1fr 1fr; }

  .hiw-steps-grid,
  .values-grid,
  .items-grid,
  .bagging-steps,
  .still-questions-grid { grid-template-columns: 1fr 1fr; }

  .serve-grid,
  .impact-grid,
  .grid-4,
  .faq-stats-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-inner { flex-direction: column; gap: 32px; }
  .home-hiw-header { flex-direction: column; }

  .items-notes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --cd4f-section-pad-h: 20px; --cd4f-section-pad-v: 60px; }

  .home-hero { min-height: auto; padding: 90px 20px 60px; }
  .home-hero-stats { flex-direction: column; gap: 20px; }
  .page-hero { padding: 100px 20px 60px; }
  .page-hero-layout { grid-template-columns: 1fr; }
  .page-hero-stats { flex-wrap: wrap; gap: 20px; }

  .hiw-steps-grid,
  .values-grid,
  .items-grid,
  .bagging-steps,
  .still-questions-grid,
  .serve-grid,
  .impact-grid,
  .grid-4,
  .faq-stats-grid { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { gap: 12px; }
  .footer-bottom { flex-direction: column; }

  .contact-inner { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .home-hiw-header { flex-direction: column; }
  .cta-inner { flex-direction: column; }
}

/* ============================================================
   WORDPRESS DEFAULTS
   ============================================================ */
.site-main { padding-top: var(--cd4f-nav-h); }
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter, div.aligncenter { display: block; margin: 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
