/* =========================================================
   Global Green Clothing — shared styles
   Edit colors here once and they update across every page.
   ========================================================= */
/* ORIGINAL PALETTE (revert by pasting this back over the :root block below):
:root {
  --gt-green: #00ae42;
  --gt-green-dark: #048a37;
  --gt-black: #212322;
  --gt-grey: #5f6570;
  --gt-light-green: #f1faf5;
  --gt-mint: #eaf6ef;
  --gt-mid-green: #a8ebc6;
  --white: #ffffff;
  --radius: 14px;
  --font-display: "Poppins", Arial, sans-serif;
  --font-body: "Poppins", Arial, sans-serif;
}
*/
:root {
  --gt-green: #6f9350;
  --gt-green-dark: #56753d;
  --gt-black: #2b2e22;
  --gt-grey: #6d7060;
  --gt-light-green: #f2f0e4;
  --gt-mint: #e9e8d8;
  --gt-mid-green: #a9c48a;
  --white: #fdfcf4;
  --radius: 14px;
  --font-display: "Poppins", Arial, sans-serif;
  --font-body: "Poppins", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gt-black);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }
a { color: inherit; }
img { max-width: 100%; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Scroll-reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---------- Eyebrow label ---------- */
.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gt-green);
  margin-bottom: 10px;
}
.label.light { color: var(--gt-mid-green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gt-mid-green); outline-offset: 3px; }
.btn-primary {
  background: var(--gt-green);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(0, 174, 66, 0.32);
}
.btn-primary:hover { background: var(--gt-green-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }
.btn-dark {
  background: var(--gt-black);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(33, 35, 34, 0.25);
}
.btn-dark:hover { background: #050605; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(33, 35, 34, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img { height: 40px; width: auto; flex-shrink: 0; transition: transform 0.3s ease; }
.logo:hover img { transform: scale(1.05); }
.footer-logo img { height: 32px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a:not(.btn) {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--gt-black);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.nav-links a:not(.btn):hover { color: var(--gt-green); border-bottom-color: var(--gt-green); }
.nav-links a.active { color: var(--gt-green); border-bottom-color: var(--gt-green); }
.nav-links .btn { padding: 11px 24px; font-size: 13px; }

/* ---------- Nav dropdowns ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  color: var(--gt-black);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.nav-dropdown-toggle .chev { flex-shrink: 0; transition: transform 0.2s ease; }
.nav-dropdown-toggle:hover,
.nav-dropdown.open > .nav-dropdown-toggle,
.nav-dropdown:focus-within > .nav-dropdown-toggle {
  color: var(--gt-green);
  border-bottom-color: var(--gt-green);
}
.nav-dropdown-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.nav-dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  background: var(--white);
  border: 1px solid rgba(33, 35, 34, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(33, 35, 34, 0.12);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu li { width: 100%; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gt-black);
  text-decoration: none;
  border-bottom: none;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a.active {
  background: var(--gt-light-green);
  color: var(--gt-green);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--gt-black);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ---------- Home hero ---------- */
.home-hero {
  background: var(--gt-green);
  text-align: center;
  padding: 72px 24px 64px;
  position: relative;
  overflow: hidden;
}
.home-hero .inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.home-hero .label { color: var(--gt-mid-green); }
.home-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin: 14px 0 20px;
}
.home-hero h1 .accent { color: var(--gt-mid-green); }
.home-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto 30px;
}

/* ---------- Falling clothes background ---------- */
.hero-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-rain-item {
  position: absolute;
  top: 0;
  color: rgba(255, 255, 255, 0.35);
  animation: heroRainFall linear infinite;
}
.hero-rain-item svg { display: block; }
.hero-rain-item img { display: block; filter: brightness(0) invert(1); opacity: 0.35; }
@keyframes heroRainFall {
  0% { transform: translateY(-15vh) rotate(0deg); opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { transform: translateY(85vh) rotate(360deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-rain { display: none; }
}

/* ---------- Brand statement ---------- */
.brand-statement {
  text-align: center;
  padding: 84px 0 56px;
}
.brand-statement h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--gt-black);
}
.brand-statement h2 .accent { color: var(--gt-green); display: block; }
.brand-statement p {
  margin-top: 18px;
  font-size: 16px;
  color: var(--gt-grey);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Achievements / stats ---------- */
.achievements { padding: 40px 0 88px; text-align: center; }
.achievements .section-eyebrow { margin-bottom: 4px; }
.achievements h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--gt-black);
  margin-bottom: 0;
}
.achievements-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px) 1fr;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
}
.achievements-image img {
  width: 100%;
  height: auto;
  display: block;
}
.stats-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.stat .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 56px);
  color: var(--gt-green);
  line-height: 1;
  margin-bottom: 10px;
}
.stat .desc {
  display: block;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--gt-black);
}

