 /* ─────────────────────────────────────────────────────────────────────────
       Design System & Component Styles (Production)
       ───────────────────────────────────────────────────────────────────────── */


    /* --- CHANGE: H1 styling is now handled by Tailwind classes --- */
    h2, h3, h4, h5, h6 { margin: 0; line-height: var(--lh-tight); font-weight: 900; }
    h2 { font-size: var(--h2); letter-spacing: var(--track-tight); }
    h3 { font-size: var(--h3); }
    p { margin: 0; }
    ul, ol { margin: 0; padding: 0; list-style: none; }
    a { color: var(--brand-secondary); text-decoration: none; }
    a:hover { text-decoration: underline; }
    :focus-visible { outline: 3px solid rgba(0, 115, 170, .25); outline-offset: 2px; border-radius: var(--radius-sm); }
    @media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }

    /* 2. Layout & Global Classes */
    .container { max-width: 1200px; margin-inline: auto; }
    .section-title {
      font: 900 var(--h2)/var(--lh-tight) var(--font-sans);
      letter-spacing: var(--track-tight);
      text-align: center;
      color: var(--brand-dark);
      margin: 80px auto 16px;
    }
    .section-subtitle {
      font: 400 var(--body)/var(--lh-normal) var(--font-sans);
      color: var(--brand-muted);
      text-align: center;
      max-width: 64ch;
      margin: 0 auto 40px;
    }

    /* 3. Components */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 14px 20px; border-radius: var(--radius-lg);
      font-weight: 700; text-decoration: none; border: 2px solid transparent;
      transition: all .2s ease;
    }
    .btn:hover { text-decoration: none; transform: translateY(-1px); }
    .btn--primary { background: var(--brand-dark); color: var(--brand-white); box-shadow: var(--shadow-sm); }
    .btn--primary:hover { background-color: var(--brand-primary); }
    .btn--secondary { border-color: var(--brand-dark); color: var(--brand-dark); }
    .btn--secondary:hover { background: rgba(0, 80, 124, .05); }

    /* Header */
    .header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--brand-keyline); backdrop-filter: saturate(180%) blur(12px); background: rgba(255, 255, 255, .85); }
    .header__nav { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; }
    .header__logo { font-weight: 900; font-size: 1.5rem; color: var(--brand-primary); }
    .header__links { display: none; }
    @media (min-width: 768px) { .header__links { display: flex; align-items: center; gap: 1.5rem; font-size: var(--body-sm); font-weight: 700; } }
    .header__actions { display: flex; align-items: center; gap: 0.75rem; }

    /* Hero */
    .hero { padding: clamp(4rem, 10vw, 6rem) 1.5rem; text-align: center; }
    .hero__copy { max-width: 800.8px; margin-inline: auto; }
    /* --- CHANGE: Removed redundant H1 color rule --- */
    .hero__lead { font-size: var(--h3); color: var(--brand-muted); margin: 1.5rem 0;line-height: 36px; }
    .hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .hero__stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; margin-top: 3rem; color: var(--brand-muted); font-size: var(--body-sm); }
    .hero__stats li:not(:first-child)::before { content: '•'; color: var(--brand-accent); margin-right: 1.5rem; }

    /* Audiences Section */
    #audiences .text-booster-dark { color: #00507C; }
    #audiences .text-emerald-600 { color: #059669; }
    #audiences .group:hover .text-emerald-600 { color: #047857; }
    #audiences .border-t-\[\#FF5722\] { border-top-color: #FF5722; }
    #audiences .border-l-\[\#FF5722\] { border-left-color: #FF5722; }


    /* Timeline */
    .timeline { display: grid; grid-template-columns: 40px 1fr; gap: 1.5rem 2rem; margin-top: 40px; }
    .timeline__rail { position: relative; }
    .timeline__rail::before { content: ''; position: absolute; top: 8px; bottom: 0; left: 19px; width: 2px; background: var(--brand-keyline); }
    .timeline__milestone {
      grid-column: 2; display: grid; grid-template-columns: 1fr; gap: 8px;
      padding-bottom: 40px; position: relative;
    }
    .timeline__milestone::before {
      content: ''; position: absolute; top: 8px; left: -49px; width: 12px; height: 12px;
      border-radius: 99px; background: var(--brand-accent);
      border: 2px solid var(--brand-secondary); box-shadow: 0 0 0 4px var(--brand-white);
    }
    .timeline__year { font-size: var(--body-sm); font-weight: 700; text-transform: uppercase; color: var(--brand-muted); }
    .timeline__card { background: var(--brand-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 20px 24px; }

    /* Values Section */
    .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
    .value-card {
      background: var(--brand-white); border: 1px solid var(--brand-keyline);
      border-radius: var(--radius-md); padding: 24px;
      transition: all .2s ease; border-left: 3px solid transparent;
    }
    .value-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-left-color: var(--brand-secondary); }
    .value-card h3 { font-size: 1.25rem; }

    /* Team Section */
    .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
    .member {
      border-radius: var(--radius-md); background: var(--brand-white);
      box-shadow: var(--shadow-sm); transition: .2s ease; position: relative;
      overflow: hidden;
    }
    .member:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .member__content { padding: 16px; }
    .member .avatar {
      height: 180px; border-radius: 10px;
      background: linear-gradient(180deg, #27486B, #3C5D80); color: #fff;
      display: grid; place-items: center; font: 900 72px/1 var(--font-sans); margin: 16px;
    }
    .member header { margin-bottom: 12px; }
    .member header h3 { font-size: 1.25rem; }
    .member header p { font-size: var(--body-sm); color: var(--brand-muted); }
    .member .focus { font-size: var(--body-sm); }
    .member .voice {
      position: absolute; inset: 0;
      background: rgba(11, 34, 62, .95); backdrop-filter: blur(4px);
      color: #fff; border-radius: 10px; padding: 24px;
      opacity: 0; transform: translateY(12px); transition: .2s ease;
      display: grid; place-content: center; text-align: center;
      font-size: var(--h3); font-weight: 700;
    }
    .member:hover .voice { opacity: 1; transform: translateY(0); }
    .member .seeds { display: flex; gap: 8px; margin-top: 16px; }
    .member .seeds li { font-size: 18px; line-height: 1; background: #F1F5F9; border-radius: 8px; padding: 6px 8px; }

    /* How We Work Section */
    .work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
    .work-item { display: flex; align-items: flex-start; gap: 1rem; }
    .work-item svg { width: 24px; height: 24px; color: var(--brand-dark); flex-shrink: 0; margin-top: 4px; }
    .work-item p { color: var(--brand-muted); }

    /* Footer CTA */
    .footer-cta { background: var(--brand-bg); padding: clamp(3rem, 8vw, 5rem) 1.5rem; text-align: center; }
    .footer-cta h2 { color: var(--brand-dark); }
    .footer-cta p { max-width: 50ch; margin: 1rem auto 1.5rem; color: var(--brand-muted); }
    .footer-cta__buttons { display: flex; justify-content: center; gap: 1rem; }

    /* 19 August */
    .hero__ctas a { line-height: 27px;font-size: 18px; }
    .hero__ctas a.btn--secondary:hover { color: #00507c; }
    .hero__ctas a.btn--secondary:focus { color: #00507c; }
    .hero .hero__stats li { line-height: 24px; }
    .hero #hero-h1 { line-height: 1 !important; }

    #audiences article span {
      font-size: 18px;
    }

    #audiences article ul li {
      color: #334155;
      font-size: 18px;
      line-height: 27px;
    }

    #audiences article a {
      font-size: 18px;
      line-height: 27px;
    }

    #audiences article a:hover {
      text-decoration: underline !important;
    }

    #story .timeline__rail {
      font-size: 18px;
      line-height: 27px;
    }

    #story .timeline__year {
      line-height: 24px;
    }

    #story .timeline__card h3 {
      color: #0f172a;
      font-size: 18px;
      line-height: 20.7px;
      font-weight: 400 !important;
    }

    #story .timeline__card p {
      color: #0f172a;
      font-size: 18px;
      line-height: 27px;
      font-weight: 400 !important;
    }

    #values h2,
    #team h2,
    #work h2,
    .footer-cta h2 {
      font-weight: 900 !important;
    }

    #values .value-card h3 {
      color: #0f172a;
      font-size: 20px;
      line-height: 23px;
      font-weight: 400 !important;
    }

    #values .value-card p {
      color: #0f172a;
      font-size: 18px;
      line-height: 27px;
    }

    #values,
    #team { 
      padding-bottom: 80px;
    }

    #team .member__content header h3 {
      font-weight: 400 !important;
      line-height: 23px;
    }

    #team .member__content header p {
      line-height: 24px;
    }

    #team .member__content p.focus {
      color: #0f172a;
      line-height: 24px;
    }

    #team .voice {
      line-height: 36px;
    }

    #work .work-item h3 {
      color: #0f172a;
      font-size: 18px;
      line-height: 20.7px;
      font-weight: 400 !important;
    }

     #work .work-item p {
      color: #6b7280;
      font-size: 18px;
      line-height: 27px;
      font-weight: 400 !important;
    }

    .footer-cta p { 
      font-size: 18px;
      line-height: 27px;
    }

    .footer-cta .footer-cta__buttons a {
      font-size: 18px;
      line-height: 27px;
    }

    .footer-cta .footer-cta__buttons a.btn--secondary:focus {
      color: #00507C !important;
    }

    .page-template-new-about .container {
      width: 100% !important;
    }

    #team .member .ipad-img,
    #team .member .mobile-img {
      display: none;
    }

    #team .member .desktop-img {
      display: block;
      width: 100%;
    }


    @media (min-width: 640px) {
      .page-template-new-about .container {
          max-width: 640px !important;
      }
    }

    @media (min-width: 768px) {
      .page-template-new-about .container {
          max-width: 768px !important;
      }
    }

    @media (min-width: 1024px) {
      .page-template-new-about .container {
          max-width: 1024px !important;
      }
    }

    @media (min-width: 1280px) {
      .page-template-new-about .container {
          max-width: 1280px !important;
      }
    }

@media (max-width:991px) {
  .hero #hero-h1 {
    font-size: 36px !important;
    line-height: 45px !important;
  }

  #audiences .grid-wrapper {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); 
  }

    #team .member .desktop-img,
    #team .member .mobile-img {
        display: none;
      }

    #team .member .ipad-img {
      display: block;
      width: 100%;
    }
}

@media (max-width:767px) {
    #team .member .desktop-img,
    #team .member .ipad-img {
        display: none;
      }

    #team .member .mobile-img {
      display: block;
      width: 100%;
    }
}