/* ============================================================
   who-we-are.css — rules specific to who-we-are.html.
   Loaded after css/styles.css, which holds the shared base.
   ============================================================ */

/* Header - floating rounded pill */
  .site-header {
    position: fixed; top: 14px;
    left: clamp(14px, 2vw, 28px); right: clamp(14px, 2vw, 28px);
    z-index: 100; padding: 8px clamp(18px, 2vw, 28px);
    background: rgba(250, 244, 232, 0.96);
    backdrop-filter: saturate(180%) blur(14px);
    border-radius: var(--radius-pill);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.95),
      0 3px 0 rgba(31,143,62,0.85),
      0 5px 0 rgba(215,46,31,0.45),
      0 8px 14px rgba(26,20,16,0.06);
    transition: all var(--t-med);
  }

@media (max-width: 980px) {
    .nav-links, .nav-actions .btn-outline { display: none; }
    .nav-toggle { display: inline-flex; }
    .mobile-open .nav-links {
      display: flex; flex-direction: column;
      position: absolute; top: 100%; left: 0; right: 0;
      background: var(--c-cream); padding: 20px;
      gap: 14px; border-radius: 20px;
      margin-top: 12px;
      box-shadow: 0 16px 36px rgba(26,20,16,0.12);
    }
  }

/* Page hero - light breadcrumb banner with image */
  .page-hero {
    position: relative;
    padding: clamp(140px, 18vw, 220px) 0 clamp(70px, 9vw, 110px);
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(247,243,236,0.86) 0%, rgba(237,226,199,0.82) 100%),
      url('../img/who-we-are3.jpg') center/cover;
    color: var(--c-ink);
    border-bottom: 1px solid var(--c-line);
  }

.page-hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31,143,62,0.18), transparent 65%);
    pointer-events: none;
  }

.page-hero .eyebrow { color: var(--c-green); }

.page-hero .eyebrow::before { background: var(--c-green); }

.page-hero h1 { color: var(--c-ink); margin-bottom: 22px; max-width: 18ch; }

/* Sections */
  .intro { background: var(--c-cream); }

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }

.intro-visual {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  }

.intro-visual .pic {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(26,20,16,0.12);
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
  }

/* The flamboyant tree the organization is named for: the logo artwork, sat on
   its own card above the member photos. Contained, not cropped, so the whole
   tree reads. */
.intro-visual .pic-tree {
    grid-column: 1 / -1;
    aspect-ratio: 16/11;
    background-image: url('../img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #fff;
    border: 1px solid var(--c-line);
  }

.intro-visual .pic:nth-child(2) {
    background-image: url('../img/who-we-are1.jpg');
    margin-top: 0;
  }

.intro-visual .pic:nth-child(3) {
    background-image: url('../img/who-we-are2.jpg');
  }

.intro h2 em { color: var(--c-red); font-style: italic; }

@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } .intro-visual { max-width: 500px; } }

/* Pillars */
  .pillars-section { background: var(--c-paper); }

.pillars-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }

.pillars-head .eyebrow { justify-content: center; }

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

.pillar-card {
    background: #fff;
    padding: 32px 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-line);
    transition: all var(--t-med);
  }

.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(26,20,16,0.12); border-color: var(--c-green); }

.pillar-card .ico {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--c-green), var(--c-green-soft));
    color: #fff;
    display: grid; place-items: center;
    margin-bottom: 18px;
  }

.pillar-card:nth-child(even) .ico { background: linear-gradient(135deg, var(--c-red), var(--c-coral)); }

.pillar-card h3 { font-size: 1.15rem; margin-bottom: 8px; }

.pillar-card p { font-size: 0.92rem; margin: 0; }

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

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

/* Timeline */
  .timeline-section { background: var(--c-green-pale); }

.timeline-head { max-width: 720px; margin-bottom: 60px; }

.timeline-head h2 em { color: var(--c-red); font-style: italic; }

.timeline { position: relative; padding-left: 30px; }

.timeline::before {
    content: "";
    position: absolute;
    left: 8px; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--c-green), var(--c-red));
    border-radius: 2px;
  }

.timeline-item {
    position: relative;
    padding-bottom: 40px;
  }

.timeline-item::before {
    content: "";
    position: absolute;
    left: -29px; top: 8px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--c-green);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--c-green);
  }

.timeline-item:nth-child(even)::before { background: var(--c-red); box-shadow: 0 0 0 3px var(--c-red); }

.timeline-item .year {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-red-deep);
    line-height: 1; margin-bottom: 6px;
    letter-spacing: -0.02em;
  }

.timeline-item h3 { font-size: 1.2rem; margin-bottom: 6px; }

.timeline-item p { font-size: 0.96rem; margin: 0; }

/* Founder spotlight */
  .founder { background: var(--c-cream-warm); }

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }

.founder-img {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    background-image:
      linear-gradient(180deg, transparent 55%, rgba(26,20,16,0.55)),
      url('../img/In%20their%20own%20words.JPG');
    box-shadow: 0 30px 60px rgba(26,20,16,0.20);
  }

.founder h2 em { color: var(--c-red); font-style: italic; }

.founder-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-style: italic;
    line-height: 1.35;
    margin: 24px 0;
    padding-left: 26px;
    border-left: 4px solid var(--c-red);
  }

.founder-by { display: flex; align-items: center; gap: 16px; }

.founder-by .avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-red), var(--c-green));
    display: grid; place-items: center;
    color: #fff; font-weight: 800;
    font-family: 'Fraunces', serif; font-size: 1.2rem;
  }

.founder-by strong { display: block; font-family: 'Fraunces', serif; font-size: 1.05rem; }

.founder-by span { font-size: 0.85rem; color: var(--c-red); font-weight: 600; }

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

/* CTA */
  .cta-banner {
    background: linear-gradient(135deg, var(--c-red-deep) 0%, var(--c-red) 100%);
    color: #fff;
    text-align: center;
  }

.cta-banner h2 { color: #fff; margin-bottom: 20px; max-width: 22ch; margin-left: auto; margin-right: auto; }

.cta-banner p { color: rgba(255,255,255,0.92); font-size: 1.08rem; max-width: 56ch; margin: 0 auto 30px; }

.cta-banner .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }

.cta-banner .btn-outline:hover { background: #fff; color: var(--c-red-deep); }

.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.cta-banner .btn-primary { background: #fff; color: var(--c-red-deep); }

.cta-banner .btn-primary:hover { background: var(--c-ink); color: #fff; }
