/* ===============================
  EMPOWER HER — LUXURY MODERN
  Palette: blush / nude / cream / champagne / charcoal
=============================== */

:root{
  --cream: #FAF6F2;
  --blush: #F3C6C6;
  --nude:  #E9D6C8;
  --champ: #D4AF7A;
  --char:  #1F1F1F;
  --taupe: #9C7C63;
  --card:  rgba(255,255,255,.72);
  --stroke: rgba(31,31,31,.10);
  --shadow: 0 18px 45px rgba(0,0,0,.12);
  --radius: 26px;
}

/* Page base */
body{
  background: var(--cream);
}

/* ===== HERO ===== */
.eh-hero{
  position: relative;
  overflow: hidden;
  padding: 95px 0 55px;
  background:
    radial-gradient(1200px 700px at 20% 20%, rgba(243,198,198,.75), transparent 55%),
    radial-gradient(900px 700px at 80% 30%, rgba(233,214,200,.85), transparent 55%),
    radial-gradient(700px 500px at 50% 90%, rgba(212,175,122,.32), transparent 60%),
    linear-gradient(180deg, #FAF6F2, #F7EFE9);
}

.eh-hero:before{
  content:"";
  position:absolute;
  inset:-60px;
  background:
    linear-gradient(135deg, rgba(31,31,31,.06), transparent 40%),
    repeating-linear-gradient(
      90deg,
      rgba(31,31,31,.035) 0px,
      rgba(31,31,31,.035) 1px,
      transparent 1px,
      transparent 9px
    );
  pointer-events:none;
  transform: rotate(-2deg);
  opacity:.55;
}

.eh-hero-inner{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
}

.eh-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--char);
}

.eh-title{
  margin: 22px 0 10px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--char);
}

.eh-title span{
  display:block;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--taupe);
  margin-top: 10px;
  text-transform: uppercase;
}

.eh-subtitle{
  margin: 0;
  font-size: 18px;
  color: rgba(31,31,31,.78);
}

