:root{
  --bg:#f6f4fb;
  --text:#1c2230;
  --muted:#5f6b7a;
  --line:rgba(28,34,48,.10);
  --card:rgba(255,255,255,.80);
  --shadow: 0 14px 40px rgba(28,34,48,.10);
  --radius:18px;

  --btn:#1c2230;
  --btnText:#ffffff;

  --soft:#ffffff;
  --soft2:rgba(255,255,255,.65);

  --accent:rgba(124,92,255,.22);
  --accent2:rgba(255,122,182,.18);

  --max:1040px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  line-height:1.55;
  background:
    radial-gradient(1000px 700px at 15% 0%, var(--accent), transparent 55%),
    radial-gradient(1000px 700px at 85% 20%, var(--accent2), transparent 55%),
    var(--bg);
}

a{color:inherit}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:26px 18px 70px;
}

/* ===== Header ===== */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;

  position:sticky;
  top:0;
  z-index:20;

  padding:14px 18px;
  margin:0 -18px;

  backdrop-filter: blur(10px);
  background: rgba(246,244,251,.78);
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
}

.mark{
  width:34px;
  height:34px;
  border-radius:10px;
  background: linear-gradient(135deg, rgba(199,249,204,.75), rgba(160,196,255,.75));
  box-shadow: var(--shadow);
}

nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

nav a{
  text-decoration:none;
  color:rgba(28,34,48,.86);
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
}

nav a:hover{background: rgba(28,34,48,.06)}

/* ===== HERO ===== */
.heroImage{
  border-radius:22px;
  overflow:hidden;
  min-height: 440px;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

.heroOverlay{
  min-height: 440px;
  padding: 44px 22px 26px;
  background:
    linear-gradient(180deg, rgba(246,244,251,.08) 0%, rgba(246,244,251,.70) 58%, rgba(246,244,251,.92) 100%);
}



/* ===== Image-only Hero ===== */
.heroOnly {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

/* Make sure no overlay styling affects it */
.heroOnly .heroOverlay {
  display: none;
}

@media (max-width: 720px){
  .heroImage{ min-height: 520px; }
  .heroOverlay{ min-height: 520px; padding: 28px 16px 20px; }
  .coachRow, .coachRow.reverse{ grid-template-columns: 1fr; }
  .coachPhoto{ min-height: 240px; }
}
/* FULL-WIDTH HERO (no bubble) */
.heroImage.fullBleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  border-radius: 0;
  box-shadow: none;
  border: none;
}
.heroImage.fullBleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  box-shadow: none;
  border: none;
}


.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.68);
  border:1px solid rgba(28,34,48,.10);
  color: rgba(28,34,48,.86);
  width:fit-content;
  font-size:13px;
}

.pill span{color: var(--muted); font-weight:500}

h1{
  margin:14px 0 0;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height:1.08;
  letter-spacing:-.6px;
  color: rgba(28,34,48,.96);
}

.sub{
  margin:10px 0 0;
  max-width: 62ch;
  color: rgba(28,34,48,.82);
  font-size: clamp(16px, 1.6vw, 18px);
}

.ctaRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:700;
  font-size:14.5px;
}

