/* ── TYPE ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--heading-text);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.section { padding: 5.5rem 0; }
.section--alt { background: var(--warm-white); }
.section--dark { background: var(--green-800); }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: '—';
  flex-shrink: 0;
  transform: rotate(var(--rt)) translateY(var(--ry));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.section-h {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 70vw;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 52ch;
  margin-top: 0.75rem;
}

/* ── REVEAL ANIMATION ───────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal       { transform: translateY(24px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.on, .reveal-left.on, .reveal-right.on { opacity: 1; transform: translate(0); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--color-cta-primary); color: var(--off-white);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
  padding: 0.8rem 1.75rem; border-radius: 100px; border: none; cursor: pointer;
  min-height: 50px; box-shadow: 0 2px 12px rgba(234,84,85,0.25);
  transition: background 0.2s ease, transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-primary:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(234,84,85,0.3); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2.5px solid var(--red-500); outline-offset: 3px; }

.btn-primary-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--color-cta-primary); color: var(--off-white);
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  padding: 0 2rem; border-radius: 100px; border: none; cursor: pointer;
  height: 48px; box-shadow: 0 2px 12px rgba(234,84,85,0.3);
  transition: background 0.2s ease, transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-primary-dark:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(234,84,85,0.35); }
.btn-primary-dark:active { transform: translateY(0); }
.btn-primary-dark:focus-visible { outline: 2.5px solid var(--off-white); outline-offset: 3px; }

.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,0.65); color: var(--charcoal);
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  padding: 0 2rem; border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.28);
  cursor: pointer; height: 48px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.btn-outline-light:active { transform: translateY(0); }
.btn-outline-light:focus-visible { outline: 2.5px solid var(--heading-text); outline-offset: 3px; }

/* ── MOTION BUTTON (tertiary) ────────────────────────────── */
.motion-btn {
  position: relative; display: inline-flex; align-items: center;
  border-radius: 100px; padding: 4px; cursor: pointer;
  background: transparent; border: none; text-decoration: none;
  min-height: 44px; overflow: hidden;
}
.motion-btn-dot {
  position: absolute; left: 4px; top: 50%; transform: translateY(-50%);
  height: 36px; width: 36px; border-radius: 100px;
  background: var(--color-brand); z-index: 0;
  transition: width 0.5s ease; pointer-events: none;
}
.motion-btn:hover .motion-btn-dot { width: calc(100% - 8px); }
.motion-btn-icon {
  position: relative; z-index: 1; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; color: var(--off-white); transition: transform 0.5s ease;
}
.motion-btn:hover .motion-btn-icon { transform: translateX(0.35rem); }
.motion-btn-icon svg { width: 16px; height: 16px; flex-shrink: 0; }
.motion-btn-label {
  position: relative; z-index: 1; padding: 0 14px 0 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600;
  white-space: nowrap; color: var(--heading-text); transition: color 0.5s ease;
}
.motion-btn:hover .motion-btn-label { color: var(--off-white); }
.motion-btn:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 3px; border-radius: 100px; }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease;
}
.nav--scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.07);
}
.scroll-progress-bar { position: fixed; top: 0; left: 0; z-index: 9999; height: 2px; width: 0%; background: linear-gradient(90deg, var(--green-500), var(--green-300)); pointer-events: none; transition: width 0.1s linear; }
@media (prefers-reduced-motion: reduce) { .scroll-progress-bar { display: none; } }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; height: 64px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; position: relative;
}
.nav-logo { display: inline-flex; align-items: center; width: fit-content; }
.nav-logo img { height: 42px; width: 126px; object-fit: contain; }
.nav-logo:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 4px; border-radius: 4px; }
.nav-center { height: 100%; display: flex; align-items: center; justify-content: center; gap: 0; list-style: none; position: relative; }
.nav-center li { position: relative; }
.nav-center a {
  display: block; font-size: 0.875rem; font-weight: 500; color: var(--charcoal);
  letter-spacing: 0.01em; padding: 0.5rem 1.25rem;
  transition: color 0.2s ease; position: relative; z-index: 1;
}
.nav-center a:hover { color: var(--color-brand); }
.nav-center a:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 4px; border-radius: 4px; }
.nav-center a.nav-link-active { color: var(--color-brand); }
.nav-hover-bg {
  position: absolute; top: 50%; transform: translateY(-50%);
  height: 34px; border-radius: 6px; background: rgba(58,122,80,0.09);
  pointer-events: none; opacity: 0;
  transition: left 0.22s ease, width 0.22s ease, opacity 0.15s ease;
}
.nav-ind { position: absolute; bottom: -1.5px; height: 2px; border-radius: 1px; pointer-events: none; }
.nav-ind-active { background: var(--color-brand); transition: left 0.35s cubic-bezier(0.34,1.56,0.64,1), width 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s ease; opacity: 0; }
.nav-ind-hover { background: var(--color-brand); opacity: 0; transition: left 0.22s ease, width 0.22s ease, opacity 0.15s ease; }
.nav-right { display: flex; justify-content: flex-end; }
.nav-cta {
  background: var(--color-cta-primary); color: var(--off-white);
  font-family: 'DM Sans', sans-serif; font-size: 0.84rem; font-weight: 600;
  padding: 0.55rem 1.35rem; border-radius: 100px; min-height: 42px;
  display: inline-flex; align-items: center;
  box-shadow: 0 2px 10px rgba(234,84,85,0.22);
  transition: background 0.2s ease, transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
}
.nav-cta:hover { background: var(--red-600); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(234,84,85,0.28); }
.nav-cta:active { transform: translateY(0); }
.nav-cta:focus-visible { outline: 2.5px solid var(--red-500); outline-offset: 3px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; grid-column: 3; justify-self: end; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--heading-text); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { background: var(--heading-text); }

