@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@700&family=Inclusive+Sans:ital@0;1&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --peach:      #FED2CC;
  --cream:      #FFF8EF;
  --orange:     #FFB94A;
  --blue:       #49C6FF;
  --light-blue: #CBEFFF;
  --sand:       #F5E2C8;
  --green:      #097C01;
  --plum:       #221F20;
  --white:      #ffffff;
  --grey:       #D9D9D9;
  --pad: 40px;
}

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

body {
  font-family: 'Inclusive Sans', sans-serif;
  color: var(--plum);
  background: var(--blue);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== NAV ===== */
nav {
  padding: 24px clamp(40px, 7vw, 100px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border: 2px solid var(--plum);
  border-radius: 100px;
  flex: 1;
  min-width: 0;
  background: var(--blue);
}

.nav-logo-link { display: flex; align-items: center; }
.nav-logo-img { height: 34px; width: auto; display: block; max-width: 220px; }

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 18px;
  font-weight: 500;
  color: var(--plum);
  transition: opacity 0.15s;
}

.nav-links a.active { font-weight: 800; }

nav.nav-green .nav-links a { color: var(--peach); }

.nav-links a:hover { opacity: 0.6; }

.nav-join {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
  background: var(--green);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.nav-join:hover { opacity: 0.85; }

.nav-join-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  border: 2px solid var(--plum);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  color: var(--plum);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-join-outline:hover { background: var(--plum); color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
}


/* ===== HERO ===== */
.hero-section {
  background: var(--blue);
  padding: clamp(80px, 14vw, 200px) var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.hero-wordmark {
  width: clamp(300px, 75vw, 1086px);
  height: auto;
  display: block;
}

.hero-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-seam-logo {
  display: block;
  width: clamp(80px, 12vw, 160px);
  height: auto;
  margin-bottom: calc(-1 * clamp(40px, 6vw, 80px));
  position: relative;
  z-index: 1;
}

.hero-leaf {
  flex-shrink: 0;
  width: 39px;
  height: 56px;
}

.hero-intro {
  gap: 53px;
}

.hero-intro p {
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  max-width: 400px;
  color: var(--plum);
}

/* ===== STEPS SECTION ===== */
.steps-section {
  background: var(--cream);
  padding: clamp(60px, 14vw, 200px) clamp(40px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.steps-intro {
  display: flex;
  align-items: center;
  gap: clamp(40px, 7vw, 101px);
  max-width: 1234px;
  width: 100%;
}

.steps-intro-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 0 0 clamp(280px, 41vw, 590px);
}

.steps-intro-img {
  flex: 1;
  min-width: 0;
  max-width: 518px;
  height: auto;
  aspect-ratio: 518 / 397;
  object-fit: cover;
  border-radius: 10px;
  transform: rotate(0deg);
  transition: transform 0.1s linear;
  will-change: transform;
}

.steps-subtext-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: transparent;
  border: 2px solid var(--plum);
  border-radius: 100px;
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--plum);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  align-self: flex-start;
}

.btn-whatsapp:hover { background: var(--plum); color: var(--white); }

.steps-headline {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(40px, 5.2vw, 74px);
  font-weight: 700;
  line-height: 0.89;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--plum);
}

.steps-subtext {
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.33;
  color: var(--plum);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-rule {
  height: 3px;
  background: var(--plum);
  width: 100%;
}

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 24px 0;
}

.step-num {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 78px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--plum);
  flex-shrink: 0;
  width: 100px;
}

.step-body { flex: 1; }

.step-title {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 78px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 20px;
  line-height: 26px;
  color: var(--plum);
}

.how-section {
  background: var(--light-blue);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.how-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.how-heading {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(40px, 5.2vw, 74px);
  font-weight: 700;
  line-height: 0.89;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--plum);
  text-align: center;
}

.section-ellipse {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.how-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 800px;
}

.how-step-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how-read-more {
  display: flex;
  justify-content: center;
}

/* Bottom CTA of steps section */
.steps-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid var(--plum);
  padding-top: 40px;
  gap: 40px;
}

.steps-cta-text {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(32px, 4.3vw, 62px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--plum);
  max-width: 700px;
}

.steps-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.qr-code { width: 100px; height: 100px; border-radius: 8px; }