.btn.primary{
  background: var(--btn);
  color: var(--btnText);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.btn.primary:hover{filter:brightness(.97)}

.btn.ghost{
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(28,34,48,.10);
  color: rgba(28,34,48,.92);
}

.btn.ghost:hover{background: rgba(255,255,255,.78)}

.tagRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.tag{
  border:1px solid rgba(28,34,48,.10);
  background: rgba(255,255,255,.66);
  border-radius:999px;
  padding:7px 10px;
  font-size:13px;
  color: rgba(28,34,48,.86);
}

.tag strong{color: rgba(28,34,48,.95)}

/* ===== Sections / Cards ===== */
.grid{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(12, 1fr);
  margin-top:22px;
}

.card{
  grid-column: span 12;
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

.card h2{
  margin:0 0 8px;
  font-size: 18px;
  letter-spacing:-.2px;
}

.card p{margin:0; color: rgba(28,34,48,.86)}
.muted{color: var(--muted)}

.divider{
  height:1px;
  background:var(--line);
  margin:18px 0;
}

.bullets{
  margin:10px 0 0;
  padding-left:18px;
  color: rgba(28,34,48,.86);
}

.bullets li{margin:6px 0}

.twoCol{grid-column: span 12;}

.threeCol{grid-column: span 12;}

@media (min-width: 860px){
  .twoCol{grid-column: span 6;}
  .threeCol{grid-column: span 4;}
}

/* ===== Meet the Coaches (Alternating layout) ===== */
.coachAlt{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:10px;
}

.coachRow{
  display:grid;
  grid-template-columns: 190px 1fr;
  gap:18px;
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(28,34,48,.10);
  background: rgba(255,255,255,.62);
}

.coachRow.reverse{
  grid-template-columns: 1fr 190px;
}

.coachPhoto{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(28,34,48,.10);
  background: linear-gradient(135deg, rgba(124,92,255,.12), rgba(255,122,182,.10));
  min-height: 220px;
}

.coachPhoto img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.coachInitials{
  position:absolute;
  inset:0;
  display:none; /* only show if image missing */
  place-items:center;
  font-weight:900;
  letter-spacing:.6px;
  color: rgba(28,34,48,.85);
  font-size:22px;
}

.coachPhotoFallback .coachInitials{
  display:grid;
}

.coachBio p{
  margin:10px 0 0;
  color: rgba(28,34,48,.84);
  font-size:14.5px;
}

.coachMeta{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.coachName{
  font-size:16px;
  font-weight:850;
  letter-spacing:-.15px;
}

.coachRole{
  color: var(--muted);
  font-size:13px;
}

.coachQuote{
  margin-top:12px;
  padding-left:12px;
  border-left: 2px solid rgba(124,92,255,.35);
  color: rgba(28,34,48,.88);
}

.coachLinks{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.coachLinks a{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:12px;
  text-decoration:none;
  border:1px solid rgba(28,34,48,.10);
  background: rgba(255,255,255,.70);
  color: rgba(28,34,48,.9);
  font-weight:850;
  font-size:13px;
}

.coachLinks a:hover{background: rgba(255,255,255,.86)}

/* Name row with small avatar (like your screenshot) */
.coachTop{
  display:flex;
  align-items:center;
  gap:12px;
}

.avatar{
  width:52px;
  height:52px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(28,34,48,.10);
  background: linear-gradient(135deg, rgba(124,92,255,.12), rgba(255,122,182,.10));
  flex:0 0 auto;
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.avatarFallback{
  display:grid;
  place-items:center;
  font-weight:900;
  color: rgba(28,34,48,.85);
  font-size:14px;
}


.note{
  font-size:13px;
  color: var(--muted);
  margin-top:12px;
}

footer{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color: var(--muted);
  font-size:13px;
}

/* ===== Footer matches header ===== */
.siteFooter {
  background: #2a0f3f; /* same as .topbar */
  color: rgba(255,255,255,0.9);
  margin-top: 40px;
}

.footerInner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footerBrand {
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
}

.footerTagline {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

.footerCopy {
  margin-top: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
}

.footerRight {
  display: flex;
  align-items: center;
  gap: 12px;
}

footer {
  background: #2b0f3a; /* same dark purple as header */
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
footer a {
  color: #fff;
}

footer a:hover {
  opacity: 0.85;
}

@media (max-width: 720px) {
  .footerInner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* header + footer */
.topbar,
.siteFooter{
  background: var(--pg-purple);
}

.small{
  font-size:13px;
  color: var(--muted);
}

/* Tighten space above footer */
#cta.card { margin-bottom: 16px; }     /* was likely larger */
.siteFooter { margin-top: 0; }         /* if you had any */
.wrap { padding-bottom: 0; }           /* if wrap adds bottom padding */
main { padding-bottom: 0; }            /* if main adds bottom padding */
.siteFooter{
  background: #2b0f3a;     /* dark purple */
  color: rgba(255,255,255,.9);
  padding: 22px 0;         /* ↓ smaller than before */
}

.footerInner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.footerBrand{
  letter-spacing: .22em;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

.footerTagline{
  font-size: 14px;
  opacity: .9;
  margin-bottom: 6px;
}

.footerCopy{
  font-size: 13px;
  opacity: .75;
}
.footerRight{
  display:flex;
  gap: 12px;
  align-items:center;
}

.socialIcon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.socialIcon svg{
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,.92);
}

.socialIcon:hover{
  background: rgba(255,255,255,.16);
}

/* Footer */
.siteFooter{
  background: linear-gradient(135deg, #2b0f45 0%, #1d0a2f 100%);
  color: rgba(255,255,255,.85);
  padding: 34px 0;
  margin-top: 50px;
}

.siteFooter .footerBrand{
  color: #fff;
  font-weight: 700;
  letter-spacing: .22em;
  margin-bottom: 10px;
}
.fullWidthText {
  max-width: 100%;
}

.fullWidthText p {
  max-width: 100%;
}

/* ===== Footer (single source of truth) ===== */
.siteFooter{
  padding: 2rem 0 3rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

.siteFooter a{
  text-decoration: underline;
}

.siteFooter{
  background: linear-gradient(135deg, #2b0f45 0%, #1d0a2f 100%);
  color: rgba(255,255,255,.85);
  padding: 28px 0 36px;
  margin-top: 40px;
}

.siteFooter .divider{
  margin: 0 0 14px;
}

.siteFooter p{
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.siteFooter strong{
  color: #fff;
}

.siteFooter a{
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.siteFooter a:hover{
  color: #fff;
}
.footerInner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.footerRight{
  display:flex;
  gap: 12px;
  align-items:center;
}

.socialIcon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.socialIcon svg{
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,.92);
}

.socialIcon:hover{
  background: rgba(255,255,255,.16);
}

.footerSmall{
  margin: 6px 0 0;
  font-size: 12.5px;
  opacity: 0.75;
}


/* ===== Post-Hero Content ===== */
.postHero {
  padding: 36px 0 12px;
}

.postHeroInner {
  max-width: 900px;
  margin: 0 auto;
}

.postHeroInner .btn {
  display: block;
  margin: 0 auto 28px auto; /* centers button + controls spacing below */
}

.btnWide {
  padding: 14px 22px;
  font-size: 15px;
  margin-bottom: 18px;
}
.valueLine {
  margin: 12px 0 22px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
.heroHeadline {
  text-align: center;
  margin-bottom: 20px;
}

.heroIntro {
  max-width: 800px;
  text-align: left;
  margin: 0 auto 0 0; /* left-aligned, not centered */
}

  .postHeroInner {
    padding: 0 6px;
  }

/* ===== Full-width Top Bar (Tony Robbins style) ===== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;

  width: 100%;
  background: #2a0f3f; /* deep purple */
  color: #fff;

  /* remove any gap above/below */
  margin: 0;
}

.topbarInner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbarBrand {
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.topbarNav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.topbarNav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.topbarNav a:hover {
  color: #fff;
}

/* ===== Remove space between header and hero ===== */
.heroImage.fullBleed.heroOnly {
  margin-top: 0 !important;
}

/* Optional: give the bar a subtle cosmic feel (still one color) */
.topbar {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Mobile: stack neatly */
@media (max-width: 820px) {
  .topbarInner {
    flex-wrap: wrap;
    padding: 14px 0;
  }
  .topbarNav {
    width: 100%;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.topbar { margin: 0; }
.heroOnly { margin: 0; }
main { margin: 0; padding: 0; }

.socialIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;

  display: grid;
  place-items: center;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
}

.socialIcon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  opacity: 0.92;
}

.socialIcon:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.22);
}

/* Featured coach (Rachel) refinements */
.featuredCoach .coachHeader {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coachLogo {
  height: 38px;
  width: auto;
}

.coachBook {
  margin-top: 4px;
  font-size: 0.95rem;
  color: #555;
}

blockquote {
  margin: 16px 0;
  padding-left: 14px;
  border-left: 3px solid var(--accent, #8a6ccf);
  font-style: italic;
  color: #444;
}

.coachSignature {
  font-size: 0.95rem;
  color: #555;
}
.heroImage{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.heroOnly{
  min-height: 520px;  /* adjust if you want taller/shorter */
}
.heroOnly{
  position: relative;
  min-height: 520px;
  background-image: var(--hero-img);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* container that sits at the bottom of the hero */
.heroBottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  padding: 0 22px;
  display: grid;
  gap: 14px;
}

/* keep pill readable on bright backgrounds */
.pill{
  width: fit-content;
  max-width: 100%;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}

/* tags readable + elegant */
.tagRow{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(10px);
}
:root{
  --pg-purple:#2a0f3f;
}


/* buttons */
.btn.primary{
  background: var(--pg-purple);
  border-color: var(--pg-purple);
  color: #fff;
}

.btn.primary:hover{
  filter: brightness(1.06);
}
.btn.ghost{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.btn.ghost:hover{
  background: rgba(255,255,255,0.16);
}

/* Force all coach cards (including Rachel) to use the same 2-column layout */
.coachAltCard {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: start;
}

/* Photo box size (prevents takeover) */
.coachAltCard .coachPhoto {
  width: 240px;
  height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background: #eee;
}

/* Image stays contained */
.coachAltCard .coachPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile: stack */
@media (max-width: 780px) {
  .coachAltCard {
    grid-template-columns: 1fr;
  }

  .coachAltCard .coachPhoto {
    width: 100%;
    height: 320px;
  }
}
.postHero {
  padding: 60px 0 40px;
}

.postHeroInner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center; /* ✅ centers the button + text */
}

.postHeroInner .btn {
  margin: 0 auto 28px; /* ✅ centers the button itself */
  display: inline-block;
}
.coachHeader{
  display:flex;
  align-items:center;
  gap:12px;
}

.coachLogo{
  height:34px;
  width:auto;
  border-radius:8px;
}
.topbar {
  background: #2a0f3f;
  color: #fff;
}
.topbar a {
  color: #fff;
}

.topbar a:hover {
  opacity: 0.85;
}

.btn.primary {
  background: #2b0f3a;
  color: #fff;
}

.btn.primary:hover {
  background: #3a1658;
}
.postHero {
  padding-top: 16px;
  padding-bottom: 40px;
}
/* =========================
   EMF PAGE (emf.html)
   ========================= */

body.emfPage{
  background: radial-gradient(1200px 700px at 70% 10%, rgba(120,68,170,.14), transparent 60%),
              radial-gradient(900px 520px at 10% 60%, rgba(40,16,70,.10), transparent 55%),
              var(--bg);
}

/* simple back link */
.backLink{
  display:inline-block;
  margin: 14px 0 18px;
  text-decoration:none;
  color: var(--purple);
  font-weight: 700;
}
.backLink:hover{ text-decoration: underline; }

/* EMF header block on emf.html */
.emfHero{
  padding: 26px 0 6px;
}
.emfHero h1{
  margin: 0 0 8px;
}
.emfHero .sub{
  margin: 0;
}


.nav-back {
  opacity: 0.85;
}

.nav-back:hover {
  opacity: 1;
  text-decoration: underline;
}
/* === EMF Three Stages Grid === */

.stagesGrid {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.stagesGrid h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
}

.stagesCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stageCard {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.stageIcon {
  font-size: 40px;
  margin-bottom: 20px;
}

.stageCard h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.stageCard p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 900px) {
  .stagesCards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .stagesCards {
    grid-template-columns: 1fr;
  }
}
}
/* EMF Intro Cards – purple gradient version */
.emfIntroGrid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.emfIntroCard{
  background: linear-gradient(135deg, #6d3aa7 0%, #2b0f45 100%);
  color: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 18px 40px rgba(17, 7, 28, .18);
  border: 1px solid rgba(255,255,255,.14);
}

/* Title centered */
.emfIntroCard h3{
  text-align: center;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

/* Text LEFT aligned (this fixes your issue) */
.emfIntroCard p{
  text-align: left;
  color: rgba(255,255,255,.92);
  line-height: 1.6;
}
.emfIntroCard{
  box-shadow: 0 14px 32px rgba(17, 7, 28, .15);
}
/* EMF intro cards – 3 across */
.emfIntroGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

/* Responsive fallback */
@media (max-width: 900px){
  .emfIntroGrid{
    grid-template-columns: 1fr;
  }
}
/* ---------- EMF BOOK A CALL (FORM) ---------- */
#book.cta{
  margin-top: 34px;
}

#book.cta h2{
  margin-bottom: 10px;
}

#book.cta p{
  margin: 0 0 18px;
  max-width: 900px;
}

/* Layout */
#book.cta form{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  align-items: start;
  margin-top: 14px;
}

/* Inputs */
#book.cta input,
#book.cta textarea{
  width: 100%;
  font: inherit;
  color: inherit;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(20, 10, 30, .18);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  box-shadow: 0 10px 26px rgba(17, 7, 28, .08);
}

#book.cta textarea{
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

/* Focus state */
#book.cta input:focus,
#book.cta textarea:focus{
  border-color: rgba(109, 58, 167, .55);
  box-shadow: 0 0 0 4px rgba(109, 58, 167, .18), 0 12px 30px rgba(17, 7, 28, .10);
}

/* Button */
#book.cta button{
  grid-column: 1 / -1;
  justify-self: start;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .01em;
  color: #fff;
  background: linear-gradient(135deg, #6d3aa7 0%, #2b0f45 100%);
  box-shadow: 0 18px 40px rgba(17, 7, 28, .18);
}

#book.cta button:hover{
  transform: translateY(-1px);
}

#book.cta button:active{
  transform: translateY(0px);
}

/* Mobile */
@media (max-width: 720px){
  #book.cta form{
    grid-template-columns: 1fr;
  }
}
/* Extra spacing so the button isn't glued to the footer */
#book.cta{
  padding-bottom: 34px;
}

/* Give the form a little breathing room */
#book.cta form{
  padding-bottom: 10px;
}

/* Optional: button looks nicer a bit larger */
#book.cta button{
  padding: 13px 20px;
}

/* Optional: on small screens, make the button full-width */
@media (max-width: 720px){
  #book.cta button{
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }
}
/* Center the CTA button */
#book.cta form{
  display: grid;
  justify-items: center;
}

#book.cta button{
  margin-top: 10px;
}
/* Header wrapper (consistent across pages) */
.topbar{
  background: linear-gradient(135deg, #2b0f45 0%, #1d0a2f 100%);
  color: #fff;
}

.topbarInner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brandTitle{
  letter-spacing: .22em;
  font-weight: 700;
  font-size: 14px;
}

/* Nav layout: Back button sits LEFT of Home */
.topbarNav{
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbarNav a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 600;
}

.topbarNav a:hover{
  color: #fff;
  text-decoration: underline;
}

.topbarNav .navBack{
  padding-right: 14px;
  margin-right: 8px;
  border-right: 1px solid rgba(255,255,255,.18);
}

/* HERO WIDTH CONTROL */
.hero {
  max-width: 1200px;   /* wider than .wrap */
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADLINE */
.heroHeadline {
  max-width: 100%;
  white-space: nowrap;     /* keeps it on one line on desktop */
}

/* INTRO TEXT */
.heroIntro {
  max-width: 100%;
}
@media (max-width: 900px) {
  .heroHeadline {
    white-space: normal;
  }
}
/* WRAP — allow more breathing room */
.wrap {
  max-width: 1400px;   /* was too narrow */
  margin: 0 auto;
  padding: 0 2rem;
}

/* HERO TEXT SECTION */
.hero {
  text-align: center;
  margin: 4rem auto 0;
  width: 100%;
}

/* HEADLINE */
.heroHeadline {
  max-width: 1200px;   /* controls line breaks */
  margin: 0 auto 1.5rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.2;
}

/* SUBTEXT */
.heroIntro {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}
.hero {
  margin-top: 3rem;
}
/* EMF intro cards (3 across like your reference) */
.emfIntroGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
  margin: 2.5rem auto 0;
}

/* Make each intro card look like the reference */
.emfIntroCard{
  border-radius: 26px;
  padding: 2.2rem 2.2rem;
  background: linear-gradient(135deg, #5b2b8f 0%, #2a0f57 100%);
  color: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

/* Center the title like the reference */
.emfIntroCard h3{
  text-align: center;
  margin: 0 0 1rem;
  font-weight: 800;
}

/* Body text spacing */
.emfIntroCard p{
  margin: 0;
  line-height: 1.7;
  opacity: .95;
}

/* Responsive */
@media (max-width: 900px){
  .emfIntroGrid{
    grid-template-columns: 1fr;
  }
}
/* CTA section */
.cta{
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

/* Headline & text */
.cta h2{
  text-align: left;
  margin-bottom: .75rem;
}

.cta p{
  max-width: 720px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* FORM LAYOUT */
.cta form{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
}

/* Full-width fields */
.cta textarea{
  grid-column: 1 / -1;
  min-height: 140px;
  resize: vertical;
}

/* Inputs & textarea */
.cta input,
.cta textarea{
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

/* Button */
.cta button{
  grid-column: 1 / -1;
  margin-top: 1rem;
  width: fit-content;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #5b2b8f, #2a0f57);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 700px){
  .cta form{
    grid-template-columns: 1fr;
  }
}
/* Force ONLY the EMF intro cards into 3 equal columns */
.cards.emfIntroGrid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 2rem !important;
  align-items: stretch;
}

/* Make sure the cards don't have a forced width */
.cards.emfIntroGrid .emfIntroCard{
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

/* Responsive */
@media (max-width: 900px){
  .cards.emfIntroGrid{
    grid-template-columns: 1fr !important;
  }
}
.emfIntroCard p{
  max-width: 42ch;
  margin: 0 auto;
}
/* EMF section card wrapper spacing */
#emf.card{
  padding: 2.5rem 2.5rem 2.75rem;
}

/* Make the EMF intro text breathe */
#emf h1{
  margin-bottom: .5rem;
}

#emf > p{
  max-width: 900px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Fix spacing under the H2 */
#emf h2{
  margin-top: 1.25rem;
  margin-bottom: .75rem;
}

/* Purple cards: make them feel like cards, not banners */
.emfCard{
  padding: 2.1rem 2rem;
}

/* Center headings cleanly */
.emfCard h3{
  text-align: center;
  margin: 0 0 1rem;
  letter-spacing: .06em;   /* less spaced out */
  text-transform: none;     /* keep your capitalization as typed */
}

/* Keep body text readable + balanced */
.emfCard p{
  max-width: 42ch;          /* key: prevents “banner” feel */
  margin: 0 auto;
  line-height: 1.65;
  opacity: .95;
}
.emfPageIntro{
  padding: 0;            /* let the layout breathe */
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
#emf .divider{
  opacity: .35;
  margin: 1.5rem 0 1.75rem;
}
.peerGroup{
  margin: 4rem auto 0;
}

.emfPeerCard{
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 2.75rem;
  text-align: center;
}

.emfPeerCard h3{
  margin-bottom: 1.25rem;
}

.emfPeerCard p{
  line-height: 1.7;
  margin-bottom: 1rem;
}

.emfPeerCard .closing{
  margin-top: 1.25rem;
  font-weight: 500;
  opacity: .9;
}
.heroImage {
  position: relative;
}

/* Container for centered headline */
.heroContent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
}

/* Headline styling */
.heroOverlayTitle {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: #2b2e3a;
  line-height: 1.25;
  background: rgba(255, 255, 255, 0.75);
  padding: 1.2rem 2rem;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Mobile refinement */
@media (max-width: 768px) {
  .heroOverlayTitle {
    font-size: 1.8rem;
    padding: 1rem 1.4rem;
  }
}
.heroContent{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 2.5rem 1.5rem;
  pointer-events:none;
}

.heroOverlayTitle{
  width: 100%;
  max-width: 1100px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 650;
  line-height: 1.15;
  color: rgba(255,255,255,0.92);

  /* ✅ no background rectangle */
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;

  /* ✅ subtle readability without a box */
  text-shadow:
    0 2px 18px rgba(0,0,0,0.45),
    0 1px 2px rgba(0,0,0,0.35);
}
.pillTag{
  display:flex;
  align-items:center;
  gap:.7rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Let it wrap nicely on smaller screens */
@media (max-width: 900px){
  .pillTag span{ display:none; } /* optional: keeps it clean */
}
.heroCenter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.heroHeadline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.heroBottom {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.tagRow {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
/* Tighten space between hero image and intro paragraph */
.hero {
  padding-top: 0;
  margin-top: 0;
}

.heroIntro {
  margin-top: 1.5rem; /* try 1rem–1.5rem */
}
.hero + .wrap,
.wrap > .hero {
  padding-top: 0;
}
/* Peer Group card — left aligned for readability */
.emfPeerCard {
  text-align: left;
}

.emfPeerCard h3,
.emfPeerCard p {
  text-align: left;
}
.emfPeerCard {
  max-width: 760px;
  margin: 0 auto;
}
/* Choose Trainer page */
.trainerPick {
  padding: 40px 0;
}

.trainerPick h1 {
  margin: 0 0 10px;
}

.trainerPick .sub {
  max-width: 760px;
  margin: 0 0 24px;
}

.trainerGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.trainerCard {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  min-height: 64px;
}

.trainerCard:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.20);
}

.trainerName {
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;
}

.note {
  margin-top: 18px;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  .trainerGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .trainerGrid {
    grid-template-columns: 1fr;
  }
}
.trainerNextStep {
  margin-top: 60px;
  padding-top: 40px;
}

.trainerNextStep h2 {
  margin-bottom: 12px;
}

.trainerNextStep p {
  max-width: 720px;
  margin-bottom: 14px;
}
/* Choose Trainer page */
.trainerPick {
  padding: 54px 0 40px;
}

.trainerPick h1 {
  margin: 0 0 10px;
}

.trainerPick .sub {
  max-width: 860px;
  margin: 0 0 26px;
}

/* 5 cards in one row */
.trainerRow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

/* Card styling */
.trainerTile {
  display: block;
  text-decoration: none;
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55));
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  min-height: 140px;
}

.trainerTile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.10);
  border-color: rgba(0, 0, 0, 0.14);
}

.trainerTile .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
}