/* ── MOBILE NAV OVERLAY ─────────────────────────────────── */
/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: stretch; }
.contact-left { display: flex; flex-direction: column; }
.contact-photo { width: 100%; aspect-ratio: 3/2; margin-top: 2.5rem; border-radius: 20px; overflow: hidden; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.45rem; letter-spacing: 0.01em; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.875rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--charcoal);
  background: #fff; outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-brand); box-shadow: 0 0 0 3px rgba(58,122,80,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; font-size: 1rem; padding: 1rem; height: 48px; }

/* ── STICKY FOOTER REVEAL ──────────────────────────── */
.footer-reveal { position: relative; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.footer-reveal-inner { position: relative; }
.footer-reveal-inner > .footer { position: sticky; bottom: 0; }



/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--green-800); border-top: 1px solid rgba(58,122,80,0.2); padding: 4rem 0 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand img { width: 180px; height: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-slogan { font-family: 'Plus Jakarta Sans', sans-serif; font-style: italic; font-size: 0.9rem; color: var(--green-light); }
.footer-socials { display: flex; list-style: none; gap: 0.5rem; align-items: center; }
.social-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(58,122,80,0.25); border: 1px solid rgba(85,128,103,0.3); display: flex; align-items: center; justify-content: center; color: var(--green-300); transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s cubic-bezier(0.34,1.56,0.64,1); }
.social-btn:hover { background: rgba(58,122,80,0.5); border-color: rgba(85,128,103,0.6); color: var(--off-white); transform: translateY(-2px); }
.social-btn:active { transform: translateY(0); }
.social-btn:focus-visible { outline: 2px solid var(--green-400); outline-offset: 3px; }
.social-btn svg { width: 22px; height: 22px; }
.footer-divider { border: none; border-top: 1px solid rgba(58,122,80,0.18); margin: 0; }
.footer-grid-bottom { padding-top: 1.5rem; display: grid; grid-template-columns: 1fr; gap: 1rem; }
.footer-copy { font-size: 0.8rem; color: var(--green-400); line-height: 1.6; }
.footer-nav-links ul, .footer-legal-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0; margin: -0.2rem -0.5rem; }
.footer-nav-links a { display: block; padding: 0.2rem 0.5rem; font-size: 0.875rem; color: var(--green-300); transition: color 0.2s ease; }
.footer-nav-links a:hover { color: var(--off-white); }
.footer-legal-links { margin-top: 0.25rem; }
.footer-legal-links a { display: block; padding: 0.2rem 0.5rem; font-size: 0.8rem; color: var(--green-400); transition: color 0.2s ease; }
.footer-legal-links a:hover { color: var(--off-white); }
a:focus-visible { outline: 2px solid var(--green-400); outline-offset: 3px; border-radius: 3px; }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE — SECTION STYLES
═══════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────── */
/* No line decoration, centered, in hero */
.about-hero .eyebrow::before { display: none; }
.about-hero .eyebrow { justify-content: center; }

