:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6c65c52 *//* ============================================================
   GALA PAGE ONLY
   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)
    );
}

.page-hero::after{
  content:"";

  position:absolute;

  width:340px;
  height:340px;

  right:-110px;
  top:-140px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(198,154,63,.16),
      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:65ch;

  margin-top:16px;

  font-size:1.05rem;
  line-height:1.7;

  color:#3a4552;
}


/* ============================================================
   HERO ACTIONS
============================================================ */

.hero-actions{
  display:flex;
  flex-wrap:wrap;

  gap:14px;

  margin-top:22px;
}


/* ============================================================
   PAGE SECTIONS
============================================================ */

main section{
  padding:66px 0;
}

main section:first-child{
  padding-top:36px;
}


/* ============================================================
   SECTION HEAD
============================================================ */

.section-head{
  max-width:760px;

  margin-bottom:40px;
}

.section-head.center{
  margin-left:auto;
  margin-right:auto;

  margin-bottom:44px;

  text-align:center;
}

.kicker{
  margin-bottom:12px;

  font-size:.76rem;
  font-weight:700;

  letter-spacing:.16em;
  text-transform:uppercase;

  color:var(--gold-600);
}


/* ============================================================
   GALA FEATURE ICONS
============================================================ */

.features{
  display:grid;

  grid-template-columns:repeat(6,minmax(0,1fr));

  gap:18px;

  text-align:center;
}

.feature{
  min-width:0;
}