.trainerTile .name {
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
  color: inherit;
}

.trainerTile .tag {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Slightly different soft gradients per card */
.trainerTile.t1 { background: linear-gradient(135deg, rgba(222,245,255,0.85), rgba(255,235,245,0.55)); }
.trainerTile.t2 { background: linear-gradient(135deg, rgba(255,235,245,0.85), rgba(245,255,235,0.55)); }
.trainerTile.t3 { background: linear-gradient(135deg, rgba(245,240,255,0.85), rgba(235,255,252,0.55)); }
.trainerTile.t4 { background: linear-gradient(135deg, rgba(255,250,235,0.85), rgba(235,245,255,0.55)); }
.trainerTile.t5 { background: linear-gradient(135deg, rgba(235,255,245,0.85), rgba(245,235,255,0.55)); }

.noteHint {
  margin-top: 18px;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 1100px) {
  .trainerRow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .trainerRow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .trainerRow { grid-template-columns: 1fr; }
}
.tag.pill {
  cursor: pointer;
  text-decoration: none;
}

.tag.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.card + .card {
  margin-top: 2rem; /* adjust: 1.5rem–3rem */
}
#emf h3 {
  margin-top: 2rem;
}

.emfList {
  margin: 1rem 0 2rem;
  padding-left: 1.25rem;
}