.eh-hero-actions{
  display:flex;
  gap:14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.eh-mini-info{
  margin-top: 36px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.eh-mini-card{
  background: rgba(255,255,255,.55);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 16px 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.eh-mini-label{
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(31,31,31,.55);
  font-weight: 800;
}

.eh-mini-value{
  margin-top: 6px;
  font-weight: 800;
  color: var(--char);
}

/* ===== MARQUEE ===== */
.eh-marquee{
  background: var(--blush);
  border-top: 1px solid rgba(31,31,31,.08);
  border-bottom: 1px solid rgba(31,31,31,.08);
  overflow: hidden;
}

.eh-marquee-track{
  display: inline-block;
  white-space: nowrap;
  padding: 12px 0;
  animation: eh-scroll 18s linear infinite;
  font-weight: 900;
  letter-spacing: 3px;
  color: rgba(31,31,31,.80);
}

@keyframes eh-scroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.eh-section{
  padding: 95px 0;
}

.eh-section-alt{
  background: linear-gradient(180deg, rgba(233,214,200,.55), rgba(250,246,242,1));
}

.eh-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
}

.eh-section-head{
  text-align: left;
  margin-bottom: 34px;
}

.eh-section-head h2{
  margin: 0 0 10px;
  font-size: clamp(30px, 3.5vw, 46px);
  letter-spacing: -0.5px;
  color: var(--char);
  font-weight: 900;
}

.eh-section-head p{
  margin: 0;
  color: rgba(31,31,31,.72);
  font-size: 16px;
  max-width: 720px;
}

/* ===== CARDS ===== */
.eh-card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.eh-register-card{
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 22px;
  padding: 26px;
}

.eh-register-left{
  padding: 8px 10px 10px;
}

.eh-register-left h3{
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 900;
  color: var(--char);
}

.eh-register-left p{
  margin: 0 0 16px;
  color: rgba(31,31,31,.74);
  line-height: 1.65;
}

.eh-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(31,31,31,.80);
  line-height: 1.75;
  font-weight: 700;
}

.eh-register-right{
  background: rgba(250,246,242,.65);
  border: 1px solid rgba(31,31,31,.08);
  border-radius: 22px;
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.eh-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(212,175,122,.22);
  color: var(--char);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.eh-note{
  font-size: 13px;
  color: rgba(31,31,31,.60);
}

/* ===== BUTTONS ===== */
.eh-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: 1px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor:pointer;
}

.eh-btn-primary{
  background: linear-gradient(135deg, var(--champ), #e7c79a);
  color: var(--char);
  box-shadow: 0 18px 38px rgba(212,175,122,.28);
}

.eh-btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(212,175,122,.34);
}

.eh-btn-ghost{
  background: rgba(255,255,255,.55);
  border: 1px solid var(--stroke);
  color: var(--char);
}

.eh-btn-ghost:hover{
  transform: translateY(-2px);
}

.eh-btn-wide{
  width:100%;
}

/* ===== GRIDS ===== */
.eh-grid-2{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

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

/* ===== SPEAKERS ===== */
.eh-speaker{
  padding: 18px;
}

.eh-speaker-img{
  width:100%;
  height: 260px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(243,198,198,.75), rgba(233,214,200,.75)),
    radial-gradient(600px 240px at 30% 30%, rgba(212,175,122,.38), transparent 60%);
  border: 1px solid rgba(31,31,31,.08);
  margin-bottom: 14px;
}

.eh-speaker-img.alt{
  background:
    linear-gradient(135deg, rgba(233,214,200,.78), rgba(250,246,242,.78)),
    radial-gradient(600px 240px at 70% 30%, rgba(212,175,122,.38), transparent 60%);
}

.eh-speaker h3{
  margin: 6px 0 6px;
  font-size: 22px;
  font-weight: 900;
  color: var(--char);
}

.eh-muted{
  margin: 0;
  color: rgba(31,31,31,.62);
  font-weight: 700;
}

.eh-tip{
  margin-top: 14px;
  color: rgba(31,31,31,.60);
  font-size: 13px;
}

/* ===== SCHEDULE ===== */
.eh-day{
  padding: 18px;
}

.eh-day-top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.eh-day-tag{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(31,31,31,.72);
  background: rgba(243,198,198,.55);
  border: 1px solid rgba(31,31,31,.08);
  padding: 8px 10px;
  border-radius: 999px;
}

.eh-day h3{
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: var(--char);
}

.eh-day-line{
  display:flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(31,31,31,.08);
  color: rgba(31,31,31,.72);
  font-weight: 800;
}

.eh-day-line strong{
  color: var(--char);
}

/* ===== HOTELS ===== */
.eh-hotel{
  padding: 22px;
}

.eh-mini-muted{
  color: rgba(31,31,31,.58);
  font-size: 13px;
  margin-top: 8px;
}

/* Bottom CTA */
.eh-bottom-cta{
  margin-top: 26px;
}

/* ===== MOBILE ===== */
@media(max-width: 900px){

  .eh-mini-info{
    grid-template-columns: 1fr;
  }

  .eh-register-card{
    grid-template-columns: 1fr;
  }

  .eh-grid-2,
  .eh-grid-3{
    grid-template-columns: 1fr;
  }

  .eh-section-head{
    text-align: left;
  }
}
/* ================================
   EH26 SPEAKERS HEADER — LUXURY GOLD
   ================================ */

/* MAIN TITLE */

.eh-impact-title {

  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: normal;

  font-size: clamp(80px, 10vw, 150px);
  line-height: .9;

  letter-spacing: .08em;
  text-transform: uppercase;

  text-align: center;

  /* Luxury gold gradient */

  background: linear-gradient(
    120deg,
    #8b6a2e 0%,
    #d4af37 30%,
    #fff1c1 50%,
    #d4af37 70%,
    #8b6a2e 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* Depth shadow */

  text-shadow:
    0 10px 30px rgba(0,0,0,.25),
    0 3px 8px rgba(212,175,55,.4);
}


/* REMOVE FLOATING EH26 BADGE IF PRESENT */

.eh-impact-tag {
  display: none !important;
}


/* REMOVE DECORATIVE UNDERLINES */

.eh-impact-title::after {
  display: none !important;
}


/* SUBTITLE — BIGGER + BOLDER */

.eh-impact-sub {

  margin-top: 20px;

  font-size: 18px;
  font-weight: 700;

  letter-spacing: .25em;
  text-transform: uppercase;

  text-align: center;

  color: #222;
  opacity: .85;
}


/* MOBILE OPTIMIZATION */

@media (max-width: 768px) {

  .eh-impact-title {
    font-size: clamp(54px, 13vw, 88px);
    letter-spacing: .05em;
  }

  .eh-impact-sub {
    font-size: 15px;
    letter-spacing: .18em;
  }

}
/* ================================
   SPEAKERS SUBTITLE — BOLD + ELEVATED
   ================================ */

.eh-impact-sub {

  /* Move it UP */
  margin-top: 8px !important;
  margin-bottom: 28px;

  /* Bigger + stronger */
  font-size: 20px;
  font-weight: 800;

  letter-spacing: .22em;
  text-transform: uppercase;

  text-align: center;

  /* Dark luxury tone */
  color: #111;
  opacity: .9;

}

/* Mobile tuning */

@media (max-width: 768px) {

  .eh-impact-sub {
    font-size: 16px;
    letter-spacing: .16em;
    margin-top: 6px;
    margin-bottom: 22px;
  }

}
/* Pastor Natasha Card Style (No Image) */
.eh-impact-photo.natasha {
  background: linear-gradient(135deg, #f1c7b3, #e8bfa0);
}
.eh-impact-card {
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.eh-impact-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.eh-impact-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.05));
  color: #fff;
}
/* SPEAKER GRID LAYOUT FIX */
.eh-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 460px));
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 60px;
  margin-bottom: 120px;
}

/* CARD SIZE + PROPORTIONS */
.eh-impact-card {
  width: 100%;
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* PHOTO / GRADIENT FILL */
.eh-impact-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* TEXT OVERLAY */
.eh-impact-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.05));
  color: #fff;
}
@media (max-width: 900px) {
  .eh-impact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .eh-impact-card {
    height: 380px;
  }
}