/* ===== WHO IS THIS FOR SECTION ===== */
.who-section {
  background: var(--cream);
  padding: clamp(60px, 7vw, 100px) clamp(40px, 7vw, 100px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.who-text {
  flex: 0 0 clamp(280px, 43vw, 616px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.who-heading {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(40px, 5.2vw, 74px);
  font-weight: 700;
  line-height: 0.89;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--plum);
}

.who-body {
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.33;
  color: var(--plum);
}

.who-btn { align-self: flex-start; }

.who-img-wrap {
  flex: 1;
  min-width: 0;
  max-width: 558px;
  position: relative;
}

.who-img {
  width: 100%;
  height: auto;
  aspect-ratio: 558 / 444;
  object-fit: cover;
  border-radius: 10px;
}

/* WHO attribution card */
.who-card {
  position: absolute;
  bottom: -60px;
  right: -20px;
  width: 340px;
  background: var(--sand);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.who-card-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--plum);
}

.who-card-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.who-card-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ===== DROPOFF LOCATIONS ===== */
.dropoff-section {
  background: var(--cream);
  padding: clamp(60px, 10vw, 120px) clamp(20px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.dropoff-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

.dropoff-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dropoff-card-logo {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dropoff-card-logo img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.dropoff-card-name {
  font-size: 20px;
  line-height: 28px;
  color: var(--plum);
  white-space: pre-line;
}

.dropoff-cta {
  background: #095B12;
  border-radius: 10px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.dropoff-cta-text {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 600px;
}

.dropoff-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 20px 30px;
  border: 2px solid var(--white);
  border-radius: 100px;
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.dropoff-cta-btn:hover { opacity: 0.75; }

.dropoff-cta-icon {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}

/* ===== SCAN BANNER ===== */
.scan-banner {
  background: var(--blue);
  padding: 60px clamp(40px, 7vw, 100px);
}

.scan-banner-inner {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.scan-banner-heading {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--plum);
  max-width: 700px;
}

.scan-banner-qr {
  width: 118px;
  height: auto;
  flex-shrink: 0;
}

/* ===== PHOTO STRIP ===== */
.photo-strip {
  background: var(--white);
  padding: 60px 0;
  overflow: hidden;
}

.photo-track {
  display: flex;
  gap: 20px;
  animation: scroll-strip 30s linear infinite;
  width: max-content;
}

.photo-track:hover { animation-play-state: paused; }

@keyframes scroll-strip {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.photo-tile {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--grey);
  flex-shrink: 0;
  overflow: hidden;
}

.photo-tile img { width: 100%; height: 100%; object-fit: cover; }

/* ===== FOOTER ===== */
footer {
  background: var(--blue);
  padding: 48px clamp(40px, 7vw, 100px) 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-height: 560px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.footer-logo-img { height: 34px; width: auto; display: block; flex-shrink: 0; }

.footer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  align-items: flex-start;
}

.footer-nav a {
  font-size: 24px;
  line-height: 32px;
  color: var(--plum);
  transition: opacity 0.15s;
}

.footer-nav a:hover { opacity: 0.65; }

.footer-right {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 24px;
  border: 2px solid var(--plum);
  border-radius: 100px;
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--plum);
  white-space: nowrap;
  transition: opacity 0.15s;
}

.footer-wa-btn:hover { opacity: 0.75; }

.footer-qr {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 10px;
  padding: 8px;
  flex-shrink: 0;
}

.footer-qr img { width: 100%; height: 100%; object-fit: contain; display: block; }

.footer-wordmark { margin-top: auto; }
.footer-wordmark-img { width: 100%; height: auto; display: block; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--blue);
  padding: 80px clamp(40px, 7vw, 100px) 100px;
}

.page-hero h1 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--plum);
}

/* ===== GENERIC SECTION ===== */
.section-peach  { background: var(--peach); }
.section-orange { background: var(--orange); }
.section-blue   { background: var(--blue); }
.section-green  { background: var(--green); }
.section-white  { background: var(--white); }

.section-inner {
  padding: 64px clamp(40px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-rule { height: 3px; background: var(--plum); margin: 0 clamp(40px, 7vw, 100px); }

.t-display {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.t-body {
  font-size: 20px;
  line-height: 26px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { opacity: 0.85; }
.btn-green { background: var(--green); color: var(--peach); }
.btn-plum  { background: var(--plum); color: var(--white); }
.btn-outline-plum {
  background: transparent;
  border: 2px solid var(--plum);
  color: var(--plum);
  transition: background 0.15s, color 0.15s;
}
.btn-outline-plum:hover { background: var(--plum); color: var(--white); }

/* ===== CENTERED SECTION HEADINGS WITH ELLIPSES ===== */
.steps-headline-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  text-align: center;
}

.steps-headline-centered span {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--plum);
}

.section-ellipse { width: 50px; height: auto; flex-shrink: 0; }

/* ===== WHO SUB TEXT ===== */
.who-sub {
  font-size: 18px;
  line-height: 26px;
  color: var(--plum);
  text-align: center;
  opacity: 0.7;
  margin-top: -24px;
}

/* ===== WHY CARDS 3-COLUMN ===== */
.why-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ===== GET INVOLVED LABEL ===== */
.gi-label {
  flex: 0 0 300px;
  font-size: clamp(28px, 3.5vw, 48px) !important;
  align-self: flex-start;
}

.gi-section .step-row { align-items: flex-start; }

/* ===== PEACH LOCATIONS ===== */
.locations-section.section-peach .locations-rule { background: var(--plum); }
.locations-section.section-peach .location-rule  { background: var(--plum); }

/* ===== PAGE HERO (inner pages — rich version) ===== */
.page-hero {
  padding: 80px clamp(40px, 7vw, 100px) 100px;
}

.page-hero-inner {
  display: flex;
  align-items: flex-end;
  gap: 80px;
  max-width: 1200px;
}

.page-hero-display {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(64px, 9vw, 130px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--plum);
  flex-shrink: 0;
}

.page-hero-sub {
  font-size: 22px;
  line-height: 30px;
  color: var(--plum);
  max-width: 440px;
  padding-bottom: 12px;
}

/* ===== FAQ ===== */
.faq-item {
  padding: 24px 0;
  border-bottom: 3px solid var(--plum);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-q {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--plum);
}

.faq-a {
  font-size: 18px;
  line-height: 26px;
  color: var(--plum);
}

/* ===== WHY CARDS (about) ===== */
.why-card-num {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--plum);
  flex-shrink: 0;
  width: 80px;
}

/* ===== PARTNER CHIPS ===== */
.partner-chip {
  background: var(--plum);
  color: var(--peach);
  border-radius: 100px;
  padding: 12px 28px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ===== HOW IT WORKS PAGE ===== */

/* Hero */
.hiw-hero {
  background: var(--blue);
  /* blue kept for inner page hero — homepage how-section uses light-blue */
  padding: clamp(60px, 10vw, 120px) clamp(40px, 7vw, 100px);
}

.hiw-hero-inner {
  display: flex;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  max-width: 1200px;
}

.hiw-hero-text {
  flex: 0 0 clamp(280px, 45vw, 590px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hiw-hero-heading {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 700;
  line-height: 0.89;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--plum);
}

.hiw-hero-sub {
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.33;
  color: var(--plum);
}

.hiw-hero-img {
  flex: 1;
  min-width: 0;
  max-width: 518px;
  aspect-ratio: 518/397;
  object-fit: cover;
  border-radius: 10px;
  transform: rotate(0deg);
  transition: transform 0.1s linear;
  will-change: transform;
}

/* 3 simple steps */
.hiw-steps-section {
  background: var(--cream);
  padding: clamp(60px, 10vw, 120px) clamp(40px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.hiw-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: 100%;
  max-width: 1100px;
}

.hiw-step-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hiw-step-num { display: none; }

.hiw-step-title {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--plum);
}

.hiw-step-desc {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--plum);
}

/* Drop-off section */
.hiw-dropoff-section {
  background: var(--light-blue);
  padding: clamp(60px, 10vw, 120px) clamp(40px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hiw-dropoff-intro {
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.4;
  color: var(--plum);
  text-align: center;
}

.hiw-dropoff-cta {
  width: 100%;
  max-width: 1200px;
}

.hiw-dropoff-cta-inner {
  background: var(--blue);
  border-radius: 10px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hiw-dropoff-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 20px 30px;
  border: 2px solid var(--white);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.hiw-dropoff-cta-btn:hover {
  background: var(--white);
  color: var(--blue);
}

/* Keep the circle going */
.hiw-circle-section {
  background: var(--cream);
  padding: clamp(60px, 10vw, 120px) clamp(40px, 7vw, 100px);
}

.hiw-circle-inner {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.hiw-circle-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hiw-circle-heading {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--plum);
}

.hiw-circle-body {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--plum);
}

.hiw-circle-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.hiw-circle-img-wrap {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hiw-circle-icon {
  width: 52px;
  height: auto;
}

/* FAQs */
.hiw-faq-section {
  background: var(--light-blue);
  padding: clamp(60px, 10vw, 120px) clamp(40px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hiw-faq-list {
  width: 100%;
  max-width: 900px;
  border-top: 3px solid var(--plum);
}

.faq-item {
  border-bottom: 3px solid var(--plum);
}

.faq-q {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--plum);
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-size: 32px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 18px;
  line-height: 1.6;
  color: var(--plum);
  padding-bottom: 24px;
}

/* Green ellipse variant */
.section-ellipse--green {
  filter: hue-rotate(0deg);
}

/* ===== WHY THIS MATTERS PAGE ===== */

.wtm-hero {
  background: var(--blue);
  padding: clamp(60px, 10vw, 120px) clamp(40px, 7vw, 100px);
}

.wtm-hero-inner {
  display: flex;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  max-width: 1200px;
}

.wtm-hero-text {
  flex: 0 0 clamp(280px, 45vw, 590px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.wtm-hero-heading {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 700;
  line-height: 0.89;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--plum);
}

.wtm-hero-sub {
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.4;
  color: var(--plum);
}

.wtm-hero-img {
  flex: 1;
  min-width: 0;
  max-width: 518px;
  aspect-ratio: 518/397;
  object-fit: cover;
  border-radius: 10px;
  transform: rotate(0deg);
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Cards section */
.wtm-cards-section {
  background: var(--light-blue);
  padding: clamp(60px, 10vw, 120px) clamp(40px, 7vw, 100px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 100%;
}

.wtm-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wtm-card-img {
  width: 100%;
  aspect-ratio: 321/251;
  object-fit: cover;
  border-radius: 18px;
}

.wtm-card-title {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--plum);
}

.wtm-card-text {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--plum);
}

/* Accordion section */
.wtm-accordion-section {
  background: var(--cream);
  padding: clamp(60px, 10vw, 120px) clamp(40px, 7vw, 100px);
  max-width: 100%;
  border-top: 3px solid var(--plum);
}

.wtm-accordion-item {
  border-bottom: 3px solid var(--plum);
}

.wtm-accordion-heading {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--plum);
  padding: 32px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.wtm-accordion-heading::-webkit-details-marker { display: none; }

.wtm-accordion-heading::after {
  content: '+';
  font-size: 40px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] .wtm-accordion-heading::after {
  transform: rotate(45deg);
}

.wtm-accordion-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 40px;
  max-width: 800px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--plum);
}

.wtm-sdg-wheel {
  max-width: 400px;
  height: auto;
  margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  :root { --pad: 20px; }

  .nav-links { display: none; }
  .nav-join  { display: none; }
  .nav-hamburger { display: flex; }

  .nav-pill { max-width: 100%; }

  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    gap: 12px;
    z-index: 99;
    border-bottom: 2px solid var(--plum);
  }

  .hero-intro { gap: 20px; }
  .hero-leaf { display: none; }

  .step-row { flex-direction: column; gap: 8px; }
  .step-num, .step-title { font-size: 40px; line-height: 48px; }

  .steps-cta { flex-direction: column; align-items: flex-start; }

  .for-me-body { font-size: 36px; }

  .locations-inner { flex-direction: column; }
  .locations-heading { width: auto; }

  .gi-label { flex: none !important; }

  .involved-card { flex-direction: column; align-items: flex-start; }

  .footer-top { flex-direction: column; gap: 32px; }

  .photo-tile { width: 72px; height: 72px; }

  /* Who section */
  .who-section { flex-direction: column; }
  .who-img-wrap { width: 100%; max-width: 100%; }
  .who-card { position: static; width: 100%; margin-top: 16px; }

  /* HIW page */
  .hiw-hero-inner { flex-direction: column; }
  .hiw-hero-img { max-width: 100%; }
  .hiw-steps-grid { grid-template-columns: 1fr; }
  .hiw-dropoff-cta-inner { flex-direction: column; align-items: flex-start; }

  /* WTM page */
  .wtm-hero-inner { flex-direction: column; }
  .wtm-hero-img { max-width: 100%; }
  .wtm-cards-section { grid-template-columns: 1fr; }

  /* Dropoff cards */
  .dropoff-cards { grid-template-columns: 1fr; }

  /* Section heading icons — hide on mobile so headings don't wrap */
  .section-ellipse { display: none; }

  /* Scan banner — stack vertically */
  .scan-banner-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .scan-banner-qr { width: 120px; }

  /* Homepage dropoff CTA — stack */
  .dropoff-cta { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px; }
  .dropoff-cta-icon { display: none; }

  /* HIW keep-the-circle section — stack */
  .hiw-circle-inner { flex-direction: column; gap: 40px; }
  .hiw-circle-img-wrap { max-width: 100%; }
}