.emfList li {
  margin-bottom: 0.5rem;
}

.disclaimer {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.5;
}
.coachStoryLink {
  margin: 1.25rem 0;
  font-style: italic;
}

.coachStoryLink a {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.coachStoryLink a:hover {
  opacity: 0.8;
}
.page { padding: 2rem 0 4rem; }

.salesPage .backLink{
  display:inline-block;
  margin-bottom: 1rem;
  text-decoration:none;
  opacity:.8;
}
.salesPage .backLink:hover{ opacity:1; }

.salesHeader h1 { margin: 0 0 .5rem; }
.salesHeader .sub { margin: 0; }

.videoCard { margin-top: 1.5rem; }
.videoFrame{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.06);
}
.videoFrame video{
  width:100%;
  height:auto;
  display:block;
}

.videoNote{
  margin: .9rem 0 0;
  opacity: .8;
  font-style: italic;
}

.salesCTA{
  display:flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.25rem;
}

/* If you don't already have btn styles, this will safely enhance them */
.btn{
  display:inline-block;
  padding:.9rem 1.1rem;
  border-radius: 14px;
  text-decoration:none;
  font-weight:600;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.7);
}
.btn:hover{ opacity:.9; }
.btn.primary{
  border: none;
  color: white;
}
.emfStartHere {
  text-align: center;
}