/* ---------- Service area ---------- */
.service-area {
  background: var(--gt-mint);
  padding: 72px 0;
  text-align: center;
}
.service-area .pin {
  margin: 0 auto 20px;
}
.service-area h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--gt-black);
  margin-bottom: 14px;
}
.service-area p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--gt-grey);
  font-size: 16px;
}
.service-area .area-list {
  margin-top: 26px;
  font-weight: 600;
  color: var(--gt-green);
  font-size: 15px;
  letter-spacing: 0.02em;
}
.map-embed {
  margin: 36px auto 0;
  max-width: 900px;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(33, 35, 34, 0.12);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Bin photo gallery ---------- */
.bin-gallery {
  padding: 24px 0 88px;
  text-align: center;
}
.bin-gallery .section-head { max-width: 640px; margin-left: auto; margin-right: auto; }
.bin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.bin-photo-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(33, 35, 34, 0.08);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bin-photo-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(33, 35, 34, 0.12); }
.bin-photo-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.bin-photo-card img.fit-contain {
  object-fit: contain;
  background: var(--gt-light-green);
}
.bin-photo-card figcaption {
  padding: 18px 22px 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gt-grey);
}

/* ---------- Three-column info ---------- */
.info-columns {
  padding: 88px 0;
  text-align: center;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.info-grid h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gt-black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.info-grid p {
  font-size: 15px;
  color: var(--gt-grey);
}

/* ---------- Sub-page hero banner ---------- */
.page-hero {
  background: var(--gt-green);
  color: var(--white);
  padding: 64px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  margin-top: 12px;
  color: var(--white);
}
.page-hero p {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--gt-black);
  margin-bottom: 14px;
}
.section-head p { font-size: 17px; color: var(--gt-grey); }

/* ---------- Cards / steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: var(--white);
  border: 1px solid rgba(33, 35, 34, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(33, 35, 34, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(33, 35, 34, 0.1);
}
.step-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gt-green);
  background: var(--gt-light-green);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.step h3 { font-size: 21px; font-weight: 700; color: var(--gt-black); margin-bottom: 10px; }
.step p { font-size: 15.5px; color: var(--gt-grey); }
.step .step-icon { margin-bottom: 14px; }

/* ---------- Donation journey timeline ---------- */
.journey { position: relative; max-width: 640px; margin: 0 auto; }
.journey::before {
  content: '';
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 48px;
  width: 2px;
  background: var(--gt-mid-green);
}
.journey-step {
  position: relative;
  display: flex;
  gap: 26px;
  padding-bottom: 52px;
}
.journey-step:last-child { padding-bottom: 0; }
.journey-marker { position: relative; z-index: 1; flex: 0 0 96px; }
.journey-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(33, 35, 34, 0.08);
  box-shadow: 0 4px 16px rgba(33, 35, 34, 0.06);
}
.journey-icon img { width: 74%; height: 74%; object-fit: contain; }
.journey-content { padding-top: 22px; }
.journey-content h3 { font-size: 21px; font-weight: 700; color: var(--gt-black); margin-bottom: 8px; }
.journey-content p { font-size: 15.5px; color: var(--gt-grey); line-height: 1.7; }

