  :root{
    --bg-black:#0c0b09;
    --gold:#c99a3d;
    --gold-light:#e0b968;
    --text-white:#f5f3ef;
    --text-muted:#c9c6c0;
    --bg-white:#ffffff;
    --bg-dark:#111111;
    --gold:#c99a3d;
    --text-dark:#1a1a1a;
    --text-body:#3d3d3d;
    --text-card:#e8e6e2;
    --divider-light:#e4e2de;
    --divider-dark:#2c2c2c;
    --bg-page:#fbfaf8;
    --card-bg:#ffffff;
    --gold:#c99a3d;
    --gold-dark:#b3872f;
    --text-dark:#1a1a1a;
    --text-body:#5a5a5a;
    --icon-bg:#111111;
    --bg-dark:#0c0b09;
    --gold:#c99a3d;
    --text-white:#f5f3ef;
    --text-muted:#b9b6b0;
    --divider:#3a382f;
    --bg-white:#ffffff;
    --bg-dark:#111111;
    --gold:#c99a3d;
    --gold-light:#e0b968;
    --text-dark:#1a1a1a;
    --text-body:#4a4a4a;
    --text-card-body:#d9d6d0;
  }
 
  *{ box-sizing:border-box; margin:0; padding:0; }
 
  .tpo-hero{
    position:relative;
    width:100%;
    min-height:420px;
    background-color:var(--bg-black);
    overflow:hidden;
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
  }
 
  /* ---- Background image (replace url below with your own image) ---- */
  .tpo-hero__bg{
    position:absolute;
    inset:0;
    background-image:url('../images/thinking-partners.webp');
    background-size:cover;
    background-position:center right;
  }
 
  /* Dark gradient so the image fades into black on the left where the text sits */
  .tpo-hero__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
      90deg,
      rgba(10,9,7,1) 0%,
      rgba(10,9,7,0.97) 28%,
      rgba(10,9,7,0.55) 48%,
      rgba(10,9,7,0.15) 65%,
      rgba(10,9,7,0.05) 100%
    );
  }
 
  .tpo-hero__content{
    position:relative;
    z-index:2;
    max-width:640px;
    padding:64px 40px 64px 64px;
  }
 
  .tpo-hero__eyebrow{
    display:inline-block;
    color:var(--gold);
    font-size:13px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    margin-bottom:18px;
  }
 
  .tpo-hero__title{
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight:700;
    font-size:44px;
    line-height:1.2;
    color:var(--text-white);
  }
 
  .tpo-hero__title span{
    color:var(--gold-light);
  }
 
  .tpo-hero__divider{
    width:56px;
    height:2px;
    background:var(--gold);
    margin:22px 0 22px 0;
  }
 
  .tpo-hero__desc{
    font-size:16px;
    line-height:1.7;
    color:var(--text-muted);
    font-weight:400;
    max-width:520px;
  }
 
  /* ---------- Responsive ---------- */
  @media (max-width: 900px){
    .tpo-hero__title{ font-size:34px; }
    .tpo-hero__content{ padding:48px 28px; max-width:100%; }
    .tpo-hero__overlay{
      background:linear-gradient(180deg, rgba(10,9,7,0.55) 0%, rgba(10,9,7,0.95) 55%, rgba(10,9,7,1) 100%);
    }
  }
 
  @media (max-width: 560px){
    .tpo-hero{ min-height:520px; }
    .tpo-hero__title{ font-size:28px; }
    .tpo-hero__desc{ font-size:14px; }
  }






 
  .tpo-intro{
    width:100%;
    background:var(--bg-white);
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    padding:20px;
  }
 
  .tpo-intro__grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
  }
 
  /* ---------------- Left column ---------------- */
  .tpo-intro__left p{
    font-size:15px;
    line-height:1.75;
    color:var(--text-body);
    margin-bottom:22px;
  }
 
  .tpo-intro__highlight{
    display:flex;
    align-items:center;
    gap:14px;
    border-left:3px solid var(--gold);
    padding-left:16px;
    margin:8px 0 26px 0;
  }
 
  .tpo-intro__highlight p{
    font-size:18px;
    font-weight:700;
    color:var(--text-dark);
    margin:0;
    line-height:1.4;
  }
 
  /* ---------------- Right column (dark card) ---------------- */
  .tpo-intro__card{
    background:var(--bg-dark);
    border-radius:14px;
    padding:36px 40px;
  }
 
  .tpo-intro__row{
    display:flex;
    align-items:flex-start;
    gap:22px;
    padding:26px 0;
  }
 
  .tpo-intro__row:first-child{
    padding-top:4px;
  }
 
  .tpo-intro__row:last-child{
    padding-bottom:4px;
  }
 
  .tpo-intro__row + .tpo-intro__row{
    border-top:1px solid var(--divider-dark);
  }
 
  .tpo-intro__icon{
    flex-shrink:0;
    width:44px;
    height:44px;
    border:1px solid var(--gold);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
  }
 
  .tpo-intro__icon svg{
    width:20px;
    height:20px;
    stroke:var(--gold);
  }
 
  .tpo-intro__row p{
    font-size:14.5px;
    line-height:1.7;
    color:var(--text-card);
  }
 
  .tpo-intro__row p strong{
    color:#ffffff;
    font-weight:600;
  }
 
  /* ---------------- Responsive ---------------- */
  @media (max-width: 900px){
    .tpo-intro{ padding:48px 24px; }
    .tpo-intro__grid{
      grid-template-columns:1fr;
      gap:36px;
    }
    .tpo-intro__card{ padding:28px 24px; }
  }





  .wwd{
    width:100%;
    background:var(--bg-page);
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    padding:20px;
    text-align:center;
  }
 
  .wwd__eyebrow{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    color:var(--gold);
    font-size:12.5px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
  }
 
  .wwd__eyebrow::before,
  .wwd__eyebrow::after{
    content:"";
    width:34px;
    height:1px;
    background:var(--gold);
  }
 
  .wwd__title{
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight:700;
    font-size:28px;
    color:var(--text-dark);
    margin-bottom:44px;
  }
 
  .wwd__grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:22px;
  }
 
  .wwd__card{
    background:var(--card-bg);
    border-radius:10px;
    padding:34px 20px 26px;
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
    position:relative;
    overflow:hidden;
  }
 
  .wwd__card::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:4px;
    background:linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  }
 
  .wwd__icon{
    width:64px;
    height:64px;
    margin:0 auto 20px;
    border-radius:50%;
    background:var(--icon-bg);
    border:2px solid var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
  }
 
  .wwd__icon svg{
    width:30px;
    height:30px;
    stroke:var(--gold);
  }
 
  .wwd__card-title{
    font-size:16px;
    font-weight:700;
    color:var(--text-dark);
    line-height:1.35;
    margin-bottom:14px;
  }
 
  .wwd__divider{
    width:30px;
    height:2px;
    background:var(--gold);
    margin:0 auto 14px;
  }
 
  .wwd__desc{
    font-size:12.5px;
    line-height:1.7;
    color:var(--text-body);
  }
 
  /* ---------------- Responsive ---------------- */
  @media (max-width: 1024px){
    .wwd__grid{ grid-template-columns:repeat(3, 1fr); }
  }
 
  @media (max-width: 640px){
    .wwd{ padding:48px 20px; }
    .wwd__grid{ grid-template-columns:repeat(2, 1fr); }
    .wwd__title{ font-size:22px; }
  }
 
  @media (max-width: 420px){
    .wwd__grid{ grid-template-columns:1fr; }
  }






 
  .wws{
    width:100%;
    background:var(--bg-dark);
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    padding:20px;
  }
 
  .wws__grid{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    gap:48px;
    align-items:center;
  }
 
  /* ---------------- Left column ---------------- */
  .wws__left{
    flex:1 1 340px;
    min-width:280px;
  }
 
  .wws__eyebrow{
    color:var(--gold);
    font-size:12.5px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    margin-bottom:14px;
  }
 
  .wws__title{
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight:700;
    font-size:26px;
    line-height:1.35;
    color:var(--text-white);
    margin-bottom:18px;
  }
 
  .wws__desc{
    font-size:14px;
    line-height:1.75;
    color:var(--text-muted);
    max-width:400px;
  }
 
  /* ---------------- Right column (icon grid) ---------------- */
  .wws__right{
    flex:1 1 560px;
    min-width:280px;
  }
 
  .wws__items{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
  }
 
  .wws__item{
    text-align:center;
    padding:20px 16px;
    border-right:1px solid var(--divider);
    border-bottom:1px solid var(--divider);
  }
 
  /* remove right border on last column of each row (3 columns) */
  .wws__item:nth-child(3n){
    border-right:none;
  }
 
  /* remove bottom border on last row */
  .wws__item:nth-last-child(-n+3){
    border-bottom:none;
  }
 
  .wws__icon{
    width:34px;
    height:34px;
    margin:0 auto 12px;
  }
 
  .wws__icon svg{
    width:60px;
    height:60px;
    stroke:var(--gold);
  }
 
  .wws__label{
    font-size:12.5px;
    font-weight:700;
    color:var(--text-white);
    line-height:1.5;
  }
 
  /* ---------------- Responsive ---------------- */
 
  /* Tablet: 2 columns */
  @media (max-width: 860px){
    .wws{ padding:48px 32px; }
 
    .wws__items{ grid-template-columns:repeat(2, 1fr); }
 
    .wws__item{ border-right:1px solid var(--divider); }
    .wws__item:nth-child(3n){ border-right:1px solid var(--divider); }
    .wws__item:nth-child(2n){ border-right:none; }
 
    .wws__item{ border-bottom:1px solid var(--divider); }
    .wws__item:nth-last-child(-n+3){ border-bottom:1px solid var(--divider); }
    .wws__item:nth-last-child(-n+2){ border-bottom:none; }
  }
 
  /* Mobile: 1 column, no vertical dividers, only horizontal */
  @media (max-width: 560px){
    .wws{ padding:40px 24px; }
 
    .wws__grid{ gap:32px; }
    .wws__desc{ max-width:100%; }
 
    .wws__items{ grid-template-columns:repeat(2, 1fr); }
 
    .wws__item{
      border-top: 1px solid var(--divider) !important;
      border-bottom:1px solid var(--divider) !important;
      padding:18px 8px;
    }
  }





 
  .purpose{
    width:100%;
    background:var(--bg-white);
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    padding:20px;
  }
 
  .purpose__grid{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    gap:40px;
    align-items:center;
  }
 
  /* ---------------- Left column ---------------- */
  .purpose__left{
    flex:1 1 380px;
    min-width:280px;
  }
 
  .purpose__eyebrow{
    color:var(--gold);
    font-size:12.5px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    margin-bottom:14px;
  }
 
  .purpose__title{
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight:700;
    font-size:26px;
    line-height:1.3;
    color:var(--text-dark);
    margin-bottom:16px;
  }
 
  .purpose__desc{
    font-size:14px;
    line-height:1.75;
    color:var(--text-body);
    max-width:420px;
  }
 
  /* ---------------- Right column (dark CTA card) ---------------- */
  .purpose__right{
    flex:1 1 480px;
    min-width:280px;
  }
 
  .purpose__card{
    background:var(--bg-dark);
    border-radius:14px;
    padding:32px 40px;
    display:flex;
    align-items:center;
    gap:28px;
    position:relative;
    overflow:hidden;
  }
 
  /* subtle decorative gold arc in the background */
  .purpose__card::before{
    content:"";
    position:absolute;
    right:-60px;
    top:-80px;
    width:280px;
    height:280px;
    border:1px solid rgba(201,154,61,0.25);
    border-radius:50%;
  }
 
  .purpose__icon{
    flex-shrink:0;
    width:76px;
    height:76px;
    border:1px solid var(--gold);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:1;
  }
 
  .purpose__icon svg{
    width:34px;
    height:34px;
    stroke:var(--gold);
  }
 
  .purpose__content{
    position:relative;
    z-index:1;
    flex:1;
    min-width:0;
  }
 
  .purpose__card-title{
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight:700;
    font-size:21px;
    line-height:1.35;
    color:#ffffff;
    margin-bottom:10px;
  }
 
  .purpose__card-title span{
    color:var(--gold-light);
    display:block;
  }
 
  .purpose__card-sub{
    font-size:13.5px;
    line-height:1.6;
    color:var(--text-card-body);
    margin-bottom:20px;
  }
 
  .purpose__btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--gold);
    color:#1a1a1a;
    font-size:13.5px;
    font-weight:700;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    white-space:nowrap;
  }
 
  .purpose__btn svg{
    width:15px;
    height:15px;
    stroke:#1a1a1a;
  }
 
  /* ---------------- Responsive ---------------- */
  @media (max-width: 900px){
    .purpose{ padding:44px 24px; }
    .purpose__card{
      flex-direction:column;
      text-align:center;
      padding:32px 24px;
    }
    .purpose__content{ width:100%; }
  }
 
  @media (max-width: 480px){
    .purpose__title{ font-size:22px; }
    .purpose__card-title{ font-size:19px; }
  }