.about-hero {
  padding-top: 10rem;
  padding-bottom: 0;
}

.about-hero-text {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.about-hero-text h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.08;
  max-width: none;
}

.about-hero-text .hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 70ch;
  margin: 0 auto;
}

.about-hero-image {
  margin-top: 4rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.5rem;
}

.about-hero-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 50%;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 20px 60px rgba(0,0,0,0.09);
}

/* ── Mission & Vision ───────────────────────────────────── */
.mission-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

.mission-section { padding: 11rem 0 5.5rem; }

/* Mission — clean section with heading + body */
.mission-card {
  padding: 0;
  background: none;
  border: none;
}

.mission-card-icon {
  display: none;
}

.mission-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-bottom: 1rem;
}

.mission-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

/* Vision — hidden from mission grid, now its own section */
.mission-card:last-child {
  display: none;
}

/* Vision — full-height statement section */
.vision-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 5.5rem 0;
}

.vision-inner {
  max-width: 100%;
}

.vision-inner .eyebrow {
  margin-bottom: 1.5rem;
}

.vision-inner p:not(.eyebrow) {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--heading-text);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}

/* ── Brand Promise ─────────────────────────────────────── */
.brand-promise {
  background: #fff;
  padding: 7rem 0;
  text-align: center;
}

.brand-promise-inner {
  max-width: 700px;
  margin: 0 auto;
}

.brand-promise p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: -0.01em;
  font-style: italic;
}

/* ── Conviction Statement ──────────────────────────────── */
.conviction {
  padding: 0 0 5.5rem;
}

.conviction-inner {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1.75rem 2.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.05);
  max-width: 70%;
  margin: 0 auto;
}

.conviction-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--green-500);
  line-height: 1.7;
  margin: 0;
}

.conviction .eyebrow { display: none; }

/* ── The Name ──────────────────────────────────────────── */
.the-name {
  background: var(--warm-white);
  padding: 11rem 0;
}

.the-name-inner {
  max-width: 780px;
  margin: 0 auto;
}

.the-name h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.the-name-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 65%;
}

.the-name-inner { max-width: 100%; }

.the-name-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.name-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  min-height: 180px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.name-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.name-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
  height: 100px;
  overflow: hidden;
}

.name-card-text {
  margin-top: 1.5rem;
}

.name-card-text h3 {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.name-card-text p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Card 1: Growth line */
.nc-growth-wrap {
  width: 100%;
  max-width: 180px;
  position: relative;
}

.nc-growth-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.nc-growth-bar {
  flex: 1;
  background: var(--green-100);
  border-radius: 4px 4px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 12px;
}

.nc-growth-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-brand);
  border-radius: 4px 4px 0 0;
  height: 0%;
}

.nc-growth-label {
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-top: 0.5rem;
}

/* Card 2: Steady counter */
.nc-steady-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-text);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: opacity 0.3s ease;
}

.nc-steady-unit {
  font-size: 0.9rem;
  color: var(--color-brand);
  font-weight: 700;
}

.nc-steady-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

/* Card 3: Counting nonprofits */
.nc-count-wrap {
  text-align: center;
}

.nc-count-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.nc-count-plus {
  color: var(--color-brand);
}

.nc-count-dots {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}

.nc-count-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-100);
  transition: background 0.3s ease, transform 0.3s ease;
}

.nc-count-dot.on {
  background: var(--color-brand);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .the-name-cards { grid-template-columns: 1fr; }
}

/* ── Core Values (Interactive List) ───────────────────── */
.values-section {
  background: var(--green-800);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  padding: 2rem 0;
}

.values-section .values-heading {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.values-section .values-heading .eyebrow {
  justify-content: center;
  color: var(--green-light);
  font-size: 0.72rem;
}

.values-section .values-heading .eyebrow::before { display: none; }

.values-section .values-heading h2 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--off-white);
  margin-top: 0.5rem;
}

