:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f1348a9 *//* ============================================================
   ABOUT US PAGE
   US Philanthropy Circle
   Responsive Desktop / Tablet / Mobile
============================================================ */


/* ============================================================
   PAGE HERO
============================================================ */

.page-hero{
  position:relative;
  overflow:hidden;

  padding:58px 0 46px;

  background:
    radial-gradient(
      100% 100% at 90% -20%,
      rgba(20,96,58,.10),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #fbfaf5,
      var(--cream)
    );
}


/* Decorative gold glow */

.page-hero::after{
  content:"";

  position:absolute;

  width:320px;
  height:320px;

  right:-100px;
  top:-130px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(198,154,63,.15),
      transparent 70%
    );

  pointer-events:none;
}


.page-hero .container{
  position:relative;
  z-index:1;
}


.page-hero .eyebrow{
  display:inline-block;

  margin-bottom:12px;

  font-size:.78rem;
  font-weight:700;

  letter-spacing:.14em;

  text-transform:uppercase;

  color:var(--green);
}


.page-hero h1{
  max-width:800px;
}


.page-hero p{
  max-width:64ch;

  margin-top:16px;

  font-size:1.05rem;

  line-height:1.7;

  color:#3a4552;
}


/* ============================================================
   ABOUT PAGE SECTIONS
============================================================ */

main section{
  padding:66px 0;
}


main section:first-child{
  padding-top:36px;
}


.section-head{
  max-width:760px;

  margin-bottom:40px;
}


.kicker{
  margin-bottom:12px;

  font-size:.76rem;
  font-weight:700;

  letter-spacing:.16em;

  text-transform:uppercase;

  color:var(--gold-600);
}


/* ============================================================
   TWO / THREE COLUMN GRIDS
============================================================ */

.grid-2{
  display:grid;

  grid-template-columns:repeat(2,minmax(0,1fr));

  gap:22px;
}


.grid-3{
  display:grid;

  grid-template-columns:repeat(3,minmax(0,1fr));

  gap:22px;
}


/* ============================================================
   CARDS
============================================================ */

.card{
  height:100%;

  padding:26px;

  background:#fff;

  border:1px solid var(--line);

  border-radius:var(--radius);

  box-shadow:
    0 8px 30px rgba(11,37,69,.04);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}


.card:hover{
  transform:translateY(-3px);

  border-color:rgba(20,96,58,.30);

  box-shadow:var(--shadow);
}


.card h3{
  margin-top:6px;
}


.card .muted{
  margin-bottom:0;
}


/* ============================================================
   CARD ICON
============================================================ */

.icon{
  width:46px;
  height:46px;

  display:grid;
  place-items:center;

  margin-bottom:15px;

  border-radius:12px;

  background:
    rgba(20,96,58,.10);

  color:var(--green);

  font-family:var(--display);

  font-size:1.1rem;
  font-weight:600;
}


/* ============================================================
   SMALL LABEL
============================================================ */

.small{
  font-size:.72rem;
  font-weight:700;

  letter-spacing:.14em;

  line-height:1.4;

  text-transform:uppercase;

  color:var(--muted);
}


/* ============================================================
   ROUNDGLASS / DARK BAND
============================================================ */

.band{
  position:relative;

  overflow:hidden;

  background:
    linear-gradient(
      135deg,
      var(--navy),
      #102f58
    );

  color:#e7edf6;
}


/* subtle decoration */

.band::after{
  content:"";

  position:absolute;

  width:420px;
  height:420px;

  right:-180px;
  top:-180px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(198,154,63,.10),
      transparent 68%
    );

  pointer-events:none;
}


.band .container{
  position:relative;
  z-index:1;
}


.band h2{
  color:#fff;
}


.band .muted{
  color:#b8c4d4;
}


.band .kicker{
  color:var(--gold);
}


.band .grid-3{
  padding-top:6px;
}


.band .grid-3 > div{
  padding:18px 20px;

  border:1px solid rgba(255,255,255,.12);

  border-radius:12px;

  background:
    rgba(255,255,255,.035);
}


/* ============================================================
   TRANSPARENCY FLOW
============================================================ */

.flow{
  display:grid;

  grid-template-columns:repeat(4,minmax(0,1fr));

  gap:0;

  counter-reset:step;

  overflow:hidden;

  background:#fff;

  border:1px solid var(--line);

  border-radius:var(--radius);

  box-shadow:
    0 12px 32px rgba(11,37,69,.05);
}


.step{
  position:relative;

  min-width:0;

  padding:26px 22px;

  counter-increment:step;
}


.step + .step{
  border-left:1px solid var(--line);
}


.step::before{
  content:"0" counter(step);

  display:block;

  margin-bottom:10px;

  font-family:var(--display);

  font-size:.95rem;

  font-weight:600;

  letter-spacing:.08em;

  color:var(--gold-600);
}


.step h3{
  margin-bottom:8px;

  font-size:1.05rem;

  color:var(--navy);
}


.step .muted{
  margin-bottom:0;

  font-size:.92rem;

  line-height:1.6;
}


/* ============================================================
   FAQ SECTION
============================================================ */