/* ---------- Impact: garment tags ---------- */
.impact-band { background: var(--gt-mint); }
.tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tags.two-col { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin: 0 auto; }
.tag {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(33, 35, 34, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tag:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(33, 35, 34, 0.1); }
.tag .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--gt-green);
  display: block;
}
.tag .desc {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gt-grey);
  margin-top: 8px;
  display: block;
}

/* ---------- Accepted items ---------- */
.items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.items-card {
  border-radius: var(--radius);
  padding: 36px 32px;
}
.items-card.yes { background: var(--gt-green); color: var(--white); }
.items-card.no { background: var(--white); border: 1px solid rgba(33, 35, 34, 0.1); }
.items-card h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.items-card.no h3 { color: var(--gt-black); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-size: 14.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  transition: transform 0.15s ease;
}
.pill:hover { transform: scale(1.06); }
.yes .pill { background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.4); }
.no .pill { background: var(--gt-light-green); border: 1px solid rgba(33,35,34,0.08); color: var(--gt-grey); }
.items-note { margin-top: 22px; font-size: 14px; opacity: 0.85; }

/* ---------- Partner ---------- */
.dark-band { background: var(--gt-green); color: var(--white); }
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.dark-band h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 700; margin-bottom: 16px; }
.dark-band p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 16px; }
.check-list { list-style: none; margin: 22px 0 30px; }
.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  font-size: 16px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gt-green);
  font-weight: 800;
}
.partner-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: background 0.2s ease, transform 0.25s ease;
}
.partner-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-4px); }
.partner-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.partner-card p { font-size: 15.5px; margin-bottom: 0; }
.partner-card + .partner-card { margin-top: 20px; }

/* ---------- Community slideshow ---------- */
.slideshow {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.slideshow-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(33, 35, 34, 0.15);
  background: var(--gt-black);
}
.slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.slideshow-slide.active { opacity: 1; pointer-events: auto; }
.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slideshow-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 24px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}
.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--gt-black);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(33, 35, 34, 0.2);
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 2;
}
.slideshow-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.06); }
.slideshow-arrow.prev { left: 14px; }
.slideshow-arrow.next { right: 14px; }
.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slideshow-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(33, 35, 34, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.slideshow-dots .dot.active { background: var(--gt-green); transform: scale(1.2); }

/* ---------- Contact cards ---------- */
.pickup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pickup-card {
  background: var(--white);
  border: 1px solid rgba(33, 35, 34, 0.08);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: 0 4px 20px rgba(33, 35, 34, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pickup-card:hover { transform: translateY(-4px); box-shadow: 0 14px 26px rgba(33, 35, 34, 0.1); }
.pickup-card h3 { font-size: 22px; font-weight: 700; color: var(--gt-black); margin-bottom: 12px; }
.pickup-card p { color: var(--gt-grey); margin-bottom: 24px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--gt-green);
  margin-bottom: 12px;
  text-decoration: none;
}
.contact-line:hover { text-decoration: underline; }
.contact-line svg { flex-shrink: 0; }

/* ---------- Schedule form ---------- */
.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(33, 35, 34, 0.08);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: 0 4px 24px rgba(33, 35, 34, 0.06);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gt-green);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 16px;
  border: 1.5px solid rgba(33, 35, 34, 0.12);
  border-radius: 10px;
  background: var(--gt-light-green);
  color: var(--gt-black);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gt-green);
  box-shadow: 0 0 0 3px rgba(0, 174, 66, 0.18);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 26px; text-align: center; }