.values-section > .container {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.values-slider {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

/* Center: content area with counter flanks */
.values-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex: 1;
}

.values-counter {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--off-white);
  opacity: 0.25;
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
}

.values-content {
  position: relative;
  min-height: 200px;
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.values-content-item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.values-content-item.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.values-content-item h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--off-white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.values-content-item p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 50ch;
}

.values-content-num { display: none; }

/* Bottom: navigation list */
.values-nav {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  width: 100%;
}

.values-nav-item {
  flex: 1;
  padding: 0.85rem 0.5rem 0.85rem;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s ease;
  text-align: center;
}

.values-nav-item:not(.active) {
  opacity: 0.35;
}

.values-nav-item:hover {
  opacity: 0.7;
}

.values-nav-item.active {
  opacity: 1;
}

.values-nav-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.values-nav-title span:last-child {
  margin-top: -2px;
}

.values-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--green-light);
  border-radius: 1px;
  transition: width 0.1s linear;
}

.values-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.values-nav-item.active .values-progress-bar {
  opacity: 1;
}

.values-nav-item:not(.active) .values-progress-bar {
  opacity: 0;
  width: 0% !important;
}

/* ── Our Story ──────────────────────────────────────────── */
.story-section {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}

.story-section::before { display: none; }

.story-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.story-eyebrow {
  color: var(--green-light);
  justify-content: center;
}

.story-eyebrow::before { display: none; }

.story-heading {
  color: var(--heading-text);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  margin-top: 0.6rem;
  margin-bottom: 2rem;
}

.story-accent {
  width: 48px;
  height: 3px;
  background: var(--green-light);
  border-radius: 2px;
  margin: 0 auto 2.75rem;
}

.story-body p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
  text-align: left;
}

.story-body p:last-of-type { margin-bottom: 0; }

.story-closing {
  color: var(--color-brand) !important;
  font-weight: 500;
}

/* ── Clients ────────────────────────────────────────────── */
.clients-header {
  text-align: left;
  margin-bottom: 3.5rem;
}

.clients-header h2 { margin-bottom: 0.75rem; }

.clients-trust {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.client-logo-box {
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-box--featured {
  border: 1.5px solid var(--green-200);
  background: var(--green-50);
}

.client-logo-box--placeholder {
  opacity: 0.45;
}

.client-logo-placeholder-inner {
  width: 64px;
  height: 12px;
  background: rgba(0,0,0,0.1);
  border-radius: 6px;
}

.client-logo-box--featured .client-logo-placeholder-inner {
  background: var(--green-200);
  width: 72px;
}

    /* ── CTA BAND ──────────────────────────────────────────── */
.cta-band-outer { padding: 5.5rem 0; display: flex; justify-content: center; }
.cta-band {
  background: var(--green-900); position: relative; overflow: hidden;
  max-width: 80%; width: 100%; border-radius: 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 580px; height: 65vh; padding: 0 !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.08), 0 32px 72px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
}
.cta-left {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  justify-content: space-between; padding: 3.5rem 3rem;
  border-radius: 24px 0 0 24px; align-self: stretch; min-height: 100%;
}
.cta-left-img { position: absolute; inset: 0; z-index: 0; }
.cta-left-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-left-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,19,13,0.55) 0%, rgba(8,19,13,0.25) 40%, rgba(8,19,13,0.45) 100%); }
.cta-left h2, .cta-left .cta-bottom-heading { position: relative; z-index: 1; color: var(--off-white); text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.cta-left h2 { font-size: clamp(2.4rem, 5.6vw, 4.5rem); line-height: 1.08; margin: 0 !important; max-width: none; }
.cta-left .cta-bottom-heading { line-height: 1.1; white-space: nowrap; display: inline-block; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.03em; }
.cta-right { display: flex; flex-direction: column; justify-content: space-between; padding: 3.5rem 3.5rem 3.5rem 2.5rem; }
.cta-body { font-size: 1.5rem; color: var(--green-200); line-height: 1.4; margin-bottom: 1rem; max-width: 100%; font-weight: 500; letter-spacing: -1px; }
.cta-accent { font-size: 1.5rem; color: var(--green-light); line-height: 1.4; margin-bottom: 0; max-width: 100%; font-weight: 500; letter-spacing: -1px; }
.cta-micro { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; text-align: center; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 768px) {
  .cta-band-outer { padding: 3rem 1.5rem; }
  .cta-band { max-width: 100%; border-radius: 16px; grid-template-columns: 1fr; height: auto; min-height: auto; }
  .cta-left { min-height: 320px; border-radius: 16px 16px 0 0; padding: 2.5rem 2rem; }
  .cta-right { padding: 2.5rem 2rem; }
  .cta-body, .cta-accent { font-size: 1rem; }
  .cta-body { margin-bottom: 0.5rem; }
  .cta-right-top { margin-bottom: 2rem; }
  .cta-micro { text-align: left; }
  .cta-buttons { flex-direction: column; gap: 0.75rem; }
  .cta-buttons .btn-slide,
  .cta-buttons .btn-outline-light { width: 100%; justify-content: center; }
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-section-bg {
  background: var(--green-50);
}

.faq-header { margin-bottom: 3rem; }

.faq-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.09);
  overflow: hidden;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover:not(.is-open) { background: rgba(238,244,241,0.4); border-color: rgba(0,0,0,0.12); }

.faq-item.is-open {
  background: linear-gradient(135deg, #fff 0%, rgba(238,244,241,0.6) 50%, #fff 100%);
  border-color: rgba(58,122,80,0.22);
}

.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.25rem 1.5rem; text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.97rem; font-weight: 600;
  color: var(--heading-text); transition: color 0.2s ease;
}
.faq-question:hover { color: var(--color-brand); }
.faq-question:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 3px; border-radius: 8px; }

