/* =========================================================
   Who We Are — page-specific styles
   Extends the base style.css; only new elements live here.
   ========================================================= */

/* ---------- 1. Hero ---------- */
.wwa-hero{
  background:
    linear-gradient(168deg, var(--bg-b) 0%, var(--bg-a) 50%, var(--bg-gold) 100%);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}
.wwa-hero-eyebrow{
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1rem;
}
.wwa-hero h1{
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto 1.2rem;
}
.wwa-hero-sub{
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--brown);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- 2. Timeline ---------- */
.timeline{
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 2.5rem;
}

.timeline-title{
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--ink);
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
}

/* Horizontal track line */
.timeline-track{
  position: absolute;
  top: 2.5rem;
  left: 5%;
  right: 5%;
  height: 3px;
  background: var(--olive);
  border-radius: 2px;
  grid-column: 1 / -1;
}

.timeline-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.timeline-dot{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--olive-dark);
  border: 3px solid var(--bg-b);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-year{
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--olive-dark);
  margin-top: 0.6rem;
}

.timeline-card{
  margin-top: 0.5rem;
  padding: 0 0.6rem;
}
.timeline-card h4{
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.timeline-card p{
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--brown);
  margin: 0;
}

/* Timeline responsive — stack vertically on mobile */
@media (max-width: 768px){
  .timeline{
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-left: 2rem;
    gap: 1.8rem;
  }
  .timeline-track{
    top: 0;
    bottom: 0;
    left: 0.45rem;
    right: auto;
    width: 3px;
    height: 100%;
  }
  .timeline-item{
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }
  .timeline-dot{
    margin-top: 0.2rem;
    position: absolute;
    left: -2rem;
  }
  .timeline-year{
    margin-top: 0;
    min-width: 3.2rem;
  }
  .timeline-card{
    margin-top: 0;
    padding: 0;
  }
}

/* ---------- 3. Who We Serve ---------- */
.wwa-serve-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.wwa-serve-text{
  padding-top: 0.5rem;
}

.wwa-serve-channels{
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.serve-channel{
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.3rem 1.4rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(32, 26, 18, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.serve-channel:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(32, 26, 18, 0.12);
}
.serve-icon{
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-b);
  color: var(--olive-dark);
}
.serve-icon svg{
  width: 22px;
  height: 22px;
}
.serve-channel h4{
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.serve-channel p{
  font-size: 0.88rem;
  color: var(--brown);
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 900px){
  .wwa-serve-block{
    grid-template-columns: 1fr;
  }
}

/* ---------- 4. Mission & Vision cards ---------- */
.mv-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.mv-card{
  background: var(--white);
  border-radius: 16px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: 0 4px 16px rgba(32, 26, 18, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.mv-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(32, 26, 18, 0.12);
}
.mv-icon{
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-b);
  color: var(--olive-dark);
  margin-bottom: 1.1rem;
}
.mv-icon svg{
  width: 24px;
  height: 24px;
}
.mv-card h3{
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.mv-card p{
  font-size: 0.94rem;
  color: var(--brown);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 640px){
  .mv-grid{
    grid-template-columns: 1fr;
  }
}

/* ---------- 5. Values grid ---------- */
.values-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card{
  text-align: center;
  padding: 1.6rem 1rem;
  background: var(--bg-b);
  border-radius: 10px;
  transition: transform 0.2s ease;
}
.value-card:hover{
  transform: translateY(-3px);
}
.value-icon{
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  color: var(--olive-dark);
}
.value-icon svg{
  width: 100%;
  height: 100%;
}
.value-card h4{
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.value-card p{
  font-size: 0.84rem;
  color: var(--brown);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px){
  .values-grid{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px){
  .values-grid{
    grid-template-columns: 1fr;
  }
}

/* ---------- 6. Impact stats ---------- */
.wwa-impact{
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.wwa-impact-eyebrow{
  text-align: center;
  display: block;
}
.wwa-impact-title{
  text-align: center;
  margin-bottom: 0.6em;
}
.wwa-impact-intro{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--brown);
}
.wwa-impact-note{
  text-align: center;
  max-width: 640px;
  margin: 2.2rem auto 0;
  font-size: 0.95rem;
  color: var(--brown);
}

.impact-stats{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.impact-stat{
  text-align: center;
  padding: 1.8rem 1rem 1.6rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(32, 26, 18, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.impact-stat:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(32, 26, 18, 0.14);
}
.impact-number{
  position: relative;
  display: block;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.7rem;
  padding-bottom: 0.6rem;
}
.impact-number::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--olive);
}
.impact-label{
  display: block;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: var(--brown);
  line-height: 1.4;
}

@media (max-width: 900px){
  .impact-stats{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px){
  .impact-stats{
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }
}

/* ---------- 7. Looking Ahead CTA overrides ---------- */
.wwa-ahead{
  position: relative;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.wwa-ahead > *{
  position: relative;
  z-index: 1;
}
.wwa-ahead h2{
  margin-bottom: 0.3rem;
}
.wwa-ahead p{
  max-width: 60ch;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Decorative watermark icon, echoing the coin motif from the reference CTA */
.wwa-ahead-decor{
  position: absolute;
  top: 50%;
  right: -1.5rem;
  z-index: 0;
  width: clamp(220px, 26vw, 340px);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.14;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px){
  .wwa-ahead-decor{
    display: none;
  }
}