.feature .fi{
  width:58px;
  height:58px;

  display:grid;
  place-items:center;

  margin:0 auto 12px;

  border-radius:50%;

  background:
    linear-gradient(
      145deg,
      var(--navy),
      var(--navy-800)
    );

  color:var(--gold);

  box-shadow:
    0 10px 24px rgba(11,37,69,.14);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.feature:hover .fi{
  transform:translateY(-3px);

  box-shadow:
    0 14px 30px rgba(11,37,69,.18);
}

.feature .fi svg{
  width:24px;
  height:24px;
}

.feature small{
  display:block;

  max-width:120px;

  margin:0 auto;

  font-size:.76rem;
  font-weight:700;

  line-height:1.35;

  letter-spacing:.04em;

  text-transform:uppercase;

  color:var(--navy);
}


/* ============================================================
   DARK BAND
============================================================ */

.band{
  position:relative;

  overflow:hidden;

  background:
    linear-gradient(
      135deg,
      var(--navy),
      #102f58
    );

  color:#e7edf6;
}

.band::after{
  content:"";

  position:absolute;

  width:400px;
  height:400px;

  right:-170px;
  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 .kicker{
  color:var(--gold);
}

.band .muted{
  color:#b9c5d6;
}


/* ============================================================
   TWO COLUMN GRID
============================================================ */

.grid-2{
  display:grid;

  grid-template-columns:repeat(2,minmax(0,1fr));

  gap:28px;
}

.band .grid-2 > div{
  padding:22px;

  border:
    1px solid rgba(255,255,255,.10);

  border-radius:12px;

  background:
    rgba(255,255,255,.035);
}

.band .grid-2 h3{
  margin-bottom:8px;
}


/* ============================================================
   FORM + FLYER SPLIT
============================================================ */

.flyer-wrap{
  display:grid;

  grid-template-columns:
    minmax(0,1.05fr)
    minmax(0,.95fr);

  gap:44px;

  align-items:start;
}


/* ============================================================
   FORM CARD
============================================================ */

.form-card{
  margin-top:26px;

  padding:30px;

  background:#fff;

  border:1px solid var(--line);
  border-radius:var(--radius);

  box-shadow:var(--shadow);
}


/* ============================================================
   FORM FIELDS
============================================================ */

.field{
  margin-bottom:18px;
}

.field label{
  display:block;

  margin-bottom:7px;

  font-size:.85rem;
  font-weight:600;

  line-height:1.45;

  color:var(--navy);
}

.field input,
.field select,
.field textarea{
  width:100%;

  padding:12px 14px;

  background:#fdfdfb;

  border:1px solid var(--line);
  border-radius:10px;

  font-family:var(--body);
  font-size:.95rem;

  color:var(--ink);

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover{
  border-color:
    rgba(20,96,58,.35);
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;

  background:#fff;

  border-color:var(--green);

  box-shadow:
    0 0 0 3px rgba(20,96,58,.12);
}

.field textarea{
  min-height:110px;

  resize:vertical;
}


/* ============================================================
   FORM ROW
============================================================ */

.field-row{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:18px;
}


/* ============================================================
   FORM NOTE
============================================================ */

.form-note{
  margin-top:10px;
  margin-bottom:0;

  font-size:.82rem;
  line-height:1.55;

  color:var(--muted);
}


/* ============================================================
   FORM SUCCESS
============================================================ */

.form-success{
  display:none;

  margin-top:18px;

  padding:18px 20px;

  background:
    rgba(20,96,58,.08);

  border:
    1px solid rgba(20,96,58,.30);

  border-radius:12px;

  color:var(--green-700);

  font-size:.92rem;
  line-height:1.6;
}

.form-success.show{
  display:block;
}


/* ============================================================
   FLYER FRAME
============================================================ */

.frame{
  position:sticky;

  top:105px;

  padding:14px;

  background:#fff;

  border:1px solid var(--line);
  border-radius:var(--radius);

  box-shadow:var(--shadow);
}

.frame img{
  width:100%;
  height:auto;

  display:block;

  border-radius:9px;
}


/* ============================================================
   FINAL CTA BAND
============================================================ */

main > .band:last-child{
  padding:58px 0;
}

main > .band:last-child h2{
  max-width:850px;

  margin-left:auto;
  margin-right:auto;

  line-height:1.18;
}

main > .band:last-child .hero-actions{
  justify-content:center;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width:900px){

  .page-hero{
    padding:50px 0 40px;
  }

  main section{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:34px;
  }


  /* Features */

  .features{
    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:26px 18px;
  }


  /* Form + flyer */

  .flyer-wrap{
    grid-template-columns:1fr;

    gap:36px;
  }

  .frame{
    position:relative;

    top:auto;

    max-width:620px;

    margin:0 auto;
  }

}


/* ============================================================
   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;
  }


  /* ---------- Hero buttons ---------- */

  .hero-actions{
    flex-direction:column;

    align-items:stretch;

    gap:10px;
  }

  .hero-actions .btn{
    width:100%;

    text-align:center;
  }


  /* ---------- Sections ---------- */

  main section{
    padding:48px 0;
  }

  main section:first-child{
    padding-top:30px;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head.center{
    margin-bottom:30px;
  }

  .kicker{
    font-size:.68rem;

    letter-spacing:.14em;
  }


  /* ========================================================
     FEATURES
  ======================================================== */

  .features{
    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:24px 14px;
  }

  .feature .fi{
    width:54px;
    height:54px;

    margin-bottom:10px;
  }

  .feature small{
    max-width:130px;

    font-size:.7rem;
  }

  .feature:hover .fi{
    transform:none;
  }


  /* ========================================================
     FAMILY BAND
  ======================================================== */

  .grid-2{
    grid-template-columns:1fr;

    gap:12px;
  }

  .band .grid-2 > div{
    padding:18px;
  }

  .band .grid-2 h3{
    font-size:1.08rem;
  }

  .band .grid-2 p{
    font-size:.9rem;
  }


  /* ========================================================
     TICKET SECTION
  ======================================================== */

  .flyer-wrap{
    gap:30px;
  }


  /* ---------- Form ---------- */

  .form-card{
    margin-top:22px;

    padding:22px;
  }

  .field-row{
    grid-template-columns:1fr;

    gap:0;
  }

  .field{
    margin-bottom:16px;
  }

  .field label{
    font-size:.82rem;
  }

  .field input,
  .field select,
  .field textarea{
    min-height:46px;

    font-size:16px;
  }

  .field textarea{
    min-height:110px;
  }

  .form-card .btn{
    width:100%;

    justify-content:center;
  }

  .form-note{
    font-size:.78rem;
  }

  .form-success{
    padding:16px;

    font-size:.88rem;
  }


  /* ---------- Flyer ---------- */

  .frame{
    padding:10px;

    border-radius:12px;
  }


  /* ========================================================
     FINAL CTA
  ======================================================== */

  main > .band:last-child{
    padding:48px 0;
  }

  main > .band:last-child h2{
    font-size:
      clamp(1.65rem,8vw,2.15rem);
  }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width:400px){

  .page-hero{
    padding:36px 0 30px;
  }

  main section{
    padding:42px 0;
  }

  .features{
    gap:20px 10px;
  }

  .feature .fi{
    width:50px;
    height:50px;
  }

  .feature .fi svg{
    width:22px;
    height:22px;
  }

  .feature small{
    font-size:.66rem;
  }

  .form-card{
    padding:18px;
  }

  .band .grid-2 > div{
    padding:16px;
  }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion:reduce){

  .feature .fi,
  .field input,
  .field select,
  .field textarea{
    transition:none;
  }

  .feature:hover .fi{
    transform:none;
  }

}/* End custom CSS */