.faq-chevron {
  flex-shrink: 0; width: 20px; height: 20px; color: var(--muted);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), color 0.2s ease;
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); color: var(--color-brand); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.is-open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.92rem;
}

.faq-answer-inner a { color: var(--color-brand); font-weight: 600; }
.faq-answer-inner a:hover { text-decoration: underline; }

/* FAQ contact card */
.faq-contact-card {
  max-width: 460px;
  margin: 3rem auto 0;
  padding: 1.75rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.09);
  background: #fff;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 8px 28px rgba(0,0,0,0.07);
}

.faq-contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-50); border: 1px solid var(--green-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem;
  color: var(--color-brand);
}
.faq-contact-icon svg { width: 20px; height: 20px; }

.faq-contact-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--heading-text); letter-spacing: -0.01em; margin-bottom: 0.3rem; }
.faq-contact-desc { font-size: 0.84rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.55; }

.btn-faq-contact {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-cta-primary); color: var(--off-white);
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600;
  padding: 0.65rem 1.5rem; border-radius: 100px; border: none; cursor: pointer;
  min-height: 42px; box-shadow: 0 2px 10px rgba(234,84,85,0.22);
  transition: background 0.2s ease, transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-faq-contact:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(234,84,85,0.28); }
.btn-faq-contact:active { transform: translateY(0); }
.btn-faq-contact:focus-visible { outline: 2.5px solid var(--red-500); outline-offset: 3px; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mission-grid { grid-template-columns: 1fr; }
  .story-section { padding: 5rem 0; }
  .story-heading { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .values-stage { gap: 2rem; }
  .values-nav { flex-wrap: wrap; }
.contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.5rem; }
  /* Vision statement */
  .vision-inner p:not(.eyebrow) { letter-spacing: -3px; }
  .vision-section { padding-bottom: 4rem; }

  /* Conviction card + name cards full width, heading 24px */
  .conviction-inner { max-width: 100% !important; }
  .the-name-lead { max-width: 100% !important; }
  .the-name-cards { max-width: 100% !important; }
  .the-name h2 { font-size: 24px; }

  /* Values — 75vh, slider nav */
  .values-section { min-height: 75vh; }
  .values-counter { font-size: 2rem; min-width: 40px; }
  .values-stage { gap: 1.5rem; flex: 1; padding: 2rem 0; }
  .values-content { min-height: 180px; }
  .values-content-item p { font-size: 16px; }
  .values-slider { justify-content: space-between; }

  /* Hide original nav, show slider nav */
  .values-nav { display: none !important; }
  .values-slider-nav {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0 0.5rem;
  }
  .values-slider-nav button {
    background: none; border: none; cursor: pointer; padding: 0.5rem;
    color: rgba(255,255,255,0.6); transition: color 0.2s ease;
  }
  .values-slider-nav button:hover { color: #fff; }
  .values-slider-nav button svg { width: 24px; height: 24px; }
  .values-slider-nav-center {
    display: flex; flex-direction: column; align-items: center; flex: 1; gap: 0.5rem;
  }
  .values-slider-nav-bar {
    width: 60%; height: 2px; background: rgba(255,255,255,0.15); border-radius: 1px; overflow: hidden;
  }
  .values-slider-nav-bar-fill {
    height: 100%; width: 0%; background: var(--green-light); border-radius: 1px;
    transition: width 0.1s linear;
  }
  .values-slider-nav-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--off-white);
    text-align: center;
    letter-spacing: 0.01em;
  }
  .about-hero { padding-top: 8rem; }
  .about-hero-text { padding: 0 1.5rem; }
  .about-hero-image { padding: 0 1.5rem; margin-top: 2rem; }
  .about-hero-image img { height: 450px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-center, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; padding: 0 1.5rem; }

  .footer-grid-bottom { grid-template-columns: 1fr; }

  .footer-nav-links { order: 1; }
  .footer-legal-links { order: 2; }
  .footer-copy { order: 3; }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-grid-bottom {
    text-align: center;
  }

  .footer-nav-links ul,
  .footer-legal-links ul {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }

  #contact.section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  #contact .contact-layout {
    gap: 1.5rem;
  }

  #contact .contact-left .section-sub {
    margin-bottom: 1rem;
  }

  #contact .contact-photo {
    margin-top: 1.25rem !important;
  }

  #contact #contact-form {
    padding-top: 0 !important;
  }

  #contact .form-group {
    margin-bottom: 0.85rem;
  }

  .cta-photo-strip { display: none; }
}