.form-submit .btn { width: 100%; font-size: 15px; padding: 16px; }
.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 700;
  display: none;
  text-align: center;
}
.form-status.success { display: block; background: rgba(0,174,66,0.12); color: var(--gt-green-dark); border: 1.5px solid var(--gt-green); }
.form-status.error { display: block; background: rgba(200,80,60,0.1); color: #8a3324; border: 1.5px solid #c8503c; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 700; margin-bottom: 14px; }
.cta-band p { max-width: 520px; margin: 0 auto 30px; font-size: 17px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer {
  background: var(--gt-green);
  color: rgba(255, 255, 255, 0.9);
  padding: 56px 0 26px;
  font-size: 15px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding-bottom: 36px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.15s ease, transform 0.15s ease;
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}
footer h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
footer a:hover { color: var(--white); text-decoration: underline; }
.footer-logo img { filter: brightness(0) invert(1); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- Wholesale page ---------- */
.wholesale-hero { padding: 64px 0 100px; text-align: center; position: relative; overflow: hidden; }
.wholesale-hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  opacity: 0.22;
  pointer-events: none;
}
.wholesale-hero .container { position: relative; z-index: 1; }
.wholesale-badge {
  display: inline-block;
  border: 2px solid rgba(33, 35, 34, 0.15);
  border-radius: 999px;
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gt-black);
  margin-bottom: 32px;
}
.wholesale-hero h1 {
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 700;
  color: var(--gt-black);
  margin-bottom: 36px;
}
.wholesale-hero h1 .accent { color: var(--gt-green); display: block; }
.wholesale-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: start;
}
.wholesale-feature-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(33, 35, 34, 0.12);
}
.wholesale-feature-list { list-style: none; }
.wholesale-feature-list li { margin-bottom: 22px; }
.wholesale-feature-list li:last-child { margin-bottom: 0; }
.wholesale-feature-list strong {
  display: block;
  color: var(--gt-black);
  font-size: 16.5px;
  margin-bottom: 4px;
}
.wholesale-feature-list span { color: var(--gt-grey); font-size: 15px; }

.wholesale-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.wholesale-photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(33, 35, 34, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wholesale-photo-grid img:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(33, 35, 34, 0.14); }
.wholesale-photo-grid img.fit-contain { object-fit: contain; background: var(--gt-light-green); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .wholesale-feature-grid { grid-template-columns: 1fr; }
  .wholesale-photo-grid { grid-template-columns: 1fr; }
  .steps, .info-grid { grid-template-columns: 1fr; }
  .achievements-layout { grid-template-columns: 1fr; gap: 32px; }
  .achievements-image { max-width: 300px; margin: 0 auto; order: -1; }
  .stats-col { flex-direction: row; justify-content: center; gap: 32px; }
  .bin-gallery-grid { grid-template-columns: 1fr; }
  .tags { grid-template-columns: repeat(2, 1fr); }
  .tags.two-col { grid-template-columns: 1fr; }
  .items-grid, .partner-grid, .pickup-grid, .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .form-wrap { padding: 32px 24px; }
  .slideshow-arrow { width: 36px; height: 36px; font-size: 16px; }
  .slideshow-arrow.prev { left: 8px; }
  .slideshow-arrow.next { right: 8px; }
  .slideshow-caption { font-size: 13.5px; padding: 26px 16px 14px; }
  .journey { max-width: 100%; }
  .journey::before { left: 36px; top: 36px; bottom: 36px; }
  .journey-step { gap: 18px; padding-bottom: 40px; }
  .journey-marker { flex: 0 0 72px; }
  .journey-icon { width: 72px; height: 72px; }
  .journey-content { padding-top: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }

  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid rgba(33, 35, 34, 0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; padding: 10px 0; }
  .nav-links .btn { margin-top: 8px; }

  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 0 0 3px; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    margin-top: 0;
    padding: 0;
    min-width: 0;
    transition: max-height 0.25s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    visibility: visible;
    max-height: 300px;
    padding: 4px 0 4px 14px;
  }
}