.emfStartHere p {
  max-width: 60ch;
  margin: 0.75rem auto 1.25rem;
  opacity: 0.9;
}
.topbarNav .navStartHere {
  font-weight: 600;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  opacity: 0.9;
}

.topbarNav .navStartHere:hover {
  opacity: 1;
}
.emfStartRow {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap; /* important for mobile */
}

.emfStartTitle {
  font-size: 1.1rem;
  white-space: nowrap;
}

.emfStartText {
  flex: 1;
  min-width: 240px;
  opacity: 0.9;
}

.emfStartBtn {
  white-space: nowrap;
}
/* Light / delicate header (used on Salesumentary & story pages) */
.topbar--light {
  padding: 0.4rem 0;
}

.topbar--light .topbarInner {
  min-height: unset;
}

.topbar--light .topbarBrand {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.topbar--light .topbarNav a {
  font-size: 0.9rem;
  opacity: 0.85;
}

.topbar--light .topbarNav a:hover {
  opacity: 1;
}
/* START HERE card: stacked layout */
.emfStartHere{
  max-width: 1100px;           /* match the visual width of your 3-card row */
  margin: 2rem auto;           /* centers it */
  text-align: left;
}

.emfStartHere .emfStartTitle{
  display:block;
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

.emfStartHere .emfStartText{
  margin: 0 0 1rem;
  opacity: .9;
  max-width: 75ch;             /* keeps the sentence readable */
}

.emfStartHere .emfStartBtn{
  display:inline-block;
}
/* Peer card: reduce padding a bit */
.emfPeerCard{
  padding: 1.5rem !important;
}

/* prevent content from hiding under fixed header */
main.wrap.page{
  padding-top: 90px; /* adjust if needed */
}
.topbar{
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
}
/* Salesumentary Bio Block */
.salesBio {
  margin-bottom: 32px;
}

.salesBio .coachRow {
  align-items: flex-start;
}

.salesBio .coachPhoto img {
  border-radius: 18px;
}

.salesBioText {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.salesBioCue {
  font-style: italic;
  opacity: 0.75;
  margin-top: 8px;
}
.emfPageIntro .fullWidthText p + p {
  margin-top: 14px;
}
.startHereCard{
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.startHereCard p{
  margin: 12px auto 20px;
}
/* ===== More page: 5-square-card row ===== */

.pg26ShopGrid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)); /* ALWAYS 5 across on desktop */
  gap: 1.1rem;
  margin: 1.6rem 0 3rem;
}

.pg26ShopCard{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.pg26ShopLink{
  display: grid;
  grid-template-rows: 1fr auto; /* square media + text area */
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.pg26ShopMedia{
  aspect-ratio: 1 / 1;           /* makes it a perfect square */
  background: rgba(0,0,0,0.04);
  display: grid;
  place-items: center;
}

.pg26ShopMedia img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mediaFallbackInner{
  font-weight: 700;
  opacity: 0.7;
}

.pg26ShopBody{
  padding: .9rem .95rem 1rem;
}

.pg26ShopTopline{
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
  margin: 0 0 .3rem;
}

.pg26ShopTitle{
  font-size: 1.02rem;
  margin: 0 0 .45rem;
  line-height: 1.2;
}

.pg26ShopText{
  margin: 0 0 .7rem;
  font-size: .92rem;
  opacity: .82;
}

.pg26ShopCta{
  font-weight: 700;
  font-size: .92rem;
  opacity: .9;
}

.pg26ShopCard:hover{
  transform: translateY(-2px);
  transition: transform .18s ease;
}

/* Responsive */
@media (max-width: 1100px){
  .pg26ShopGrid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px){
  .pg26ShopGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 460px){
  .pg26ShopGrid{ grid-template-columns: 1fr; }
}
.ctaBtn {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #6b3fa0, #8b5fd6);
  color: #fff;
  font-weight: 600;
}
/* ===== Programs page: equal-height cards ===== */
.pgPrograms{
  align-items: stretch;
}

.pgCard{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pgCard .divider{
  margin-top: 14px;
  margin-bottom: 14px;
}

/* Push the button area to the bottom so both cards match */
.pgCard > :last-child{
  margin-top: auto;
}

/* Optional: tighten the card titles slightly */
.pgCard h2{
  font-size: 20px;
}
.pg26Grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 22px;
}

@media (min-width: 900px){
  .pg26Grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 above / 2 below */
    align-items: stretch;
  }
}

.pg26Card{
  background: rgba(255,255,255,.80);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  height: 100%;
  text-align: left; /* important: NOT centered */
}

.pg26Head{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.pg26Icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(124,92,255,.14);
  border: 1px solid rgba(28,34,48,.10);
  flex: 0 0 auto;
}

.pg26Icon svg{
  width: 22px;
  height: 22px;
  fill: rgba(43,15,58,.92);
}

.pg26Card h2{
  margin: 0;
  font-size: 18px;
  letter-spacing: -.2px;
}
.pg26Grid{ margin-bottom: 40px; }
.footerLinks {
  font-size: 0.95rem;
  margin: 0.4rem 0;
}
.footerLinks {
  font-size: 0.95rem;
  margin: 0.4rem 0;
}
/* ===== Contact page layout (Vesela-style) ===== */

.contactCard { padding: 2rem; }

.contactSplit{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items:start;
  margin-top: 1.25rem;
}

/* Left panel */
.contactPanel{
  background:#f3d8bb;          /* warm sand */
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.contactPanelTitle{
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

/* Make your form feel “designed” */
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.contactGrid textarea{
  grid-column: 1 / -1;
  min-height: 160px;
  resize: vertical;
}

.contactGrid input,
.contactGrid textarea{
  width: 100%;
  padding: .85rem .9rem;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.18);
  background: #fff;
  outline: none;
}

.contactGrid input:focus,
.contactGrid textarea:focus{
  border-color: rgba(0,0,0,0.35);
}

/* Button */
.contactBtn{
  margin-top: 1rem;
  border: 0;
  border-radius: 999px;
  padding: .75rem 1.1rem;
  cursor: pointer;
}

/* Right panel */
.contactAside{
  padding: .5rem .25rem;
}

.contactAsideText{
  margin: 0 0 1rem;
  line-height: 1.6;
}

.contactPills{
  display:flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin: .75rem 0 1.25rem;
}

.contactPill{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding: .65rem .95rem;
  border-radius: 999px;
  text-decoration:none;
  border: 1px solid transparent;
  background:#d28b4e;  /* warm button tone */
  color:#fff;
  font-weight:600;
}

.contactPill.outline{
  background: transparent;
  color:#d28b4e;
  border-color:#d28b4e;
}

.pillIcon{ font-size: 1rem; line-height: 1; }

/* Social bubbles */
.contactSocial{
  display:flex;
  gap:.6rem;
  flex-wrap: wrap;
}

.socialBubble{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  text-decoration:none;
  font-weight:700;
  border:1px solid rgba(0,0,0,0.15);
  background:#fff;
  color:#222;
}

/* Mobile */
@media (max-width: 820px){
  .contactSplit{ grid-template-columns: 1fr; }
  .contactCard{ padding: 1.25rem; }
  .contactGrid{ grid-template-columns: 1fr; }
}
/* Footer wrapper (keep your current purple look) */
.siteFooter{
  background: linear-gradient(180deg, #3b254f, #2e1d3d);
  color:#e6e2ec;
  padding: 2.2rem 1rem;
}

/* Grid layout like your 1st screenshot */
.footerGrid{
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footerLeft{
  text-align: center;
}

.footerBrand{
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 .75rem;
  font-size: 1.2rem;
}

.footerSmall{
  margin: .35rem 0;
  font-size: .9rem;
  opacity: .9;
  line-height: 1.35;
}

/* Middle bullet list */
.footerLinksList{
  justify-self: center;
  text-align: left;

  display: grid;
  gap: .35rem;
}

.footerLinksList a{
  color:#e6e2ec;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-left: 1.1rem;
}

.footerLinksList a::before{
  content: "•";
  position: absolute;
  left: 0;
  opacity: .9;
}

/* Right icons — bigger like your 3rd screenshot */
.footerIconsBig{
  justify-self: end;
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.footerIconsBig a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footerIconsBig svg{
  width: 56px;     /* <-- logo size */
  height: 56px;
  fill: #ffffff;
  opacity: 0.95;
  transition: transform .2s ease, opacity .2s ease;
}

.footerIconsBig a:hover svg{
  transform: translateY(-2px);
  opacity: 1;
}

/* Mobile stack */
@media (max-width: 820px){
  .footerGrid{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footerLinksList{
    justify-self: center;
    text-align: left;
    width: fit-content;
  }
  .footerIconsBig{
    justify-self: center;
  }
}
/* === Contact page color alignment with main site === */

.contactPanel {
  background: linear-gradient(
    180deg,
    rgba(142, 108, 170, 0.18),
    rgba(96, 63, 128, 0.22)
  );
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

/* Title inside the card */
.contactPanelTitle {
  color: #2e1d3d;
  font-weight: 700;
}

/* Inputs stay light and clean */
.contactGrid input,
.contactGrid textarea {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #2e1d3d;
}

/* Focus state — subtle, on-brand */
.contactGrid input:focus,
.contactGrid textarea:focus {
  border-color: #8e6caa;
  outline: none;
  box-shadow: 0 0 0 2px rgba(142, 108, 170, 0.15);
}

/* Button refinement */
.contactBtn {
  background: #8e6caa;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-weight: 600;
}

.contactBtn:hover {
  background: #7a5c96;
}


/* === RESPONSIVE BREAKPOINTS === */

.footerLinksList {
  display: flex;
  flex-direction: column;
  gap: 0.15rem; /* controls spacing between items */
}

.footerLinksList a {
  margin: 0;          /* remove default margins */
  padding: 0;
  line-height: 1.4;   /* tighter vertical rhythm */
}
.contactPill:not(.outline) {
  background: #7d5ba6; /* exact purple from contactBtn */
  color: #fff;
  border: none;
}

.contactPill:not(.outline):hover {
  background: #6b4b92;
}
/* Make the 3 EMF cards always the same height */
.emfGrid{
  align-items: stretch;
}

.emfGrid .emfCard{
  height: 100%;
  display: flex;
  flex-direction: column;
}
.videoPreview {
  position: relative;
  display: inline-block;
  max-width: 420px;
  margin-top: 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.videoPreview img {
  width: 100%;
  display: block;
}

.videoOverlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  background: rgba(58, 22, 82, 0.35);
  transition: background 0.3s ease;
}

.videoPreview:hover .videoOverlay {
  background: rgba(58, 22, 82, 0.55);
}

.videoNote {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
.pgPrograms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 3rem; /* IMPORTANT – prevents overlap */
}

@media (max-width: 900px) {
  .pgPrograms {
    grid-template-columns: 1fr;
  }
}
.ctaBtn,
.ctaBtn:hover,
.ctaBtn:focus,
.ctaBtn:active {
  text-decoration: none;
}
/* Programs page: force 2 equal cards side-by-side */
.pgPrograms{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 2rem;
  align-items: stretch;
}

/* make both cards same height and keep button near bottom */
.pgCard{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pgCard .ctaBtn{
  margin-top: auto;
  align-self: flex-start;
}

/* responsive */
@media (max-width: 900px){
  .pgPrograms{
    grid-template-columns: 1fr !important;
  }
}
/* 3 cards at top of USM page */
.emfGrid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 2rem;
  align-items: stretch;
}

.emfCard{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.twoColGrid{
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Mobile */
@media (max-width: 768px){
  .twoColGrid{ grid-template-columns: 1fr; }
}

/* Mobile safety */
@media (max-width: 768px) {
  .grid.twoCol {
    grid-template-columns: 1fr;
  }
}
.stagesGrid {
  margin-top: 2.5rem;
}

.stagesGrid h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* CARD GRID */
.stagesCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual cards (safe defaults) */
.stageCard {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.stageIcon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

/* Mobile fallback */
@media (max-width: 768px) {
  .stagesCards {
    grid-template-columns: 1fr;
  }
}
.emfGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .emfGrid { grid-template-columns: 1fr; }
}
/* ===== Global Button Style (Power Group 26) ===== */

.pgBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.6rem 1.25rem;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;

  background: linear-gradient(135deg, #6b3fa0, #8b5fd6);
  color: #ffffff;

  border: none;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.pgBtn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

.pgBtn:active {
  transform: translateY(0);
}


/* =========================
   MORE PAGE – single source of truth
   ========================= */

.moreGrid{
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  align-items: stretch;
  justify-items: stretch;
  margin-top: 2rem;
}

.moreCard{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.moreCard .btn{
  margin-top: auto;
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 1100px){
  .moreGrid{ grid-template-columns: repeat(3, minmax(220px, 1fr)); }
}
@media (max-width: 820px){
  .moreGrid{ grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 520px){
  .moreGrid{ grid-template-columns: 1fr; }
}
.footerSocial .socialBubble {
  color: #fff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
}

.footerSocial .socialBubble:hover {
  background: #f2eefe;
  color: #3b2158;
}
.footerSocial {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
}

.footerIcon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0.9;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footerIcon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footerIcon:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footerSocial {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
}
/* === PG26 FULL-WIDTH PHOTO STRIP (Dean-style) === */

.pg26Mosaic{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 3rem;
}

.pg26MosaicInner{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;              /* NO gaps */
}

.pg26MosaicItem{
  display: block;
  overflow: hidden;
  border-radius: 0;   /* sharp edges like Dean */
}

.pg26MosaicItem img{
  width: 100%;
  height: 320px;      /* adjust if you want taller/shorter */
  object-fit: cover;
  display: block;
}

/* Tablet */
@media (max-width: 980px){
  .pg26MosaicInner{
    grid-template-columns: repeat(2, 1fr);
  }
  .pg26MosaicItem img{
    height: 260px;
  }
}

/* Mobile */
@media (max-width: 520px){
  .pg26MosaicInner{
    grid-template-columns: 1fr;
  }
  .pg26MosaicItem img{
    height: 240px;
  }
}
.pg26MosaicItem img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top; /* 👈 shows the top of the photo */
  display: block;
}
/* === Contact Pills: make all pills identical === */

.contactPill{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b4bb7, #5e2a8a);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.contactPill:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(94,42,138,.35);
}

/* Neutralize outline variant */
.contactPill.outline{
  background: linear-gradient(135deg, #7b4bb7, #5e2a8a);
  color: #fff;
  border: none;
}
:root{
  --pg26-purple-dark: #2b0f45;
  --pg26-purple-mid: #4a1f6f;
  --pg26-purple-grad: linear-gradient(
    135deg,
    var(--pg26-purple-dark),
    var(--pg26-purple-mid)
  );
}
.topbar{
  background: var(--pg26-purple-grad);
}
.siteFooter{
  background: var(--pg26-purple-grad);
}