@media (min-width: 1024px) {
  .footer { padding: 4rem 0 2rem; }
  .footer-grid-bottom { grid-template-columns: repeat(10, 1fr); grid-template-rows: auto auto; padding-top: 2rem; gap: 0; }
  .footer-copy { grid-column: 1 / 4; grid-row: 1 / 3; align-self: center; }
  .footer-nav-links { grid-column: 4 / 11; grid-row: 1; }
  .footer-legal-links { grid-column: 4 / 11; grid-row: 2; }
  .footer-nav-links ul, .footer-legal-links ul { justify-content: flex-end; }
}

/* ── SLIDE BUTTON ──────────────────────────────────────── */
.btn-slide {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0.25rem 3.5rem 0.25rem 1.5rem;
  border-radius: 100px;
  background: var(--red-500);
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: padding 0.5s ease;
}
.btn-slide:hover { padding: 0.25rem 1.5rem 0.25rem 3.5rem; }
.btn-slide-label { position: relative; z-index: 1; transition: transform 0.5s ease; white-space: nowrap; }
.btn-slide-icon {
  position: absolute;
  right: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--red-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: right 0.5s ease, transform 0.5s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.24), 0 2px 6px rgba(0,0,0,0.18);
}
.btn-slide:hover .btn-slide-icon { right: calc(100% - 44px); transform: rotate(45deg); }
.btn-slide:focus-visible { outline: 2.5px solid var(--red-500); outline-offset: 3px; }
.btn-slide:active { opacity: 0.85; }
  /* ── LANG SWITCHER ─────────────────────────────────────── */
.lang-switcher { display: flex; align-items: center; gap: 0.35rem; margin-right: 0.75rem; }
.lang-btn { font-size: 0.75rem; font-weight: 500; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s ease; line-height: 1; text-decoration: none; }
.lang-btn:hover { color: var(--charcoal); }
.lang-btn.lang-active { font-weight: 700; color: var(--charcoal); }
.lang-divider { font-size: 0.65rem; color: var(--green-200); line-height: 1; }
@media (max-width: 1023px) { .lang-switcher { display: none; } }