.faq{
  max-width:900px;
}


.faq details{
  margin-bottom:12px;

  padding:4px 20px;

  background:#fff;

  border:1px solid var(--line);

  border-radius:12px;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}


.faq details:hover{
  border-color:rgba(20,96,58,.28);
}


.faq details[open]{
  border-color:
    rgba(198,154,63,.45);

  box-shadow:
    0 10px 28px rgba(11,37,69,.06);
}


.faq summary{
  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:18px;

  padding:16px 0;

  list-style:none;

  cursor:pointer;

  font-weight:600;

  color:var(--navy);
}


.faq summary::-webkit-details-marker{
  display:none;
}


.faq summary::after{
  content:"+";

  flex:0 0 auto;

  font-family:var(--display);

  font-size:1.45rem;

  line-height:1;

  color:var(--gold-600);

  transition:
    transform .2s ease;
}


.faq details[open] summary::after{
  content:"−";
}


.faq details p{
  margin:0;

  padding:0 0 17px;

  color:var(--muted);

  line-height:1.65;
}


/* ============================================================
   FINAL VENUE / CONTACT SECTION
============================================================ */

main section:last-child .card{
  position:relative;
}


main section:last-child .card h3{
  margin-top:7px;
}


main section:last-child .card a{
  transition:color .2s ease;
}


main section:last-child .card a:hover{
  color:var(--green-700) !important;
}


/* ============================================================
   FINAL ACTION BUTTONS
============================================================ */

.hero-actions{
  display:flex;

  flex-wrap:wrap;

  gap:14px;

  margin-top:30px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width:900px){

  .page-hero{
    padding:50px 0 40px;
  }


  main section{
    padding:56px 0;
  }


  /* Mission stays 2 columns on tablet */

  .grid-2{
    gap:18px;
  }


  /* Roundglass info */

  .band .grid-3{
    grid-template-columns:repeat(3,1fr);

    gap:14px;
  }


  /* Flow becomes 2 x 2 */

  .flow{
    grid-template-columns:repeat(2,1fr);
  }


  .step + .step{
    border-left:0;
  }


  .step:nth-child(even){
    border-left:1px solid var(--line);
  }


  .step:nth-child(n + 3){
    border-top:1px solid var(--line);
  }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width:650px){

  /* ---------- Hero ---------- */

  .page-hero{
    padding:42px 0 34px;
  }


  .page-hero::after{
    width:220px;
    height:220px;

    right:-90px;
    top:-100px;
  }


  .page-hero .eyebrow{
    margin-bottom:10px;

    font-size:.68rem;

    letter-spacing:.12em;
  }


  .page-hero h1{
    font-size:clamp(
      2rem,
      10vw,
      2.65rem
    );
  }


  .page-hero p{
    margin-top:14px;

    font-size:.96rem;

    line-height:1.65;
  }


  /* ---------- Sections ---------- */

  main section{
    padding:48px 0;
  }


  main section:first-child{
    padding-top:30px;
  }


  .section-head{
    margin-bottom:28px;
  }


  .kicker{
    font-size:.68rem;

    letter-spacing:.14em;
  }


  /* ---------- Grids ---------- */

  .grid-2,
  .grid-3{
    grid-template-columns:1fr;

    gap:16px;
  }


  /* ---------- Cards ---------- */

  .card{
    padding:21px;
  }


  .card:hover{
    transform:none;
  }


  .icon{
    width:42px;
    height:42px;

    margin-bottom:13px;
  }


  /* ---------- Roundglass band ---------- */

  .band .grid-3{
    grid-template-columns:1fr;

    gap:10px;
  }


  .band .grid-3 > div{
    padding:15px 17px;
  }


  /* ---------- Transparency flow ---------- */

  .flow{
    grid-template-columns:1fr;

    border-radius:12px;
  }


  .step{
    padding:22px 20px;
  }


  .step + .step,
  .step:nth-child(even),
  .step:nth-child(n + 3){
    border-left:0;

    border-top:1px solid var(--line);
  }


  .step:first-child{
    border-top:0;
  }


  /* ---------- FAQ ---------- */

  .faq details{
    padding:3px 16px;
  }


  .faq summary{
    gap:14px;

    padding:15px 0;

    font-size:.94rem;

    line-height:1.4;
  }


  .faq summary::after{
    font-size:1.3rem;
  }


  .faq details p{
    padding-bottom:15px;

    font-size:.9rem;
  }


  /* ---------- Bottom actions ---------- */

  .hero-actions{
    flex-direction:column;

    align-items:stretch;

    gap:10px;

    margin-top:24px;
  }


  .hero-actions .btn{
    width:100%;

    text-align:center;
  }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width:400px){

  .page-hero{
    padding:36px 0 30px;
  }


  main section{
    padding:42px 0;
  }


  .card{
    padding:19px;
  }


  .step{
    padding:20px 18px;
  }


  .faq details{
    padding-left:14px;
    padding-right:14px;
  }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion:reduce){

  .card,
  .faq details,
  .faq summary::after{
    transition:none;
  }


  .card:hover{
    transform:none;
  }

}/* End custom CSS */