/* =============================================================
   SPEAKING UP WITH WENDY BAIRD PACKARD — Stylesheet v2
   Sections: tokens, base, layout, buttons, header, footer,
   components, home, about, programs, services, blog, contact,
   animations, responsive
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap');

/* Local licensed Playlist Script font supplied by the site owner. */
@font-face {
  font-family: 'Playlist Script';
  src: url('../fonts/Playlist Script.woff2') format('woff2'),
       url('../fonts/Playlist Script.otf') format('opentype'),
       local('Playlist Script'),
       local('PlaylistScript');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink:#ff2e8a; --pink-soft:#ffd1e6; --teal:#00b8b5; --teal-deep:#009995; --teal-soft:#d6f5f4;
  --purple:#7b2cbf; --purple-soft:#ede0fa; --yellow:#ffd400; --orange:#ff8a00; --orange-soft:#ffe6cc;
  --navy:#14163a; --gray-700:#4a4d6a; --gray-500:#8b8ea8; --gray-200:#e6e8f0; --gray-100:#f5f6fa; --white:#ffffff;
  --gradient-warm:linear-gradient(135deg,#ff2e8a 0%,#ff8a00 100%);
  --gradient-cool:linear-gradient(135deg,#00b8b5 0%,#7b2cbf 100%);
  --gradient-purple:linear-gradient(135deg,#7b2cbf 0%,#ff2e8a 100%);
  --gradient-sunset:linear-gradient(135deg,#ff2e8a 0%,#ff8a00 50%,#ffd400 100%);
  --font-body:'Poppins',system-ui,sans-serif; --font-display:'Montserrat',system-ui,sans-serif; --font-script:'Playlist Script','PlaylistScript','Sacramento',cursive;
  --container:1200px;
  --radius-md:16px; --radius-lg:28px; --radius-pill:999px;
  --shadow-sm:0 2px 8px rgba(20,22,58,.06);
  --shadow-md:0 8px 24px rgba(20,22,58,.1);
  --shadow-lg:0 20px 50px rgba(20,22,58,.12);
  --shadow-pop:0 12px 30px rgba(255,46,138,.25);
  --transition:.25s cubic-bezier(.4,0,.2,1);
  --transition-slow:.5s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{margin:0;font-family:var(--font-body);font-size:16px;line-height:1.6;color:var(--navy);background:var(--white);-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
h1,h2,h3,h4,h5,h6{font-family:var(--font-display);font-weight:800;line-height:1.15;margin:0 0 .5em;color:var(--navy);letter-spacing:-.01em}
h1{font-size:clamp(2.25rem,5vw,3.75rem)} h2{font-size:clamp(1.75rem,3.5vw,2.75rem)}
h3{font-size:clamp(1.25rem,2vw,1.75rem)} h4{font-size:1.15rem;font-weight:700}
p{margin:0 0 1em}
.script{font-family:var(--font-script);font-weight:400;letter-spacing:0;font-size:1.25em;line-height:.9}
a{color:var(--pink);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--purple)}
:focus-visible{outline:3px solid var(--teal);outline-offset:3px;border-radius:4px}
.skip-link{position:absolute;top:-100px;left:0;background:var(--navy);color:var(--white);padding:.75rem 1.25rem;z-index:9999;font-weight:600}
.skip-link:focus{top:0;color:var(--white)}

.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 1.5rem}
.section{padding:4rem 0;position:relative}
.section-tight{padding:2rem 0}
.text-center{text-align:center}

/* ---------- BUTTONS ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.95rem 1.75rem;font-family:var(--font-body);font-weight:700;font-size:.95rem;letter-spacing:.04em;text-transform:uppercase;border:2px solid transparent;border-radius:var(--radius-pill);cursor:pointer;transition:all var(--transition);text-decoration:none;line-height:1;position:relative;overflow:hidden}
.btn-primary::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(120deg,transparent,rgba(255,255,255,.3),transparent);transition:left .7s ease-in-out}
.btn-primary:hover::before{left:100%}
.btn-primary{background:var(--pink);color:var(--white);box-shadow:var(--shadow-pop)}
.btn-primary:hover{background:var(--purple);color:var(--white);transform:translateY(-3px) scale(1.02);box-shadow:0 16px 35px rgba(123,44,191,.4)}
.btn-teal{background:var(--teal);color:var(--white);box-shadow:0 12px 30px rgba(0,184,181,.25)}
.btn-teal:hover{background:var(--teal-deep);color:var(--white);transform:translateY(-3px) scale(1.02)}
.btn-orange{background:var(--orange);color:var(--white);box-shadow:0 12px 30px rgba(255,138,0,.25)}
.btn-orange:hover{background:#e07900;color:var(--white);transform:translateY(-3px) scale(1.02)}
.btn-outline{background:transparent;color:var(--teal);border-color:var(--teal)}
.btn-outline:hover{background:var(--teal);color:var(--white);transform:translateY(-3px) scale(1.02)}
.btn-white{background:var(--white);color:var(--pink)}
.btn-white:hover{background:var(--navy);color:var(--white);transform:translateY(-3px) scale(1.02)}
.btn-sm{padding:.65rem 1.25rem;font-size:.8rem}

/* ---------- HEADER / NAV ---------- */
.site-header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.95);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--gray-200)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:1rem 0;gap:2rem}
.nav-logo{display:inline-block;transition:transform var(--transition)}
.nav-logo:hover{transform:scale(1.04) rotate(-1deg)}
.nav-logo img{height:64px;width:auto}
.nav-list{display:flex;align-items:center;gap:1.6rem;list-style:none;margin:0;padding:0}
.nav-list a{color:var(--navy);font-weight:600;font-size:.92rem;letter-spacing:.03em;text-transform:uppercase;position:relative;padding:.5rem 0;transition:color var(--transition)}
.nav-list a:not(.btn)::after{content:'';position:absolute;left:0;right:0;bottom:0;height:3px;background:var(--teal);border-radius:2px;transform:scaleX(0);transform-origin:left;transition:transform var(--transition)}
.nav-list a:not(.btn):hover,.nav-list a:not(.btn).active{color:var(--teal)}
.nav-list a:not(.btn).active::after,.nav-list a:not(.btn):hover::after{transform:scaleX(1)}
.nav-toggle{display:none;background:none;border:0;cursor:pointer;padding:.5rem;width:44px;height:44px;position:relative;z-index:102}
.nav-toggle span{display:block;width:26px;height:3px;background:var(--navy);border-radius:2px;margin:5px auto;transition:all var(--transition)}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
.nav-backdrop{position:fixed;inset:0;background:rgba(20,22,58,.45);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);opacity:0;visibility:hidden;transition:opacity var(--transition),visibility var(--transition);z-index:99}
.nav-backdrop.open{opacity:1;visibility:visible}

/* ---------- FOOTER ---------- */
.site-footer{background:var(--navy);color:var(--white);padding:4rem 0 2rem;margin-top:4rem;position:relative;overflow:hidden}
.site-footer::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--pink),var(--orange),var(--yellow),var(--teal),var(--purple),var(--pink));background-size:200% 100%;animation:gradient-flow 8s linear infinite}
.site-footer::after{content:'';position:absolute;bottom:1.5rem;right:2rem;width:90px;height:70px;background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 70' fill='none' stroke='%23ff2e8a' stroke-width='2.5'><ellipse cx='35' cy='28' rx='28' ry='22'/><circle cx='25' cy='28' r='2.5' fill='%23ff2e8a'/><circle cx='35' cy='28' r='2.5' fill='%23ff2e8a'/><circle cx='45' cy='28' r='2.5' fill='%23ff2e8a'/><path d='M22 47 L18 60 L32 50'/><ellipse cx='65' cy='40' rx='18' ry='14'/></svg>") no-repeat center/contain;opacity:.7;animation:float 5s ease-in-out infinite}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand .logo-pill{background:var(--white);display:inline-block;padding:.5rem 1rem;border-radius:var(--radius-md);margin-bottom:1rem;transition:transform var(--transition)}
.footer-brand .logo-pill:hover{transform:scale(1.04)}
.footer-brand .logo-pill img{filter:none;height:50px}
.footer-brand p{color:rgba(255,255,255,.75);font-size:.92rem;max-width:280px}
.footer-col h4{color:var(--white);font-size:1rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:1rem;font-weight:700}
.footer-col ul{list-style:none;padding:0;margin:0}
.footer-col ul li{margin-bottom:.6rem}
.footer-col a{color:rgba(255,255,255,.7);font-size:.92rem;transition:all var(--transition);display:inline-block}
.footer-col a:hover{color:var(--pink);transform:translateX(3px)}
.footer-social{display:flex;gap:.75rem;margin-top:1rem}
.footer-social a{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.1);display:inline-flex;align-items:center;justify-content:center;color:var(--white);transition:all var(--transition)}
.footer-social a:hover{background:var(--pink);transform:translateY(-3px) rotate(-5deg)}
.footer-social svg{width:18px;height:18px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:1.5rem;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1rem;font-size:.85rem;color:rgba(255,255,255,.6)}
.footer-bottom a{color:rgba(255,255,255,.6)}
.footer-bottom a:hover{color:var(--pink)}

/* ---------- CARDS ---------- */
.card{background:var(--white);border-radius:var(--radius-lg);padding:2.25rem 1.75rem;box-shadow:var(--shadow-sm);border:1px solid var(--gray-200);transition:all var(--transition-slow);text-align:center;position:relative;height:100%;display:flex;flex-direction:column;overflow:hidden}
.card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:var(--gradient-warm);transform:scaleX(0);transform-origin:left;transition:transform var(--transition-slow)}
.card-teal::before{background:var(--teal)} .card-purple::before{background:var(--purple)}
.card-orange::before{background:var(--orange)} .card-pink::before{background:var(--pink)}
.card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg);border-color:transparent}
.card:hover::before{transform:scaleX(1)}
.card-icon{width:64px;height:64px;margin:0 auto 1.25rem;display:flex;align-items:center;justify-content:center;transition:transform var(--transition-slow)}
.card:hover .card-icon{transform:scale(1.1) rotate(-5deg)}
.card-icon svg{width:100%;height:100%}
.card h3{margin-bottom:.75rem;font-size:1.2rem}
.card p{color:var(--gray-700);font-size:.95rem;margin-bottom:1.5rem;flex-grow:1}
.card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.5rem}
.card-pink .card-icon{color:var(--pink)} .card-teal .card-icon{color:var(--teal)}
.card-orange .card-icon{color:var(--orange)} .card-purple .card-icon{color:var(--purple)}
.card-pink h3{color:var(--pink)} .card-teal h3{color:var(--teal)}
.card-orange h3{color:var(--orange)} .card-purple h3{color:var(--purple)}

.banner-band{background:var(--gradient-sunset);background-size:200% 200%;animation:gradient-flow 10s ease infinite;color:var(--white);text-align:center;padding:1.75rem 2rem;font-family:var(--font-display);font-weight:800;font-size:clamp(1.1rem,2vw,1.5rem);letter-spacing:.03em;text-transform:uppercase;position:relative;overflow:hidden}
.banner-band::before,.banner-band::after{content:'✨';position:absolute;top:50%;transform:translateY(-50%);font-size:1.5rem;animation:twinkle 2.5s ease-in-out infinite}
.banner-band::before{left:8%}
.banner-band::after{right:8%;animation-delay:1.25s}

/* ---------- HOME ---------- */
.home-hero{position:relative;padding:4rem 0 5rem;overflow:hidden;background:radial-gradient(circle at 90% 10%,rgba(255,212,0,.08) 0%,transparent 40%),radial-gradient(circle at 10% 90%,rgba(0,184,181,.08) 0%,transparent 40%)}
.home-hero .geo-shape{position:absolute;pointer-events:none;z-index:0}
.home-hero .geo-1{top:8%;left:6%;width:0;height:0;border-left:12px solid transparent;border-right:12px solid transparent;border-bottom:20px solid var(--pink);opacity:.4;animation:drift-up 14s ease-in-out infinite}
.home-hero .geo-2{top:25%;left:12%;width:14px;height:14px;background:var(--teal);border-radius:50%;opacity:.5;animation:drift-up 11s ease-in-out infinite reverse}
.home-hero .geo-3{top:70%;left:45%;width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-top:18px solid var(--purple);opacity:.3;animation:drift-up 18s ease-in-out infinite}
.home-hero .geo-4{top:50%;right:8%;width:18px;height:18px;background:var(--yellow);border-radius:50%;opacity:.5;animation:drift-up 13s ease-in-out infinite reverse}
.home-hero .geo-5{top:18%;right:18%;width:16px;height:16px;background:linear-gradient(var(--orange),var(--orange)) center/100% 4px no-repeat,linear-gradient(var(--orange),var(--orange)) center/4px 100% no-repeat;opacity:.5;animation:spin-slow 12s linear infinite}
.home-hero-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:3rem;align-items:center;position:relative;z-index:1}
.home-hero-text>*{opacity:0;animation:fade-up-in .8s ease-out forwards}
.home-hero-text>*:nth-child(1){animation-delay:.1s}
.home-hero-text>*:nth-child(2){animation-delay:.3s}
.home-hero-text>*:nth-child(3){animation-delay:.5s}
.home-hero h1{font-size:clamp(2.5rem,5.5vw,4.5rem);margin-bottom:1.5rem;line-height:1.05}
.home-hero h1 .script{font-size:1.4em;display:inline-block;margin-left:.1em;background:var(--gradient-warm);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:var(--pink)}
.home-hero .lede{font-size:1.15rem;color:var(--gray-700);max-width:480px;margin-bottom:2rem}
.home-hero-cta{display:flex;gap:1rem;flex-wrap:wrap}
/* ================================
   HERO IMAGE LAYERED ART
   Bottom-right anchored layered version
================================ */

.home-hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 640px;
  height: 100%;
  opacity: 1;
}

.hero-photo-frame.hero-layered-art {
  position: relative;
  width: 100%;
  max-width: 660px;
  min-height: 640px;
  height: 100%;
  overflow: visible;
}

/* Remove old circular photo behavior if those old classes still exist anywhere */
.hero-photo-frame .splash-bg,
.hero-photo-frame .photo {
  border-radius: 0;
  box-shadow: none;
}

/* Base layer image styling */
.hero-layered-art .hero-art {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
}

/* hero-1: background art, fills the full hero artwork section */
.hero-layered-art .hero-art-bg {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: bottom right;
}

/* hero-2: Wendy photo, slightly smaller than the previous version and anchored lower right */
.hero-layered-art .hero-art-person {
  right: -10px;
  bottom: 0;
  height: 104.5%;
  width: auto;
  z-index: 2;
  object-fit: contain;
}

/* hero-3: accent art, 15% larger, anchored to the lower-right corner and allowed to bleed */
.hero-layered-art .hero-art-accent {
  right: 0;
  bottom: 0;
  width: 101%;
  height: auto;
  z-index: 3;
  pointer-events: none;
  transform: translate(14%, 16%);
  transform-origin: bottom right;
}

/* ================================
   HERO SPEECH BUBBLES
================================ */

.hero-layered-art .floating-bubble {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: transparent;
  pointer-events: none;
  z-index: 4;
  transform-origin: center center;
  animation: speechBubbleFloat 5.5s ease-in-out infinite;
  will-change: transform;
}

/* Orange: largest bubble, left of Wendy's face */
.hero-layered-art .bubble-orange {
  top: 23%;
  left: 7%;
  width: 156px;
  --bubble-rotate: 8deg;
  animation-delay: 0s;
}

/* Purple: smaller, higher on Wendy's right side */
.hero-layered-art .bubble-purple {
  top: 10%;
  right: 2%;
  width: 115px;
  --bubble-rotate: -10deg;
  animation-delay: 1.2s;
}

/* Teal: medium bubble, lower right with slight overlap */
.hero-layered-art .bubble-teal {
  bottom: 22%;
  right: -4%;
  width: 135px;
  --bubble-rotate: 9deg;
  animation-delay: 2.1s;
}

@keyframes speechBubbleFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(var(--bubble-rotate));
  }

  25% {
    transform: translate3d(2px, -5px, 0) rotate(calc(var(--bubble-rotate) + 1deg));
  }

  50% {
    transform: translate3d(-2px, -9px, 0) rotate(calc(var(--bubble-rotate) - 1deg));
  }

  75% {
    transform: translate3d(1px, -4px, 0) rotate(calc(var(--bubble-rotate) + .5deg));
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(var(--bubble-rotate));
  }
}

@media (max-width: 991px) {
  .hero-photo-frame.hero-layered-art {
    max-width: 520px;
    min-height: 540px;
    margin: 0 auto;
  }

  .hero-layered-art .hero-art-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
  }

  .hero-layered-art .hero-art-person {
    right: -8px;
    bottom: 0;
    height: 104.5%;
  }

  .hero-layered-art .hero-art-accent {
    right: 0;
    bottom: 0;
    width: 97%;
    transform: translate(12%, 14%);
  }

  .hero-layered-art .bubble-orange {
    width: 131px;
    left: 4%;
    top: 24%;
  }

  .hero-layered-art .bubble-purple {
    width: 98px;
    right: 2%;
    top: 12%;
  }

  .hero-layered-art .bubble-teal {
    width: 115px;
    right: -3%;
    bottom: 22%;
  }
}

@media (max-width: 767px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-image {
    justify-content: center;
    min-height: 440px;
    order: -1;
  }

  .hero-photo-frame.hero-layered-art {
    max-width: 100%;
    min-height: 440px;
  }

  .hero-layered-art .hero-art-bg {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
  }

  .hero-layered-art .hero-art-person {
    right: -6px;
    bottom: 0;
    height: 104.5%;
  }

  .hero-layered-art .hero-art-accent {
    width: 90%;
    right: 0;
    bottom: 0;
    transform: translate(10%, 12%);
  }

  .hero-layered-art .bubble-orange {
    width: 103px;
    left: 1%;
    top: 27%;
  }

  .hero-layered-art .bubble-purple {
    width: 78px;
    right: 3%;
    top: 13%;
  }

  .hero-layered-art .bubble-teal {
    width: 90px;
    right: -1%;
    bottom: 19%;
  }
}

.scroll-cue{position:absolute;left:50%;bottom:1.5rem;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;font-size:.7rem;color:var(--gray-500);font-weight:700;letter-spacing:.2em;text-transform:uppercase;opacity:0;animation:fade-up-in .6s ease-out 1.2s forwards}
.scroll-cue::after{content:'';width:2px;height:30px;background:var(--pink);margin-top:.5rem;animation:scroll-bounce 2s ease-in-out infinite}

.tagline-band{text-align:center;font-size:clamp(1.25rem,2.2vw,1.6rem);font-weight:700;color:var(--navy);padding:0 1rem;margin:0 auto 3rem;max-width:800px;line-height:1.4}

.feature-cta{background:var(--gradient-warm);background-size:200% 200%;animation:gradient-flow 12s ease infinite;border-radius:var(--radius-lg);padding:3.5rem 3rem;display:grid;grid-template-columns:1.5fr 1fr;gap:3rem;align-items:center;color:var(--white);position:relative;overflow:hidden;margin:3rem 0;box-shadow:var(--shadow-lg)}
.feature-cta::before{content:'';position:absolute;top:-50%;right:-10%;width:300px;height:300px;background:radial-gradient(circle,rgba(255,255,255,.2),transparent 70%);border-radius:50%;animation:pulse-glow 4s ease-in-out infinite}
.feature-cta h2{color:var(--white);margin-bottom:1rem;position:relative;z-index:1}
.feature-cta h2 .script{display:inline-block;font-size:1.4em;color:var(--white)}
.feature-cta p{font-size:1.1rem;opacity:.95;margin-bottom:1.75rem;position:relative;z-index:1}
.feature-cta .feature-photo{width:100%;aspect-ratio:1/1;border-radius:50%;object-fit:cover;border:5px solid var(--white);box-shadow:var(--shadow-lg);position:relative;z-index:1;animation:float 6s ease-in-out infinite}

.focus-areas{background:var(--gray-100);padding:5rem 0;position:relative}
.focus-areas-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2.5rem}
.focus-card{background:var(--white);border-radius:var(--radius-lg);padding:2.5rem 2rem;border-top:6px solid var(--pink);box-shadow:var(--shadow-sm);transition:all var(--transition-slow);position:relative;overflow:hidden}
.focus-card.teal{border-top-color:var(--teal)}
.focus-card.orange{border-top-color:var(--orange)}
.focus-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.focus-card .focus-eyebrow{font-size:.75rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--pink);margin-bottom:.5rem;display:block}
.focus-card.teal .focus-eyebrow{color:var(--teal)}
.focus-card.orange .focus-eyebrow{color:var(--orange)}
.focus-card h3{font-size:1.35rem;margin-bottom:1rem}
.focus-card>p{color:var(--gray-700);font-size:.95rem;margin-bottom:1rem}
.focus-card ul{list-style:none;padding:0;margin:0}
.focus-card ul li{padding-left:1.6rem;position:relative;font-size:.92rem;color:var(--gray-700);margin-bottom:.6rem;line-height:1.45}
.focus-card ul li::before{content:'';position:absolute;left:0;top:.5rem;width:8px;height:8px;background:var(--pink);border-radius:50%;box-shadow:0 0 0 3px rgba(255,46,138,.15)}
.focus-card.teal ul li::before{background:var(--teal);box-shadow:0 0 0 3px rgba(0,184,181,.15)}
.focus-card.orange ul li::before{background:var(--orange);box-shadow:0 0 0 3px rgba(255,138,0,.15)}

.beliefs-statement{text-align:center;font-size:1.15rem;line-height:1.6;max-width:800px;margin:0 auto 2rem;padding:0 1rem}
.beliefs-statement strong{font-weight:700}
.beliefs-statement .pink{color:var(--pink)}
.beliefs-statement .teal{color:var(--teal)}

.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin:2.5rem 0}
.value-item{text-align:center;padding:1rem;transition:transform var(--transition-slow)}
.value-item:hover{transform:translateY(-6px)}
.value-item .value-icon{width:64px;height:64px;margin:0 auto 1rem;transition:transform var(--transition-slow)}
.value-item:hover .value-icon{transform:scale(1.15) rotate(-5deg)}
.value-item h4{font-family:var(--font-display);font-weight:800;letter-spacing:.08em;text-transform:uppercase;margin-bottom:.5rem;font-size:1.05rem}
.value-item.value-pink h4{color:var(--pink)} .value-item.value-teal h4{color:var(--teal)}
.value-item.value-purple h4{color:var(--purple)} .value-item.value-orange h4{color:var(--orange)}
.value-item p{font-size:.92rem;color:var(--gray-700);margin:0}

.testimonial-strip{position:relative;padding:5rem 0;overflow:hidden;background:linear-gradient(135deg,#fde0ff 0%,#d4f0ff 50%,#ffe0e9 100%);isolation:isolate}
.testimonial-bg{position:absolute;inset:0;width:100%;height:100%;z-index:0;pointer-events:none}
.testimonial-bg .blur-orb{filter:blur(40px);opacity:.6;animation:pulse-glow 8s ease-in-out infinite}
.testimonial-bg .blur-orb-2{animation-delay:2s;animation-duration:10s}
.testimonial-bg .float-shape{transform-box:fill-box;transform-origin:center;animation:drift-rotate 14s ease-in-out infinite}
.testimonial-bg .float-shape-2{animation-duration:18s;animation-delay:1s}
.testimonial-bg .float-shape-3{animation-duration:22s;animation-delay:3s}
.testimonial-bg .float-shape-4{animation-duration:16s;animation-delay:5s}
.testimonial-bg .twinkle-shape{transform-box:fill-box;transform-origin:center;animation:twinkle 3s ease-in-out infinite}
.testimonial-bg .twinkle-shape-2{animation-delay:.7s;animation-duration:4s}
.testimonial-bg .twinkle-shape-3{animation-delay:1.4s;animation-duration:3.5s}
.testimonial-strip blockquote{max-width:760px;margin:0 auto;text-align:center;font-size:clamp(1.15rem,2vw,1.5rem);font-weight:500;color:var(--navy);font-style:italic;position:relative;z-index:1;padding:0 2rem}
.testimonial-strip blockquote::before{content:'"';font-family:Georgia,serif;font-size:5rem;color:var(--pink);font-style:normal;display:block;line-height:.5;margin-bottom:1rem;animation:bounce-subtle 4s ease-in-out infinite}
.testimonial-strip cite{display:block;margin-top:1rem;font-size:1rem;font-weight:700;color:var(--pink);font-style:normal}
.testimonial-strip .neon-mic{position:absolute;right:4%;bottom:-8%;width:220px;opacity:.85;pointer-events:none;z-index:1;animation:float 8s ease-in-out infinite;filter:drop-shadow(0 10px 30px rgba(123,44,191,.3))}

.final-cta{background:var(--gradient-purple);background-size:200% 200%;animation:gradient-flow 15s ease infinite;color:var(--white);padding:3.5rem 0;position:relative;overflow:hidden}
.final-cta::before,.final-cta::after{content:'';position:absolute;width:200px;height:200px;border-radius:50%;background:rgba(255,255,255,.08);filter:blur(40px)}
.final-cta::before{top:-50px;left:10%;animation:pulse-glow 6s ease-in-out infinite}
.final-cta::after{bottom:-50px;right:15%;animation:pulse-glow 7s ease-in-out infinite 1s}
.final-cta-grid{display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;position:relative;z-index:1}
.final-cta h2{color:var(--white);margin:0 0 .5rem}
.final-cta h2 .script{font-size:1.4em;color:var(--white)}
.final-cta p{margin:0;opacity:.92;max-width:480px}

/* ---------- ABOUT ---------- */
.about-hero{background:var(--gradient-warm);background-size:200% 200%;animation:gradient-flow 14s ease infinite;color:var(--white);padding:4rem 0;position:relative;overflow:hidden}
.about-hero::before{content:'';position:absolute;top:-100px;left:-100px;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.15),transparent 70%);animation:pulse-glow 8s ease-in-out infinite}
.about-hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;position:relative;z-index:1}
.about-hero h1{color:var(--white);font-family:var(--font-script);font-weight:400;font-size:clamp(3rem,6vw,5rem);margin-bottom:1rem;line-height:1}
.about-hero h1+p{font-size:1.2rem;opacity:.95;margin-bottom:0;max-width:480px}
.about-hero-photo{border-radius:var(--radius-lg);width:100%;aspect-ratio:4/3;object-fit:cover;box-shadow:var(--shadow-lg);transition:transform var(--transition-slow)}
.about-hero-photo:hover{transform:scale(1.02) rotate(.5deg)}
.about-body{max-width:760px;margin:0 auto;font-size:1.05rem;color:var(--gray-700)}
.about-body p{margin-bottom:1.25rem}
.about-body strong{color:var(--navy)}

.mission-card{background:var(--gradient-purple);background-size:200% 200%;animation:gradient-flow 16s ease infinite;color:var(--white);border-radius:200px 40px 200px 40px;padding:3rem 3.5rem;display:flex;align-items:center;gap:2rem;margin:3rem 0;position:relative;box-shadow:var(--shadow-lg);overflow:hidden}
.mission-card::after{content:'';position:absolute;top:-30%;right:-10%;width:250px;height:250px;background:radial-gradient(circle,rgba(255,255,255,.12),transparent 70%);border-radius:50%;animation:pulse-glow 5s ease-in-out infinite}
.mission-card .mission-icon{flex-shrink:0;width:110px;height:110px;border-radius:50%;border:4px solid rgba(255,255,255,.6);display:flex;align-items:center;justify-content:center;animation:gentle-rotate 20s linear infinite}
.mission-card .mission-icon svg{width:60px;height:60px;color:var(--white)}
.mission-card h3{color:var(--white);font-size:1.5rem;margin-bottom:.5rem;position:relative;z-index:1}
.mission-card p{margin:0;opacity:.95;font-size:1.05rem;position:relative;z-index:1}

.drives-section h2{color:var(--pink);font-size:2rem;margin-bottom:2rem}
.drives-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2.5rem}
.drive-item{text-align:center;border-right:1px solid var(--gray-200);padding:1rem 1.5rem;transition:transform var(--transition-slow)}
.drive-item:hover{transform:translateY(-6px)}
.drive-item:last-child{border-right:0}
.drive-item .drive-icon{width:64px;height:64px;margin:0 auto 1rem;transition:transform var(--transition-slow)}
.drive-item:hover .drive-icon{transform:scale(1.15) rotate(-5deg)}
.drive-item h4{font-size:1.25rem;margin-bottom:.5rem}
.drive-item p{color:var(--gray-700);font-size:.95rem;margin:0}

.about-testimonial{background:linear-gradient(135deg,#fff8f8 0%,#fff5e6 100%);padding:4rem 0;position:relative;overflow:hidden}
.about-testimonial-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:3rem;align-items:center}
.about-testimonial-photo{border-radius:var(--radius-lg);width:100%;aspect-ratio:3/4;object-fit:cover;box-shadow:var(--shadow-lg)}
.testimonial-bubble{background:var(--white);border-radius:28px;padding:2.5rem;position:relative;box-shadow:var(--shadow-md);transition:transform var(--transition-slow)}
.testimonial-bubble:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.testimonial-bubble::before{content:'"';font-family:Georgia,serif;font-size:4rem;color:var(--pink);line-height:.3;display:block;margin-bottom:.5rem}
.testimonial-bubble p{font-size:1.15rem;font-style:italic;color:var(--navy);margin-bottom:1rem}
.testimonial-bubble cite{font-style:normal;font-weight:700;color:var(--pink)}

/* ---------- PROGRAMS ---------- */
.programs-hero{background:var(--gradient-warm);background-size:200% 200%;animation:gradient-flow 14s ease infinite;color:var(--white);padding:4rem 0;position:relative;overflow:hidden}
.programs-hero::after{content:'';position:absolute;bottom:-100px;right:-50px;width:300px;height:300px;background:radial-gradient(circle,rgba(255,255,255,.15),transparent 70%);border-radius:50%;animation:pulse-glow 7s ease-in-out infinite}
.programs-hero-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:3rem;align-items:center;position:relative;z-index:1}
.programs-hero h1{color:var(--white);margin-bottom:1rem}
.programs-hero h1 .script{color:var(--white);font-size:1.4em;display:inline-block}
.programs-hero .tagline{font-size:1.15rem;font-weight:600;margin-bottom:1rem}
.programs-hero p{opacity:.95;max-width:480px}
.programs-hero-photo{border-radius:50%;width:100%;max-width:380px;aspect-ratio:1/1;object-fit:cover;border:6px solid var(--white);box-shadow:var(--shadow-lg);animation:float 7s ease-in-out infinite}
.programs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin:3rem 0}

.topic-list-section{background:var(--gray-100);padding:4rem 0}
.topic-list-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2rem}
.topic-list-card{background:var(--white);border-radius:var(--radius-lg);padding:2rem;box-shadow:var(--shadow-sm);border-top:6px solid var(--pink);transition:all var(--transition-slow)}
.topic-list-card.teal{border-top-color:var(--teal)}
.topic-list-card.purple{border-top-color:var(--purple)}
.topic-list-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}
.topic-list-card h3{font-size:1.2rem;margin-bottom:1rem;color:var(--pink)}
.topic-list-card.teal h3{color:var(--teal)}
.topic-list-card.purple h3{color:var(--purple)}
.topic-list-card ul{list-style:none;padding:0;margin:0}
.topic-list-card ul li{padding:.6rem 0 .6rem 1.5rem;position:relative;font-size:.92rem;color:var(--gray-700);border-bottom:1px solid var(--gray-200);transition:padding var(--transition)}
.topic-list-card ul li:last-child{border-bottom:0}
.topic-list-card ul li::before{content:'→';position:absolute;left:0;color:var(--pink);font-weight:700;transition:transform var(--transition)}
.topic-list-card.teal ul li::before{color:var(--teal)}
.topic-list-card.purple ul li::before{color:var(--purple)}
.topic-list-card ul li:hover{padding-left:2rem;color:var(--navy)}
.topic-list-card ul li:hover::before{transform:translateX(4px)}

.cta-banner{background:var(--teal);color:var(--white);padding:3rem 2rem;border-radius:var(--radius-lg);text-align:center;position:relative;overflow:hidden;margin:2rem 0}
.cta-banner h3{color:var(--white);font-size:1.75rem;margin-bottom:.5rem;position:relative;z-index:1}
.cta-banner p{font-size:1.05rem;opacity:.95;margin-bottom:1.5rem;position:relative;z-index:1}
.cta-banner .btn{position:relative;z-index:1}
.cta-banner::before,.cta-banner::after{content:'';position:absolute;width:220px;height:100%;top:0;background-size:cover;pointer-events:none;opacity:.4;transform:skewX(-12deg)}
.cta-banner::before{left:-50px;background:linear-gradient(90deg,var(--pink),transparent)}
.cta-banner::after{right:-50px;background:linear-gradient(-90deg,var(--purple),transparent)}

.custom-solutions{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;margin:3rem 0}
.custom-solutions h2{margin-bottom:1rem}
.custom-solutions ul{list-style:none;padding:0;margin:1.5rem 0 0}
.custom-solutions ul li{padding-left:2rem;position:relative;margin-bottom:.75rem;font-weight:500}
.custom-solutions ul li::before{content:'';position:absolute;left:0;top:.4rem;width:18px;height:18px;background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300b8b5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center/contain}
.custom-solutions img{border-radius:var(--radius-lg);width:100%;aspect-ratio:4/3;object-fit:cover;box-shadow:var(--shadow-md);transition:transform var(--transition-slow)}
.custom-solutions img:hover{transform:scale(1.02)}

/* ---------- SERVICES ---------- */
.services-hero{padding:4rem 0;position:relative;overflow:hidden}
.services-hero-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:3rem;align-items:center}
.services-hero h1{margin-bottom:1rem}
.services-hero h1 .script{font-size:1.4em;background:var(--gradient-warm);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:var(--pink)}
.services-page .services-hero h1 .script {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #f76500;
  color: #f76500;
}
.services-hero .lede{font-size:1.1rem;color:var(--gray-700);max-width:540px}
.services-hero-photo{width:100%;max-width:380px;aspect-ratio:1/1;border-radius:50%;object-fit:cover;border:6px solid var(--pink);margin:0 auto;box-shadow:var(--shadow-lg);animation:float 8s ease-in-out infinite}

.service-row{display:grid;grid-template-columns:100px 1fr;gap:2rem;padding:2.5rem 0;border-bottom:1px solid var(--gray-200);align-items:start;transition:padding var(--transition-slow)}
.service-row:hover{padding-left:1rem}
.service-row:last-child{border-bottom:0}
.service-row .service-icon{width:80px;height:80px;transition:transform var(--transition-slow)}
.service-row:hover .service-icon{transform:scale(1.1) rotate(-5deg)}
.service-row .service-icon svg{width:100%;height:100%}
.service-row h3{font-size:1.6rem;margin-bottom:.5rem}
.service-row p{color:var(--gray-700);margin-bottom:1.25rem;max-width:600px}
.service-row.pink h3{color:var(--pink)} .service-row.teal h3{color:var(--teal)}
.service-row.orange h3{color:var(--orange)} .service-row.purple h3{color:var(--purple)}

.service-bullets{list-style:none;padding:0;margin:0 0 1.5rem;display:grid;grid-template-columns:1fr 1fr;gap:.5rem 1.5rem;max-width:700px}
.service-bullets li{padding-left:1.4rem;position:relative;font-size:.9rem;color:var(--gray-700);line-height:1.4}
.service-bullets li::before{content:'✓';position:absolute;left:0;font-weight:700}
.service-row.pink .service-bullets li::before{color:var(--pink)}
.service-row.teal .service-bullets li::before{color:var(--teal)}
.service-row.orange .service-bullets li::before{color:var(--orange)}
.service-row.purple .service-bullets li::before{color:var(--purple)}

.pricing-section{background:linear-gradient(135deg,#fff5fa 0%,#fff 50%,#fff8f0 100%);padding:5rem 0}
.pricing-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:2rem}
.pricing-card{background:var(--white);border-radius:var(--radius-lg);padding:1.75rem;box-shadow:var(--shadow-sm);border-left:5px solid var(--pink);display:flex;align-items:flex-start;gap:1rem;transition:all var(--transition-slow)}
.pricing-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.pricing-card.teal{border-left-color:var(--teal)}
.pricing-card.orange{border-left-color:var(--orange)}
.pricing-card.purple{border-left-color:var(--purple)}
.pricing-card .price-icon{flex-shrink:0;width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.1rem;background:var(--pink-soft);color:var(--pink)}
.pricing-card.teal .price-icon{background:var(--teal-soft);color:var(--teal)}
.pricing-card.orange .price-icon{background:var(--orange-soft);color:var(--orange)}
.pricing-card.purple .price-icon{background:var(--purple-soft);color:var(--purple)}
.pricing-card h4{font-size:1.05rem;margin-bottom:.25rem}
.pricing-card .price{font-family:var(--font-display);font-weight:800;font-size:1.05rem;color:var(--pink);margin-bottom:.25rem}
.pricing-card.teal .price{color:var(--teal)}
.pricing-card.orange .price{color:var(--orange)}
.pricing-card.purple .price{color:var(--purple)}
.pricing-card .price-note{font-size:.85rem;color:var(--gray-500);margin:0}

.services-final-cta{background:var(--gradient-purple);background-size:200% 200%;animation:gradient-flow 14s ease infinite;color:var(--white);padding:4rem 0;position:relative;overflow:hidden}
.services-final-cta h2{color:var(--white);margin-bottom:.5rem}
.services-final-cta p{opacity:.95;margin-bottom:1.5rem;max-width:480px}
.services-final-cta .neon-mic{position:absolute;right:5%;top:50%;transform:translateY(-50%);width:200px;opacity:.85;pointer-events:none;animation:float 6s ease-in-out infinite}

/* ---------- BLOG ---------- */
.blog-hero{text-align:center;padding:4rem 0 2rem}
.blog-hero h1{margin-bottom:.5rem}
.blog-hero .script{font-size:4rem;display:block;margin-bottom:-.25rem;background:var(--gradient-warm);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:var(--pink)}
.blog-hero p{font-size:1.1rem;color:var(--gray-700);max-width:580px;margin:0 auto}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin:2rem 0}
.blog-card{background:var(--white);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);border:1px solid var(--gray-200);transition:all var(--transition-slow);display:flex;flex-direction:column}
.blog-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.blog-thumb{width:100%;aspect-ratio:16/10;position:relative;overflow:hidden}
.blog-thumb-1{background:var(--gradient-warm);background-size:200% 200%;animation:gradient-flow 10s ease infinite}
.blog-thumb-2{background:var(--gradient-cool);background-size:200% 200%;animation:gradient-flow 12s ease infinite}
.blog-thumb-3{background:linear-gradient(135deg,var(--orange) 0%,var(--yellow) 100%);background-size:200% 200%;animation:gradient-flow 14s ease infinite}
.blog-thumb svg{position:absolute;inset:0;margin:auto;width:80px;height:80px;color:rgba(255,255,255,.95);transition:transform var(--transition-slow)}
.blog-card:hover .blog-thumb svg{transform:scale(1.15) rotate(-5deg)}
.blog-card-body{padding:1.75rem;display:flex;flex-direction:column;flex-grow:1}
.blog-category{display:inline-block;font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.3rem .75rem;border-radius:var(--radius-pill);margin-bottom:.75rem;align-self:flex-start}
.blog-card-1 .blog-category{background:var(--pink-soft);color:var(--pink)}
.blog-card-2 .blog-category{background:var(--teal-soft);color:var(--teal)}
.blog-card-3 .blog-category{background:var(--orange-soft);color:var(--orange)}
.blog-card h3{font-size:1.25rem;margin-bottom:.75rem;line-height:1.3}
.blog-card p{color:var(--gray-700);font-size:.95rem;margin-bottom:1.25rem;flex-grow:1}
.blog-card a.read-more{font-weight:700;font-size:.9rem;letter-spacing:.04em;text-transform:uppercase;align-self:flex-start;color:var(--pink);transition:transform var(--transition)}
.blog-card a.read-more:hover{color:var(--purple);transform:translateX(4px)}

.blog-coming-soon-section {
  background: linear-gradient(180deg, #ffffff 0%, #fff6fb 100%);
}

.blog-coming-soon-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  background: var(--white);
  border: 2px solid rgba(255, 46, 138, .22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.blog-coming-soon-card h2 {
  margin-bottom: .5rem;
  color: var(--pink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
}

.blog-coming-soon-card p {
  margin: 0 0 2rem;
  color: var(--teal);
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
}

/* ---------- CONTACT ---------- */
.contact-hero{padding:4rem 0 2rem}
.contact-hero-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:3rem;align-items:center}
.contact-hero h1{font-size:clamp(2.5rem,5vw,4rem);margin-bottom:.25rem}
.contact-hero h1 .script{font-size:1.5em;display:block;line-height:.85;background:var(--gradient-warm);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:var(--pink)}
.contact-hero p{font-size:1.1rem;color:var(--gray-700);margin-top:1rem;max-width:480px}

.schedule-options{display:flex;flex-direction:column;gap:1.5rem;margin:2rem 0}
.schedule-option{display:flex;align-items:center;gap:1.25rem;transition:transform var(--transition-slow)}
.schedule-option:hover{transform:translateX(8px)}
.schedule-option .opt-icon{width:56px;height:56px;flex-shrink:0;display:flex;align-items:center;justify-content:center;border-radius:50%;background:var(--pink-soft);transition:transform var(--transition-slow)}
.schedule-option:hover .opt-icon{transform:rotate(-10deg) scale(1.1)}
.schedule-option .opt-icon svg{width:32px;height:32px;color:var(--pink)}
.schedule-option:nth-child(2) .opt-icon{background:var(--orange-soft)}
.schedule-option:nth-child(2) .opt-icon svg{color:var(--orange)}
.schedule-option:nth-child(3) .opt-icon{background:var(--purple-soft)}
.schedule-option:nth-child(3) .opt-icon svg{color:var(--purple)}
.schedule-option h4{font-size:1.1rem;margin:0}
.schedule-option p{margin:0;color:var(--gray-700);font-size:.92rem}

.calendar-widget{background:var(--white);border-radius:var(--radius-lg);padding:2rem;box-shadow:var(--shadow-md);border:1px solid var(--gray-200)}
.calendar-widget h3{color:var(--pink);font-family:var(--font-display);font-weight:700;font-size:1.15rem;margin-bottom:1rem}
.calendar-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.calendar-month{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem;padding:.5rem}
.calendar-month button{background:none;border:0;cursor:pointer;width:32px;height:32px;border-radius:50%;color:var(--navy);font-size:1.25rem;transition:all var(--transition)}
.calendar-month button:hover{background:var(--pink-soft);color:var(--pink)}
.calendar-month .month-label{font-weight:700}
.calendar-days,.calendar-numbers{display:grid;grid-template-columns:repeat(7,1fr);text-align:center}
.calendar-days{font-size:.75rem;font-weight:700;color:var(--gray-500);letter-spacing:.06em;margin-bottom:.5rem}
.calendar-days span{padding:.5rem 0}
.calendar-numbers button{background:none;border:0;cursor:pointer;padding:.6rem 0;font-size:.9rem;color:var(--navy);border-radius:50%;transition:all var(--transition)}
.calendar-numbers button:hover:not(:disabled){background:var(--pink-soft);color:var(--pink);transform:scale(1.1)}
.calendar-numbers button.selected{background:var(--pink);color:var(--white);font-weight:700;transform:scale(1.1)}
.calendar-numbers button.muted{color:var(--gray-500);opacity:.4}

.time-slots h4{font-size:1rem;margin-bottom:.75rem}
.time-list{display:flex;flex-direction:column;gap:.6rem}
.time-list button{background:var(--white);border:2px solid var(--pink);color:var(--pink);padding:.7rem;border-radius:8px;font-weight:700;font-family:var(--font-body);cursor:pointer;transition:all var(--transition)}
.time-list button:hover{background:var(--pink);color:var(--white);transform:translateX(4px)}

.contact-form-section{background:linear-gradient(135deg,#fff5fa 0%,#fff 60%);padding:5rem 0;margin-top:3rem}
.contact-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.contact-info h2{font-size:2rem;margin-bottom:.25rem}
.contact-info h2 .script{color:var(--pink);font-size:1.5em;display:block;line-height:.85}
.contact-info p{color:var(--gray-700);margin:1rem 0 2rem}
.contact-detail{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.5rem;transition:transform var(--transition)}
.contact-detail:hover{transform:translateX(4px)}
.contact-detail svg{width:24px;height:24px;color:var(--pink);flex-shrink:0;margin-top:.2rem}
.contact-detail h4{font-size:1rem;margin:0}
.contact-detail p{margin:0;color:var(--gray-700);font-size:.95rem}

.contact-form{background:var(--white);padding:2.5rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-md)}
.contact-form h3{color:var(--pink);font-size:1.25rem;margin-bottom:1.5rem}
.form-group{margin-bottom:1rem}
.form-group label{display:block;font-size:.85rem;font-weight:700;margin-bottom:.4rem;color:var(--navy)}
.form-group input,.form-group textarea{width:100%;border:2px solid var(--gray-200);background:var(--white);padding:.85rem 1rem;border-radius:10px;font-family:var(--font-body);font-size:1rem;color:var(--navy);transition:border-color var(--transition),box-shadow var(--transition)}
.form-group input:focus,.form-group textarea:focus{outline:0;border-color:var(--pink);box-shadow:0 0 0 3px rgba(255,46,138,.15)}
.form-group textarea{min-height:130px;resize:vertical}

.contact-page .contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-page .contact-form .form-group input,
.contact-page .contact-form .form-group textarea {
  display: block;
  width: 100%;
  border: 2px solid rgba(0, 184, 181, .72);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 46, 138, .08), 0 4px 12px rgba(20, 22, 58, .05);
}

.contact-page .contact-form .form-group input:hover,
.contact-page .contact-form .form-group textarea:hover {
  border-color: var(--pink);
}

.contact-page .contact-form .form-group input::placeholder,
.contact-page .contact-form .form-group textarea::placeholder {
  color: #73768d;
  opacity: 1;
}

.contact-page .contact-form .form-group input:focus,
.contact-page .contact-form .form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 46, 138, .16);
}

/* FAQ */
.faq-section{padding:5rem 0;background:var(--gray-100)}
.faq-grid{max-width:820px;margin:2rem auto 0}
.faq-item{background:var(--white);border-radius:14px;margin-bottom:.75rem;overflow:hidden;box-shadow:var(--shadow-sm);transition:box-shadow var(--transition)}
.faq-item:hover{box-shadow:var(--shadow-md)}
.faq-question{width:100%;background:none;border:0;padding:1.25rem 1.5rem;text-align:left;font-family:var(--font-display);font-weight:700;font-size:1rem;color:var(--navy);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;transition:color var(--transition)}
.faq-question:hover{color:var(--pink)}
.faq-question .faq-toggle{width:28px;height:28px;flex-shrink:0;border-radius:50%;background:var(--pink-soft);color:var(--pink);display:flex;align-items:center;justify-content:center;font-size:1.2rem;font-weight:700;transition:transform var(--transition)}
.faq-item[aria-expanded="true"] .faq-toggle{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height var(--transition-slow),padding var(--transition);padding:0 1.5rem;color:var(--gray-700);font-size:.95rem}
.faq-answer ul{padding-left:1.25rem;margin:.5rem 0}
.faq-answer ul li{margin-bottom:.4rem}
.faq-item[aria-expanded="true"] .faq-answer{max-height:1200px;padding:0 1.5rem 1.5rem}

/* ---------- ANIMATIONS ---------- */
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes sway{0%,100%{transform:translateX(0)}50%{transform:translateX(8px)}}
@keyframes drift-up{0%,100%{transform:translateY(0) translateX(0)}33%{transform:translateY(-25px) translateX(10px)}66%{transform:translateY(-12px) translateX(-8px)}}
@keyframes drift-rotate{0%,100%{transform:translate(0,0) rotate(0deg)}50%{transform:translate(15px,-20px) rotate(15deg)}}
@keyframes spin-slow{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes gentle-rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes scroll-bounce{0%,100%{transform:scaleY(1) translateY(0);opacity:1}50%{transform:scaleY(.6) translateY(8px);opacity:.5}}
@keyframes bounce-subtle{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
@keyframes fade-up-in{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
.fade-up{animation:fade-up-in .8s ease-out both}
@keyframes pulse-glow{0%,100%{opacity:.5;transform:scale(1)}50%{opacity:1;transform:scale(1.1)}}
@keyframes twinkle{0%,100%{opacity:.3;transform:scale(.9)}50%{opacity:1;transform:scale(1.1)}}
@keyframes gradient-flow{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important}
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px){
  .nav-toggle{display:block}
  .nav-list{position:fixed;inset:80px 0 0 auto;width:min(320px,85%);background:var(--white);flex-direction:column;align-items:stretch;gap:0;padding:1.5rem;border-left:1px solid var(--gray-200);box-shadow:-10px 0 40px rgba(20,22,58,.1);transform:translateX(105%);transition:transform var(--transition-slow);overflow-y:auto;z-index:100}
  .nav-list.open{transform:translateX(0)}
  .nav-list li{border-bottom:1px solid var(--gray-200);opacity:0;transform:translateX(20px);transition:opacity .3s ease,transform .3s ease}
  .nav-list.open li{opacity:1;transform:translateX(0)}
  .nav-list.open li:nth-child(1){transition-delay:.1s}
  .nav-list.open li:nth-child(2){transition-delay:.15s}
  .nav-list.open li:nth-child(3){transition-delay:.2s}
  .nav-list.open li:nth-child(4){transition-delay:.25s}
  .nav-list.open li:nth-child(5){transition-delay:.3s}
  .nav-list.open li:nth-child(6){transition-delay:.35s}
  .nav-list.open li:nth-child(7){transition-delay:.4s}
  .nav-list li:last-child{border-bottom:0;padding-top:1rem}
  .nav-list a:not(.btn){display:block;padding:1rem 0;font-size:1.05rem}
  .nav-list a:not(.btn)::after{display:none}
  .nav-list .btn{width:100%}
}

@media (max-width: 980px){
  .home-hero-grid,.feature-cta,.about-hero-grid,.programs-hero-grid,.services-hero-grid,
  .contact-hero-grid,.contact-form-grid,.custom-solutions,.about-testimonial-grid,.calendar-grid{grid-template-columns:1fr}
  .programs-grid,.blog-grid,.focus-areas-grid,.topic-list-grid{grid-template-columns:repeat(2,1fr)}
  .values-grid,.drives-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .drive-item:nth-child(2){border-right:0}
  .drive-item:nth-child(odd){border-right:1px solid var(--gray-200)}
  .feature-cta{padding:2.5rem 2rem}
  .mission-card{border-radius:80px 32px 80px 32px;padding:2rem;flex-direction:column;text-align:center}
  .testimonial-strip .neon-mic{display:none}
  .services-final-cta .neon-mic{display:none}
  .final-cta-grid{flex-direction:column;text-align:center}
  .service-bullets{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .programs-grid,.blog-grid,.values-grid,.drives-grid,.focus-areas-grid,.topic-list-grid{grid-template-columns:1fr}
  .drive-item{border-right:0 !important;border-bottom:1px solid var(--gray-200);padding-bottom:1.5rem}
  .drive-item:last-child{border-bottom:0}
  .footer-grid{grid-template-columns:1fr;gap:2rem}
  .home-hero{padding:2rem 0 3rem}
  .home-hero-cta{justify-content:center}
  .home-hero-text{text-align:center}
  .home-hero .lede{margin-left:auto;margin-right:auto}
  .scroll-cue{display:none}
  .service-row{grid-template-columns:1fr;text-align:center}
  .service-row .service-icon{margin:0 auto}
  .feature-cta{text-align:center;padding:2rem 1.5rem}
  .feature-cta h2{font-size:1.75rem}
  .calendar-widget{padding:1.25rem}
  .home-hero-image{order:-1}
  .about-hero-grid img{order:-1}
}

@media print{
  .floating-bubble,.neon-mic,.geo-shape,.testimonial-bg{display:none}
  .site-header,.site-footer{background:transparent;color:var(--navy)}
}

/* =============================================================
   FINAL HERO OVERRIDES — Wendy layered artwork
   Put at the very bottom so these rules win over earlier/mobile rules.
   ============================================================= */
.home-hero {
  overflow: visible !important;
}

.home-hero-image {
  position: relative !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-end !important;
  min-height: 640px !important;
  height: 640px !important;
  opacity: 1 !important;
}

.hero-photo-frame.hero-layered-art {
  position: relative !important;
  width: 100% !important;
  max-width: 660px !important;
  min-height: 640px !important;
  height: 640px !important;
  overflow: visible !important;
}

.hero-layered-art .hero-art {
  position: absolute !important;
  display: block !important;
  max-width: none !important;
  pointer-events: none !important;
}

/* hero-1: fills the entire hero artwork section, both width and height */
.hero-layered-art .hero-art-bg {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: bottom right !important;
  z-index: 1 !important;
}

/* hero-2: anchored lower-right, 5% smaller than the previous version */
.hero-layered-art .hero-art-person {
  right: -10px !important;
  bottom: -3px !important;
  top: auto !important;
  height: 99% !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: bottom right !important;
  z-index: 2 !important;
}

/* hero-3: 15% larger and anchored at the bottom-right corner */
.hero-layered-art .hero-art-accent {
  right: 0 !important;
  bottom: -33px !important;
  top: auto !important;
  left: auto !important;
  width: 116% !important;
  height: auto !important;
  max-width: none !important;
  transform: translate(14%, 16%) !important;
  transform-origin: bottom right !important;
  z-index: 3 !important;
}

/* Bubble base */
.hero-layered-art .floating-bubble {
  position: absolute !important;
  display: block !important;
  height: auto !important;
  max-width: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  color: transparent !important;
  pointer-events: none !important;
  z-index: 4 !important;
  transform-origin: center center !important;
  animation: speechBubbleFloat 5.5s ease-in-out infinite !important;
  will-change: transform !important;
}

/* Bubbles: 25% larger than the earlier set, orange remains largest */
/* Orange bubble is anchored near the left edge of hero-2, not over her face */
.hero-layered-art .bubble-orange {
  top: 23% !important;
  left: 16% !important;
  width: 156px !important;
  height: auto !important;
  --bubble-rotate: 8deg;
  animation-delay: 0s !important;
}

.hero-layered-art .bubble-purple {
  top: 10% !important;
  right: 2% !important;
  width: 115px !important;
  height: auto !important;
  --bubble-rotate: -10deg;
  animation-delay: 1.2s !important;
}

.hero-layered-art .bubble-teal {
  bottom: 22% !important;
  right: -4% !important;
  width: 135px !important;
  height: auto !important;
  --bubble-rotate: 9deg;
  animation-delay: 2.1s !important;
}

@media (max-width: 991px) {
  .home-hero-image {
    min-height: 540px !important;
    height: 540px !important;
  }

  .hero-photo-frame.hero-layered-art {
    max-width: 540px !important;
    min-height: 540px !important;
    height: 540px !important;
    margin: 0 auto !important;
  }

  .hero-layered-art .hero-art-person {
    right: -6px !important;
    height: 99% !important;
  }

  .hero-layered-art .hero-art-accent {
    width: 110% !important;
    transform: translate(10%, 12%) !important;
  }

  .hero-layered-art .bubble-orange {
    width: 130px !important;
    left: 14% !important;
    top: 24% !important;
  }

  .hero-layered-art .bubble-purple {
    width: 98px !important;
    right: 3% !important;
    top: 12% !important;
  }

  .hero-layered-art .bubble-teal {
    width: 115px !important;
    right: -2% !important;
    bottom: 22% !important;
  }
}

@media (max-width: 767px) {
  .home-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .home-hero-image {
    justify-content: center !important;
    order: -1 !important;
    min-height: 430px !important;
    height: 430px !important;
  }

  .hero-photo-frame.hero-layered-art {
    width: 100% !important;
    max-width: 430px !important;
    min-height: 430px !important;
    height: 430px !important;
    margin: 0 auto !important;
  }

  .hero-layered-art .hero-art-bg {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .hero-layered-art .hero-art-person {
    right: -4px !important;
    height: 97% !important;
  }

  .hero-layered-art .hero-art-accent {
    width: 104% !important;
    transform: translate(8%, 10%) !important;
  }

  .hero-layered-art .bubble-orange {
    width: 100px !important;
    left: 10% !important;
    top: 27% !important;
  }

  .hero-layered-art .bubble-purple {
    width: 76px !important;
    right: 4% !important;
    top: 13% !important;
  }

  .hero-layered-art .bubble-teal {
    width: 90px !important;
    right: 0 !important;
    bottom: 19% !important;
  }
}


/* =============================================================
   FINAL HOME PAGE OVERRIDES — single hero image, impact underline,
   quote section, and three-card section
   ============================================================= */

body {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6,
.nav-list a,
.btn,
.banner-band,
.value-item h4,
.pricing-card .price {
  font-family: var(--font-display);
}

.script,
.impact-word,
.about-hero h1 {
  font-family: var(--font-script);
}

.home-hero {
  position: relative;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 3rem;
}

.home-hero h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.65rem);
  line-height: 1.02;
}

.make-impact-line {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.home-hero h1 .impact-word {
  position: relative;
  display: inline-block;
  margin-left: .18em;
  padding-bottom: .2em;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--pink);
}

.home-hero h1 .impact-word::after {
  content: '';
  position: absolute;
  left: 2%;
  right: -4%;
  bottom: -.04em;
  height: .28em;
  background: url('../images/home/teal.underline.png') left center / 100% 100% no-repeat;
  transform: scaleX(0);
  transform-origin: left center;
  animation: writeImpactUnderline 1.15s ease-out .95s forwards;
}

.home-hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  min-height: clamp(430px, 52vw, 640px);
  height: 100%;
  opacity: 1;
  overflow: visible;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  min-height: clamp(430px, 52vw, 640px);
  object-fit: contain;
  object-position: bottom right;
  display: block;
  animation: fade-up-in .9s ease-out .35s both;
}

.scroll-cue {
  display: none !important;
}

.quote-section {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../images/home/quote-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.62), rgba(255,255,255,.18));
  pointer-events: none;
}

.quote-section-inner {
  position: relative;
  z-index: 1;
}

.quote-section blockquote {
  max-width: 720px;
  margin: 0;
  padding: 3rem 0;
}

.quote-section blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.15rem);
  line-height: 1.12;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.quote-section cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  color: var(--pink);
}

.home-card-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}

.home-three-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.home-info-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.home-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--pink);
}

.home-info-card.teal::before {
  background: var(--teal);
}

.home-info-card.orange::before {
  background: var(--orange);
}

.home-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.home-info-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--pink);
  background: var(--pink-soft);
  border-radius: 50%;
  transition: transform var(--transition-slow);
}

.home-info-card.teal .home-info-icon {
  color: var(--teal);
  background: var(--teal-soft);
}

.home-info-card.orange .home-info-icon {
  color: var(--orange);
  background: var(--orange-soft);
}

.home-info-card:hover .home-info-icon {
  transform: scale(1.08) rotate(-5deg);
}

.home-info-icon svg {
  width: 42px;
  height: 42px;
}

.home-info-card h3 {
  font-size: 1.28rem;
  margin-bottom: .75rem;
}

.home-info-card p {
  color: var(--gray-700);
  font-size: .98rem;
  margin-bottom: 0;
}

@keyframes writeImpactUnderline {
  0% { transform: scaleX(0); opacity: 0; }
  12% { opacity: 1; }
  100% { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 980px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-hero-text {
    text-align: center;
  }

  .home-hero .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero-cta {
    justify-content: center;
  }

  .home-hero-image {
    order: -1;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
    min-height: clamp(390px, 70vw, 560px);
  }

  .hero-main-image {
    min-height: clamp(390px, 70vw, 560px);
  }

  .home-three-card-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .quote-section {
    min-height: 320px;
    background-position: center;
  }

  .quote-section::before {
    background: rgba(255,255,255,.72);
  }

  .quote-section blockquote {
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .home-hero {
    padding: 2rem 0 3rem;
  }

  .home-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .make-impact-line {
    justify-content: center;
  }

  .home-hero-image {
    min-height: 360px;
  }

  .hero-main-image {
    min-height: 360px;
  }

  .quote-section {
    min-height: 280px;
  }

  .quote-section blockquote {
    padding: 2.25rem 0;
  }

  .home-card-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .home-info-card {
    padding: 2rem 1.35rem;
  }
}

/* Programs final section: remove all space before the footer. */
.programs-page .programs-custom-solutions {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.programs-page .programs-custom-grid {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* =============================================================
   FINAL HERO SINGLE-IMAGE OVERRIDES — hero.png + bubbles
   ============================================================= */

/* Keep Impact in Playlist Script and preserve the teal write-on underline. */
.home-hero h1 .impact-word,
.impact-word {
  font-family: var(--font-script) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* Give the right hero artwork area a real section-sized box. */
.home-hero {
  overflow: hidden !important;
}

.home-hero-grid {
  align-items: stretch !important;
}

.home-hero-image {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-height: 640px !important;
  height: 100% !important;
  overflow: visible !important;
  opacity: 1 !important;
  order: initial !important;
}

/* hero.png now fills 100% of the hero image section: width and height. */
.home-hero-image .hero-main-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center right !important;
  display: block !important;
  animation: fade-up-in .9s ease-out .35s both;
}

/* Speech bubbles returned on top of hero.png. */
.home-hero-image .floating-bubble {
  position: absolute !important;
  display: block !important;
  height: auto !important;
  max-width: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  color: transparent !important;
  pointer-events: none !important;
  z-index: 3 !important;
  transform-origin: center center !important;
  animation: speechBubbleFloat 5.5s ease-in-out infinite !important;
  will-change: transform !important;
}

.home-hero-image .bubble-orange {
  top: 23% !important;
  left: 10% !important;
  width: 156px !important;
  --bubble-rotate: 8deg;
  animation-delay: 0s !important;
}

.home-hero-image .bubble-purple {
  top: 10% !important;
  right: 7% !important;
  width: 115px !important;
  --bubble-rotate: -10deg;
  animation-delay: 1.2s !important;
}

.home-hero-image .bubble-teal {
  bottom: 21% !important;
  right: 3% !important;
  width: 135px !important;
  --bubble-rotate: 9deg;
  animation-delay: 2.1s !important;
}

@media (max-width: 991px) {
  .home-hero-grid {
    grid-template-columns: 1fr !important;
    align-items: center !important;
  }

  .home-hero-text {
    text-align: center !important;
  }

  .home-hero .lede {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-hero-cta {
    justify-content: center !important;
  }

  .home-hero-image {
    order: -1 !important;
    width: min(100%, 620px) !important;
    min-height: 540px !important;
    height: 540px !important;
    margin: 0 auto !important;
  }

  .home-hero-image .hero-main-image {
    object-fit: cover !important;
    object-position: center right !important;
  }

  .home-hero-image .bubble-orange {
    width: 130px !important;
    left: 8% !important;
    top: 24% !important;
  }

  .home-hero-image .bubble-purple {
    width: 98px !important;
    right: 6% !important;
    top: 12% !important;
  }

  .home-hero-image .bubble-teal {
    width: 115px !important;
    right: 2% !important;
    bottom: 22% !important;
  }
}

@media (max-width: 720px) {
  .home-hero {
    padding: 2rem 0 3rem !important;
  }

  .home-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem) !important;
  }

  .make-impact-line {
    justify-content: center !important;
  }

  .home-hero-image {
    width: 100% !important;
    min-height: 390px !important;
    height: 390px !important;
  }

  .home-hero-image .hero-main-image {
    object-position: center right !important;
  }

  .home-hero-image .bubble-orange {
    width: 104px !important;
    left: 4% !important;
    top: 27% !important;
  }

  .home-hero-image .bubble-purple {
    width: 78px !important;
    right: 4% !important;
    top: 13% !important;
  }

  .home-hero-image .bubble-teal {
    width: 90px !important;
    right: 0 !important;
    bottom: 19% !important;
  }
}

@media (max-width: 480px) {
  .home-hero-image {
    min-height: 330px !important;
    height: 330px !important;
  }

  .home-hero-image .bubble-orange {
    width: 88px !important;
  }

  .home-hero-image .bubble-purple {
    width: 64px !important;
  }

  .home-hero-image .bubble-teal {
    width: 76px !important;
  }
}

/* =============================================================
   FINAL HERO BACKGROUND IMAGE OVERRIDES — hero.png behind text
   Desktop hero art: max 1200px wide x 640px tall
   ============================================================= */

.home-hero {
  position: relative !important;
  min-height: 640px !important;
  height: 640px !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.58) 34%, rgba(255,255,255,.12) 62%, rgba(255,255,255,0) 100%);
}

.home-hero .home-hero-image {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  width: min(100%, 1200px) !important;
  max-width: 1200px !important;
  min-height: 0 !important;
  height: 640px !important;
  margin: 0 auto !important;
  display: block !important;
  overflow: hidden !important;
  opacity: 1 !important;
  z-index: 0 !important;
  order: initial !important;
}

.home-hero .hero-main-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center right !important;
  display: block !important;
  animation: none !important;
}

.home-hero .home-hero-grid {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  min-height: 640px !important;
  height: 640px !important;
  width: 100% !important;
}

.home-hero .home-hero-text {
  position: relative !important;
  z-index: 2 !important;
  max-width: 560px !important;
  text-align: left !important;
}

.home-hero .home-hero-text > * {
  opacity: 1 !important;
  animation: none !important;
}

.home-hero .lede {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home-hero-cta {
  justify-content: flex-start !important;
}

.make-impact-line {
  justify-content: flex-start !important;
}

.home-hero h1 .impact-word,
.impact-word {
  font-family: var(--font-script) !important;
}

/* Bubbles sit on top of the single hero.png image. */
.home-hero .home-hero-image .floating-bubble {
  position: absolute !important;
  display: block !important;
  height: auto !important;
  max-width: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  color: transparent !important;
  pointer-events: none !important;
  z-index: 3 !important;
  transform-origin: center center !important;
  animation: speechBubbleFloat 5.5s ease-in-out infinite !important;
  will-change: transform !important;
}

.home-hero .home-hero-image .bubble-orange {
  top: 23% !important;
  left: 44% !important;
  width: 156px !important;
  --bubble-rotate: 8deg;
  animation-delay: 0s !important;
}

.home-hero .home-hero-image .bubble-purple {
  top: 10% !important;
  right: 8% !important;
  width: 115px !important;
  --bubble-rotate: -10deg;
  animation-delay: 1.2s !important;
}

.home-hero .home-hero-image .bubble-teal {
  bottom: 21% !important;
  right: 3% !important;
  width: 135px !important;
  --bubble-rotate: 9deg;
  animation-delay: 2.1s !important;
}

@media (max-width: 991px) {
  .home-hero {
    min-height: 560px !important;
    height: 560px !important;
  }

  .home-hero::before {
    background: linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.68) 48%, rgba(255,255,255,.2) 100%) !important;
  }

  .home-hero .home-hero-image {
    width: 100% !important;
    height: 560px !important;
  }

  .home-hero .home-hero-grid {
    min-height: 560px !important;
    height: 560px !important;
  }

  .home-hero .home-hero-text {
    max-width: 520px !important;
    text-align: left !important;
  }

  .home-hero .home-hero-image .bubble-orange {
    width: 130px !important;
    left: 42% !important;
    top: 24% !important;
  }

  .home-hero .home-hero-image .bubble-purple {
    width: 98px !important;
    right: 6% !important;
    top: 12% !important;
  }

  .home-hero .home-hero-image .bubble-teal {
    width: 115px !important;
    right: 2% !important;
    bottom: 22% !important;
  }
}

@media (max-width: 720px) {
  .home-hero {
    min-height: 520px !important;
    height: 520px !important;
  }

  .home-hero::before {
    background: rgba(255,255,255,.72) !important;
  }

  .home-hero .home-hero-image {
    height: 520px !important;
  }

  .home-hero .home-hero-grid {
    min-height: 520px !important;
    height: 520px !important;
    align-items: center !important;
  }

  .home-hero .home-hero-text {
    max-width: 100% !important;
    text-align: left !important;
  }

  .home-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.35rem) !important;
  }

  .home-hero .home-hero-image .bubble-orange {
    width: 104px !important;
    left: 48% !important;
    top: 24% !important;
  }

  .home-hero .home-hero-image .bubble-purple {
    width: 78px !important;
    right: 5% !important;
    top: 13% !important;
  }

  .home-hero .home-hero-image .bubble-teal {
    width: 90px !important;
    right: 0 !important;
    bottom: 18% !important;
  }
}

@media (max-width: 480px) {
  .home-hero {
    min-height: 480px !important;
    height: 480px !important;
  }

  .home-hero .home-hero-image {
    height: 480px !important;
  }

  .home-hero .home-hero-grid {
    min-height: 480px !important;
    height: 480px !important;
  }

  .home-hero .home-hero-image .bubble-orange {
    width: 88px !important;
    left: 50% !important;
  }

  .home-hero .home-hero-image .bubble-purple {
    width: 64px !important;
  }

  .home-hero .home-hero-image .bubble-teal {
    width: 76px !important;
  }
}


/* =============================================================
   FINAL REQUEST OVERRIDES — flipped hero bubbles + image-only next section
   ============================================================= */

/* Keep Impact in Playlist Script even if earlier heading/script rules apply. */
.home-hero h1 .impact-word,
.impact-word {
  font-family: var(--font-script) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* Flip speech-bubble layout: purple + teal move left, orange moves right. */
.home-hero .home-hero-image .bubble-purple {
  top: 12% !important;
  left: 13% !important;
  right: auto !important;
  width: 115px !important;
  --bubble-rotate: -10deg;
}

.home-hero .home-hero-image .bubble-teal {
  bottom: 20% !important;
  left: 8% !important;
  right: auto !important;
  width: 135px !important;
  --bubble-rotate: 9deg;
}

.home-hero .home-hero-image .bubble-orange {
  top: 24% !important;
  right: 8% !important;
  left: auto !important;
  width: 156px !important;
  --bubble-rotate: 8deg;
}

/* The next section is image-only. The background image is constrained to 1200px wide. */
.quote-section {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 360px !important;
  padding: 0 !important;
  margin: 0 auto !important;
  background: none !important;
  overflow: hidden !important;
}

.quote-section::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: min(1200px, calc(100% - 3rem)) !important;
  height: 100% !important;
  transform: translateX(-50%) !important;
  background-image: url('../images/home/quote-background.png') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  border-radius: 0 !important;
  z-index: 0 !important;
}

.quote-section::after,
.quote-section .quote-section-inner,
.quote-section blockquote,
.quote-section p,
.quote-section cite {
  display: none !important;
}

@media (max-width: 991px) {
  .home-hero .home-hero-image .bubble-purple {
    width: 98px !important;
    left: 10% !important;
    right: auto !important;
    top: 13% !important;
  }

  .home-hero .home-hero-image .bubble-teal {
    width: 115px !important;
    left: 6% !important;
    right: auto !important;
    bottom: 21% !important;
  }

  .home-hero .home-hero-image .bubble-orange {
    width: 130px !important;
    right: 6% !important;
    left: auto !important;
    top: 25% !important;
  }

  .quote-section {
    min-height: 330px !important;
  }

  .quote-section::before {
    width: min(1200px, calc(100% - 2rem)) !important;
  }
}

@media (max-width: 720px) {
  .home-hero .home-hero-image .bubble-purple {
    width: 78px !important;
    left: 4% !important;
    right: auto !important;
    top: 14% !important;
  }

  .home-hero .home-hero-image .bubble-teal {
    width: 90px !important;
    left: 3% !important;
    right: auto !important;
    bottom: 17% !important;
  }

  .home-hero .home-hero-image .bubble-orange {
    width: 104px !important;
    right: 2% !important;
    left: auto !important;
    top: 27% !important;
  }

  .quote-section {
    min-height: 300px !important;
  }

  .quote-section::before {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .home-hero .home-hero-image .bubble-purple {
    width: 64px !important;
    left: 2% !important;
  }

  .home-hero .home-hero-image .bubble-teal {
    width: 76px !important;
    left: 2% !important;
  }

  .home-hero .home-hero-image .bubble-orange {
    width: 88px !important;
    right: 15% !important;
    opacity: .78 !important;
    filter: saturate(.88) brightness(.98) !important;
  }

  .quote-section {
    min-height: 260px !important;
  }
}

/* =============================================================
   FINAL SIZE TEST OVERRIDES — 1920 x 1080 hero, 1920 x 540 next image
   ============================================================= */

/* HERO: one full-width artwork panel behind the left-aligned words. */
.home-hero {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: 1080px !important;
  min-height: 1080px !important;
  padding: 0 !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
}

.home-hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background: linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.64) 34%, rgba(255,255,255,.18) 60%, rgba(255,255,255,0) 100%) !important;
}

.home-hero .home-hero-image {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  width: min(100%, 1920px) !important;
  max-width: 1920px !important;
  height: 1080px !important;
  min-height: 1080px !important;
  margin: 0 auto !important;
  display: block !important;
  overflow: hidden !important;
  opacity: 1 !important;
  z-index: 0 !important;
  order: initial !important;
}

.home-hero .home-hero-image .hero-main-image,
.home-hero .hero-main-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  animation: none !important;
}

.home-hero .home-hero-grid {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: 1200px !important;
  height: 1080px !important;
  min-height: 1080px !important;
}

.home-hero .home-hero-text {
  position: relative !important;
  z-index: 2 !important;
  max-width: 600px !important;
  text-align: left !important;
}

.home-hero .home-hero-text > * {
  opacity: 1 !important;
  animation: none !important;
}

.home-hero .lede {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home-hero-cta,
.make-impact-line {
  justify-content: flex-start !important;
}

.home-hero h1 .impact-word,
.impact-word {
  font-family: var(--font-script) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* Keep the flipped bubble layout on the larger 1920x1080 artboard. */
.home-hero .home-hero-image .floating-bubble {
  position: absolute !important;
  display: block !important;
  height: auto !important;
  max-width: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  color: transparent !important;
  pointer-events: none !important;
  z-index: 3 !important;
  transform-origin: center center !important;
  animation: speechBubbleFloat 5.5s ease-in-out infinite !important;
  will-change: transform !important;
}

.home-hero .home-hero-image .bubble-purple {
  top: 16% !important;
  left: 12% !important;
  right: auto !important;
  width: 150px !important;
  --bubble-rotate: -10deg;
}

.home-hero .home-hero-image .bubble-teal {
  bottom: 24% !important;
  left: 10% !important;
  right: auto !important;
  width: 175px !important;
  --bubble-rotate: 9deg;
}

.home-hero .home-hero-image .bubble-orange {
  top: 24% !important;
  right: 31% !important;
  left: auto !important;
  width: 200px !important;
  opacity: .78 !important;
  filter: saturate(.88) brightness(.98) !important;
  --bubble-rotate: 8deg;
}

/* NEXT IMAGE SECTION: image-only, centered, up to 1920px wide and about 135px tall. */
.quote-section {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: 135px !important;
  min-height: 135px !important;
  padding: 0 !important;
  margin: 0 auto !important;
  background: none !important;
  overflow: hidden !important;
}

.quote-section::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: min(100%, 1920px) !important;
  max-width: 1920px !important;
  height: 135px !important;
  min-height: 135px !important;
  transform: translateX(-50%) !important;
  background-image: url('../images/home/quote-background.png') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  z-index: 0 !important;
}

.quote-section::after,
.quote-section .quote-section-inner,
.quote-section blockquote,
.quote-section p,
.quote-section cite {
  display: none !important;
}

@media (max-width: 1200px) {
  .home-hero {
    height: 820px !important;
    min-height: 820px !important;
  }

  .home-hero .home-hero-image {
    width: 100% !important;
    height: 820px !important;
    min-height: 820px !important;
  }

  .home-hero .home-hero-grid {
    height: 820px !important;
    min-height: 820px !important;
  }

  .home-hero .home-hero-image .bubble-purple {
    width: 125px !important;
    left: 8% !important;
  }

  .home-hero .home-hero-image .bubble-teal {
    width: 145px !important;
    left: 6% !important;
  }

  .home-hero .home-hero-image .bubble-orange {
    width: 165px !important;
    right: 27% !important;
    opacity: .78 !important;
    filter: saturate(.88) brightness(.98) !important;
  }
}

@media (max-width: 720px) {
  .home-hero {
    height: 620px !important;
    min-height: 620px !important;
  }

  .home-hero::before {
    background: rgba(255,255,255,.74) !important;
  }

  .home-hero .home-hero-image {
    height: 620px !important;
    min-height: 620px !important;
  }

  .home-hero .home-hero-grid {
    height: 620px !important;
    min-height: 620px !important;
    align-items: center !important;
  }

  .home-hero .home-hero-text {
    max-width: 100% !important;
  }

  .home-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.35rem) !important;
  }

  .home-hero .home-hero-image .bubble-purple {
    width: 78px !important;
    left: 4% !important;
    top: 14% !important;
  }

  .home-hero .home-hero-image .bubble-teal {
    width: 90px !important;
    left: 3% !important;
    bottom: 17% !important;
  }

  .home-hero .home-hero-image .bubble-orange {
    width: 104px !important;
    right: 18% !important;
    top: 27% !important;
    opacity: .78 !important;
    filter: saturate(.88) brightness(.98) !important;
  }

  .quote-section,
  .quote-section::before {
    height: 135px !important;
    min-height: 135px !important;
  }
}

@media (max-width: 480px) {
  .home-hero {
    height: 560px !important;
    min-height: 560px !important;
  }

  .home-hero .home-hero-image,
  .home-hero .home-hero-grid {
    height: 560px !important;
    min-height: 560px !important;
  }

  .home-hero .home-hero-image .bubble-purple {
    width: 64px !important;
    left: 2% !important;
  }

  .home-hero .home-hero-image .bubble-teal {
    width: 76px !important;
    left: 2% !important;
  }

  .home-hero .home-hero-image .bubble-orange {
    width: 88px !important;
    right: 15% !important;
    opacity: .78 !important;
    filter: saturate(.88) brightness(.98) !important;
  }

  .quote-section,
  .quote-section::before {
    height: 135px !important;
    min-height: 135px !important;
  }
}


/* =============================================================
   FINAL REQUEST ADJUSTMENT: orange bubble farther left + quote height 270px
   ============================================================= */
.home-hero .home-hero-image .bubble-orange {
  right: 40% !important;
  left: auto !important;
  opacity: .78 !important;
  filter: saturate(.88) brightness(.98) !important;
}

.quote-section,
.quote-section::before {
  height: 270px !important;
  min-height: 270px !important;
}

@media (max-width: 1200px) {
  .home-hero .home-hero-image .bubble-orange {
    right: 36% !important;
  }

  .quote-section,
  .quote-section::before {
    height: 270px !important;
    min-height: 270px !important;
  }
}

@media (max-width: 720px) {
  .home-hero .home-hero-image .bubble-orange {
    right: 28% !important;
  }

  .quote-section,
  .quote-section::before {
    height: 270px !important;
    min-height: 270px !important;
  }
}

@media (max-width: 480px) {
  .home-hero .home-hero-image .bubble-orange {
    right: 24% !important;
  }

  .quote-section,
  .quote-section::before {
    height: 270px !important;
    min-height: 270px !important;
  }
}

/* =============================================================
   FINAL FONT FIX: force Impact to use Playlist Script
   ============================================================= */
.home-hero h1 .impact-word,
.home-hero h1 .script.impact-word,
.impact-word {
  font-family: 'Playlist Script', 'PlaylistScript', 'Sacramento', cursive !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: .9 !important;
}

/* Keep the gradient fill on Impact while allowing the script font to render. */
.home-hero h1 .impact-word {
  background: var(--gradient-warm) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: var(--pink) !important;
}


/* =============================================================
   FINAL UPDATE: Playlist Script OpenType + services card section
   ============================================================= */
@font-face {
  font-family: 'Playlist Script';
  src: url('../fonts/Playlist Script.woff2') format('woff2'),
       url('../fonts/Playlist Script.otf') format('opentype'),
       local('Playlist Script'),
       local('PlaylistScript');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.home-hero h1 .impact-word,
.home-hero h1 .script.impact-word,
.impact-word {
  font-family: 'Playlist Script', 'PlaylistScript', cursive !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: .9 !important;
}

.services-home-section {
  position: relative !important;
  width: 100% !important;
  max-width: 1920px !important;
  height: 540px !important;
  min-height: 540px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  background-image: url('../images/home/services-bkgd.png') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

.services-home-container {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
}

.services-home-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 2rem !important;
  align-items: stretch !important;
}

.services-home-card {
  min-height: 245px !important;
  padding: 2rem 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  background: rgba(255, 255, 255, .94) !important;
  border: 2px solid var(--pink) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 24px rgba(20, 22, 58, .12) !important;
}

.services-card-icon {
  width: 86px !important;
  height: 86px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto 1rem !important;
}

.services-home-card h3 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: var(--navy) !important;
  margin: 0 0 .65rem !important;
  text-align: center !important;
}

.services-home-card p {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
  color: var(--gray-700) !important;
  max-width: 260px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

@media (max-width: 980px) {
  .services-home-section {
    height: auto !important;
    min-height: 540px !important;
    padding: 4rem 0 !important;
  }

  .services-home-grid {
    grid-template-columns: 1fr !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    gap: 1.25rem !important;
  }

  .services-home-card {
    min-height: 210px !important;
  }
}

@media (max-width: 720px) {
  .services-home-section {
    min-height: auto !important;
    padding: 3rem 0 !important;
    background-position: center top !important;
  }

  .services-card-icon {
    width: 72px !important;
    height: 72px !important;
  }

  .services-home-card {
    padding: 1.6rem 1.25rem !important;
    border-radius: 14px !important;
  }
}


/* =============================================================
   FINAL REQUEST UPDATE — services height/cards, Playlist OTF,
   remove tagline section, and full-width communicate section
   ============================================================= */
@font-face {
  font-family: 'Playlist Script';
  src: url('../fonts/Playlist Script.woff2') format('woff2'),
       url('../fonts/Playlist Script.otf') format('opentype'),
       local('Playlist Script'),
       local('PlaylistScript');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-script: 'Playlist Script', 'PlaylistScript', cursive;
}

.home-hero h1 .impact-word,
.home-hero h1 .script.impact-word,
.impact-word {
  font-family: 'Playlist Script', 'PlaylistScript', cursive !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: .9 !important;
}

/* Hide the old tagline band if the HTML copy still exists anywhere. */
.tagline-band {
  display: none !important;
}

/* Services section: taller background, larger cards/icons. */
.services-home-section {
  height: 690px !important;
  min-height: 690px !important;
  max-width: 1920px !important;
  background-image: url('../images/home/services-bkgd.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.services-home-container {
  max-width: 1240px !important;
}

.services-home-grid {
  gap: 2.5rem !important;
}

.services-home-card {
  min-height: 330px !important;
  padding: 3rem 2.25rem !important;
  border: 4px solid #ff2e8a !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 38px rgba(20, 22, 58, .22) !important;
  background: rgba(255, 255, 255, .96) !important;
}

.services-card-icon {
  width: 124px !important;
  height: 124px !important;
  margin-bottom: 1.35rem !important;
}

.services-home-card h3 {
  font-size: clamp(1.35rem, 1.85vw, 1.85rem) !important;
  margin-bottom: .8rem !important;
}

.services-home-card p {
  font-size: 1.08rem !important;
  max-width: 310px !important;
}

/* Full-width communicate section after services. */
.communication-section {
  position: relative !important;
  width: 100% !important;
  max-width: 1920px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.communication-section-inner {
  width: 100% !important;
  max-width: 1920px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.communication-feature-cta {
  width: 100% !important;
  max-width: 1920px !important;
  min-height: 540px !important;
  margin: 0 auto !important;
  border-radius: 0 !important;
  padding: 4.5rem clamp(1.5rem, 7vw, 8rem) !important;
  grid-template-columns: minmax(320px, 560px) 1fr !important;
  background: var(--gradient-warm) !important;
  overflow: hidden !important;
}

.communication-feature-cta > div:first-child {
  position: relative !important;
  z-index: 2 !important;
}

.communication-feature-cta > div:last-child {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.communication-photo {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  width: min(58vw, 980px) !important;
  max-width: 980px !important;
  height: auto !important;
  aspect-ratio: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
  object-position: bottom right !important;
  animation: none !important;
}

@media (max-width: 980px) {
  .services-home-section {
    height: auto !important;
    min-height: 690px !important;
    padding: 4rem 0 !important;
  }

  .services-home-grid {
    grid-template-columns: 1fr !important;
    max-width: 560px !important;
    margin: 0 auto !important;
    gap: 1.5rem !important;
  }

  .services-home-card {
    min-height: 290px !important;
  }

  .communication-feature-cta {
    min-height: 620px !important;
    display: block !important;
    padding: 3.5rem 2rem !important;
  }

  .communication-photo {
    width: min(92vw, 760px) !important;
    opacity: .9 !important;
  }
}

@media (max-width: 720px) {
  .services-home-section {
    min-height: auto !important;
    padding: 3rem 0 !important;
  }

  .services-home-card {
    min-height: 260px !important;
    padding: 2.25rem 1.5rem !important;
    border-width: 3px !important;
    box-shadow: 0 14px 30px rgba(20, 22, 58, .20) !important;
  }

  .services-card-icon {
    width: 104px !important;
    height: 104px !important;
  }

  .communication-feature-cta {
    min-height: 560px !important;
    padding: 3rem 1.5rem !important;
  }

  .communication-photo {
    width: 108vw !important;
    right: -12vw !important;
  }
}

@media (max-width: 480px) {
  .services-card-icon {
    width: 92px !important;
    height: 92px !important;
  }

  .services-home-card h3 {
    font-size: 1.35rem !important;
  }

  .communication-feature-cta {
    min-height: 520px !important;
  }
}


/* =============================================================
   FINAL HOME PAGE POLISH — service cards, communicate image,
   values icons, marquee banner, testimonial bg, full 1920 width
   ============================================================= */
@font-face {
  font-family: 'Playlist Script';
  src: url('../fonts/Playlist Script.woff2') format('woff2'),
       url('../fonts/Playlist Script.otf') format('opentype'),
       local('Playlist Script'),
       local('PlaylistScript');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html,
body {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

main,
.site-header,
.site-footer,
.home-hero,
.quote-section,
.services-home-section,
.communication-section,
.focus-areas,
.banner-band,
.testimonial-strip,
.final-cta {
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.container {
  max-width: min(1920px, var(--container)) !important;
}

.home-hero h1 .impact-word,
.home-hero h1 .script.impact-word,
.impact-word {
  font-family: 'Playlist Script', 'PlaylistScript', cursive !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: var(--pink) !important;
  color: var(--pink) !important;
}

/* Services cards: larger icons and same hover lift/shadow feel as the Three Ways cards. */
.services-home-section {
  height: 690px !important;
  min-height: 690px !important;
}

.services-home-container {
  max-width: 1320px !important;
}

.services-home-grid {
  gap: 3rem !important;
}

.services-home-card {
  min-height: 365px !important;
  padding: 3.4rem 2.6rem !important;
  border: 4px solid #ff2e8a !important;
  border-radius: 18px !important;
  box-shadow: var(--shadow-sm) !important;
  background: rgba(255, 255, 255, .97) !important;
  transition: all var(--transition-slow) !important;
}

.services-home-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: #ff2e8a !important;
}

.services-card-icon {
  width: 158px !important;
  height: 158px !important;
  object-fit: contain !important;
  margin-bottom: 1.45rem !important;
}

.services-home-card h3 {
  font-size: clamp(1.45rem, 2vw, 2rem) !important;
}

.services-home-card p {
  font-size: 1.15rem !important;
  max-width: 340px !important;
}

/* Communicate section: full 1920 canvas with communicate.png anchored bottom-right. */
.communication-section,
.communication-section-inner,
.communication-feature-cta {
  width: 100% !important;
  max-width: 1920px !important;
}

.communication-feature-cta {
  position: relative !important;
  min-height: 540px !important;
  overflow: hidden !important;
}

.communication-feature-cta > div:last-child {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.communication-photo {
  display: block !important;
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  width: min(62vw, 1080px) !important;
  max-width: 1080px !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
  object-position: bottom right !important;
  animation: none !important;
}

/* Three Ways section */
.focus-areas {
  background: #ffffff !important;
}

.focus-areas .section-title h2 {
  color: #ff2e8a !important;
}

/* Values/beliefs section: larger type and image icons. */
.beliefs-statement {
  font-size: clamp(1.45rem, 2.4vw, 2.35rem) !important;
  line-height: 1.45 !important;
  max-width: 1080px !important;
}

.values-grid {
  gap: 2.5rem !important;
}

.value-item .value-icon {
  width: 104px !important;
  height: 104px !important;
}

.value-item .value-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

.value-item h4 {
  font-size: clamp(1.2rem, 1.5vw, 1.55rem) !important;
}

.value-item p {
  font-size: 1.05rem !important;
  line-height: 1.5 !important;
}

/* Marquee banner */
.banner-band {
  overflow: hidden !important;
  white-space: nowrap !important;
  padding: 2rem 0 !important;
  font-size: clamp(2rem, 5vw, 5.25rem) !important;
  line-height: 1 !important;
}

.banner-band::before,
.banner-band::after {
  display: none !important;
}

.banner-band {
  color: transparent !important;
}

.banner-band::after {
  content: 'Maximizing Your Communication Potential   •   Maximizing Your Communication Potential   •   Maximizing Your Communication Potential   •   Maximizing Your Communication Potential' !important;
  display: inline-block !important;
  color: var(--white) !important;
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  animation: marquee-scroll 24s linear infinite !important;
  padding-left: 100% !important;
}

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

/* Testimonial section image background */
.testimonial-strip {
  background: url('../images/home/home-quote.webp') center center / cover no-repeat !important;
  min-height: 540px !important;
  display: flex !important;
  align-items: center !important;
}

.testimonial-bg,
.testimonial-strip .neon-mic {
  display: none !important;
}

.testimonial-strip blockquote {
  background: rgba(255, 255, 255, .82) !important;
  border-radius: 24px !important;
  padding: 2.5rem clamp(1.5rem, 4vw, 4rem) !important;
  box-shadow: var(--shadow-md) !important;
}

/* Final CTA: larger Book a Call button and no white gap before footer. */
.final-cta {
  margin-bottom: 0 !important;
}

.final-cta .btn,
.final-cta .btn-book-call {
  font-size: 1.2rem !important;
  padding: 1.25rem 2.5rem !important;
  min-width: 220px !important;
}

.site-footer {
  margin-top: 0 !important;
}

@media (max-width: 980px) {
  .services-home-section {
    height: auto !important;
    min-height: 690px !important;
    padding: 4rem 0 !important;
  }

  .services-home-grid {
    grid-template-columns: 1fr !important;
    max-width: 620px !important;
  }

  .services-home-card {
    min-height: 330px !important;
  }

  .services-card-icon {
    width: 140px !important;
    height: 140px !important;
  }

  .communication-photo {
    width: min(95vw, 820px) !important;
    opacity: .92 !important;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 720px) {
  .services-home-section {
    min-height: auto !important;
    padding: 3rem 0 !important;
  }

  .services-card-icon {
    width: 122px !important;
    height: 122px !important;
  }

  .services-home-card {
    min-height: 300px !important;
    padding: 2.5rem 1.6rem !important;
  }

  .communication-photo {
    width: 112vw !important;
    right: -18vw !important;
  }

  .beliefs-statement {
    font-size: clamp(1.25rem, 5vw, 1.85rem) !important;
  }

  .value-item .value-icon {
    width: 88px !important;
    height: 88px !important;
  }

  .banner-band {
    font-size: clamp(1.7rem, 9vw, 3.25rem) !important;
  }

  .testimonial-strip {
    min-height: 460px !important;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr !important;
  }

  .services-card-icon {
    width: 110px !important;
    height: 110px !important;
  }

  .final-cta .btn,
  .final-cta .btn-book-call {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* =============================================================
   FINAL REQUEST PATCH — stronger shadows, 1080 communicate section,
   centered focus title, single marquee, quote image mark, larger CTA
   ============================================================= */

/* Services cards: darker hover shadow and larger icons */
.services-home-card {
  box-shadow: 0 14px 32px rgba(20, 22, 58, .18) !important;
}

.services-home-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 28px 70px rgba(20, 22, 58, .32) !important;
}

.services-card-icon {
  width: 178px !important;
  height: 178px !important;
}

.services-home-card:first-child .services-card-icon {
  width: 208px !important;
  height: 208px !important;
  margin-top: -1rem !important;
  margin-bottom: .75rem !important;
}

/* Communication section: 1080px tall and full 1920px canvas */
.communication-section,
.communication-section-inner,
.communication-feature-cta {
  width: 100% !important;
  max-width: 1920px !important;
}

.communication-feature-cta {
  min-height: 1080px !important;
  height: 1080px !important;
}

.communication-photo {
  right: 0 !important;
  bottom: 0 !important;
  width: min(70vw, 1250px) !important;
  max-width: 1250px !important;
}

/* Three Ways section title centered and pink */
.focus-areas {
  background: #ffffff !important;
}

.focus-areas .section-title,
.focus-areas .section-title h2,
.focus-areas .section-title p {
  text-align: center !important;
}

.focus-areas .section-title h2 {
  color: #ff2e8a !important;
}

/* Values icons: same visual scale as service icons */
.value-item .value-icon {
  width: 178px !important;
  height: 178px !important;
}

.value-item .value-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Marquee: one sentence only, about 1200px wide */
.banner-band {
  position: relative !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  min-height: 135px !important;
  display: flex !important;
  align-items: center !important;
  color: transparent !important;
}

.banner-band::before {
  display: none !important;
}

.banner-band::after {
  content: 'Maximizing Your Communication Potential' !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: min(1200px, 92vw) !important;
  color: var(--white) !important;
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  font-size: clamp(2.6rem, 5vw, 5.5rem) !important;
  line-height: 1 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  padding-left: 0 !important;
  transform: translate(100vw, -50%) !important;
  animation: marquee-single-scroll 16s linear infinite !important;
}

@keyframes marquee-single-scroll {
  0% { transform: translate(100vw, -50%); }
  100% { transform: translate(-1200px, -50%); }
}

/* Testimonial: replace text quote mark with quote-mark.png */
.testimonial-strip {
  background: url('../images/home/home-quote.webp') center center / cover no-repeat !important;
}

.testimonial-strip blockquote::before {
  content: '' !important;
  display: block !important;
  width: 86px !important;
  height: 70px !important;
  margin: 0 auto 1.25rem !important;
  background: url('../images/home/quote-mark.png') center center / contain no-repeat !important;
  animation: none !important;
}

/* Final CTA: larger Book a Call button */
.final-cta .btn,
.final-cta .btn-book-call {
  font-size: 1.45rem !important;
  padding: 1.55rem 3.35rem !important;
  min-width: 280px !important;
}

@media (max-width: 980px) {
  .services-card-icon,
  .value-item .value-icon {
    width: 150px !important;
    height: 150px !important;
  }

  .services-home-card:first-child .services-card-icon {
    width: 174px !important;
    height: 174px !important;
  }

  .communication-feature-cta {
    min-height: 780px !important;
    height: 780px !important;
  }

  .communication-photo {
    width: min(95vw, 920px) !important;
  }

  .banner-band::after {
    width: min(900px, 92vw) !important;
  }

  @keyframes marquee-single-scroll {
    0% { transform: translate(100vw, -50%); }
    100% { transform: translate(-900px, -50%); }
  }
}

@media (max-width: 720px) {
  .services-card-icon,
  .value-item .value-icon {
    width: 124px !important;
    height: 124px !important;
  }

  .services-home-card:first-child .services-card-icon {
    width: 144px !important;
    height: 144px !important;
  }

  .communication-feature-cta {
    min-height: 620px !important;
    height: 620px !important;
  }

  .banner-band {
    min-height: 110px !important;
  }

  .banner-band::after {
    font-size: clamp(2rem, 9vw, 3.4rem) !important;
    width: 720px !important;
  }

  @keyframes marquee-single-scroll {
    0% { transform: translate(100vw, -50%); }
    100% { transform: translate(-720px, -50%); }
  }

  .testimonial-strip blockquote::before {
    width: 64px !important;
    height: 52px !important;
  }
}

@media (max-width: 480px) {
  .final-cta .btn,
  .final-cta .btn-book-call {
    font-size: 1.2rem !important;
    padding: 1.25rem 2rem !important;
    min-width: 0 !important;
  }
}

/* =============================================================
   FINAL CLEANUP PATCH — communication image + static headline
   ============================================================= */

/* Keep communicate.png anchored lower-right, but cap its height. */
.communication-photo {
  right: 0 !important;
  bottom: 0 !important;
  height: auto !important;
  max-height: 690px !important;
  width: auto !important;
  max-width: min(72vw, 1250px) !important;
  object-fit: contain !important;
  object-position: bottom right !important;
}

/* Remove marquee behavior and display this as one large, clean heading. */
.banner-band {
  min-height: 170px !important;
  height: auto !important;
  padding: 2.5rem 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden !important;
  white-space: normal !important;
  color: #ffffff !important;
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  font-size: clamp(2.5rem, 5vw, 5.5rem) !important;
  line-height: 1.05 !important;
  letter-spacing: .03em !important;
  text-transform: uppercase !important;
  animation: gradient-flow 10s ease infinite !important;
}

.banner-band::before,
.banner-band::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

@media (max-width: 980px) {
  .communication-photo {
    max-height: 560px !important;
    max-width: min(100vw, 920px) !important;
  }

  .banner-band {
    min-height: 145px !important;
    font-size: clamp(2.1rem, 7vw, 4rem) !important;
  }
}

@media (max-width: 720px) {
  .communication-photo {
    max-height: 420px !important;
    max-width: 110vw !important;
  }

  .banner-band {
    min-height: 120px !important;
    padding: 2rem 1rem !important;
    font-size: clamp(1.8rem, 9vw, 3rem) !important;
  }
}


/* =============================================================
   REQUEST PATCH — communication image + large static banner
   ============================================================= */
.communication-photo {
  max-height: 700px !important;
}

.banner-band {
  min-height: 190px !important;
  padding: 2.75rem 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  font-size: clamp(3.4rem, 5.8vw, 7rem) !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
}

@media (max-width: 980px) {
  .communication-photo {
    max-height: 600px !important;
  }

  .banner-band {
    min-height: 160px !important;
    font-size: clamp(2.5rem, 8vw, 4.75rem) !important;
  }
}

@media (max-width: 720px) {
  .communication-photo {
    max-height: 460px !important;
  }

  .banner-band {
    min-height: 125px !important;
    padding: 2rem 1rem !important;
    font-size: clamp(1.85rem, 9vw, 3.2rem) !important;
    white-space: normal !important;
  }
}


/* =============================================================
   REQUEST PATCH — fixed banner size + communication section height
   ============================================================= */
.communication-section,
.communication-section-inner {
  width: 100% !important;
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.communication-feature-cta {
  min-height: 750px !important;
  height: 750px !important;
}

.communication-photo {
  max-height: 700px !important;
  height: auto !important;
}

.banner-band {
  font-size: 34.8px !important;
  line-height: 1.1 !important;
  min-height: 120px !important;
  padding: 2rem 1.5rem !important;
  white-space: nowrap !important;
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  letter-spacing: .03em !important;
  text-transform: uppercase !important;
}

@media (max-width: 980px) {
  .communication-feature-cta {
    min-height: 650px !important;
    height: 650px !important;
  }

  .communication-photo {
    max-height: 600px !important;
  }

  .banner-band {
    font-size: clamp(1.8rem, 5vw, 34.8px) !important;
    white-space: normal !important;
  }
}

@media (max-width: 720px) {
  .communication-feature-cta {
    min-height: 510px !important;
    height: 510px !important;
  }

  .communication-photo {
    max-height: 460px !important;
  }

  .banner-band {
    font-size: clamp(1.45rem, 7vw, 2.2rem) !important;
    min-height: 105px !important;
    white-space: normal !important;
  }
}

/* =============================================================
   FINAL PATCH — centered content blocks with left-aligned text
   Applies to hero and communication sections
   ============================================================= */

/* HERO: keep full 1920 artwork, but center the text block inside the 1920 canvas. */
.home-hero .home-hero-grid {
  width: 100% !important;
  max-width: 1920px !important;
  height: 1080px !important;
  min-height: 1080px !important;
  padding-left: clamp(2rem, 10vw, 190px) !important;
  padding-right: clamp(2rem, 10vw, 190px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.home-hero .home-hero-text {
  width: min(100%, 650px) !important;
  max-width: 650px !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.home-hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(4.2rem, 5.2vw, 6.25rem) !important;
  line-height: .98 !important;
  letter-spacing: -0.035em !important;
  margin: 0 0 1.35rem !important;
}

.home-hero .make-impact-line {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: .2em !important;
  white-space: nowrap !important;
}

.home-hero .lede {
  font-family: var(--font-body) !important;
  font-size: clamp(1.18rem, 1.25vw, 1.5rem) !important;
  line-height: 1.55 !important;
  max-width: 580px !important;
  margin: 0 0 2.15rem !important;
  color: var(--gray-700) !important;
  text-align: left !important;
}

.home-hero-cta {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 1rem !important;
}

/* COMMUNICATION: centered section content, left-aligned copy, consistent title/subheading/body scale. */
.communication-section,
.communication-section-inner,
.communication-feature-cta {
  width: 100% !important;
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.communication-feature-cta {
  height: 750px !important;
  min-height: 750px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-left: clamp(2rem, 10vw, 190px) !important;
  padding-right: clamp(2rem, 10vw, 190px) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.communication-feature-cta > div:first-child {
  width: min(100%, 650px) !important;
  max-width: 650px !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
}

.communication-feature-cta h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(3.25rem, 4.4vw, 5.5rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.035em !important;
  margin: 0 0 1.25rem !important;
  text-align: left !important;
}

.communication-feature-cta h2 .script {
  font-family: var(--font-script) !important;
  font-size: 1.16em !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.communication-feature-cta p {
  font-family: var(--font-body) !important;
  font-size: clamp(1.18rem, 1.25vw, 1.5rem) !important;
  line-height: 1.55 !important;
  max-width: 560px !important;
  margin: 0 0 2.15rem !important;
  text-align: left !important;
}

.communication-feature-cta .btn {
  align-self: flex-start !important;
}

.communication-photo {
  right: 0 !important;
  bottom: 0 !important;
  max-height: 700px !important;
  height: auto !important;
  width: auto !important;
  object-fit: contain !important;
  object-position: bottom right !important;
}

@media (max-width: 1200px) {
  .home-hero .home-hero-grid {
    height: 820px !important;
    min-height: 820px !important;
    padding-left: clamp(1.5rem, 7vw, 90px) !important;
    padding-right: clamp(1.5rem, 7vw, 90px) !important;
  }

  .home-hero h1 {
    font-size: clamp(3.5rem, 6.2vw, 5rem) !important;
  }

  .communication-feature-cta {
    padding-left: clamp(1.5rem, 7vw, 90px) !important;
    padding-right: clamp(1.5rem, 7vw, 90px) !important;
  }

  .communication-feature-cta h2 {
    font-size: clamp(3rem, 5.5vw, 4.6rem) !important;
  }
}

@media (max-width: 720px) {
  .home-hero .home-hero-grid {
    height: 620px !important;
    min-height: 620px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    align-items: center !important;
  }

  .home-hero .home-hero-text {
    max-width: 100% !important;
  }

  .home-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.75rem) !important;
    line-height: 1.02 !important;
  }

  .home-hero .lede {
    font-size: 1rem !important;
    max-width: 92% !important;
  }

  .home-hero-cta {
    flex-wrap: wrap !important;
  }

  .communication-feature-cta {
    height: 510px !important;
    min-height: 510px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    align-items: flex-start !important;
    padding-top: 3rem !important;
  }

  .communication-feature-cta > div:first-child {
    max-width: 95% !important;
  }

  .communication-feature-cta h2 {
    font-size: clamp(2.35rem, 10vw, 3.4rem) !important;
    line-height: 1.02 !important;
  }

  .communication-feature-cta p {
    font-size: 1rem !important;
    max-width: 90% !important;
  }

  .communication-photo {
    max-height: 460px !important;
    opacity: .88 !important;
  }
}


/* =============================================================
   ABOUT PAGE CUSTOM SECTIONS
   ============================================================= */

.about-hero.about-hero-custom {
  position: relative;
  min-height: 640px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: url("../images/about/about-bkgd.png") center center / cover no-repeat;
  color: var(--white);
}

.about-hero-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,22,58,.62) 0%, rgba(20,22,58,.28) 42%, rgba(20,22,58,0) 76%);
  z-index: 1;
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about-hero-copy {
  max-width: 620px;
  text-align: left;
}

.about-hero-copy h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 5vw, 6rem);
  line-height: .95;
  margin-bottom: 1rem;
}

.about-hero-copy p {
  color: rgba(255,255,255,.95);
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.45;
  max-width: 520px;
}

.about-hero-art {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.about-hero-person {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 96%;
  width: auto;
  max-width: 58%;
  object-fit: contain;
  object-position: bottom right;
}

.about-mission-section {
  max-width: 1920px;
  margin: 0 auto;
}

.about-mission-card {
  min-height: 360px;
  border-radius: 36px;
  padding: clamp(2.5rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
}

.about-mission-copy {
  position: relative;
  z-index: 2;
}

.about-mission-copy h3 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.5rem);
  margin-bottom: 1rem;
}

.about-mission-copy p {
  color: rgba(255,255,255,.95);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  max-width: 760px;
}

.about-mission-heart {
  position: relative;
  z-index: 2;
  width: min(260px, 100%);
  justify-self: end;
  filter: drop-shadow(0 18px 28px rgba(20,22,58,.22));
  animation: heartFloatPulse 5.5s ease-in-out infinite;
}

@keyframes heartFloatPulse {
  0%, 100% { transform: translateY(0) scale(1) rotate(-2deg); }
  50% { transform: translateY(-14px) scale(1.045) rotate(2deg); }
}

.about-drives-section {
  max-width: 1920px;
  margin: 0 auto;
  padding: 6rem 0;
  background: url("../images/about/drives-me-bkgd.png") center center / cover no-repeat;
  overflow: hidden;
}

.about-drives-section h2 {
  color: var(--navy);
  text-align: center;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  margin-bottom: 3rem;
}

.drives-underlined {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.drives-underlined::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -.32em;
  width: 112%;
  height: .32em;
  background: url("../images/about/underline.png") center / 100% 100% no-repeat;
  transform: translateX(-50%) scaleX(0);
  transform-origin: left center;
  animation: drawDrivesUnderline 1.25s ease-out .35s forwards;
  z-index: -1;
}

@keyframes drawDrivesUnderline {
  to { transform: translateX(-50%) scaleX(1); }
}

.about-drives-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

.about-drive-item {
  background: rgba(255,255,255,.93);
  border: 3px solid #ff2e8a;
  border-radius: 24px;
  padding: 2.25rem 1.5rem;
  box-shadow: 0 18px 38px rgba(20,22,58,.16);
  border-right: 3px solid #ff2e8a !important;
}

.about-drive-item .drive-icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 1.25rem;
}

.about-drive-item .drive-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-drive-item h4 {
  color: var(--pink);
  font-size: 1.35rem;
  margin-bottom: .65rem;
}

.about-drive-item p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.5;
}

.about-quote-bkgd {
  max-width: 1920px;
  height: 360px;
  margin: 0 auto;
  background: url("../images/about/quote-bkgd.webp") center center / cover no-repeat;
}

@media (max-width: 980px) {
  .about-hero.about-hero-custom,
  .about-hero-content {
    min-height: 560px;
  }

  .about-hero-person {
    max-width: 62%;
    opacity: .95;
  }

  .about-mission-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-mission-heart {
    justify-self: center;
    width: 210px;
  }

  .about-drives-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .about-hero.about-hero-custom,
  .about-hero-content {
    min-height: 520px;
  }

  .about-hero-custom::before {
    background: linear-gradient(180deg, rgba(20,22,58,.74) 0%, rgba(20,22,58,.44) 58%, rgba(20,22,58,.08) 100%);
  }

  .about-hero-content {
    align-items: flex-start;
    padding-top: 3rem;
  }

  .about-hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .about-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-person {
    max-width: 78%;
    max-height: 62%;
    right: 50%;
    transform: translateX(50%);
  }

  .about-drives-section {
    padding: 4rem 0;
  }

  .about-drives-grid {
    grid-template-columns: 1fr;
  }

  .about-drive-item .drive-icon {
    width: 96px;
    height: 96px;
  }

  .about-quote-bkgd {
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-mission-heart,
  .drives-underlined::after {
    animation: none !important;
  }

  .drives-underlined::after {
    transform: translateX(-50%) scaleX(1);
  }
}


/* =============================================================
   ABOUT PAGE FINAL REVISIONS
   - Shorter static About title section
   - Playlist Script About title
   - Mission card right rounded edge
   - Stronger What Drives Me cards
   - Quote background moved to testimonial section
   ============================================================= */

@font-face {
  font-family: "Playlist Script";
  src: url("../fonts/Playlist Script.woff2") format("woff2"),
       url("../fonts/Playlist Script.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.about-hero.about-hero-custom {
  min-height: 320px !important;
  height: 320px !important;
  background: url("../images/about/about-bkgd.png") center center / cover no-repeat !important;
  animation: none !important;
}

.about-hero-content {
  min-height: 320px !important;
  height: 320px !important;
  align-items: center !important;
}

.about-hero-copy h1,
.about-hero.about-hero-custom h1 {
  font-family: "Playlist Script", var(--font-script), "Sacramento", cursive !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: clamp(4rem, 6vw, 7rem) !important;
  line-height: .86 !important;
  margin-bottom: .35rem !important;
  animation: none !important;
  transform: none !important;
}

.about-hero-copy,
.about-hero-copy p {
  animation: none !important;
  transform: none !important;
}

.about-hero-person {
  right: 0 !important;
  bottom: 0 !important;
  max-height: 100% !important;
  max-width: 48% !important;
  animation: none !important;
  transform: none !important;
}

.about-hero::before,
.about-hero-custom::before {
  animation: none !important;
}

/* Remove old spinning icon/circle behavior anywhere it might still exist */
.mission-card .mission-icon,
.mission-card .mission-icon svg {
  animation: none !important;
}

.about-mission-section .container {
  max-width: var(--container);
}

.about-mission-card {
  width: 100% !important;
  min-height: 360px !important;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px) !important;
  border-radius: 36px 240px 240px 36px !important;
  padding-left: clamp(2.5rem, 5vw, 5rem) !important;
  padding-right: clamp(2rem, 4vw, 4rem) !important;
}

.about-mission-copy {
  width: 100% !important;
  max-width: none !important;
}

.about-mission-copy p {
  max-width: none !important;
}

.about-mission-heart {
  width: min(270px, 100%) !important;
  justify-self: end !important;
}

.about-drive-item {
  box-shadow: 0 22px 48px rgba(20, 22, 58, .22) !important;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow) !important;
}

.about-drive-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 32px 64px rgba(20, 22, 58, .28) !important;
}

.about-quote-bkgd {
  display: none !important;
}

.about-testimonial.about-testimonial-quote-bkgd,
.about-testimonial {
  max-width: 1920px !important;
  width: 100% !important;
  margin: 0 auto !important;
  background: url("../images/about/quote-bkgd.webp") center center / cover no-repeat !important;
  overflow: hidden !important;
}

.about-testimonial-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  place-items: center !important;
}

.about-testimonial-photo {
  display: none !important;
}

.about-testimonial .testimonial-bubble {
  max-width: 860px !important;
  margin: 0 auto !important;
}

@media (max-width: 980px) {
  .about-hero.about-hero-custom,
  .about-hero-content {
    min-height: 300px !important;
    height: 300px !important;
  }

  .about-hero-copy h1,
  .about-hero.about-hero-custom h1 {
    font-size: clamp(3.5rem, 9vw, 5.5rem) !important;
  }

  .about-hero-person {
    max-width: 50% !important;
  }

  .about-mission-card {
    grid-template-columns: minmax(0, 1fr) 210px !important;
    border-radius: 30px 180px 180px 30px !important;
    text-align: left !important;
  }

  .about-mission-heart {
    width: 200px !important;
    justify-self: end !important;
  }
}

@media (max-width: 720px) {
  .about-hero.about-hero-custom,
  .about-hero-content {
    min-height: 280px !important;
    height: 280px !important;
  }

  .about-hero-content {
    align-items: center !important;
    padding-top: 0 !important;
  }

  .about-hero-copy {
    max-width: 62% !important;
    text-align: left !important;
  }

  .about-hero-copy h1,
  .about-hero.about-hero-custom h1 {
    font-size: clamp(3.1rem, 12vw, 4.4rem) !important;
  }

  .about-hero-copy p {
    font-size: .95rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .about-hero-person {
    right: 0 !important;
    bottom: 0 !important;
    max-width: 48% !important;
    max-height: 92% !important;
    transform: none !important;
  }

  .about-mission-card {
    grid-template-columns: 1fr !important;
    border-radius: 30px 120px 120px 30px !important;
    text-align: left !important;
  }

  .about-mission-heart {
    width: 180px !important;
    justify-self: end !important;
  }
}

/* =============================================================
   ABOUT PAGE QUOTE SECTION REVISIONS
   - Remove title-section circle/overlay
   - Right-side testimonial quote box
   - Replace CSS quote mark with quote-mark.png
   - Add 350px visual height to testimonial section
   ============================================================= */

/* Remove the circle/overlay layer in the About title section */
.about-hero.about-hero-custom::before,
.about-hero-custom::before,
.about-hero::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

.about-hero.about-hero-custom {
  isolation: isolate;
}

/* Testimonial / quote section */
.about-testimonial.about-testimonial-quote-bkgd,
.about-testimonial {
  max-width: 1920px !important;
  width: 100% !important;
  min-height: 710px !important;
  margin: 0 auto !important;
  padding: 4rem 0 !important;
  background-image: url("../images/about/quote-bkgd.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
}

.about-testimonial .about-testimonial-grid {
  width: 100% !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.about-testimonial .testimonial-bubble {
  width: min(100%, 620px) !important;
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  padding: clamp(2rem, 3vw, 3rem) !important;
  border-radius: 28px !important;
  background: rgba(255,255,255,.94) !important;
  box-shadow: 0 24px 60px rgba(20,22,58,.18) !important;
}

/* Replace the typed quote mark with the uploaded quote-mark image */
.about-testimonial .testimonial-bubble::before {
  content: "" !important;
  display: block !important;
  width: 76px !important;
  height: 58px !important;
  margin: 0 0 1rem 0 !important;
  background: url("../images/about/quote-mark.png") center center / contain no-repeat !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}

.about-testimonial .testimonial-bubble p {
  font-size: clamp(1.1rem, 1.35vw, 1.35rem) !important;
  line-height: 1.65 !important;
}

@media (max-width: 980px) {
  .about-testimonial.about-testimonial-quote-bkgd,
  .about-testimonial {
    min-height: 620px !important;
    padding: 3.5rem 0 !important;
  }

  .about-testimonial .about-testimonial-grid {
    justify-content: center !important;
  }

  .about-testimonial .testimonial-bubble {
    margin-right: auto !important;
  }
}

@media (max-width: 720px) {
  .about-testimonial.about-testimonial-quote-bkgd,
  .about-testimonial {
    min-height: 560px !important;
    padding: 3rem 0 !important;
  }

  .about-testimonial .testimonial-bubble {
    max-width: 100% !important;
    padding: 1.75rem !important;
  }

  .about-testimonial .testimonial-bubble::before {
    width: 58px !important;
    height: 44px !important;
  }
}


/* =============================================================
   ABOUT HERO FLIP + PROGRAMS SECTION ASSET UPDATES
   ============================================================= */

/* About title section: image left, words right */
.about-hero.about-hero-custom {
  max-width: 1920px !important;
  margin: 0 auto !important;
  background-image: url("../images/about/about-bkgd.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.about-hero-art {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.about-hero-person {
  left: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  max-height: 100% !important;
  max-width: 48% !important;
  object-fit: contain !important;
  object-position: left bottom !important;
  transform: none !important;
}

.about-hero-content {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.about-hero-copy {
  margin-left: auto !important;
  margin-right: 0 !important;
  max-width: 560px !important;
  text-align: left !important;
}

.about-hero-copy h1,
.about-hero.about-hero-custom h1 {
  font-family: var(--font-script) !important;
  font-weight: 400 !important;
}

/* Popular Programs heading: pink */
.popular-programs h2,
.popular-programs-title,
.programs-section h2,
.programs-grid-section h2,
.programs-page .section-title h2,
.programs-page h2,
.programs-main h2,
section[aria-label="Popular Programs"] h2 {
  color: #ff2e8a !important;
}

/* Popular Programs icon image sizing if using image icons */
.program-card-icon img,
.program-icon img,
.popular-programs .card-icon img,
.programs-grid .card-icon img {
  width: 92px !important;
  height: 92px !important;
  object-fit: contain !important;
  margin: 0 auto 1rem !important;
}

/* Optional classes for the six requested Popular Programs icons */
.program-icon-keynote {
  content: url("../images/programs/keynote-speaking.png");
}
.program-icon-leadership {
  content: url("../images/programs/leadership-workshop.png");
}
.program-icon-communication {
  content: url("../images/programs/communication-training.png");
}
.program-icon-team {
  content: url("../images/programs/team.png");
}
.program-icon-public-speaking {
  content: url("../images/programs/public-speaking.png");
}
.program-icon-career-transition {
  content: url("../images/programs/career-transition.png");
}

@media (max-width: 980px) {
  .about-hero-person {
    max-width: 46% !important;
  }

  .about-hero-copy {
    max-width: 52% !important;
  }
}

@media (max-width: 720px) {
  .about-hero-content {
    justify-content: flex-end !important;
  }

  .about-hero-person {
    max-width: 43% !important;
    opacity: .95 !important;
  }

  .about-hero-copy {
    max-width: 55% !important;
  }

  .about-hero-copy h1,
  .about-hero.about-hero-custom h1 {
    font-size: clamp(3rem, 11vw, 4.25rem) !important;
  }

  .about-hero-copy p {
    font-size: .92rem !important;
  }
}
/* =============================================================
   SITE PATCH — button rounding + About page mission/connect fixes
   Add this at the VERY BOTTOM of css/styles.css, or load it after styles.css.
   ============================================================= */

/* All buttons: rounded corners, but NOT pill/round-side buttons */
.btn,
button.btn,
a.btn,
input[type="submit"].btn,
input[type="button"].btn {
  border-radius: 16px !important;
}

.btn-sm,
.nav-list .btn,
.site-header .btn {
  border-radius: 12px !important;
}

.btn-primary,
.btn-teal,
.btn-orange,
.btn-outline,
.btn-white,
.btn-book-call {
  border-radius: 16px !important;
}

/* About page: make the Let's Connect button wider */
.about-body .btn,
.about-body .btn-teal,
.about-body a[href="contact.html"].btn,
.about-body a[href="contact.html"].btn-teal {
  min-width: 300px !important;
  justify-content: center !important;
  padding-left: 2.75rem !important;
  padding-right: 2.75rem !important;
}

/* About page: make the My Mission card anchor to the left edge of the container */
.about-mission-section .container {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
}

.about-mission-card,
.mission-card.about-mission-card {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
}

.about-mission-copy {
  margin-left: 0 !important;
  padding-left: 0 !important;
  max-width: none !important;
}

/* Keep the rounded-right mission shape intact */
.about-mission-card {
  border-radius: 36px 240px 240px 36px !important;
}

@media (max-width: 720px) {
  .btn,
  button.btn,
  a.btn,
  .btn-primary,
  .btn-teal,
  .btn-orange,
  .btn-outline,
  .btn-white,
  .btn-book-call {
    border-radius: 14px !important;
  }

  .about-body .btn,
  .about-body .btn-teal,
  .about-body a[href="contact.html"].btn,
  .about-body a[href="contact.html"].btn-teal {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 340px !important;
  }

  .about-mission-section .container {
    display: block !important;
  }

  .about-mission-card {
    border-radius: 28px !important;
  }
}


/* =============================================================
   CORRECTION PATCH — undo Programs-specific flip on About page
   and apply it only to Programs page
   ============================================================= */

/* ABOUT: restore original title layout — words left, image anchored lower right */
.about-hero.about-hero-custom {
  min-height: 320px !important;
  height: 320px !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 auto !important;
  background-image: url("../images/about/about-bkgd.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.about-hero.about-hero-custom::before,
.about-hero-custom::before,
.about-hero-custom::after {
  display: none !important;
  content: none !important;
}

.about-hero-content {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  position: relative !important;
  z-index: 2 !important;
}

.about-hero-copy {
  max-width: 560px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
  order: 1 !important;
}

.about-hero-copy h1,
.about-hero.about-hero-custom h1 {
  font-family: var(--font-script) !important;
  font-weight: 400 !important;
}

.about-hero-art {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.about-hero-person {
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  bottom: 0 !important;
  height: 100% !important;
  max-height: 320px !important;
  width: auto !important;
  max-width: 46% !important;
  object-fit: contain !important;
  object-position: right bottom !important;
  transform: none !important;
  opacity: 1 !important;
}

/* Keep the About mission fixes requested earlier */
.about-mission-section .container {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
}

.about-mission-card,
.mission-card.about-mission-card {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.about-mission-card {
  border-radius: 36px 240px 240px 36px !important;
}

/* PROGRAMS PAGE — apply the flip instruction here instead */
.programs-page .programs-hero-custom {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(135deg, #ff2e8a 0%, #ff8a00 48%, #7b2cbf 100%);
}

.programs-page .programs-hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.programs-page .programs-hero-image {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 620px;
}

.programs-page .programs-hero-image img {
  width: min(100%, 580px);
  max-height: 620px;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0 24px 38px rgba(20, 22, 58, .18));
}

.programs-page .programs-hero-copy {
  color: var(--white);
  text-align: left;
  max-width: 690px;
}

.programs-page .programs-hero-copy h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: .98;
  margin-bottom: 1.25rem;
}

.programs-page .programs-hero-copy .script,
.programs-page .programs-hero-copy .impact-script {
  font-family: var(--font-script) !important;
  font-weight: 400 !important;
  font-size: 1.25em;
  line-height: .75;
  display: inline-block;
  color: var(--white) !important;
  -webkit-text-fill-color: currentColor !important;
  background: none !important;
}

.programs-page .programs-hero-copy .programs-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.programs-page .programs-hero-copy p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
  max-width: 620px;
}

.programs-page .popular-programs {
  background: var(--white);
  padding: clamp(4rem, 6vw, 7rem) 0;
}

.programs-page .popular-programs .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.programs-page .popular-programs h2,
.programs-page .popular-programs-title {
  color: #ff2e8a !important;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  margin-bottom: .75rem;
}

.programs-page .popular-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
}

.programs-page .program-card {
  min-height: 310px;
  padding: 2.25rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: var(--white);
  border: 3px solid #ff2e8a;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(20, 22, 58, .14);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.programs-page .program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(20, 22, 58, .22);
}

.programs-page .program-card-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.programs-page .program-card-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  margin: 0 !important;
}

.programs-page .program-card h3 {
  color: var(--navy);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  margin-bottom: .75rem;
}

.programs-page .program-card p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 980px) {
  .about-hero-person {
    max-width: 44% !important;
  }

  .programs-page .programs-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }

  .programs-page .programs-hero-image {
    order: 1;
    min-height: 420px;
    justify-content: center;
  }

  .programs-page .programs-hero-copy {
    order: 2;
    max-width: 760px;
    padding-bottom: 4rem;
  }

  .programs-page .programs-hero-image img {
    max-height: 440px;
  }

  .programs-page .popular-programs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .about-hero.about-hero-custom {
    height: auto !important;
    min-height: 360px !important;
  }

  .about-hero-content {
    min-height: 360px !important;
    align-items: center !important;
  }

  .about-hero-copy {
    max-width: 58% !important;
  }

  .about-hero-person {
    max-width: 42% !important;
    max-height: 360px !important;
  }

  .programs-page .programs-hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .programs-page .programs-hero-image {
    min-height: 320px;
  }

  .programs-page .programs-hero-image img {
    max-height: 340px;
  }

  .programs-page .popular-programs-grid {
    grid-template-columns: 1fr;
  }

  .programs-page .program-card {
    min-height: 260px;
  }
}


/* =============================================================
   HOME PAGE FINAL ADJUSTMENTS
   - Home sections full-bleed like About page
   - Banner moved in HTML under Three Ways section
   - Communication heading on one line
   ============================================================= */

/* Full-bleed visual sections so Home reaches screen edges like About. */
.home-hero,
.quote-image-section,
.quote-section,
.home-services-section,
.communication-section,
.communication-section-inner,
.focus-areas,
.banner-band,
.testimonial-strip,
.final-cta {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden;
}

/* Keep readable content centered while backgrounds stretch full screen. */
.home-hero .home-hero-grid,
.home-services-section > .container,
.focus-areas > .container,
.testimonial-strip > .container,
.final-cta > .container {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Hero background/image canvas fills the full viewport width. */
.home-hero .home-hero-image {
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
  max-width: none !important;
}

.home-hero .hero-main-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center right !important;
}

/* Communication section remains full-bleed, but content/image are controlled. */
.communication-feature-cta {
  width: 100% !important;
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.communication-feature-cta > div:first-child {
  max-width: 640px !important;
}

.communication-feature-cta h2 {
  white-space: nowrap !important;
  font-size: clamp(3.5rem, 4.8vw, 5.75rem) !important;
  line-height: .96 !important;
}

.communication-feature-cta h2 .script {
  display: inline !important;
  white-space: nowrap !important;
}

/* Keep the banner under Three Ways strong and clean. */
.banner-band {
  font-size: 34.8px !important;
  line-height: 1.15 !important;
  letter-spacing: .04em !important;
  padding: 2.1rem 2rem !important;
}

@media (max-width: 1100px) {
  .communication-feature-cta h2 {
    white-space: normal !important;
    font-size: clamp(2.8rem, 7vw, 4.5rem) !important;
  }
}

@media (max-width: 720px) {
  .home-hero,
  .quote-image-section,
  .quote-section,
  .home-services-section,
  .communication-section,
  .communication-section-inner,
  .focus-areas,
  .banner-band,
  .testimonial-strip,
  .final-cta {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .home-hero .home-hero-image {
    width: 100% !important;
  }

  .communication-feature-cta h2 {
    white-space: normal !important;
    font-size: clamp(2.35rem, 10vw, 3.4rem) !important;
  }

  .banner-band {
    font-size: clamp(1.4rem, 7vw, 2.2rem) !important;
  }
}

/* =============================================================
   FINAL PATCH — uniform top page titles + Programs hero image anchor
   ============================================================= */
:root {
  --page-hero-title-size: clamp(3.75rem, 5.75vw, 6.25rem);
  --page-hero-subtitle-size: clamp(1.15rem, 1.5vw, 1.45rem);
}

/* Keep top hero titles visually consistent across pages */
.home-hero h1,
.about-hero.about-hero-custom h1,
.about-hero-copy h1,
.programs-page .programs-hero-copy h1,
.programs-hero h1,
.services-hero h1,
.contact-hero h1 {
  font-size: var(--page-hero-title-size) !important;
  line-height: .96 !important;
  margin-bottom: 1.25rem !important;
}

.home-hero .lede,
.about-hero-copy p,
.about-hero.about-hero-custom h1 + p,
.programs-page .programs-hero-copy p,
.programs-hero p,
.services-hero .lede,
.contact-hero p {
  font-size: var(--page-hero-subtitle-size) !important;
  line-height: 1.55 !important;
}

/* Preserve script styling while using the same overall title sizing */
.about-hero.about-hero-custom h1,
.about-hero-copy h1,
.home-hero h1 .impact-word,
.home-hero h1 .script,
.programs-page .programs-hero-copy .impact-script,
.programs-page .programs-hero-copy .script {
  font-family: var(--font-script) !important;
  font-weight: 400 !important;
}

/* Programs page: image anchored to the lower-left corner of the hero */
.programs-page .programs-hero-custom {
  position: relative !important;
  min-height: 620px !important;
  overflow: hidden !important;
}

.programs-page .programs-hero-grid {
  position: relative !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.programs-page .programs-hero-image {
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: min(48vw, 720px) !important;
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.programs-page .programs-hero-image img {
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: auto !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 620px !important;
  object-fit: contain !important;
  object-position: left bottom !important;
  transform: none !important;
}

.programs-page .programs-hero-copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(56%, 720px) !important;
  margin-left: auto !important;
  padding-left: clamp(1rem, 3vw, 3rem) !important;
}

@media (max-width: 980px) {
  :root {
    --page-hero-title-size: clamp(3rem, 8vw, 4.75rem);
    --page-hero-subtitle-size: clamp(1rem, 2.5vw, 1.25rem);
  }

  .programs-page .programs-hero-grid {
    min-height: 680px !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: 3rem !important;
  }

  .programs-page .programs-hero-image {
    width: 70% !important;
    height: 58% !important;
    left: 0 !important;
    bottom: 0 !important;
  }

  .programs-page .programs-hero-image img {
    max-height: 420px !important;
    height: 100% !important;
  }

  .programs-page .programs-hero-copy {
    width: 100% !important;
    max-width: 680px !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    text-align: right !important;
  }
}

@media (max-width: 720px) {
  :root {
    --page-hero-title-size: clamp(2.6rem, 10vw, 3.75rem);
  }

  .programs-page .programs-hero-custom,
  .programs-page .programs-hero-grid {
    min-height: 640px !important;
  }

  .programs-page .programs-hero-copy {
    text-align: left !important;
    padding: 0 1rem !important;
  }

  .programs-page .programs-hero-image {
    width: 82% !important;
    height: 50% !important;
  }

  .programs-page .programs-hero-image img {
    max-height: 340px !important;
  }
}

/* =============================================================
   FINAL PATCH — second-level headings use teal instead of pink
   ============================================================= */
main h2,
.section-title h2,
.focus-areas h2,
.drives-section h2,
.programs-page h2,
.programs-page .popular-programs-title,
.programs-page .programs-section-title,
.services-page h2,
.about-page h2,
.contact-page h2,
.contact-info h2,
.custom-solutions h2,
.communication-feature-cta h2,
.final-cta h2,
.services-final-cta h2,
.feature-cta h2 {
  color: var(--teal) !important;
}

/* Keep script accent words readable inside teal h2 headings. */
main h2 .script,
.section-title h2 .script,
.communication-feature-cta h2 .script,
.feature-cta h2 .script,
.final-cta h2 .script {
  color: var(--teal) !important;
  -webkit-text-fill-color: var(--teal) !important;
  background: none !important;
}

/* =============================================================
   FINAL HOME RESPONSIVE/FULL-BLEED PATCH
   - Undo teal h2 override on the Home page
   - Make home sections, navbar, and footer reach the viewport edge
   - Make hero scale down with browser width
   - Keep hero words vertically centered and left-aligned
   ============================================================= */

/* Full-bleed shell: lets sections reach the actual browser edge even
   if an outer wrapper is capped/centered. Inner .container content stays readable. */
.site-header,
.site-footer,
.home-hero,
.quote-section,
.services-home-section,
.communication-section,
.focus-areas,
.banner-band,
.testimonial-strip,
.final-cta {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.site-header,
.site-footer {
  left: auto !important;
  right: auto !important;
}

.site-header .container,
.site-footer .container,
.home-hero .container,
.quote-section .container,
.services-home-section .container,
.communication-section .container,
.focus-areas .container,
.final-cta .container {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Undo the recent teal h2 override on HOME sections only. */
.home-hero h2,
.focus-areas .section-title h2,
.focus-areas h2,
.services-home-section h2 {
  color: #ff2e8a !important;
  -webkit-text-fill-color: #ff2e8a !important;
}

.communication-section h2,
.communication-feature-cta h2,
.feature-cta.communication-feature-cta h2,
.final-cta h2 {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
}

.communication-section h2 .script,
.communication-feature-cta h2 .script,
.feature-cta.communication-feature-cta h2 .script,
.final-cta h2 .script {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  background: none !important;
}

/* Fluid hero: 1920x1080 at full size, then scales down by the same 16:9 ratio. */
:root {
  --home-hero-height-fluid: clamp(560px, 56.25vw, 1080px);
}

.home-hero {
  height: var(--home-hero-height-fluid) !important;
  min-height: var(--home-hero-height-fluid) !important;
  max-height: 1080px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.home-hero .home-hero-image {
  width: 100vw !important;
  max-width: none !important;
  height: var(--home-hero-height-fluid) !important;
  min-height: var(--home-hero-height-fluid) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.home-hero .home-hero-image .hero-main-image,
.home-hero .hero-main-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.home-hero .home-hero-grid {
  height: var(--home-hero-height-fluid) !important;
  min-height: var(--home-hero-height-fluid) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.home-hero .home-hero-text {
  align-self: center !important;
  text-align: left !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.home-hero .lede,
.home-hero-cta,
.make-impact-line {
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-content: flex-start !important;
}

/* Keep the background strip full-bleed too. */
.quote-section::before {
  width: 100vw !important;
  max-width: none !important;
}

@media (max-width: 1200px) {
  :root {
    --home-hero-height-fluid: clamp(520px, 56.25vw, 820px);
  }
}

@media (max-width: 720px) {
  :root {
    --home-hero-height-fluid: clamp(460px, 95vw, 620px);
  }

  .home-hero .home-hero-grid {
    align-items: center !important;
  }

  .home-hero .home-hero-text {
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  :root {
    --home-hero-height-fluid: clamp(430px, 105vw, 560px);
  }
}


/* =============================================================
   FINAL FULL-SITE RESPONSIVE FULL-BLEED + HOME HERO/COMMUNICATION FIX
   ============================================================= */

/* Make the whole site behave like the About page: visual sections hit
   the browser edges, while inner content remains readable. */
html,
body {
  width: 100% !important;
  max-width: none !important;
  overflow-x: hidden !important;
}

body,
.site-header,
.site-footer,
main,
main > section,
.full-bleed,
.home-hero,
.quote-section,
.services-home-section,
.communication-section,
.focus-areas,
.banner-band,
.testimonial-strip,
.final-cta,
.about-hero,
.about-testimonial,
.drives-section,
.programs-hero,
.programs-page .programs-hero-custom,
.services-hero,
.contact-hero {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  box-sizing: border-box !important;
}

/* Keep normal readable containers centered inside full-bleed sections. */
.container,
.nav,
.home-hero-grid,
.services-home-container,
.communication-content,
.focus-areas > .container,
.about-hero .container,
.about-testimonial .container,
.drives-section .container,
.programs-hero .container,
.services-hero .container,
.contact-hero .container,
.site-footer > .container {
  width: min(100% - 3rem, 1200px) !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Navbar and footer backgrounds should also touch both browser edges. */
.site-header,
.site-footer {
  left: auto !important;
  right: auto !important;
}

/* Undo the teal heading override on the Home page only. */
.home-hero h2,
.services-home-section h2,
.focus-areas .section-title h2,
.focus-areas h2,
.communication-section h2,
.communication-feature-cta h2,
.banner-band,
.testimonial-strip h2,
.final-cta h2 {
  color: inherit !important;
}

.focus-areas .section-title h2,
.focus-areas h2 {
  color: #ff2e8a !important;
  -webkit-text-fill-color: #ff2e8a !important;
}

.communication-section h2,
.communication-feature-cta h2,
.feature-cta.communication-feature-cta h2,
.final-cta h2 {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
}

/* Hero scales with browser width instead of staying oversized. */
:root {
  --home-hero-height-fluid: clamp(540px, 56.25vw, 1080px);
}

.home-hero {
  height: var(--home-hero-height-fluid) !important;
  min-height: var(--home-hero-height-fluid) !important;
  max-height: 1080px !important;
  padding: 0 !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.home-hero .home-hero-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 0 !important;
}

.home-hero .hero-main-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Move hero words farther left while keeping them vertically centered. */
.home-hero .home-hero-grid {
  width: min(100% - 3rem, 1440px) !important;
  max-width: 1440px !important;
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  position: relative !important;
  z-index: 2 !important;
}

.home-hero .home-hero-text {
  text-align: left !important;
  max-width: 620px !important;
  margin-left: 0 !important;
  transform: translateX(clamp(-80px, -3vw, -24px)) !important;
}

.home-hero .lede,
.home-hero-cta,
.make-impact-line {
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-content: flex-start !important;
}

/* Communication section: full-bleed background with content sizing inside. */
.communication-section {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden !important;
}

.communication-section-inner {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.communication-feature-cta {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
}

.communication-feature-cta > div:first-child {
  max-width: 720px !important;
  margin-left: clamp(1.5rem, 8vw, 10rem) !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Communication heading: Communication on its own line, That in heading font,
   Actually Works in Playlist Script. */
.communication-feature-cta h2 {
  white-space: normal !important;
  line-height: .96 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(3.35rem, 5vw, 6rem) !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
}

.communication-feature-cta h2 .communication-heading-main,
.communication-feature-cta h2 .communication-heading-that {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.communication-feature-cta h2 .script {
  display: inline !important;
  white-space: nowrap !important;
  font-family: var(--font-script) !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  background: none !important;
}

@media (max-width: 1200px) {
  :root {
    --home-hero-height-fluid: clamp(500px, 56.25vw, 820px);
  }

  .home-hero .home-hero-text {
    transform: none !important;
    max-width: 560px !important;
  }

  .communication-feature-cta > div:first-child {
    margin-left: clamp(1.5rem, 5vw, 4rem) !important;
  }
}

@media (max-width: 980px) {
  body,
  .site-header,
  .site-footer,
  main,
  main > section,
  .home-hero,
  .quote-section,
  .services-home-section,
  .communication-section,
  .focus-areas,
  .banner-band,
  .testimonial-strip,
  .final-cta {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .home-hero .home-hero-image {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
  }

  .communication-feature-cta {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .communication-feature-cta > div:first-child {
    margin-left: 0 !important;
  }
}

@media (max-width: 720px) {
  :root {
    --home-hero-height-fluid: clamp(440px, 95vw, 620px);
  }

  .home-hero .home-hero-grid {
    width: min(100% - 2rem, 100%) !important;
  }

  .home-hero .home-hero-text {
    max-width: 100% !important;
    text-align: left !important;
  }

  .communication-feature-cta h2 {
    font-size: clamp(2.45rem, 10vw, 3.6rem) !important;
  }
}

@media (max-width: 480px) {
  :root {
    --home-hero-height-fluid: clamp(420px, 105vw, 560px);
  }
}

/* =============================================================
   FINAL PATCH — make the home “MAXIMIZING YOUR COMMUNICATION POTENTIAL” section white
   ============================================================= */
.banner-band {
  background: #ffffff !important;
  background-image: none !important;
  color: #ff2e8a !important;
  animation: none !important;
}

.banner-band::before,
.banner-band::after {
  display: none !important;
  content: none !important;
}


/* =========================================================
   SERVICES PAGE — CAREER COACHING ADDITIONS
========================================================= */

.services-page .career-coaching-hero,
.services-page .career-coaching-details {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.services-page .career-coaching-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #ffffff;
  isolation: isolate;
}

.services-page .career-coaching-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.services-page .career-coaching-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.services-page .career-script {
  margin: 0 0 .2rem;
  color: #ff2e8a;
  font-family: "Playlist Script", "Sacramento", cursive;
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  line-height: .9;
  font-weight: 400;
}

.services-page .career-coaching-hero h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  line-height: 1.05;
  max-width: 790px;
  margin: 0 0 1.25rem;
}

.services-page .career-suitcase {
  width: clamp(96px, 12vw, 170px);
  height: auto;
  object-fit: contain;
  margin-top: .5rem;
}

.services-page .career-coaching-details {
  background: #ffffff;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.services-page .career-coaching-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.services-page .career-coaching-left h2 {
  color: var(--teal);
  font-size: clamp(2rem, 3.25vw, 3.4rem);
  line-height: 1.12;
  max-width: 720px;
  margin-bottom: 2rem;
}

.services-page .career-check-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.services-page .career-check-list li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.5;
}

.services-page .career-check-list img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 28px;
  margin-top: .08rem;
}

.services-page .career-learn-more {
  min-width: 180px;
  color: #ffffff !important;
}

.services-page .coaching-packages-box {
  border: 3px solid #ff2e8a;
  border-radius: 24px;
  padding: clamp(2rem, 3vw, 2.8rem);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(20, 22, 58, .12);
}

.services-page .coaching-packages-box h3 {
  color: var(--teal);
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  line-height: 1.1;
  margin: 0 0 2.5rem;
}

.services-page .package-list {
  display: grid;
  gap: 1.6rem;
  margin-bottom: 2.5rem;
}

.services-page .package-item p {
  margin: 0;
}

.services-page .package-name {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.35;
}

.services-page .package-name img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  flex: 0 0 25px;
  margin-top: .08rem;
}

.services-page .package-name span,
.services-page .package-price span {
  font-weight: 600;
}

.services-page .package-price {
  color: var(--gray-700);
  font-size: 1rem;
  margin: .35rem 0 0 2.5rem !important;
  line-height: 1.45;
}

.services-page .package-note {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Remove the floating final CTA art if any legacy markup remains */
.services-page .services-final-cta .neon-mic {
  display: none !important;
}

@media (max-width: 980px) {
  .services-page .career-coaching-hero,
  .services-page .career-coaching-hero-content {
    min-height: 460px;
  }

  .services-page .career-coaching-grid {
    grid-template-columns: 1fr;
  }

  .services-page .coaching-packages-box {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .services-page .career-coaching-hero,
  .services-page .career-coaching-hero-content {
    min-height: 390px;
  }

  .services-page .career-script {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .services-page .career-coaching-hero h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .services-page .career-check-list li,
  .services-page .package-note {
    font-size: .98rem;
  }
}


/* =========================================================
   SERVICES PAGE — CAREER COACHING REFINEMENTS
========================================================= */

/* Make "Empowering Your Career Change." black and paragraph-like/smaller */
.services-page .career-coaching-hero h2 {
  color: #14163a !important;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem) !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  max-width: 620px !important;
  margin: 0 0 1.15rem !important;
}

/* Keep the left heading split naturally after "more than" */
.services-page .career-coaching-left h2 {
  color: var(--teal) !important;
  font-size: clamp(1.95rem, 2.8vw, 3rem) !important;
  line-height: 1.14 !important;
  max-width: 850px !important;
}

.services-page .career-heading-line {
  white-space: nowrap !important;
}

/* Make check and star icons 50% larger */
.services-page .career-check-list img {
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;
  margin-top: -.1rem !important;
}

.services-page .package-name img {
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px !important;
  margin-top: -.18rem !important;
}

/* Keep Coaching Packages on one line */
.services-page .coaching-packages-box h3 {
  white-space: nowrap !important;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem) !important;
}

/* Keep key package names on one line on desktop */
.services-page .package-name {
  white-space: nowrap !important;
  font-size: clamp(.95rem, 1.05vw, 1.08rem) !important;
}

.services-page .package-name span {
  white-space: nowrap !important;
}

/* Give the box a little more room for one-line package names */
.services-page .career-coaching-grid {
  grid-template-columns: minmax(0, .95fr) minmax(470px, 540px) !important;
  gap: clamp(2rem, 4vw, 4.25rem) !important;
}

.services-page .coaching-packages-box {
  padding: clamp(2rem, 2.6vw, 2.65rem) !important;
}

@media (max-width: 1100px) {
  .services-page .career-heading-line,
  .services-page .package-name,
  .services-page .coaching-packages-box h3 {
    white-space: normal !important;
  }

  .services-page .career-coaching-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .services-page .career-check-list img {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  .services-page .package-name img {
    width: 32px !important;
    height: 32px !important;
    flex-basis: 32px !important;
  }
}


/* =========================================================
   SERVICES PAGE — FINAL CAREER/CTA ALIGNMENT TWEAKS
========================================================= */

/* Match these section titles to the Investment heading size */
.services-page .career-coaching-left h2,
.services-page .coaching-packages-box h3 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
  line-height: 1.15 !important;
}

/* Keep the desired first-line break while using the Investment-size heading */
.services-page .career-heading-line {
  white-space: nowrap !important;
}

/* Make Career Coaching and Empowering lines smaller overall */
.services-page .career-script {
  font-size: clamp(3rem, 6vw, 5.85rem) !important;
  line-height: .9 !important;
  margin-bottom: .25rem !important;
  text-align: left !important;
}

.services-page .career-coaching-hero h2 {
  font-size: clamp(1.25rem, 1.75vw, 1.85rem) !important;
  line-height: 1.35 !important;
  max-width: 560px !important;
  text-align: left !important;
}

/* Align the hero text block neatly on the same left edge */
.services-page .career-coaching-hero-content {
  align-items: flex-start !important;
  text-align: left !important;
}

.services-page .career-script,
.services-page .career-coaching-hero h2,
.services-page .career-suitcase {
  margin-left: 0 !important;
}

/* Ready to Get Started: button on the right side */
.services-page .services-final-cta .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 2rem !important;
}

.services-page .services-final-cta .container > h2,
.services-page .services-final-cta .container > p {
  margin-right: auto !important;
}

.services-page .services-final-cta .container > h2 {
  margin-bottom: .25rem !important;
}

.services-page .services-final-cta .container > p {
  max-width: 520px !important;
  margin-bottom: 0 !important;
}

.services-page .services-final-cta .btn {
  margin-left: auto !important;
  flex: 0 0 auto !important;
}

/* Keep the CTA text together as a left block even though the original HTML has h2/p as siblings */
.services-page .services-final-cta .container {
  flex-wrap: wrap !important;
}

.services-page .services-final-cta .container h2 {
  flex-basis: 100% !important;
}

.services-page .services-final-cta .container p {
  flex: 1 1 520px !important;
}

@media (max-width: 1100px) {
  .services-page .career-heading-line {
    white-space: normal !important;
  }
}

@media (max-width: 720px) {
  .services-page .services-final-cta .container {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }

  .services-page .services-final-cta .container h2,
  .services-page .services-final-cta .container p,
  .services-page .services-final-cta .btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .services-page .services-final-cta .container p {
    flex: 0 1 auto !important;
  }
}


/* =========================================================
   SERVICES PAGE — FINAL REQUESTED CTA + FONT TWEAKS
========================================================= */

/* Make the teal headings smaller */
.services-page .career-coaching-left h2,
.services-page .coaching-packages-box h3 {
  font-size: clamp(1.45rem, 2.45vw, 2.15rem) !important;
  line-height: 1.18 !important;
}

/* Preserve the intended line break for the left teal heading on desktop */
.services-page .career-heading-line {
  white-space: nowrap !important;
}

/* Final CTA: larger "Let's work together" / body text */
.services-page .services-final-cta {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 !important;
}

.services-page .services-final-cta .container {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-areas:
    "title button"
    "text button" !important;
  align-items: center !important;
  column-gap: clamp(2rem, 5vw, 5rem) !important;
  row-gap: .75rem !important;
}

.services-page .services-final-cta h2 {
  grid-area: title !important;
  color: #ffffff !important;
  font-size: clamp(2.5rem, 5vw, 4.75rem) !important;
  line-height: 1.02 !important;
  margin: 0 !important;
}

.services-page .services-final-cta h2 .get-started-script {
  font-family: "Playlist Script", "Sacramento", cursive !important;
  font-weight: 400 !important;
  font-size: 1.18em !important;
  line-height: .8 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: currentColor !important;
  background: none !important;
}

.services-page .services-final-cta p {
  grid-area: text !important;
  color: rgba(255, 255, 255, .96) !important;
  font-size: clamp(1.25rem, 2.2vw, 2rem) !important;
  line-height: 1.35 !important;
  max-width: 760px !important;
  margin: 0 !important;
}

/* Button aligned to the middle/right of the final CTA */
.services-page .services-final-cta .btn {
  grid-area: button !important;
  align-self: center !important;
  justify-self: end !important;
  min-width: 240px !important;
  padding: 1.15rem 2rem !important;
  font-size: 1rem !important;
}

/* Remove previous flex CTA rules that may fight this layout */
.services-page .services-final-cta .container > h2,
.services-page .services-final-cta .container > p {
  margin-right: 0 !important;
  flex-basis: auto !important;
  flex: none !important;
}

@media (max-width: 1100px) {
  .services-page .career-heading-line {
    white-space: normal !important;
  }
}

@media (max-width: 820px) {
  .services-page .services-final-cta .container {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "text"
      "button" !important;
    text-align: center !important;
  }

  .services-page .services-final-cta .btn {
    justify-self: center !important;
    margin-top: 1rem !important;
  }

  .services-page .services-final-cta p {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-page .gallery-hero,
.gallery-page .gallery-filter-section,
.gallery-page .gallery-grid-section,
.gallery-page .gallery-create-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.gallery-page .gallery-hero {
  min-height: clamp(1365px, 52vw, 461px);
  background-image: url("../images/gallery/gallery.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gallery-page .gallery-hero-content {
  min-height: clamp(520px, 52vw, 760px);
  display: flex;
  align-items: center;
}

.gallery-page .gallery-hero-copy {
  width: min(100%, 760px);
  text-align: left;
}

.gallery-page .gallery-title {
  margin: 0 0 .55rem;
  line-height: .9;
}

.gallery-page .gallery-title-word {
  position: relative;
  display: inline-block;
  padding-right: .35em;
  padding-bottom: .14em;
  color: #ff2e8a;
  font-family: "Playlist Script", "Sacramento", cursive;
  font-size: clamp(5rem, 11vw, 10.5rem);
  font-weight: 400;
  letter-spacing: 0;
}

.gallery-page .gallery-title-word::after {
  content: "";
  position: absolute;
  left: .03em;
  right: .25em;
  bottom: -.04em;
  height: .22em;
  background: url("../images/gallery/pink-underline.png") left center / 100% 100% no-repeat;
  transform: scaleX(0);
  transform-origin: left center;
  animation: galleryUnderlineDraw 1.15s ease-out .35s forwards;
}

.gallery-page .gallery-sparkle {
  position: absolute;
  width: clamp(42px, 5vw, 78px);
  height: auto;
  right: -.25em;
  top: -.16em;
  animation: gallerySparkleFloat 4.5s ease-in-out infinite;
}

@keyframes galleryUnderlineDraw {
  to { transform: scaleX(1); }
}

@keyframes gallerySparkleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-8px) rotate(8deg) scale(1.04); }
}

.gallery-page .gallery-hero-copy h2 {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4.15rem);
  line-height: 1.1;
  margin: 0 0 .8rem;
}

.gallery-page .gallery-hero-copy p {
  color: var(--navy);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
  max-width: 660px;
  margin: 0 0 .85rem;
}

.gallery-page .gallery-purple-underline {
  width: min(100%, 520px);
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
}

.gallery-page .gallery-filter-section {
  background: #ffffff;
  padding: 2.4rem 0 1.4rem;
}

.gallery-page .gallery-filter-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.gallery-page .gallery-filter-btn {
  appearance: none;
  border: 2px solid var(--teal);
  background: #ffffff;
  color: var(--teal);
  border-radius: 12px;
  padding: .85rem 1.25rem;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.gallery-page .gallery-filter-btn:hover,
.gallery-page .gallery-filter-btn.active {
  background: #ff2e8a;
  border-color: #ff2e8a;
  color: #ffffff;
  transform: translateY(-2px);
}

.gallery-page .gallery-grid-section {
  background: #ffffff;
  padding: 2rem 0 clamp(4.5rem, 7vw, 6.5rem);
}

.gallery-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.5rem);
}

.gallery-page .gallery-item {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 14px 32px rgba(20, 22, 58, .12);
  min-height: 260px;
  aspect-ratio: 4 / 3;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), opacity var(--transition), scale var(--transition);
}

.gallery-page .gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(20, 22, 58, .20);
}

.gallery-page .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-page .gallery-item.is-hidden {
  display: none;
}

.gallery-page .gallery-create-section {
  min-height: clamp(420px, 34vw, 560px);
  background-image: url("../images/gallery/create.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.gallery-page .gallery-create-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.gallery-page .gallery-create-mic img {
  width: clamp(118px, 13vw, 210px);
  height: auto;
  object-fit: contain;
  display: block;
}

.gallery-page .gallery-create-copy {
  text-align: left;
}

.gallery-page .gallery-create-copy h2 {
  color: #ffffff;
  font-family: "Playlist Script", "Sacramento", cursive;
  font-weight: 400;
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  line-height: .88;
  margin: 0 0 .7rem;
}

.gallery-page .gallery-create-copy p {
  color: rgba(255,255,255,.96);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
  max-width: 640px;
  margin: 0;
}

.gallery-page .gallery-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: #ffffff;
  color: #ff2e8a;
  border: 2px solid #ffffff;
  border-radius: 12px;
  padding: 1.05rem 1.55rem;
  min-width: 170px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 18px 34px rgba(20,22,58,.14);
}

.gallery-page .gallery-book-btn:hover {
  color: #ffffff;
  background: #ff2e8a;
  border-color: #ff2e8a;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .gallery-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-page .gallery-create-grid {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .gallery-page .gallery-create-action {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .gallery-page .gallery-hero,
  .gallery-page .gallery-hero-content {
    min-height: 470px;
  }

  .gallery-page .gallery-title-word {
    font-size: clamp(4.2rem, 22vw, 7rem);
  }

  .gallery-page .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page .gallery-create-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gallery-page .gallery-create-mic {
    display: flex;
    justify-content: center;
  }

  .gallery-page .gallery-create-copy {
    text-align: center;
  }

  .gallery-page .gallery-create-action {
    grid-column: auto;
    display: flex;
    justify-content: center;
  }
}


/* =========================================================
   GLOBAL NAV + BUTTON FIXES
   Adds Gallery/Contact nav support and fixes Book Wendy padding/color
========================================================= */

.site-header,
.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.nav-list .btn,
.nav-list .btn-primary,
.site-header .btn-primary,
.site-header .btn-sm {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
  white-space: nowrap !important;
  min-width: max-content !important;
}

.btn {
  border-radius: 12px !important;
}

/* =========================================================
   SERVICES PAGE FIX
   Move Coaching Packages farther right and prevent overlap
========================================================= */

.services-page .career-coaching-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 560px) !important;
  gap: clamp(3rem, 6vw, 6.5rem) !important;
  align-items: start !important;
}

.services-page .career-coaching-left {
  min-width: 0 !important;
  max-width: 760px !important;
}

.services-page .coaching-packages-box {
  justify-self: end !important;
  width: 100% !important;
  max-width: 560px !important;
  margin-left: auto !important;
}

@media (max-width: 1100px) {
  .services-page .career-coaching-grid {
    grid-template-columns: 1fr !important;
  }

  .services-page .coaching-packages-box {
    justify-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* =========================================================
   PROGRAMS PAGE CLEAN RESET/FIX
   Scoped override so Programs does not inherit broken global page styles
========================================================= */

.programs-page main {
  overflow: hidden;
}

.programs-page .programs-hero-custom,
.programs-page .popular-programs,
.programs-page .programs-talk-section,
.programs-page .programs-custom-solutions {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden !important;
}

.programs-page .programs-hero-custom {
  position: relative !important;
  min-height: 760px !important;
  isolation: isolate !important;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.16), transparent 26%),
    radial-gradient(circle at 82% 80%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(125deg, #ff8a00 0%, #ff5f5f 18%, #ff2e8a 43%, #d23cae 68%, #7b2cbf 100%) !important;
  background-size: 180% 180% !important;
  animation: programsColorRollFixed 18s ease-in-out infinite !important;
}

@keyframes programsColorRollFixed {
  0% { background-position: 0% 45%; }
  33% { background-position: 70% 30%; }
  66% { background-position: 100% 85%; }
  100% { background-position: 0% 45%; }
}

.programs-page .programs-hero-art {
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: min(48vw, 780px) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.programs-page .programs-hero-art img {
  display: block !important;
  width: 100% !important;
  max-height: 740px !important;
  object-fit: contain !important;
  object-position: left bottom !important;
  filter: drop-shadow(0 26px 44px rgba(20,22,58,.22)) !important;
}

.programs-page .programs-hero-inner {
  position: relative !important;
  z-index: 2 !important;
  min-height: 760px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.programs-page .programs-hero-copy {
  width: min(100%, 590px) !important;
  color: #ffffff !important;
  text-align: left !important;
  margin-left: auto !important;
  padding: 4rem 0 !important;
}

.programs-page .programs-hero-copy h1 {
  color: #ffffff !important;
  font-size: clamp(3.4rem, 5.6vw, 6rem) !important;
  line-height: .98 !important;
  letter-spacing: -.035em !important;
  margin-bottom: 1.3rem !important;
}

.programs-page .make-impact-line {
  white-space: nowrap !important;
}

.programs-page .impact-script {
  position: relative !important;
  display: inline-block !important;
  padding-bottom: .18em !important;
  margin-left: .08em !important;
  font-family: "Playlist Script", "Sacramento", cursive !important;
  font-size: 1.18em !important;
  font-weight: 400 !important;
  line-height: .85 !important;
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.programs-page .impact-script::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -.22em !important;
  width: 100% !important;
  height: .38em !important;
  background: url("../images/programs/underline.png") left bottom / 100% 100% no-repeat !important;
  transform: scaleX(0);
  transform-origin: left center;
  animation: programsUnderlineDrawFixed 1.1s ease-out .6s forwards !important;
}

@keyframes programsUnderlineDrawFixed {
  to { transform: scaleX(1); }
}

.programs-page .programs-kicker {
  color: #ffffff !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.25rem, 1.9vw, 1.75rem) !important;
  font-weight: 800 !important;
  margin: 0 0 1rem !important;
}

.programs-page .programs-lede {
  color: rgba(255,255,255,.96) !important;
  font-size: clamp(1rem, 1.2vw, 1.18rem) !important;
  line-height: 1.7 !important;
  max-width: 560px !important;
}

.programs-page .popular-programs {
  background: #ffffff !important;
  padding: clamp(4rem, 6vw, 6.25rem) 0 !important;
}

.programs-page .popular-programs .section-title {
  text-align: center !important;
  margin-bottom: 3rem !important;
}

.programs-page .popular-programs-title {
  color: #ff2e8a !important;
  font-size: clamp(2.4rem, 4vw, 4.1rem) !important;
  margin-bottom: .75rem !important;
}

.programs-page .popular-programs-intro {
  color: var(--gray-700) !important;
  max-width: 720px !important;
  margin: 0 auto !important;
}

.programs-page .popular-programs-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(1.25rem, 1.8vw, 1.8rem) !important;
}

.programs-page .program-card {
  min-height: 390px !important;
  padding: 2.15rem 1.5rem 1.6rem !important;
  background: #ffffff !important;
  border: 2px solid #d9dce6 !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 28px rgba(20, 22, 58, .10) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow) !important;
}

.programs-page .program-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 22px 46px rgba(20, 22, 58, .18) !important;
  border-color: #c7cad5 !important;
}

.programs-page .program-card-icon {
  width: 112px !important;
  height: 112px !important;
  margin: 0 auto 1.35rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.programs-page .program-card-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.programs-page .program-card h3 {
  color: var(--navy) !important;
  font-size: clamp(1.18rem, 1.5vw, 1.45rem) !important;
  margin-bottom: .7rem !important;
}

.programs-page .program-card p {
  color: var(--gray-700) !important;
  line-height: 1.58 !important;
  margin: 0 0 1.35rem !important;
  flex-grow: 1 !important;
}

.programs-page .program-card .btn {
  min-width: 148px !important;
  margin-top: auto !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: #ff2e8a !important;
  border-color: #ff2e8a !important;
}

.programs-page .programs-talk-section {
  position: relative !important;
  min-height: 360px !important;
  padding: clamp(2.75rem, 4vw, 4rem) 0 !important;
  background-color: #56baaf !important;
  background-image: none !important;
  display: flex !important;
  align-items: center !important;
  margin-bottom: 0 !important;
}

.programs-page .programs-talk-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  pointer-events: none !important;
}

.programs-page .programs-talk-section::after {
  display: none !important;
  content: none !important;
}

.programs-page .programs-talk-content {
  position: relative !important;
  z-index: 3 !important;
  text-align: center !important;
}

.programs-page .programs-talk-section h2 {
  color: #ffffff !important;
  white-space: nowrap !important;
  font-size: clamp(2.35rem, 3.7vw, 3.9rem) !important;
  line-height: 1.05 !important;
  margin-bottom: .65rem !important;
}

.programs-page .programs-talk-section p {
  color: rgba(255,255,255,.96) !important;
  margin-bottom: 1.45rem !important;
}

.programs-page .programs-talk-section .btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  min-width: 180px !important;
}

.programs-page .programs-custom-solutions {
  position: relative !important;
  min-height: 620px !important;
  background: #ffffff !important;
  padding: 0 0 clamp(4.5rem, 7vw, 6.5rem) !important;
  display: flex !important;
  align-items: center !important;
  margin-top: 0 !important;
}

.programs-page .programs-custom-grid {
  min-height: 620px !important;
  display: grid !important;
  grid-template-columns: minmax(420px, .95fr) minmax(360px, 1.05fr) !important;
  gap: clamp(2rem, 4vw, 4rem) !important;
  align-items: center !important;
  padding-top: 0 !important;
}

.programs-page .programs-custom-image {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: min(48vw, 760px) !important;
  height: 100% !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.programs-page .programs-custom-image img {
  height: 100% !important;
  width: 100% !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: left top !important;
}

.programs-page .programs-custom-copy {
  position: relative !important;
  z-index: 2 !important;
  grid-column: 2 !important;
  text-align: left !important;
}

.programs-page .programs-custom-copy h2 {
  color: #ff2e8a !important;
  font-size: clamp(2.3rem, 4vw, 3.7rem) !important;
  margin-bottom: 1rem !important;
}

.programs-page .programs-custom-copy p {
  color: var(--gray-700) !important;
  font-size: clamp(1rem, 1.2vw, 1.12rem) !important;
  line-height: 1.72 !important;
  max-width: 590px !important;
  margin-bottom: 1.25rem !important;
}

.programs-page .programs-check-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  gap: .95rem !important;
}

.programs-page .programs-check-list li {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  color: var(--navy) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1rem, 1.2vw, 1.15rem) !important;
  font-weight: 700 !important;
}

.programs-page .programs-check-list img {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
  flex: 0 0 34px !important;
}

@media (max-width: 1100px) {
  .programs-page .programs-hero-art {
    width: min(44vw, 600px) !important;
  }
}

@media (max-width: 980px) {
  .programs-page .programs-hero-custom,
  .programs-page .programs-hero-inner {
    min-height: auto !important;
  }

  .programs-page .programs-hero-art {
    position: relative !important;
    width: min(100%, 420px) !important;
    margin: 0 auto !important;
    padding-top: 3rem !important;
  }

  .programs-page .programs-hero-art img {
    max-height: 460px !important;
    margin: 0 auto !important;
  }

  .programs-page .programs-hero-inner {
    justify-content: center !important;
  }

  .programs-page .programs-hero-copy {
    margin: 0 auto !important;
    text-align: center !important;
    width: min(100%, 720px) !important;
    padding: 1rem 0 4rem !important;
  }

  .programs-page .programs-lede {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .programs-page .popular-programs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .programs-page .programs-talk-section h2 {
    white-space: normal !important;
  }

  .programs-page .programs-custom-solutions,
  .programs-page .programs-custom-grid {
    min-height: auto !important;
  }

  .programs-page .programs-custom-grid {
    grid-template-columns: 1fr !important;
  }

  .programs-page .programs-custom-image {
    position: relative !important;
    width: min(100%, 520px) !important;
    height: auto !important;
    margin: 0 auto 2rem !important;
    grid-column: auto !important;
  }

  .programs-page .programs-custom-image img {
    height: auto !important;
    width: min(100%, 520px) !important;
    margin: 0 auto !important;
  }

  .programs-page .programs-custom-copy {
    grid-column: auto !important;
    text-align: center !important;
  }

  .programs-page .programs-check-list {
    max-width: 430px !important;
    margin: 0 auto !important;
    text-align: left !important;
  }
}

@media (max-width: 720px) {
  .programs-page .popular-programs-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   RETRY PATCH — HOME / ABOUT / SERVICES ONLY
   This block is intentionally scoped and placed at the end.
========================================================= */

/* ---------- HOME MAXIMIZE SPLITTER ---------- */
.home-page .home-maximize-section {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  min-height: clamp(150px, 14vw, 240px) !important;
  padding: clamp(2.2rem, 4vw, 4rem) 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(
    115deg,
    #ff2e8a 0%,
    #ff8a00 28%,
    #ffd400 48%,
    #ff8a00 62%,
    #ff2e8a 78%,
    #7b2cbf 100%
  ) !important;
  background-size: 280% 280% !important;
  animation: homeMaximizeRollRetry 16s ease-in-out infinite !important;
  overflow: hidden !important;
  position: relative !important;
  z-index: 1 !important;
}

@keyframes homeMaximizeRollRetry {
  0% { background-position: 0% 50%; }
  33% { background-position: 65% 35%; }
  66% { background-position: 100% 70%; }
  100% { background-position: 0% 50%; }
}

.home-page .home-maximize-section h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: var(--font-display, "Montserrat", sans-serif) !important;
  font-size: clamp(2.25rem, 4.8vw, 5.35rem) !important;
  font-weight: 900 !important;
  line-height: 1.02 !important;
  text-align: center !important;
  margin: 0 !important;
  letter-spacing: .015em !important;
  text-transform: uppercase !important;
}

/* Also catch older versions/classes of this same splitter in case the HTML already has one */
.home-page .maximizing-section,
.home-page .maximize-section,
.home-page .communication-potential-section,
.home-page .marquee-section,
.home-page .home-marquee-section {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  min-height: clamp(150px, 14vw, 240px) !important;
  padding: clamp(2.2rem, 4vw, 4rem) 0 !important;
  background: linear-gradient(115deg, #ff2e8a 0%, #ff8a00 28%, #ffd400 48%, #ff8a00 62%, #ff2e8a 78%, #7b2cbf 100%) !important;
  background-size: 280% 280% !important;
  animation: homeMaximizeRollRetry 16s ease-in-out infinite !important;
}

.home-page .maximizing-section h2,
.home-page .maximize-section h2,
.home-page .communication-potential-section h2,
.home-page .marquee-section h2,
.home-page .home-marquee-section h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: var(--font-display, "Montserrat", sans-serif) !important;
  font-size: clamp(2.25rem, 4.8vw, 5.35rem) !important;
  font-weight: 900 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

/* ---------- ABOUT HERO ALIGNMENT ---------- */
/* Move top About title/blurb inward so it aligns more with the body paragraph underneath */
.about-page .about-hero-copy,
.about-page .about-hero-grid > div:first-child,
.about-page .about-hero-content,
.about-hero .about-hero-copy,
.about-hero .about-hero-grid > div:first-child {
  padding-left: clamp(2.5rem, 7vw, 7rem) !important;
}

/* ---------- ABOUT MISSION ---------- */
.about-page .about-mission-section,
.about-page .section:has(.about-mission-card),
.about-page .section:has(.mission-card) {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden !important;
}

.about-page .about-mission-card,
.about-page .mission-card.about-mission-card,
.about-page .mission-card {
  margin-left: 0 !important;
  margin-right: auto !important;
  width: min(1320px, 100vw) !important;
  max-width: none !important;
  transform: translateX(calc((1200px - 100vw) / 2)) !important;
  background: linear-gradient(
    120deg,
    #ff2e8a 0%,
    #ff8a00 26%,
    #ffd400 42%,
    #ff8a00 56%,
    #ff2e8a 73%,
    #7b2cbf 100%
  ) !important;
  background-size: 270% 270% !important;
  animation: aboutMissionRollRetry 15s ease-in-out infinite !important;
  display: flex !important;
  align-items: center !important;
}

@keyframes aboutMissionRollRetry {
  0% { background-position: 0% 50%; }
  33% { background-position: 70% 30%; }
  66% { background-position: 100% 75%; }
  100% { background-position: 0% 50%; }
}

/* Text begins 20px after the heart/icon */
.about-page .about-mission-card .mission-copy,
.about-page .mission-card.about-mission-card .mission-copy,
.about-page .mission-card > div:last-child {
  margin-left: 20px !important;
}

/* Force SPEAK UP script styling */
.about-page .about-mission-card .script,
.about-page .mission-card .script,
.about-page .speak-up-script {
  font-family: "Playlist Script", "Sacramento", cursive !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  letter-spacing: .02em !important;
}

/* What Drives Me pink */
.about-page .drives-section h2,
.about-page .what-drives-title,
.about-page .drives-title,
.about-page section.drives-section .section-title h2 {
  color: #ff2e8a !important;
  -webkit-text-fill-color: #ff2e8a !important;
}

/* ---------- SERVICES CAREER SECTION ---------- */
/* Smaller teal heading so it no longer sits behind/under Coaching Packages */
.services-page .career-coaching-left h2 {
  font-size: clamp(1.15rem, 1.65vw, 1.48rem) !important;
  line-height: 1.25 !important;
  max-width: 500px !important;
}

.services-page .career-heading-line {
  white-space: normal !important;
}

.services-page .career-coaching-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 560px) !important;
  gap: clamp(3rem, 7vw, 7rem) !important;
}

.services-page .coaching-packages-box {
  justify-self: end !important;
  margin-left: auto !important;
}

@media (max-width: 1100px) {
  .services-page .career-coaching-grid {
    grid-template-columns: 1fr !important;
  }

  .services-page .career-coaching-left h2 {
    max-width: 100% !important;
    font-size: clamp(1.35rem, 4vw, 2rem) !important;
  }
}

@media (max-width: 900px) {
  .about-page .about-hero-copy,
  .about-page .about-hero-grid > div:first-child,
  .about-page .about-hero-content,
  .about-hero .about-hero-copy,
  .about-hero .about-hero-grid > div:first-child {
    padding-left: 1.5rem !important;
  }

  .about-page .about-mission-card,
  .about-page .mission-card.about-mission-card,
  .about-page .mission-card {
    transform: none !important;
    width: 100% !important;
  }
}


/* =========================================================
   HOME MAXIMIZE FINAL PLACEMENT + SINGLE LINE
========================================================= */

/* Hide any older accidental pink maximize line/section variants */
.home-page .maximize-section:not(.home-maximize-final),
.home-page .maximizing-section:not(.home-maximize-final),
.home-page .communication-potential-section:not(.home-maximize-final),
.home-page .marquee-section:not(.home-maximize-final),
.home-page .home-marquee-section:not(.home-maximize-final) {
  display: none !important;
}

/* Correct splitter section */
.home-page .home-maximize-section.home-maximize-final {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  min-height: clamp(140px, 12vw, 210px) !important;
  padding: clamp(2rem, 3.5vw, 3.25rem) 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: linear-gradient(115deg, #ff2e8a 0%, #ff8a00 28%, #ffd400 48%, #ff8a00 62%, #ff2e8a 78%, #7b2cbf 100%) !important;
  background-size: 280% 280% !important;
  animation: homeMaximizeFinalRoll 16s ease-in-out infinite !important;
}

@keyframes homeMaximizeFinalRoll {
  0% { background-position: 0% 50%; }
  33% { background-position: 65% 35%; }
  66% { background-position: 100% 70%; }
  100% { background-position: 0% 50%; }
}

.home-page .home-maximize-section.home-maximize-final h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: var(--font-display, "Montserrat", sans-serif) !important;
  font-size: clamp(1.7rem, 3.4vw, 4.25rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: center !important;
  margin: 0 !important;
  letter-spacing: .01em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

@media (max-width: 720px) {
  .home-page .home-maximize-section.home-maximize-final h2 {
    white-space: normal !important;
    font-size: clamp(1.8rem, 9vw, 3rem) !important;
  }
}


/* =========================================================
   FINAL CLEANUP — HOME MAXIMIZE + ABOUT MISSION BLEED
========================================================= */

/* Permanently hide any old pink maximize/marquee versions */
.home-page .maximize-section:not(.home-maximize-final),
.home-page .maximizing-section:not(.home-maximize-final),
.home-page .communication-potential-section:not(.home-maximize-final),
.home-page .marquee-section:not(.home-maximize-final),
.home-page .home-marquee-section:not(.home-maximize-final),
.maximize-section:not(.home-maximize-final),
.maximizing-section:not(.home-maximize-final),
.communication-potential-section:not(.home-maximize-final),
.marquee-section:not(.home-maximize-final),
.home-marquee-section:not(.home-maximize-final) {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/* Correct white MAXIMIZING section: smaller and never running off page */
.home-page .home-maximize-section.home-maximize-final {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  min-height: clamp(112px, 10vw, 170px) !important;
  padding: clamp(1.45rem, 3vw, 2.5rem) 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(115deg, #ff2e8a 0%, #ff8a00 28%, #ffd400 48%, #ff8a00 62%, #ff2e8a 78%, #7b2cbf 100%) !important;
  background-size: 200% 200% !important;
  animation: gradient-flow 15s ease infinite !important;
  overflow: hidden !important;
}

@keyframes homeMaximizeFinalRollClean {
  0% { background-position: 0% 50%; }
  33% { background-position: 65% 35%; }
  66% { background-position: 100% 70%; }
  100% { background-position: 0% 50%; }
}

.home-page .home-maximize-section.home-maximize-final .container {
  width: 100% !important;
  max-width: 1200px !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.home-page .home-maximize-section.home-maximize-final h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: var(--font-display, "Montserrat", sans-serif) !important;
  font-size: clamp(1.25rem, 2.75vw, 3.1rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  text-align: center !important;
  margin: 0 auto !important;
  letter-spacing: .01em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  max-width: 100% !important;
}

@media (max-width: 820px) {
  .home-page .home-maximize-section.home-maximize-final h2 {
    white-space: normal !important;
    font-size: clamp(1.45rem, 7vw, 2.55rem) !important;
  }
}

/* ABOUT: mission section truly touches/bleeds off the left browser edge */
.about-page .about-mission-section,
.about-page .section:has(.about-mission-card),
.about-page .section:has(.mission-card.about-mission-card) {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  overflow: hidden !important;
}

/* Remove container padding only for the mission section */
.about-page .about-mission-section > .container,
.about-page .section:has(.about-mission-card) > .container,
.about-page .section:has(.mission-card.about-mission-card) > .container {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
}

/* The mission card itself begins at x=0, no white gap */
.about-page .about-mission-card,
.about-page .mission-card.about-mission-card {
  margin-left: 0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  transform: none !important;
  width: min(100vw, 1320px) !important;
  max-width: none !important;
}

/* Keep mission text spaced after heart/icon */
.about-page .about-mission-card .mission-copy,
.about-page .mission-card.about-mission-card .mission-copy,
.about-page .about-mission-card > div:last-child,
.about-page .mission-card.about-mission-card > div:last-child {
  margin-left: 20px !important;
}


/* ABOUT MISSION — make SPEAK UP Playlist Script */
.about-page .speak-up-script,
.about-page .about-mission-card .speak-up-script,
.about-page .mission-card.about-mission-card .speak-up-script {
  font-family: "Playlist Script", "Sacramento", cursive !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: .02em !important;
  font-size: 1.28em !important;
  line-height: .85 !important;
  display: inline-block !important;
}


/* =========================================================
   GALLERY FINAL FIXES
========================================================= */

/* Keep final CTA title white and on one line on desktop */
.gallery-page .gallery-create-copy h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  white-space: nowrap !important;
  font-size: clamp(3rem, 5vw, 5.75rem) !important;
  line-height: .9 !important;
}

/* Let the text column have enough room for the one-line title */
.gallery-page .gallery-create-grid {
  grid-template-columns: auto minmax(540px, 1fr) auto !important;
}

.gallery-page .gallery-create-copy {
  min-width: 0 !important;
}

.gallery-page .gallery-create-copy p {
  max-width: 720px !important;
}

@media (max-width: 1100px) {
  .gallery-page .gallery-create-grid {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }

  .gallery-page .gallery-create-action {
    grid-column: 2 !important;
  }

  .gallery-page .gallery-create-copy h2 {
    white-space: normal !important;
  }
}

@media (max-width: 720px) {
  .gallery-page .gallery-create-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-page .gallery-create-action {
    grid-column: auto !important;
  }

  .gallery-page .gallery-create-copy h2 {
    white-space: normal !important;
    font-size: clamp(3rem, 16vw, 4.4rem) !important;
  }
}


/* =========================================================
   GALLERY CTA FINAL TWEAKS
========================================================= */

/* Center the Let's Create text and the blurb underneath */
.gallery-page .gallery-create-copy {
  text-align: center !important;
  justify-self: center !important;
}

.gallery-page .gallery-create-copy h2,
.gallery-page .gallery-create-copy p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Make the microphone smaller */
.gallery-page .gallery-create-mic img {
  width: clamp(72px, 8vw, 135px) !important;
}

/* Make the button arrow 3x bigger */
.gallery-page .gallery-book-btn span {
  font-size: 3em !important;
  line-height: .65 !important;
  display: inline-flex !important;
  align-items: center !important;
  margin-left: .15rem !important;
}

/* Keep the centered text balanced with smaller mic and larger arrow */
.gallery-page .gallery-create-grid {
  grid-template-columns: auto minmax(540px, 1fr) auto !important;
  align-items: center !important;
}

@media (max-width: 1100px) {
  .gallery-page .gallery-create-grid {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }
}

@media (max-width: 720px) {
  .gallery-page .gallery-create-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-page .gallery-create-mic img {
    width: clamp(70px, 22vw, 110px) !important;
  }
}


/* =========================================================
   BLOG + ARTICLE PAGE
========================================================= */

.blog-page .blog-hero,
.article-page .article-hero,
.blog-page .blog-listing-section,
.article-page .article-list-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.blog-page .blog-hero {
  min-height: clamp(420px, 42vw, 640px);
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.72) 45%, rgba(255,255,255,.18) 100%),
    url("../images/blog/blog-pic.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.blog-page .blog-hero .container,
.article-page .article-hero .container {
  text-align: left;
}

.blog-page .blog-hero .script,
.article-page .article-hero .script {
  color: #ff2e8a;
  font-family: "Playlist Script", "Sacramento", cursive;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: .85;
  display: inline-block;
  margin-bottom: .3rem;
}

.blog-page .blog-hero h1,
.article-page .article-hero h1 {
  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  margin-bottom: .8rem;
}

.blog-page .blog-hero p,
.article-page .article-hero p {
  color: var(--gray-700);
  max-width: 640px;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.blog-page .blog-listing-section {
  background: #ffffff;
}

.blog-page .read-more {
  color: #ff2e8a;
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration: none;
}

.blog-page .read-more:hover {
  color: var(--purple);
}

.article-page .article-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,46,138,.14), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(86,186,175,.12), transparent 30%),
    #ffffff;
}

.article-page .article-back-link {
  display: inline-block;
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 1rem;
}

.article-page .article-back-link:hover {
  color: #ff2e8a;
}

.article-page .article-list-section {
  background: #ffffff;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.article-page .article-container {
  max-width: 920px;
}

.article-page .article-post {
  scroll-margin-top: 110px;
  padding: clamp(2rem, 4vw, 3.25rem);
  background: #ffffff;
  border: 2px solid #e7e9f1;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(20,22,58,.10);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.article-page .article-post h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.1;
  margin: .45rem 0 1rem;
}

.article-page .article-post h3 {
  color: var(--teal);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin: 1.5rem 0 .5rem;
}

.article-page .article-post p {
  color: var(--gray-700);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.78;
  margin-bottom: 1rem;
}

.article-page .article-intro {
  color: var(--navy) !important;
  font-size: clamp(1.1rem, 1.45vw, 1.3rem) !important;
  font-weight: 600;
}

.site-header .btn-primary,
.nav-list .btn-primary,
.nav-list .btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
  white-space: nowrap !important;
}

@media (max-width: 720px) {
  .blog-page .blog-hero,
  .article-page .article-hero {
    min-height: 360px;
  }

  .article-page .article-post {
    padding: 1.5rem;
  }
}


/* =========================================================
   ABOUT + GALLERY REQUEST PATCH
========================================================= */

/* ABOUT: make purple underline match the size/scale of the pink underline */
.about-page .purple-underline,
.about-page .about-purple-underline,
.about-page img[src$="purple-underline.png"],
.gallery-page .gallery-purple-underline {
  width: min(100%, 620px) !important;
  max-width: 620px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}

/* GALLERY: make "Let's Create Impact Together" two sizes smaller */
.gallery-page .gallery-create-copy h2 {
  font-size: clamp(2.35rem, 4.1vw, 4.75rem) !important;
  line-height: .92 !important;
}

/* GALLERY: ensure all 12 photo tiles display cleanly */
.gallery-page .gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 1.6vw, 1.5rem) !important;
}

.gallery-page .gallery-item {
  display: block;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
}

.gallery-page .gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center;
  display: block !important;
  transition: transform var(--transition-slow);
}

.gallery-page .gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-page .gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  margin: 0;
  padding: 2.75rem 1.1rem 1rem;
  color: #ffffff;
  background: linear-gradient(transparent, rgba(20, 22, 58, .88));
  font-family: var(--font-display);
  font-size: clamp(.85rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(20, 22, 58, .4);
  pointer-events: none;
}

.gallery-page .gallery-item-booth img {
  object-position: center 55%;
}

.gallery-page .gallery-item-veterans img {
  object-position: center 38%;
}

.gallery-page .gallery-item-video-chat img {
  object-position: center 26%;
}

.gallery-page .gallery-item-microphone img {
  object-position: center 24%;
}

@media (max-width: 980px) {
  .gallery-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .gallery-page .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-page .gallery-create-copy h2 {
    font-size: clamp(2.6rem, 13vw, 3.8rem) !important;
  }
}


/* =========================================================
   BLOG HERO + INDIVIDUAL ARTICLE PAGES
========================================================= */

/* Blog title section: add breathing room so "From the blog" is not cut off */
.blog-page .blog-hero {
  min-height: clamp(460px, 44vw, 680px) !important;
  padding-top: clamp(5rem, 8vw, 8rem) !important;
  padding-bottom: clamp(4rem, 7vw, 6rem) !important;
  display: flex !important;
  align-items: center !important;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.72) 45%, rgba(255,255,255,.18) 100%),
    url("../images/blog/blog-pic.webp") !important;
  background-size: cover !important;
  background-position: center !important;
  overflow: visible !important;
}

.blog-page .blog-hero .script {
  display: inline-block !important;
  line-height: 1.05 !important;
  padding-top: .25em !important;
  padding-bottom: .08em !important;
  margin-top: .35rem !important;
  overflow: visible !important;
}

/* Individual article pages */
.article-page .single-article-hero,
.article-page .article-breadcrumb-section,
.article-page .single-article-content,
.article-page .article-bottom-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.article-page .single-article-hero {
  min-height: 300px;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.75rem);
  display: flex;
  align-items: flex-end;
  background: #ffffff;
  border-bottom: 1px solid #edf0f5;
}

.article-page.article-pink .single-article-hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(255,46,138,.16), transparent 30%),
    linear-gradient(135deg, rgba(255,46,138,.08), rgba(255,255,255,1) 55%);
}

.article-page.article-orange .single-article-hero {
  background:
    radial-gradient(circle at 12% 24%, rgba(255,138,0,.18), transparent 30%),
    linear-gradient(135deg, rgba(255,138,0,.10), rgba(255,255,255,1) 58%);
}

.article-page.article-purple .single-article-hero {
  background:
    radial-gradient(circle at 12% 24%, rgba(123,44,191,.16), transparent 30%),
    linear-gradient(135deg, rgba(123,44,191,.09), rgba(255,255,255,1) 58%);
}

.article-page .article-category-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  margin-bottom: .85rem;
}

.article-page.article-pink .article-category-label,
.article-page.article-pink .article-breadcrumbs a,
.article-page.article-pink .article-body h2 {
  color: #ff2e8a;
}

.article-page.article-orange .article-category-label,
.article-page.article-orange .article-breadcrumbs a,
.article-page.article-orange .article-body h2 {
  color: #ff8a00;
}

.article-page.article-purple .article-category-label,
.article-page.article-purple .article-breadcrumbs a,
.article-page.article-purple .article-body h2 {
  color: #7b2cbf;
}

.article-page .single-article-hero h1 {
  color: var(--navy);
  font-size: clamp(2.35rem, 4.6vw, 4.7rem);
  line-height: 1.05;
  max-width: 980px;
  margin: 0;
}

.article-page .article-breadcrumb-section {
  background: #ffffff;
  padding: 1.15rem 0;
  border-bottom: 1px solid #edf0f5;
}

.article-page .article-container {
  max-width: 920px;
}

.article-page .article-breadcrumbs {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--gray-500);
  font-size: .95rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.article-page .article-breadcrumbs a {
  text-decoration: none;
}

.article-page .single-article-content {
  background: #ffffff;
  padding: clamp(3.25rem, 6vw, 5.5rem) 0;
}

.article-page .article-author {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  margin: 0 0 .25rem;
}

.article-page .article-date {
  color: var(--gray-500);
  font-size: .98rem;
  margin: 0 0 2.2rem;
}

.article-page .article-body {
  color: var(--gray-700);
}

.article-page .article-intro {
  color: var(--navy);
  font-size: clamp(1.15rem, 1.55vw, 1.35rem);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.article-page .article-body h2 {
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  line-height: 1.22;
  margin: 2rem 0 .65rem;
}

.article-page .article-body p {
  font-size: clamp(1rem, 1.18vw, 1.1rem);
  line-height: 1.82;
  margin-bottom: 1.1rem;
}

.article-page .article-bottom-cta {
  background: linear-gradient(115deg, #ff2e8a 0%, #ff8a00 32%, #ffd400 50%, #ff8a00 66%, #ff2e8a 82%, #7b2cbf 100%);
  background-size: 260% 260%;
  animation: articleCtaRoll 16s ease-in-out infinite;
  color: #ffffff;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

@keyframes articleCtaRoll {
  0% { background-position: 0% 50%; }
  35% { background-position: 65% 35%; }
  70% { background-position: 100% 70%; }
  100% { background-position: 0% 50%; }
}

.article-page .article-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.article-page .article-bottom-cta h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.08;
  margin: 0 0 .6rem;
}

.article-page .article-bottom-cta p {
  color: rgba(255,255,255,.96);
  max-width: 720px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  margin: 0;
}

.article-page .article-bottom-cta .btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  min-width: 180px;
}

@media (max-width: 760px) {
  .article-page .article-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .article-page .article-bottom-cta .btn {
    justify-self: center;
  }
}


/* =========================================================
   GLOBAL NAVBAR / FOOTER / DOCUMENTS PAGE
========================================================= */

/* Same navbar sizing across every page */
.site-header {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.site-header .nav {
  min-height: 92px !important;
  height: 92px !important;
  display: flex !important;
  align-items: center !important;
}

.site-header .nav-logo img {
  max-height: 68px !important;
  width: auto !important;
}

.site-header .nav-list {
  align-items: center !important;
  gap: clamp(.55rem, 1.1vw, 1.1rem) !important;
}

.site-header .nav-list a:not(.btn) {
  font-size: .92rem !important;
  line-height: 1 !important;
  padding-top: .5rem !important;
  padding-bottom: .5rem !important;
}

.site-header .nav-list .btn,
.site-header .btn-primary,
.nav-list .btn-primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  padding: .78rem 1.25rem !important;
  min-width: max-content !important;
  white-space: nowrap !important;
  border-radius: 12px !important;
}

/* Footer with new Documents column */
.site-footer {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.site-footer .footer-grid {
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(135px, .75fr)) !important;
  gap: clamp(1.5rem, 3vw, 3rem) !important;
  align-items: start !important;
}

.site-footer .footer-bottom {
  text-align: center !important;
  justify-content: center !important;
  display: flex !important;
  flex-direction: column !important;
  gap: .25rem !important;
  padding-top: 1.75rem !important;
}

.site-footer .footer-bottom p,
.site-footer .footer-bottom span {
  text-align: center !important;
  width: 100% !important;
  margin: 0 auto !important;
  color: rgba(255,255,255,.85) !important;
  font-size: .92rem !important;
  line-height: 1.65 !important;
}

/* Documents page */
.documents-page .documents-hero,
.documents-page .documents-tabs-section,
.documents-page .documents-content-section {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.documents-page .documents-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,46,138,.14), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(123,44,191,.12), transparent 30%),
    #ffffff;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.documents-page .documents-hero .script {
  color: #ff2e8a;
  font-family: "Playlist Script", "Sacramento", cursive;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .9;
  display: inline-block;
}

.documents-page .documents-hero h1 {
  color: var(--navy);
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  line-height: 1.05;
  margin: .35rem 0 .8rem;
}

.documents-page .documents-hero p {
  color: var(--gray-700);
  max-width: 700px;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.documents-page .documents-tabs-section {
  background: #ffffff;
  border-top: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5;
  padding: 1.15rem 0;
  position: sticky;
  top: 92px;
  z-index: 20;
}

.documents-page .document-tabs {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

.documents-page .document-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  background: #ffffff;
  border: 2px solid var(--teal);
  border-radius: 12px;
  padding: .75rem 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration: none;
}

.documents-page .document-tabs a:hover {
  color: #ffffff;
  background: #ff2e8a;
  border-color: #ff2e8a;
}

.documents-page .documents-content-section {
  background: #ffffff;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.documents-page .documents-container {
  max-width: 980px;
}

.documents-page .legal-document {
  scroll-margin-top: 170px;
  padding: clamp(2rem, 4vw, 3rem);
  border: 2px solid #e7e9f1;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(20,22,58,.08);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.documents-page .legal-document h2 {
  color: #ff2e8a;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  margin-bottom: .35rem;
}

.documents-page .legal-updated {
  color: var(--gray-500);
  font-size: .95rem;
  margin-bottom: 1.75rem;
}

.documents-page .legal-document h3 {
  color: var(--purple);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  margin: 1.6rem 0 .45rem;
}

.documents-page .legal-document p {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: .85rem;
}

.documents-page .document-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.documents-page .document-resource-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--gray-100);
}

.documents-page .document-resource-card h3 {
  margin-top: 0;
}

.documents-page .document-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.documents-page .document-card-actions .btn {
  flex: 1 1 180px;
}

@media (max-width: 1100px) {
  .site-header .nav {
    height: auto !important;
    min-height: 82px !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .documents-page .document-card-grid {
    grid-template-columns: 1fr;
  }

  .documents-page .documents-tabs-section {
    top: 82px;
  }
}


/* =========================================================
   CONTACT PAGE PATCH — PRESERVE ORIGINAL CONTENT
   Image folder: images/contact/
========================================================= */

.contact-page .contact-title-hero,
.contact-page .contact-schedule-hero,
.contact-page .contact-form-section,
.contact-page .faq-section,
.contact-page #testimonials {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* New title section */
.contact-page .contact-title-hero {
  min-height: clamp(390px, 38vw, 560px);
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(20,22,58,.42) 0%, rgba(20,22,58,.20) 48%, rgba(20,22,58,.05) 100%),
    url("../images/contact/contact.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.contact-page .contact-title-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.contact-page .contact-title-copy {
  text-align: left;
}

.contact-page .contact-title-copy .script {
  color: #ffffff;
  font-family: "Playlist Script", "Sacramento", cursive;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: .9;
  display: inline-block;
  margin-bottom: .35rem;
}

.contact-page .contact-title-copy h1 {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.1;
  margin: 0;
  text-align: left;
}

.contact-page .contact-title-art img {
  width: clamp(150px, 18vw, 290px);
  height: auto;
  display: block;
}

/* Original Schedule section stays, but gets the new requested layout styling */
.contact-page .contact-schedule-hero {
  position: relative;
  background: #ffffff;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden;
}

.contact-page .contact-schedule-hero .contact-hero-grid {
  align-items: stretch !important;
}

.contact-page .schedule-with-wendy {
  white-space: nowrap !important;
  font-size: clamp(2rem, 3.2vw, 3.3rem) !important;
  line-height: 1.05 !important;
  margin-bottom: 1rem !important;
}

.contact-page .contact-schedule-hero p strong,
.contact-page .contact-form-section strong,
.contact-page .faq-answer strong {
  color: #ff2e8a !important;
}

.contact-page .speak-brand-image {
  display: block;
  width: min(100%, 520px);
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: right center;
  margin-left: auto;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Make the speak-brand image visually touch the title and next section */
.contact-page .contact-schedule-hero .contact-hero-grid > div:last-child {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

/* Bottom conversation section: preserve existing form/details */
.contact-page .contact-form-section {
  position: relative;
  overflow: hidden;
}

.contact-page .conversation-heading {
  line-height: 1.02 !important;
}

.contact-page .conversation-heading .sans {
  color: #111111 !important;
  font-family: var(--font-display, "Montserrat", sans-serif) !important;
  font-weight: 800 !important;
  font-size: clamp(1.8rem, 3vw, 3rem) !important;
}

.contact-page .conversation-heading .script {
  color: #ff2e8a !important;
  font-family: "Playlist Script", "Sacramento", cursive !important;
  font-weight: 400 !important;
  font-size: clamp(3.2rem, 6vw, 5.8rem) !important;
  line-height: .85 !important;
}

.contact-page .contact-chat-bubble {
  position: absolute;
  right: clamp(1.5rem, 7vw, 7rem);
  top: clamp(2rem, 6vw, 5rem);
  width: clamp(90px, 10vw, 160px);
  height: auto;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
  animation: contactBubbleFloat 5s ease-in-out infinite;
}

@keyframes contactBubbleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

/* Footer/nav consistency */
.contact-page .site-header .nav {
  min-height: 92px !important;
  height: 92px !important;
}

.contact-page .site-header .nav-list .btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

/* New Documents footer column support */
.contact-page .site-footer .footer-grid {
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(135px, .75fr)) !important;
}

.contact-page .site-footer .footer-bottom {
  text-align: center !important;
  justify-content: center !important;
}

.contact-page .site-footer .footer-bottom p {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .contact-page .contact-title-grid,
  .contact-page .contact-schedule-hero .contact-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-page .contact-title-art,
  .contact-page .contact-schedule-hero .contact-hero-grid > div:last-child {
    justify-content: center;
  }

  .contact-page .speak-brand-image {
    width: min(100%, 520px);
    height: auto;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .contact-page .schedule-with-wendy {
    white-space: normal !important;
  }

  .contact-page .contact-chat-bubble {
    opacity: .25;
  }

  .contact-page .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   CONTACT PAGE — TITLE/SCHEDULE/TESTIMONIAL REFINEMENTS
========================================================= */

/* Title section smaller, no dark shading, pink behind the contact image */
.contact-page .contact-title-hero {
  min-height: clamp(280px, 28vw, 420px) !important;
  background-image: url("../images/contact/contact.webp") !important;
  background-color: #ff2e8a !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.contact-page .contact-title-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: #ff2e8a !important;
  z-index: -2 !important;
}

.contact-page .contact-title-hero {
  position: relative !important;
  isolation: isolate !important;
}

.contact-page .contact-title-grid {
  min-height: clamp(280px, 28vw, 420px) !important;
}

.contact-page .contact-title-copy .script {
  font-size: clamp(3rem, 5vw, 5.2rem) !important;
  line-height: .9 !important;
  margin-bottom: .2rem !important;
}

.contact-page .contact-title-copy h1 {
  font-size: clamp(1.45rem, 2.4vw, 2.55rem) !important;
  line-height: 1.1 !important;
}

/* Megaphone same visual scale as Gallery microphone */
.contact-page .contact-title-art img {
  width: clamp(72px, 8vw, 135px) !important;
  height: auto !important;
}

/* Existing schedule section: add breathing room to left text */
.contact-page .contact-schedule-hero .contact-hero-grid > div:first-child {
  padding-left: clamp(1.25rem, 3vw, 3rem) !important;
  padding-top: clamp(2.5rem, 4vw, 4rem) !important;
  padding-bottom: clamp(2.5rem, 4vw, 4rem) !important;
}

/* Schedule With Wendy: make only With Wendy pink script */
.contact-page .schedule-with-wendy {
  color: var(--navy) !important;
}

.contact-page .schedule-with-wendy .schedule-script {
  color: #ff2e8a !important;
  font-family: "Playlist Script", "Sacramento", cursive !important;
  font-weight: 400 !important;
  font-size: 1.35em !important;
  line-height: .8 !important;
  display: inline-block !important;
}

/* If the HTML does not wrap With Wendy, target the old script span too */
.contact-page .contact-schedule-hero h1 .script {
  color: #ff2e8a !important;
  font-family: "Playlist Script", "Sacramento", cursive !important;
  font-weight: 400 !important;
}

/* Schedule option titles pink */
.contact-page .schedule-option h4 {
  color: #ff2e8a !important;
}

/* Make the words under the three pink headings consistent */
.contact-page .schedule-option p {
  font-family: var(--font-body, "Poppins", sans-serif) !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
  color: var(--gray-700) !important;
  margin: .15rem 0 0 !important;
}

/* Replace testimonial quote characters with mark images */
.contact-page .testimonial-mark {
  display: block !important;
  width: clamp(42px, 5vw, 72px) !important;
  height: auto !important;
  object-fit: contain !important;
  margin-bottom: 1rem !important;
}

@media (max-width: 720px) {
  .contact-page .contact-title-hero,
  .contact-page .contact-title-grid {
    min-height: 300px !important;
  }

  .contact-page .contact-title-art img {
    width: clamp(70px, 22vw, 110px) !important;
  }

  .contact-page .contact-schedule-hero .contact-hero-grid > div:first-child {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}


/* =========================================================
   CONTACT TITLE SECTION — FINAL SPACING/BACKGROUND FIX
========================================================= */

/* Make sure contact.png is the visible background in the top title section */
.contact-page .contact-title-hero {
  background-color: #ff2e8a !important;
  background-image: url("../images/contact/contact.webp") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Add breathing room between the Let's Connect text and the megaphone image */
.contact-page .contact-title-grid {
  column-gap: clamp(2.5rem, 6vw, 7rem) !important;
}

.contact-page .contact-title-art {
  padding-left: clamp(1rem, 3vw, 3rem) !important;
}

@media (max-width: 980px) {
  .contact-page .contact-title-grid {
    row-gap: 1.75rem !important;
  }

  .contact-page .contact-title-art {
    padding-left: 0 !important;
  }
}


/* CONTACT TITLE — center megaphone within its column */
.contact-page .contact-title-art {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-left: 0 !important;
  width: 100% !important;
}

.contact-page .contact-title-art img {
  margin-left: auto !important;
  margin-right: auto !important;
}


/* =========================================================
   CONTACT FINAL POSITION FIXES
========================================================= */

/* Put contact.png visually at the top of the title section */
.contact-page .contact-title-hero {
  background-image: url("../images/contact/contact.webp") !important;
  background-position: top center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-color: #ff2e8a !important;
}

/* Move the megaphone left within the right column */
.contact-page .contact-title-art {
  justify-content: flex-start !important;
  padding-left: clamp(.25rem, 1vw, 1rem) !important;
  transform: translateX(clamp(-4rem, -4vw, -1.5rem)) !important;
}

.contact-page .contact-title-art img {
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* Add space between title section and the speak-brand image below */
.contact-page .contact-schedule-hero {
  padding-top: clamp(1.25rem, 2.5vw, 2.75rem) !important;
}

.contact-page .contact-schedule-hero .contact-hero-grid > div:last-child {
  padding-top: clamp(1rem, 2vw, 2.25rem) !important;
}

/* Keep mobile stacked and centered */
@media (max-width: 980px) {
  .contact-page .contact-title-art {
    justify-content: center !important;
    padding-left: 0 !important;
    transform: none !important;
  }

  .contact-page .contact-title-art img {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* =========================================================
   CONTACT TOP SECTION — MAKE contact.png CLEARLY VISIBLE
========================================================= */

/* Show contact.png clearly in the top title section */
.contact-page .contact-title-hero {
  background-color: #ff2e8a !important;
  background-image: url("../images/contact/contact.webp") !important;
  background-position: top center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* Remove any leftover overlay/shading that could hide contact.png */
.contact-page .contact-title-hero::before,
.contact-page .contact-title-hero::after {
  display: none !important;
  content: none !important;
}

/* Keep text and megaphone above the background image */
.contact-page .contact-title-grid,
.contact-page .contact-title-copy,
.contact-page .contact-title-art {
  position: relative !important;
  z-index: 2 !important;
}


/* =========================================================
   SERVICES READY SECTION — SMILEY GEO SHAPES
========================================================= */

.services-page .services-final-cta,
.services-final-cta {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.services-page .services-final-cta .container,
.services-final-cta .container {
  position: relative !important;
  z-index: 2 !important;
}

.services-smiley-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.smiley-shape {
  position: absolute;
  display: block;
  border: 4px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  opacity: .58;
  filter: drop-shadow(0 10px 20px rgba(20, 22, 58, .12));
  animation: smileyFloat 7s ease-in-out infinite;
}

/* eyes */
.smiley-shape::before {
  content: "";
  position: absolute;
  left: 28%;
  top: 36%;
  width: 9%;
  height: 9%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.9) 0 55%, transparent 58%),
    radial-gradient(circle, rgba(255,255,255,.9) 0 55%, transparent 58%);
  box-shadow: 34px 0 0 rgba(255,255,255,.9);
}

/* smile */
.smiley-shape::after {
  content: "";
  position: absolute;
  left: 27%;
  bottom: 27%;
  width: 46%;
  height: 28%;
  border-bottom: 5px solid rgba(255, 255, 255, .88);
  border-radius: 0 0 999px 999px;
}

.smiley-shape-1 {
  width: 118px;
  height: 118px;
  right: 7%;
  top: 14%;
  transform: rotate(-10deg);
  animation-delay: 0s;
}

.smiley-shape-2 {
  width: 82px;
  height: 82px;
  left: 8%;
  bottom: 12%;
  transform: rotate(12deg);
  opacity: .45;
  animation-delay: 1.4s;
}

.smiley-shape-3 {
  width: 64px;
  height: 64px;
  right: 28%;
  bottom: 16%;
  transform: rotate(8deg);
  opacity: .38;
  animation-delay: 2.6s;
}

@keyframes smileyFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@media (max-width: 720px) {
  .smiley-shape-1 {
    width: 84px;
    height: 84px;
    right: -18px;
    top: 12%;
  }

  .smiley-shape-2 {
    width: 66px;
    height: 66px;
    left: -12px;
    bottom: 10%;
  }

  .smiley-shape-3 {
    display: none;
  }
}


/* =========================================================
   PHASE 2 STABILIZATION — RESPONSIVE / CONTACT / REVEALS
========================================================= */

/* Content remains visible unless JavaScript explicitly enables a reveal. */
.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

.reveal-ready.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready,
  .reveal-ready.reveal-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.contact-page .calendly-placeholder {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-page .calendly-placeholder h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  margin-bottom: .5rem;
}

.contact-page .calendly-placeholder p {
  color: var(--gray-700);
  margin-bottom: 1.25rem;
}

.contact-page .calendly-placeholder-icon {
  width: clamp(72px, 10vw, 112px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
}

.contact-page .calendly-placeholder-icon svg {
  width: 54%;
  height: 54%;
}

.contact-page .calendly-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.contact-page .calendly-actions .btn {
  min-width: min(100%, 220px);
}

.calendly-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.calendly-modal[hidden] {
  display: none;
}

.calendly-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 58, .72);
  backdrop-filter: blur(4px);
}

.calendly-modal__window {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 980px);
  max-height: min(92vh, 860px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(20, 22, 58, .38);
}

.calendly-modal__header {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink) 0%, #ff4aa0 34%, var(--purple) 72%, var(--teal) 100%);
  background-size: 200% 200%;
  animation: gradient-flow 10s ease infinite;
}

.calendly-modal__header h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  line-height: 1.2;
}

.calendly-modal__close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
}

.calendly-modal__close:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.contact-page .calendly-frame {
  display: block;
  width: 100%;
  height: min(76vh, 760px);
  min-height: 580px;
  border: 0;
}

@media (max-width: 640px) {
  .calendly-modal {
    padding: .75rem;
  }

  .calendly-modal__window {
    max-height: 94vh;
    border-radius: 14px;
  }

  .contact-page .calendly-frame {
    height: calc(94vh - 74px);
    min-height: 0;
  }
}

body.calendly-modal-open {
  overflow: hidden;
}

.contact-page .contact-info {
  position: relative;
  min-width: 0;
}

.contact-page .conversation-heading {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  max-width: min(100%, 510px);
  padding-right: clamp(4rem, 9vw, 7.5rem);
  margin-bottom: clamp(.75rem, 2vw, 1.75rem) !important;
}

.contact-page .conversation-heading .contact-chat-bubble {
  right: 0 !important;
  top: 50% !important;
  width: clamp(72px, 9vw, 132px) !important;
  transform: translateY(-50%);
}

.contact-page .form-availability {
  margin: -.5rem 0 1.5rem;
  padding: .9rem 1rem;
  border-left: 4px solid var(--orange);
  background: var(--orange-soft);
  color: var(--navy);
  border-radius: 8px;
  font-size: .92rem;
}

.contact-page .contact-form,
.contact-page .contact-info,
.contact-page .contact-form-grid > * {
  min-width: 0;
}

.contact-page .schedule-with-wendy {
  font-size: clamp(2rem, 3.2vw, 3.3rem) !important;
  margin-bottom: 1rem !important;
}

/* Keep decorative art layered while preventing text from creating overflow. */
main > section,
main > section .container,
.home-hero-text,
.communication-feature-cta > div:first-child,
.section-title,
h1,
h2,
h3 {
  min-width: 0;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .nav-list {
    transform: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 0 100%);
    transition: opacity var(--transition-slow), clip-path var(--transition-slow), visibility 0s linear .5s;
  }

  .nav-list.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: inset(0);
    transition: opacity var(--transition-slow), clip-path var(--transition-slow), visibility 0s;
  }

  .container,
  .nav,
  .home-hero-grid,
  .site-footer > .container {
    width: min(100% - 2rem, 1200px) !important;
  }

  .home-hero .home-hero-grid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .home-hero h1 {
    font-size: clamp(2.3rem, 10.5vw, 4rem) !important;
    letter-spacing: -.025em !important;
  }

  .home-hero .make-impact-line {
    display: flex !important;
    flex-wrap: wrap;
    white-space: normal !important;
    column-gap: .16em !important;
  }

  .home-hero h1 .impact-word,
  .home-hero h1 .script {
    max-width: 100%;
  }

  .communication-feature-cta h2,
  .section-title h2,
  .home-maximize-section h2,
  .banner-band {
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: break-word;
  }

  .quote-section {
    height: clamp(90px, 14.82vw, 135px) !important;
    min-height: clamp(90px, 14.82vw, 135px) !important;
  }

  .quote-section::before {
    height: 100% !important;
    min-height: 0 !important;
    background-size: contain !important;
  }

  .contact-page .contact-form-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .site-footer .footer-grid,
  .contact-page .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .contact-page .contact-form {
    padding: clamp(1.25rem, 5vw, 2.5rem);
  }

  .contact-page .calendly-placeholder {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-page .calendly-placeholder-icon {
    margin: 0 auto;
  }

  .contact-page .calendly-actions {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  :root {
    --home-hero-height-fluid: clamp(500px, 128vw, 560px);
  }

  .home-hero h1 {
    font-size: clamp(2.15rem, 10.8vw, 2.9rem) !important;
  }

  .home-hero .lede {
    max-width: 100% !important;
  }

  .home-hero-cta {
    width: 100%;
  }

  .home-hero-cta .btn {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-page .contact-title-copy .script {
    font-size: clamp(2.55rem, 13vw, 3.5rem) !important;
  }

  .contact-page .contact-title-copy h1 {
    font-size: clamp(1.25rem, 7vw, 1.8rem) !important;
  }

  .contact-page .schedule-with-wendy {
    font-size: clamp(1.85rem, 9vw, 2.5rem) !important;
  }

  .contact-page .conversation-heading {
    padding-right: 3.75rem;
  }

  .contact-page .conversation-heading .sans {
    font-size: clamp(1.55rem, 8vw, 2.15rem) !important;
  }

  .contact-page .conversation-heading .script {
    font-size: clamp(2.65rem, 14vw, 4rem) !important;
  }

  .contact-page .conversation-heading .contact-chat-bubble {
    width: 66px !important;
    opacity: .8;
  }

  .contact-page .schedule-option {
    align-items: flex-start;
    gap: .85rem;
  }

  .site-footer .footer-grid,
  .contact-page .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final scoped polish for responsive spacing and proportional site logos. */
.site-header {
  overflow: visible !important;
}

.site-header .nav {
  position: relative;
}

.site-header .nav-logo {
  position: absolute;
  top: 1rem;
  left: 0;
  z-index: 102;
  width: clamp(150px, 13vw, 185px);
  height: auto;
}

.site-header .nav-logo img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.site-header .nav-list {
  margin-left: auto;
}

.site-header .nav-toggle {
  z-index: 104;
  margin-left: auto;
}

.site-footer .footer-brand .logo-pill {
  width: fit-content;
  max-width: 100%;
  padding: .65rem 1rem;
  background: transparent !important;
  border-radius: 0;
}

.site-footer .footer-brand .logo-pill img {
  display: block;
  width: clamp(160px, 15vw, 200px) !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.contact-page .contact-hero-conversation .contact-chat-bubble {
  top: 34% !important;
  animation: contactBubbleRaised 5s ease-in-out infinite !important;
}

@keyframes contactBubbleRaised {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(calc(-50% - 8px)) rotate(4deg); }
}

@media (max-width: 1100px) {
  .site-header .nav-logo {
    width: clamp(145px, 17vw, 170px);
    top: 1.1rem;
  }

  .site-header .nav-list {
    z-index: 103;
  }

  .site-footer .footer-grid,
  .contact-page .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .site-footer .footer-brand,
  .site-footer .footer-col {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  main > section {
    max-width: 100%;
  }

  .site-header .nav-logo {
    width: clamp(150px, 42vw, 170px);
    top: 1.25rem;
    left: .15rem;
  }

  .site-header .nav-list {
    top: 0;
    inset-block-start: 82px;
    max-width: calc(100vw - 1rem);
  }

  .section,
  .section-tight {
    padding-left: 0;
    padding-right: 0;
  }

  .section-title,
  .section-title h2,
  main h1,
  main h2 {
    max-width: 100%;
  }

  .btn,
  .gallery-book-btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .site-footer .footer-brand .logo-pill img {
    width: clamp(160px, 38vw, 190px) !important;
  }

  .contact-page .contact-hero-conversation .contact-chat-bubble {
    top: 31% !important;
  }
}

@media (max-width: 430px) {
  .programs-page .make-impact-line {
    display: block !important;
    width: 100%;
    white-space: normal !important;
  }

  .programs-page .impact-script {
    display: block !important;
    width: fit-content;
    max-width: 100%;
    margin: .05em auto 0;
    white-space: nowrap !important;
  }

  .site-footer .footer-grid,
  .contact-page .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .site-footer .footer-brand {
    text-align: left;
  }

  .contact-page .contact-hero-conversation .contact-chat-bubble {
    top: 29% !important;
  }
}


/* =========================================================
   SERVICES SMILEY SHAPES — SMALLER + MORE
========================================================= */

.smiley-shape-1 {
  width: 86px !important;
  height: 86px !important;
  right: 7% !important;
  top: 14% !important;
}

.smiley-shape-2 {
  width: 62px !important;
  height: 62px !important;
  left: 8% !important;
  bottom: 12% !important;
}

.smiley-shape-3 {
  width: 48px !important;
  height: 48px !important;
  right: 28% !important;
  bottom: 16% !important;
}

.smiley-shape-4 {
  width: 56px;
  height: 56px;
  left: 22%;
  top: 18%;
  transform: rotate(-7deg);
  opacity: .42;
  animation-delay: .8s;
}

.smiley-shape-5 {
  width: 44px;
  height: 44px;
  right: 16%;
  top: 58%;
  transform: rotate(11deg);
  opacity: .36;
  animation-delay: 2s;
}

.smiley-shape-6 {
  width: 38px;
  height: 38px;
  left: 42%;
  bottom: 10%;
  transform: rotate(-14deg);
  opacity: .32;
  animation-delay: 3.2s;
}

/* Scale facial features down cleaner on the smaller faces */
.smiley-shape::before {
  width: 8% !important;
  height: 8% !important;
  box-shadow: 28px 0 0 rgba(255,255,255,.9) !important;
}

.smiley-shape::after {
  border-bottom-width: 4px !important;
}

.smiley-shape-3::before,
.smiley-shape-5::before,
.smiley-shape-6::before {
  box-shadow: 18px 0 0 rgba(255,255,255,.9) !important;
}

.smiley-shape-3::after,
.smiley-shape-5::after,
.smiley-shape-6::after {
  border-bottom-width: 3px !important;
}

@media (max-width: 720px) {
  .smiley-shape-1 {
    width: 68px !important;
    height: 68px !important;
  }

  .smiley-shape-2 {
    width: 50px !important;
    height: 50px !important;
  }

  .smiley-shape-4,
  .smiley-shape-5 {
    width: 42px !important;
    height: 42px !important;
  }

  .smiley-shape-6 {
    display: none !important;
  }
}

/* Final cascade overrides for the controlled gallery/contact/menu repair pass. */
.contact-page .contact-schedule-hero .contact-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr) !important;
  align-items: end !important;
}

.contact-page .contact-hero-copy {
  position: relative;
  min-width: 0;
  z-index: 2;
}

.contact-page .contact-hero-eyebrow {
  margin: 0 0 .75rem !important;
  color: var(--navy) !important;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.25rem) !important;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-page .contact-hero-conversation {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding-right: clamp(5.5rem, 8.5vw, 8rem) !important;
  margin: 0 0 1.25rem !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.contact-page .contact-hero-conversation .sans,
.contact-page .contact-hero-conversation .script {
  display: block;
  width: max-content;
  max-width: 100%;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.contact-page .contact-hero-conversation .sans {
  font-size: clamp(1.75rem, 2.8vw, 2.8rem) !important;
}

.contact-page .contact-hero-conversation .script {
  white-space: nowrap !important;
  font-size: clamp(3.5rem, 5.3vw, 5.6rem) !important;
}

.contact-page .contact-hero-conversation .contact-chat-bubble {
  right: 0 !important;
  top: 38% !important;
  width: clamp(76px, 8vw, 118px) !important;
}

.contact-page .contact-hero-artwork {
  align-self: end;
  min-width: 0;
  padding-top: 0 !important;
}

.contact-page .contact-hero-artwork .speak-brand-image {
  width: min(100%, 520px) !important;
  height: auto !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: right bottom !important;
}

.contact-page .contact-details-heading {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

@media (max-width: 1024px) {
  .nav-list {
    z-index: 101;
    transform: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 0 100%);
    transition: opacity var(--transition-slow), clip-path var(--transition-slow), visibility 0s linear .5s;
  }

  .nav-list.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: inset(0);
    transition: opacity var(--transition-slow), clip-path var(--transition-slow), visibility 0s;
  }

  .contact-page .contact-schedule-hero .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .contact-page .contact-hero-copy {
    padding-right: clamp(1rem, 4vw, 2rem) !important;
  }

  .contact-page .contact-hero-artwork {
    justify-content: center !important;
  }

  .contact-page .contact-hero-artwork .speak-brand-image {
    width: min(100%, 500px) !important;
    object-position: center bottom !important;
  }
}

@media (max-width: 520px) {
  .contact-page .contact-hero-conversation {
    padding-right: clamp(3.6rem, 17vw, 4.8rem) !important;
  }

  .contact-page .contact-hero-conversation .sans {
    font-size: clamp(1.45rem, 7.2vw, 2rem) !important;
  }

  .contact-page .contact-hero-conversation .script {
    font-size: clamp(2.65rem, 13.2vw, 3.75rem) !important;
  }

  .contact-page .contact-hero-conversation .contact-chat-bubble {
    top: 42% !important;
    width: clamp(58px, 16vw, 72px) !important;
    opacity: .82;
  }
}

/* Contact title hero: use the exact approved About hero section dimensions. */
.contact-page .contact-title-hero {
  box-sizing: border-box !important;
  width: 100% !important;
  height: 380px !important;
  min-height: 380px !important;
  max-height: 380px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.contact-page .contact-title-grid {
  box-sizing: border-box !important;
  width: 100% !important;
  height: 380px !important;
  min-height: 380px !important;
  max-height: 380px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Final scoped overrides for About hero balance, contact bubble, and gallery lightbox. */
.about-page .about-hero.about-hero-custom {
  min-height: 330px !important;
  height: 330px !important;
}

.about-page .about-hero-content {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px) !important;
  align-items: end !important;
  gap: clamp(1.5rem, 5vw, 5rem) !important;
  min-height: 330px !important;
  height: 330px !important;
  padding-left: clamp(1.5rem, 4vw, 3.5rem) !important;
  padding-right: clamp(1rem, 3vw, 2.5rem) !important;
}

.about-page .about-hero-copy {
  align-self: center;
  order: 1 !important;
  width: 100%;
  max-width: 620px !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.about-page .about-hero-art {
  position: relative !important;
  inset: auto !important;
  align-self: end;
  justify-self: end;
  width: min(100%, 360px);
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  order: 2 !important;
}

.about-page .about-hero-person {
  position: relative !important;
  inset: auto !important;
  display: block;
  width: min(100%, 320px) !important;
  height: auto !important;
  max-width: 320px !important;
  max-height: 320px !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center bottom !important;
}

.contact-page .contact-hero-conversation .contact-chat-bubble {
  right: clamp(.25rem, 1vw, .75rem) !important;
  top: 50% !important;
  animation: contactBubbleCentered 5s ease-in-out infinite !important;
}

@media (max-width: 640px) {
  .contact-page .contact-title-grid {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
    text-align: center !important;
  }

  .contact-page .contact-title-copy {
    width: min(100%, 340px) !important;
    max-width: 340px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .contact-page .contact-title-copy .script,
  .contact-page .contact-title-copy h1 {
    display: block !important;
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .contact-page .contact-schedule-hero .contact-hero-grid {
    text-align: center !important;
  }

  .contact-page .contact-hero-copy {
    width: min(100%, 350px) !important;
    max-width: 350px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    text-align: center !important;
  }

  .contact-page .contact-hero-copy > p {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .contact-page .contact-hero-eyebrow {
    text-align: center !important;
  }

  .contact-page .contact-hero-conversation {
    width: max-content !important;
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .contact-page .contact-hero-conversation .sans,
  .contact-page .contact-hero-conversation .script {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }
}

@keyframes contactBubbleCentered {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(calc(-50% - 8px)) rotate(4deg); }
}

.gallery-page .gallery-item[role="button"] {
  cursor: zoom-in;
}

.gallery-page .gallery-item[role="button"]:focus-visible {
  outline: 4px solid var(--teal);
  outline-offset: 4px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(20, 22, 58, .88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(.5rem, 2vw, 1.25rem);
  width: min(1120px, 100%);
  max-height: calc(100vh - 2rem);
  padding: clamp(2.75rem, 5vw, 4rem) clamp(.5rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  border: 2px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .4);
}

.gallery-lightbox-figure {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.gallery-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 11rem);
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.gallery-lightbox-caption {
  margin-top: .8rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.35;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 0;
  color: var(--white);
  background: var(--pink);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-lightbox-close {
  position: absolute;
  top: .65rem;
  right: .65rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-nav {
  width: clamp(42px, 5vw, 54px);
  height: clamp(54px, 7vw, 70px);
  border-radius: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  background: var(--teal);
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .about-page .about-hero.about-hero-custom {
    min-height: 330px !important;
    height: 330px !important;
  }

  .about-page .about-hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(130px, 42%) !important;
    gap: .75rem !important;
    min-height: 330px !important;
    height: 330px !important;
    padding: 1.25rem 0 0 1.5rem !important;
  }

  .about-page .about-hero-copy {
    align-self: center;
    max-width: none !important;
  }

  .about-page .about-hero-copy h1 {
    font-size: clamp(3.15rem, 10vw, 4.8rem) !important;
  }

  .about-page .about-hero-copy p {
    max-width: 22rem;
    font-size: clamp(.95rem, 2.4vw, 1.1rem) !important;
  }

  .about-page .about-hero-art {
    width: 100%;
    height: 100%;
  }

  .about-page .about-hero-person {
    width: min(100%, 280px) !important;
    max-height: 285px !important;
  }

  .gallery-lightbox {
    padding: .75rem;
  }

  .gallery-lightbox-panel {
    grid-template-columns: 1fr;
    gap: .75rem;
    padding: 3.5rem .75rem .75rem;
  }

  .gallery-lightbox-image {
    max-height: calc(100vh - 13rem);
  }

  .gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 58px;
    transform: translateY(-50%);
    background: rgba(255, 46, 138, .92);
  }

  .gallery-lightbox-prev {
    left: .5rem;
  }

  .gallery-lightbox-next {
    right: .5rem;
  }
}

@media (max-width: 430px) {
  .about-page .about-hero-content {
    grid-template-columns: minmax(0, 1fr) 145px !important;
    padding-left: 1.25rem !important;
  }

  .about-page .about-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 3.8rem) !important;
  }

  .about-page .about-hero-copy p {
    font-size: .95rem !important;
    line-height: 1.45 !important;
  }

  .about-page .about-hero-person {
    width: 100% !important;
    max-width: 145px !important;
  }

  .contact-page .contact-hero-conversation .contact-chat-bubble {
    right: 0 !important;
    top: 50% !important;
  }
}

/* Authoritative raised contact-bubble position after historical overrides. */
.contact-page .contact-hero-conversation .contact-chat-bubble {
  top: 34% !important;
  animation: contactBubbleRaised 5s ease-in-out infinite !important;
}

@media (max-width: 768px) {
  .contact-page .contact-hero-conversation .contact-chat-bubble {
    top: 31% !important;
  }
}

@media (max-width: 430px) {
  .contact-page .contact-hero-conversation .contact-chat-bubble {
    top: 29% !important;
  }
}

/* =========================================================
   RESPONSIVE NAVBAR + STICKY LOGO HEADER
========================================================= */
html {
  scroll-padding-top: 96px;
}

body.nav-open {
  overflow: hidden;
}

body {
  padding-top: 92px;
}

.site-header {
  --site-header-height: 92px;
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900 !important;
  overflow: visible !important;
  border-bottom-color: transparent !important;
  background: rgba(255, 255, 255, .82) !important;
  box-shadow: none;
  isolation: isolate;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  --site-header-height: 72px;
  border-bottom-color: var(--gray-200) !important;
  background: rgba(255, 255, 255, .98) !important;
  box-shadow: 0 10px 30px rgba(20, 22, 58, .1);
}

.site-header .nav {
  min-height: var(--site-header-height) !important;
  height: var(--site-header-height) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  transition:
    min-height var(--transition),
    height var(--transition);
}

.contact-page .site-header .nav {
  min-height: var(--site-header-height) !important;
  height: var(--site-header-height) !important;
}

.site-header .nav-logo {
  top: .75rem;
  left: 0;
  width: clamp(175px, 14.5vw, 210px);
  transform-origin: left top;
  transition:
    width var(--transition),
    top var(--transition),
    transform var(--transition);
}

.site-header.is-scrolled .nav-logo {
  top: 0;
  width: 108px;
}

.site-header .nav-list {
  position: relative;
  z-index: 902;
}

.site-header .nav-toggle {
  z-index: 920;
}

.nav-backdrop {
  z-index: 890;
  pointer-events: none;
}

.nav-backdrop.open {
  pointer-events: auto;
}

@media (max-width: 1024px) {
  body {
    padding-top: 82px;
  }

  .site-header {
    --site-header-height: 82px;
  }

  .site-header.is-scrolled {
    --site-header-height: 70px;
  }

  .site-header .nav-logo {
    top: .9rem;
    left: .15rem;
    width: clamp(150px, 24vw, 174px);
  }

  .site-header.is-scrolled .nav-logo {
    top: .2rem;
    width: 99px;
  }

  .site-header .nav-toggle {
    display: block;
    margin-left: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 4px 14px rgba(20, 22, 58, .08);
  }

  .site-header .nav-list {
    position: fixed !important;
    inset: var(--site-header-height) 0 0 auto !important;
    width: min(360px, calc(100vw - 1rem));
    height: calc(100dvh - var(--site-header-height));
    max-height: calc(100dvh - var(--site-header-height));
    padding: 1.25rem 1.5rem 2rem;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-left: 1px solid var(--gray-200);
    background: var(--white);
    box-shadow: -16px 20px 45px rgba(20, 22, 58, .18);
    z-index: 910;
  }

  .site-header .nav-list a:not(.btn) {
    display: block;
    padding: .9rem 0 !important;
  }

  .site-header .nav-list .btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .site-header .nav-logo {
    width: clamp(150px, 42vw, 168px);
  }

  .site-header .nav-list {
    width: min(360px, calc(100vw - 2rem));
  }
}

@media (max-width: 390px) {
  .site-header .nav-logo {
    top: .5rem;
    width: 150px;
  }
}

/* About page: keep the fixed header/logo in front of the hero background. */
.about-page {
  --about-hero-overlap: 28px;
}

.about-page .site-header {
  z-index: 940 !important;
}

.about-page main {
  position: relative;
  z-index: 0;
}

.about-page .about-hero.about-hero-custom {
  z-index: 0;
  min-height: calc(330px + var(--about-hero-overlap)) !important;
  height: calc(330px + var(--about-hero-overlap)) !important;
  margin-top: calc(-1 * var(--about-hero-overlap)) !important;
  isolation: isolate;
}

.about-page .about-hero-content {
  min-height: calc(330px + var(--about-hero-overlap)) !important;
  height: calc(330px + var(--about-hero-overlap)) !important;
  padding-top: var(--about-hero-overlap) !important;
}

/* About page: keep Faith, Mission, and Drives visually distinct. */
.about-page .about-faith-section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(3rem, 5vw, 4.5rem);
}

.about-page .about-faith-cta {
  margin-top: 2rem;
  margin-bottom: 0;
}

.about-page .about-mission-section {
  position: relative;
  isolation: isolate;
  padding-top: clamp(2rem, 4vw, 3.5rem) !important;
  padding-bottom: clamp(2rem, 4vw, 3.5rem) !important;
}

.about-page .about-mission-section::after {
  content: none;
}

.about-page .about-mission-card {
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.about-page .about-drives-section {
  position: relative;
  isolation: isolate;
  padding-top: clamp(5.5rem, 8vw, 7rem);
  padding-bottom: clamp(5rem, 7vw, 6.5rem);
  background-image: none;
}

.about-page .about-drives-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: clamp(280px, 29vw, 420px);
  height: clamp(120px, 12vw, 170px);
  background: url("../images/about/drives-me-bkgd.png") top right / auto 620px no-repeat;
  pointer-events: none;
}

.about-page .about-drives-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: clamp(280px, 29vw, 420px);
  height: clamp(120px, 12vw, 170px);
  background: url("../images/about/drives-me-bkgd.png") bottom left / auto 620px no-repeat;
  pointer-events: none;
}

.about-page .about-drives-section > .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 720px) {
  .about-page {
    --about-hero-overlap: 20px;
  }

  .about-page .about-hero-content {
    padding-top: calc(1.25rem + var(--about-hero-overlap)) !important;
  }

  .about-page .about-faith-section {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .about-page .about-mission-section {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .about-page .about-drives-section {
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
  }

  .about-page .about-drives-section::before {
    right: -1rem;
    width: clamp(170px, 48vw, 220px);
    height: 94px;
    background-size: auto 430px;
  }

  .about-page .about-drives-section::after {
    width: clamp(170px, 48vw, 220px);
    height: 94px;
    background-size: auto 430px;
  }
}

/* Home page: keep the hero CTA visible on shorter laptop screens while preserving the layered artwork. */
.home-page {
  --home-hero-height-fluid: clamp(540px, calc(100svh - 92px), 920px);
  --home-hero-copy-lift: clamp(1.25rem, 4.75svh, 3.25rem);
}

.home-page .home-hero {
  height: var(--home-hero-height-fluid) !important;
  min-height: var(--home-hero-height-fluid) !important;
  max-height: 920px !important;
}

.home-page .home-hero .home-hero-image,
.home-page .home-hero .home-hero-grid {
  height: var(--home-hero-height-fluid) !important;
  min-height: var(--home-hero-height-fluid) !important;
}

.home-page .home-hero .hero-main-image {
  object-position: center top !important;
}

.home-page .home-hero .hero-wendy-overlay {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 3 !important;
  display: block !important;
  width: auto !important;
  height: min(88%, 790px) !important;
  max-width: min(43vw, 640px) !important;
  max-height: 88% !important;
  object-fit: contain !important;
  object-position: right bottom !important;
  pointer-events: none !important;
}

.home-page .home-hero .home-hero-image .floating-bubble {
  z-index: 4 !important;
}

.home-page .home-hero .home-hero-image .bubble-purple {
  top: 1% !important;
  right: 11% !important;
  bottom: auto !important;
  left: auto !important;
  width: clamp(105px, 8vw, 150px) !important;
}

.home-page .home-hero .home-hero-image .bubble-orange {
  top: 16% !important;
  right: 27% !important;
  bottom: auto !important;
  left: auto !important;
  width: clamp(165px, 13vw, 235px) !important;
}

.home-page .home-hero .home-hero-image .bubble-teal {
  top: 57% !important;
  right: 27% !important;
  bottom: auto !important;
  left: auto !important;
  width: clamp(95px, 7vw, 135px) !important;
  z-index: 2 !important;
}

.home-page .home-hero .home-hero-text {
  width: min(58vw, 760px) !important;
  max-width: 760px !important;
  transform: translate(clamp(-80px, -3vw, -24px), calc(-1 * var(--home-hero-copy-lift))) !important;
}

.home-page .home-hero h1 {
  margin-bottom: clamp(.75rem, 1.75svh, 1.15rem) !important;
  font-size: clamp(4rem, min(6.3vw, 9.6svh), 7.15rem) !important;
  line-height: 1.04 !important;
}

.home-page .home-hero .lede {
  max-width: 680px !important;
  margin-bottom: clamp(1rem, 2.4svh, 1.55rem) !important;
  font-size: clamp(1.15rem, 1.45vw, 1.42rem) !important;
  line-height: 1.48 !important;
}

.home-page .home-hero-cta {
  gap: clamp(.9rem, 1.65vw, 1.25rem) !important;
  flex-wrap: nowrap !important;
}

.home-page .home-hero-cta .btn {
  min-height: 58px !important;
  padding: 1.05rem clamp(1.5rem, 2.1vw, 2.25rem) !important;
  font-size: clamp(.98rem, 1.05vw, 1.12rem) !important;
  white-space: nowrap !important;
}

/* Home page: shared subtle branded motion for the approved rolling sections. */
.home-page .communication-feature-cta.brand-roll-bg,
.home-page .home-maximize-section.home-maximize-final.brand-roll-bg {
  position: relative !important;
  isolation: isolate;
  animation: none !important;
}

.home-page .brand-roll-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: 220% 100%;
  background-position-x: 0%;
  background-position-y: 50%;
  animation: brand-roll-bg-shift 12s ease-in-out infinite;
}

.home-page .communication-feature-cta.brand-roll-bg::after {
  background-image: linear-gradient(
    110deg,
    var(--pink) 0%,
    var(--orange) 25%,
    var(--pink) 50%,
    var(--orange) 75%,
    var(--pink) 100%
  );
}

.home-page .home-maximize-section.home-maximize-final.brand-roll-bg::after {
  background-image: linear-gradient(
    115deg,
    var(--pink) 0%,
    var(--orange) 28%,
    var(--yellow) 48%,
    var(--orange) 62%,
    var(--pink) 78%,
    var(--purple) 100%
  );
}

.home-page .brand-roll-bg > * {
  position: relative;
  z-index: 1;
}

.home-page .communication-feature-cta.brand-roll-bg > div:first-child {
  z-index: 2 !important;
}

.home-page .communication-feature-cta.brand-roll-bg > div:last-child {
  z-index: 1 !important;
}

@keyframes brand-roll-bg-shift {
  0% {
    background-position-x: 0%;
    background-position-y: 50%;
  }

  50% {
    background-position-x: 100%;
    background-position-y: 50%;
  }

  100% {
    background-position-x: 0%;
    background-position-y: 50%;
  }
}

@media (max-width: 1200px) {
  .home-page .home-hero .home-hero-text {
    transform: translateY(calc(-1 * var(--home-hero-copy-lift))) !important;
  }
}

@media (max-width: 720px) {
  .home-page {
    --home-hero-height-fluid: clamp(560px, calc(100svh - 82px), 640px);
    --home-hero-copy-lift: clamp(.75rem, 2.5svh, 1.45rem);
  }

  .home-page .home-hero h1 {
    font-size: clamp(2.45rem, 10.25vw, 3.45rem) !important;
    line-height: .98 !important;
  }
}

@media (max-width: 430px) {
  .home-page {
    --home-hero-height-fluid: clamp(540px, calc(100svh - 82px), 620px);
  }

  .home-page .home-hero .lede {
    margin-bottom: 1rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .brand-roll-bg::after {
    animation: none !important;
    background-position-x: 50% !important;
    background-position-y: 50% !important;
  }
}

/* =========================================================
   COOKIE CONSENT
========================================================= */
.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 850;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(20, 22, 58, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 60px rgba(20, 22, 58, .22);
  opacity: 0;
  transform: translateY(calc(100% + 2rem));
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent__accent {
  height: 6px;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--teal), var(--purple), var(--pink));
  background-size: 200% 100%;
  animation: gradient-flow 8s linear infinite;
}

.cookie-consent__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1rem, 2.4vw, 1.5rem) clamp(1rem, 3vw, 2rem);
}

.cookie-consent__copy {
  min-width: 0;
}

.cookie-consent__title {
  margin: 0 0 .25rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
}

.cookie-consent__copy > p:not(.cookie-consent__title) {
  max-width: 760px;
  margin: 0;
  color: var(--gray-700);
  font-size: .9rem;
  line-height: 1.55;
}

.cookie-consent__privacy {
  display: inline-block;
  margin-top: .35rem;
  color: var(--teal-deep);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__privacy:hover {
  color: var(--pink);
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.cookie-consent__button {
  min-width: 112px;
  min-height: 46px;
  padding: .75rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.cookie-consent__button:hover {
  transform: translateY(-2px);
}

.cookie-consent__button--accept {
  color: var(--white);
  background: var(--pink);
  box-shadow: var(--shadow-pop);
}

.cookie-consent__button--accept:hover {
  background: var(--purple);
}

.cookie-consent__button--decline {
  color: var(--teal-deep);
  border-color: var(--teal);
  background: var(--white);
}

.cookie-consent__button--decline:hover {
  color: var(--white);
  background: var(--teal);
}

@media (max-width: 720px) {
  .cookie-consent {
    right: .75rem;
    bottom: .75rem;
    left: .75rem;
    width: calc(100% - 1.5rem);
    border-radius: 20px;
  }

  .cookie-consent__content {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .cookie-consent__copy > p:not(.cookie-consent__title) {
    font-size: .84rem;
    line-height: 1.45;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__button {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 390px) {
  .cookie-consent__content {
    padding: .9rem;
  }

  .cookie-consent__actions {
    flex-direction: column-reverse;
  }

  .cookie-consent__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent,
  .cookie-consent__button {
    transition: none;
  }

  .cookie-consent__accent,
  .site-footer::before {
    animation: none;
  }
}

/* =========================================================
   FINAL HEADER LOGO LAYERING + FOOTER BRANDING
========================================================= */
.site-header,
.about-page .site-header {
  z-index: 940 !important;
  overflow: visible !important;
}

.site-header .nav {
  overflow: visible !important;
}

.site-header .nav-logo {
  /* Sizing and positioning are handled by the logo backplate block below. */
  z-index: 950 !important;
}

/* Logo hover is handled by the logo backplate block below. */

/* Scrolled logo width is handled by the logo backplate block below. */

.site-header .nav-list {
  z-index: 960;
}

.site-header .nav-toggle {
  z-index: 970;
}

.nav-backdrop {
  z-index: 930;
}


.site-footer .footer-brand .logo-pill {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: clamp(220px, 20vw, 270px);
  max-width: 100%;
  aspect-ratio: 1.8 / 1;
  box-sizing: border-box;
  padding: .65rem .75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .97);
}

.site-footer .footer-brand .logo-pill img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: top center;
  opacity: .96;
}

.site-footer .footer-bottom p {
  max-width: 960px;
}

.site-footer .footer-bottom .footer-legal-name {
  color: var(--pink);
  font-weight: 800;
}

.site-footer .footer-bottom .footer-credit-link {
  color: var(--teal) !important;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer .footer-bottom .footer-credit-link:hover,
.site-footer .footer-bottom .footer-credit-link:focus-visible {
  color: var(--yellow) !important;
}

@media (max-width: 1024px) {
  .site-header .nav-logo {
    top: .35rem;
    width: clamp(190px, 27vw, 225px);
  }

  .site-header.is-scrolled .nav-logo {
    top: .2rem;
    width: 118px;
  }
}

@media (max-width: 430px) {
  .site-header .nav-logo {
    top: .25rem;
    left: 0;
    width: clamp(185px, 48vw, 205px);
  }

  .site-header.is-scrolled .nav-logo {
    width: 112px;
  }

  .site-footer .footer-brand {
    text-align: center;
  }

  .site-footer .footer-brand .logo-pill {
    width: min(250px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer .footer-brand p {
    margin-right: auto;
    margin-left: auto;
  }
}

/* =========================================================
   STRAIGHT NAVBAR + LOGO-LINE BUMP-OUT
   The white field joins the navbar and follows the logo's orange
   lower line with approximately 3px of visible spacing.
========================================================= */

.site-header,
.site-header .nav {
  overflow: visible !important;
}

.site-header {
  width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  background: #fff !important;
}

/* Keep the bar itself straight and remove historical full-width curves. */
.site-header::after,
.site-header .nav::before,
.site-header .nav::after {
  content: none !important;
}

/* The GIF has transparent space around its visible artwork. The wrapper
   follows the 2630x1323 alpha bounds while the complete GIF remains
   unchanged and visible above the backplate. */
.site-header .nav-logo {
  position: relative !important;
  align-self: flex-start !important;
  isolation: isolate;
  margin-top: -24px !important;
  margin-left: -42px !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  display: block !important;
  width: clamp(275px, 22vw, 350px) !important;
  height: auto !important;
  aspect-ratio: 2630 / 1323;
  overflow: visible !important;
  flex-shrink: 0 !important;
  z-index: 950 !important;
  transition:
    width 0.28s cubic-bezier(.4,0,.2,1),
    margin-top 0.28s cubic-bezier(.4,0,.2,1),
    transform 0.28s cubic-bezier(.4,0,.2,1) !important;
}

.site-header .nav-logo img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 114.07% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: top left !important;
  transform-origin: top left;
  transform: rotate(2deg);
  transition: transform 0.28s cubic-bezier(.4,0,.2,1) !important;
}

/* The current logo contains its own speech-bubble background. */
.site-header .nav-logo::before {
  content: none !important;
}

.site-header .nav-logo:hover {
  transform: none !important;
}

.site-header .nav-logo:hover img {
  transform: rotate(2deg) scale(1.015);
}

.site-header .nav-logo:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 6px;
  border-radius: 0 0 24px 24px;
}

.site-header .nav-list {
  align-self: center !important;
  position: relative !important;
  z-index: 960 !important;
}

.site-header .nav-toggle {
  align-self: center !important;
  z-index: 970 !important;
}

/* Compact state: both image layers shrink with the wrapper. The shape's
   shadow is removed so the small backplate tucks cleanly into the bar. */
.site-header.is-scrolled .nav-logo {
  width: clamp(126px, 9.5vw, 148px) !important;
  height: 64px !important;
  aspect-ratio: auto;
  margin-top: 4px !important;
  margin-left: 0 !important;
  overflow: hidden !important;
}

.site-header.is-scrolled .nav-logo img {
  top: 50% !important;
  left: 50% !important;
  width: auto !important;
  height: 62px !important;
  max-width: 100% !important;
  object-position: center !important;
  transform: translate(-50%, -50%) rotate(2deg) !important;
}

.site-header.is-scrolled .nav-logo::before {
  filter: none;
  opacity: .98;
}

@media (min-width: 1025px) {
  .site-header.is-scrolled {
    --site-header-height: 84px;
  }

  .site-header.is-scrolled .nav-logo {
    width: clamp(154px, 11vw, 174px) !important;
    height: 78px !important;
    margin-left: clamp(70px, 8vw, 130px) !important;
  }

  .site-header.is-scrolled .nav-logo img {
    width: calc(100% - 8px) !important;
    height: auto !important;
    max-width: calc(100% - 8px) !important;
    max-height: 76px !important;
    object-fit: contain !important;
    transform: translate(-50%, -50%) rotate(1deg) !important;
  }

  .site-header.is-scrolled .nav-list {
    transform: translateX(clamp(-38px, -2.5vw, -24px));
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .site-header .nav-logo {
    width: clamp(208px, 18vw, 232px) !important;
  }

  .site-header.is-scrolled .nav-logo {
    width: 154px !important;
  }
}

@media (max-width: 1024px) {
  .site-header .nav-logo {
    width: clamp(184px, 28vw, 224px) !important;
    margin-top: 8px !important;
  }

  .site-header .nav-list {
    position: fixed !important;
    z-index: 960 !important;
  }

  .site-header .nav-toggle {
    z-index: 970 !important;
  }

  .site-header.is-scrolled .nav-logo {
    width: 108px !important;
    margin-top: 4px !important;
  }

}

@media (max-width: 768px) {
  .site-header .nav-logo {
    width: clamp(174px, 37vw, 202px) !important;
    margin-top: 7px !important;
  }

}

@media (max-width: 430px) {
  .site-header .nav-logo {
    width: clamp(166px, 44vw, 190px) !important;
    margin-top: 6px !important;
  }

  .site-header.is-scrolled .nav-logo {
    width: 104px !important;
  }
}

@media (max-width: 390px) {
  .site-header .nav-logo {
    width: clamp(160px, 43vw, 174px) !important;
    margin-top: 6px !important;
  }

}

@media (prefers-reduced-motion: reduce) {
  .site-header .nav-logo,
  .site-header .nav-logo::before,
  .site-header .nav-logo img {
    transition: none !important;
  }
}

@media print {
  body {
    padding-top: 0 !important;
  }

  .cookie-consent {
    display: none !important;
  }

  .site-header {
    position: static !important;
  }

  .site-header .nav-logo::before {
    display: none !important;
  }
}

/* Pre-production overflow/cookie cleanup. Keep full-width sections inside the
   layout viewport so desktop scrollbars do not add an extra horizontal gutter. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body,
main,
.site-footer,
main > section,
.home-hero,
.home-hero-image,
.hero-main-image,
.quote-section,
.services-home-section,
.communication-section,
.communication-section-inner,
.focus-areas,
.banner-band,
.testimonial-strip,
.final-cta,
.about-hero,
.about-testimonial,
.drives-section,
.programs-hero,
.programs-page .programs-hero-custom,
.services-hero,
.contact-hero,
.quote-image-section,
.quote-section,
.services-home-section,
.home-services-section,
.communication-section,
.communication-section-inner,
.home-page .home-maximize-section,
.gallery-page .gallery-filter-section,
.gallery-page .gallery-grid-section,
.gallery-page .gallery-create-section,
.programs-page .programs-talk-section,
.blog-page .blog-listing-section,
.article-page .article-list-section,
.article-page .article-breadcrumb-section,
.documents-page .documents-tabs-section,
.documents-page .documents-content-section,
.contact-page .contact-form-section,
.contact-page .faq-section,
.contact-page .testimonial-carousel-section,
.about-page .about-mission-section {
  max-width: 100% !important;
  width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.site-header {
  right: 0 !important;
  left: 0 !important;
  width: auto !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

@media (max-width: 720px) {
  .cookie-consent {
    right: .75rem;
    bottom: calc(5.5rem + env(safe-area-inset-bottom));
    left: .75rem;
    width: calc(100% - 1.5rem);
    max-height: min(48vh, 360px);
    border-radius: 16px;
    overflow-y: auto;
  }

  .cookie-consent__accent {
    height: 4px;
  }

  .cookie-consent__content {
    gap: .65rem;
    padding: .85rem;
  }

  .cookie-consent__title {
    margin-bottom: .1rem;
    font-size: .95rem;
  }

  .cookie-consent__copy > p:not(.cookie-consent__title) {
    font-size: .78rem;
    line-height: 1.35;
  }

  .cookie-consent__privacy {
    margin-top: .2rem;
    font-size: .78rem;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
  }

  .cookie-consent__button {
    width: 100%;
    min-height: 40px;
    padding: .65rem .8rem;
    border-radius: 12px;
    font-size: .78rem;
  }
}

@media (max-width: 390px) {
  .cookie-consent__actions {
    flex-direction: row;
    grid-template-columns: 1fr 1fr;
  }
}

/* 2026-06-10 About hero size, portrait frame, and spacing refinement. */
.about-page {
  --about-hero-height: 380px;
}

.about-page .about-hero.about-hero-custom {
  min-height: calc(var(--about-hero-height) + var(--about-hero-overlap)) !important;
  height: calc(var(--about-hero-height) + var(--about-hero-overlap)) !important;
}

.about-page .about-hero-content {
  min-height: calc(var(--about-hero-height) + var(--about-hero-overlap)) !important;
  height: calc(var(--about-hero-height) + var(--about-hero-overlap)) !important;
}

.about-page .about-hero-copy,
.about-page .about-hero-art {
  z-index: 2;
}

.about-page .about-hero-art {
  width: min(100%, 380px);
  height: 340px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-page .about-hero-person {
  position: absolute !important;
  top: auto !important;
  right: auto !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 380px !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: translateX(-50%) !important;
  filter: drop-shadow(0 10px 12px rgba(20, 22, 58, .14));
}

.about-page .about-faith-section {
  padding-top: clamp(3.75rem, 5vw, 4.75rem);
  padding-bottom: clamp(3.5rem, 4.5vw, 4.25rem);
}

.about-page .about-faith-cta {
  margin-top: 2.25rem;
}

.about-page .about-mission-section {
  padding-top: clamp(2.5rem, 3.5vw, 3.25rem) !important;
  padding-bottom: clamp(2.5rem, 3.5vw, 3.25rem) !important;
}

.about-page .about-drives-section {
  padding-top: clamp(5.25rem, 7vw, 6.5rem);
  padding-bottom: clamp(5rem, 6.5vw, 6rem);
}

@media (max-width: 768px) {
  .about-page {
    --about-hero-height: 500px;
  }

  .about-page .about-hero-content {
    grid-template-columns: 1fr !important;
    grid-template-rows: 200px auto !important;
    align-content: center !important;
    justify-items: center !important;
    gap: 1.25rem !important;
    padding: calc(var(--about-hero-overlap) + 1.25rem) 1.5rem 2rem !important;
  }

  .about-page .about-hero-art {
    order: 1 !important;
    align-self: end !important;
    justify-self: center !important;
    width: 190px !important;
    height: 190px !important;
    border: 5px solid rgba(255, 255, 255, .95);
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    box-shadow: 0 16px 34px rgba(20, 22, 58, .2);
  }

  .about-page .about-hero-person {
    bottom: -2px !important;
    width: 212px !important;
  }

  .about-page .about-hero-copy {
    order: 2 !important;
    align-self: start !important;
    max-width: 34rem !important;
    text-align: center !important;
  }

  .about-page .about-hero-copy p {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .about-page .about-faith-section {
    padding-top: 3.75rem;
    padding-bottom: 3.25rem;
  }

  .about-page .about-mission-section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .about-page .about-drives-section {
    padding-top: 5.25rem;
    padding-bottom: 4.75rem;
  }
}

@media (max-width: 430px) {
  .about-page {
    --about-hero-height: 455px;
  }

  .about-page .about-hero-content {
    grid-template-columns: 1fr !important;
    grid-template-rows: 165px auto !important;
    gap: 1rem !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .about-page .about-hero-art {
    width: 158px !important;
    height: 158px !important;
  }

  .about-page .about-hero-person {
    bottom: -2px !important;
    width: 176px !important;
  }
}

/* 2026-06-10 Programs refinements: desktop art stays unframed; the existing
   hero art wrapper becomes a compact card only after the mobile layout switch. */
.programs-page .programs-custom-copy > .btn {
  margin-top: 1.75rem;
}

@media (max-width: 980px) {
  .programs-page .programs-hero-art {
    width: min(calc(100% - 3rem), 400px) !important;
    margin: 2.5rem auto 0 !important;
    padding: .75rem .75rem 0 !important;
    overflow: hidden !important;
    border: 2px solid rgba(255, 255, 255, .82);
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 44px rgba(20, 22, 58, .2);
  }

  .programs-page .programs-hero-art img {
    width: 100% !important;
    height: auto !important;
    max-height: 390px !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    filter: drop-shadow(0 14px 20px rgba(20, 22, 58, .16)) !important;
  }

  .programs-page .programs-custom-copy > .btn {
    min-width: 148px;
  }
}

@media (max-width: 520px) {
  .programs-page .programs-hero-art {
    width: min(calc(100% - 2rem), 320px) !important;
    margin-top: 2rem !important;
    padding: .55rem .55rem 0 !important;
    border-radius: 22px;
  }

  .programs-page .programs-hero-copy {
    padding-bottom: 3rem !important;
  }

  .programs-page .programs-custom-copy > .btn {
    min-height: 44px;
    padding-inline: 1.5rem !important;
  }
}

/* 2026-06-11 Home quote image message overlay. */
.home-page .quote-section {
  display: grid !important;
  place-items: center;
  isolation: isolate;
  padding: 1rem !important;
}

.home-page .quote-section .quote-section-message {
  position: relative;
  z-index: 1;
  display: block !important;
  width: min(960px, calc(100% - 2rem));
  margin: 0 !important;
  padding: clamp(.75rem, 1.5vw, 1.15rem) clamp(1rem, 3vw, 2.5rem);
  border-radius: 16px;
  background: rgba(255, 255, 255, .8);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.25vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 768px) {
  .home-page .quote-section .quote-section-message {
    width: min(100%, 680px);
    padding: .65rem .85rem;
    border-radius: 12px;
    font-size: clamp(.9rem, 4vw, 1.15rem);
    line-height: 1.2;
  }
}

/* Home communication feature: pink outline button and mobile face crop. */
.home-page .communication-feature-cta .communication-button {
  background: var(--white) !important;
  border-color: var(--pink) !important;
  color: var(--pink) !important;
  box-shadow: none !important;
}

.home-page .communication-feature-cta .communication-button:hover,
.home-page .communication-feature-cta .communication-button:focus-visible {
  background: var(--pink) !important;
  color: var(--white) !important;
}

@media (max-width: 720px) {
  .home-page .communication-feature-cta {
    flex-direction: column !important;
    justify-content: center !important;
    gap: 1rem !important;
    overflow: hidden !important;
  }

  .home-page .communication-feature-cta > div:last-child {
    position: relative !important;
    order: -1;
    width: 116px !important;
    height: 116px !important;
    flex: 0 0 116px;
    overflow: hidden !important;
    border: 4px solid var(--white);
    border-radius: 50%;
  }

  .home-page .communication-feature-cta .communication-photo {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: 50% 24% !important;
    transform: scale(2.45);
    transform-origin: 50% 24%;
    animation: none !important;
  }
}

/* 2026-06-11 Contact page LinkedIn recommendation carousel. */
.contact-page .testimonial-carousel-section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
}

.contact-page .testimonial-carousel-section .section-title {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-page .testimonial-carousel {
  --testimonial-cards-per-view: 3;
  --testimonial-gap: 1.5rem;
  position: relative;
}

.contact-page .testimonial-carousel__viewport {
  width: 100%;
  overflow: hidden;
  padding: .75rem .25rem 1.25rem;
  border-radius: var(--radius-lg);
  touch-action: pan-y;
}

.contact-page .testimonial-carousel__viewport:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.contact-page .testimonial-carousel__track {
  display: flex;
  align-items: stretch;
  gap: var(--testimonial-gap);
  transition: transform .48s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.contact-page .testimonial-card {
  --testimonial-accent: var(--pink);
  flex: 0 0 calc((100% - (2 * var(--testimonial-gap))) / 3);
  min-width: 0;
  height: auto;
  min-height: 390px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.contact-page .testimonial-card.card-teal {
  --testimonial-accent: var(--teal);
}

.contact-page .testimonial-card.card-orange {
  --testimonial-accent: var(--orange);
}

.contact-page .testimonial-card.card-purple {
  --testimonial-accent: var(--purple);
}

.contact-page .testimonial-card--yellow {
  --testimonial-accent: #d89b00;
}

.contact-page .testimonial-card::before {
  background: var(--testimonial-accent);
}

.contact-page .testimonial-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.contact-page .testimonial-quote-mark {
  display: block;
  height: 3.25rem;
  margin-bottom: .7rem;
  color: var(--testimonial-accent);
  font-family: Georgia, serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: .9;
}

.contact-page .testimonial-card__quote {
  margin: 0 0 1.5rem;
  color: var(--navy);
  font-size: clamp(.94rem, 1.15vw, 1.04rem);
  font-style: italic;
  line-height: 1.65;
}

.contact-page .testimonial-card__footer {
  display: grid;
  gap: .35rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.contact-page .testimonial-card__footer cite {
  color: var(--testimonial-accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
}

.contact-page .testimonial-card__footer span {
  color: var(--gray-700);
  font-size: .82rem;
  line-height: 1.45;
}

.contact-page .testimonial-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.75rem, 2vw, 1.25rem);
  margin-top: .75rem;
}

.contact-page .testimonial-carousel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 0;
  border: 2px solid var(--pink);
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  cursor: pointer;
  transition: color var(--transition), background var(--transition), transform var(--transition), opacity var(--transition);
}

.contact-page .testimonial-carousel__button span {
  display: block;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-1px);
}

.contact-page .testimonial-carousel__button:hover:not(:disabled),
.contact-page .testimonial-carousel__button:focus-visible {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-page .testimonial-carousel__button:focus-visible,
.contact-page .testimonial-carousel__dot:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.contact-page .testimonial-carousel__button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.contact-page .testimonial-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.contact-page .testimonial-carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 22, 58, .28);
  cursor: pointer;
  transition: width var(--transition), background var(--transition), transform var(--transition);
}

.contact-page .testimonial-carousel__dot:hover {
  transform: scale(1.18);
}

.contact-page .testimonial-carousel__dot.is-active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--pink);
}

.contact-page .testimonial-carousel__status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .contact-page .testimonial-carousel {
    --testimonial-cards-per-view: 2;
  }

  .contact-page .testimonial-card {
    flex-basis: calc((100% - var(--testimonial-gap)) / 2);
  }
}

@media (max-width: 720px) {
  .contact-page .testimonial-carousel-section {
    padding: 3.5rem 0;
  }

  .contact-page .testimonial-carousel {
    --testimonial-cards-per-view: 1;
    --testimonial-gap: 1rem;
  }

  .contact-page .testimonial-carousel__viewport {
    padding-inline: 0;
  }

  .contact-page .testimonial-card {
    flex-basis: 100%;
    min-height: 0;
    padding: 1.5rem;
  }

  .contact-page .testimonial-carousel__controls {
    gap: .65rem;
  }

  .contact-page .testimonial-carousel__button {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .contact-page .testimonial-carousel__dot {
    width: 9px;
    height: 9px;
  }

  .contact-page .testimonial-carousel__dot.is-active {
    width: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page .testimonial-carousel__track,
  .contact-page .testimonial-card,
  .contact-page .testimonial-carousel__button,
  .contact-page .testimonial-carousel__dot {
    transition: none !important;
  }

  .contact-page .testimonial-card:hover {
    transform: none;
  }
}

/* 2026-06-11 About What Drives Me cards match Popular Programs box styling. */
.about-page .about-drive-item {
  min-height: 390px !important;
  padding: 2.15rem 1.5rem 1.6rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  background: #ffffff !important;
  border: 2px solid #d9dce6 !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 28px rgba(20, 22, 58, .10) !important;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow) !important;
}

.about-page .about-drive-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 22px 46px rgba(20, 22, 58, .18) !important;
  border-color: #c7cad5 !important;
}

.about-page .about-drive-item .drive-icon {
  width: 112px !important;
  height: 112px !important;
  margin: 0 auto 1.35rem !important;
}

.about-page .about-drive-item h4 {
  color: var(--navy) !important;
  font-size: clamp(1.18rem, 1.5vw, 1.45rem) !important;
  margin-bottom: .7rem !important;
}

.about-page .about-drive-item p {
  color: var(--gray-700) !important;
  line-height: 1.58 !important;
  margin: 0 !important;
}

/* 2026-06-11 Programs page main CTA buttons share one size and style. */
.programs-page main .btn {
  width: 180px !important;
  min-width: 180px !important;
  min-height: 48px !important;
  padding: .9rem 1.25rem !important;
  background: var(--pink) !important;
  border-color: var(--pink) !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  box-shadow: var(--shadow-pop) !important;
}

.programs-page main .btn:hover,
.programs-page main .btn:focus-visible {
  background: var(--purple) !important;
  border-color: var(--purple) !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  box-shadow: 0 16px 35px rgba(123, 44, 191, .4) !important;
}

.programs-page .program-card .btn,
.programs-page .programs-custom-copy > .btn {
  margin-top: auto !important;
}

.programs-page .programs-talk-section .btn {
  margin-inline: auto !important;
}

@media (max-width: 520px) {
  .programs-page main .btn {
    width: min(100%, 180px) !important;
    min-width: 0 !important;
  }
}

/* 2026-06-11 Programs Custom Solutions text and spacing refinement. */
.programs-page .programs-custom-solutions {
  min-height: 0 !important;
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2.5rem, 4vw, 3.5rem) !important;
}

.programs-page .programs-custom-grid {
  min-height: 0 !important;
  grid-template-columns: minmax(390px, .9fr) minmax(430px, 1.1fr) !important;
  gap: clamp(3rem, 6vw, 6rem) !important;
}

.programs-page .programs-custom-image {
  width: min(45vw, 700px) !important;
}

.programs-page .programs-custom-copy {
  max-width: 650px !important;
  padding: clamp(1.5rem, 2.5vw, 2.25rem) 0 !important;
}

.programs-page .programs-custom-copy h2 {
  font-size: clamp(2.9rem, 5vw, 4.5rem) !important;
  line-height: 1.02 !important;
  margin-bottom: 1.2rem !important;
}

.programs-page .programs-custom-copy p {
  max-width: 640px !important;
  margin-bottom: 1.75rem !important;
  color: var(--navy) !important;
  font-size: clamp(1.18rem, 1.55vw, 1.35rem) !important;
  line-height: 1.6 !important;
}

.programs-page .programs-check-list {
  gap: 1.15rem !important;
  margin-bottom: 2.1rem !important;
}

.programs-page .programs-check-list li {
  gap: 1.1rem !important;
  font-size: clamp(1.12rem, 1.5vw, 1.32rem) !important;
  line-height: 1.35 !important;
}

.programs-page .programs-check-list img {
  width: 42px !important;
  height: 42px !important;
  flex-basis: 42px !important;
}

.programs-page .programs-custom-copy > .btn {
  margin-top: 0 !important;
}

@media (max-width: 980px) {
  .programs-page .programs-custom-solutions {
    padding: 4rem 0 5rem !important;
  }

  .programs-page .programs-custom-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    min-height: auto !important;
  }

  .programs-page .programs-custom-image {
    position: relative !important;
    width: min(100%, 480px) !important;
    height: auto !important;
    margin: 0 auto 1.5rem !important;
    grid-column: auto !important;
  }

  .programs-page .programs-custom-copy {
    grid-column: auto !important;
    max-width: 700px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .programs-page .programs-custom-copy h2 {
    font-size: clamp(2.7rem, 7vw, 4rem) !important;
  }

  .programs-page .programs-custom-copy p {
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(1.12rem, 2.8vw, 1.28rem) !important;
  }

  .programs-page .programs-check-list {
    max-width: 480px !important;
    margin: 0 auto 2rem !important;
  }
}

@media (max-width: 520px) {
  .programs-page .programs-custom-solutions {
    padding: 3.25rem 0 4rem !important;
  }

  .programs-page .programs-custom-grid {
    gap: 1.5rem !important;
  }

  .programs-page .programs-custom-image {
    width: min(100%, 300px) !important;
    margin-bottom: 1rem !important;
  }

  .programs-page .programs-custom-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.1rem) !important;
    margin-bottom: 1rem !important;
  }

  .programs-page .programs-custom-copy p {
    font-size: 1.05rem !important;
    line-height: 1.58 !important;
    margin-bottom: 1.45rem !important;
  }

  .programs-page .programs-check-list {
    gap: 1rem !important;
    margin-bottom: 1.75rem !important;
  }

  .programs-page .programs-check-list li {
    font-size: 1.02rem !important;
  }

  .programs-page .programs-check-list img {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px !important;
  }
}

/* 2026-06-11 Programs hero mobile-only responsive art and type pass. */
@media (max-width: 720px) {
  .programs-page .programs-hero-custom {
    min-height: auto !important;
    padding: 0 !important;
  }

  .programs-page .programs-hero-art {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    order: 1 !important;
    width: clamp(172px, 48vw, 230px) !important;
    height: clamp(172px, 48vw, 230px) !important;
    margin: clamp(1.25rem, 5vw, 2rem) auto 1rem !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 5px solid rgba(255, 255, 255, .96) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 20px 44px rgba(20, 22, 58, .22) !important;
    z-index: 2 !important;
  }

  .programs-page .programs-hero-art img {
    position: absolute !important;
    top: -5% !important;
    left: 50% !important;
    width: 215% !important;
    height: auto !important;
    max-height: none !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center top !important;
    margin: 0 !important;
    transform: translateX(-24%) !important;
    filter: none !important;
  }

  .programs-page .programs-hero-inner {
    position: relative !important;
    z-index: 2 !important;
    min-height: auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 0 1rem clamp(3.5rem, 9vw, 5rem) !important;
  }

  .programs-page .programs-hero-copy {
    order: 2 !important;
    width: min(100%, 23.5rem) !important;
    margin: -.15rem auto 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: center !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .programs-page .programs-hero-copy h1 {
    margin-bottom: .85rem !important;
    font-size: clamp(2.45rem, 10.4vw, 3.35rem) !important;
    line-height: .94 !important;
    letter-spacing: -.04em !important;
  }

  .programs-page .make-impact-line {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    white-space: normal !important;
    column-gap: .16em !important;
  }

  .programs-page .impact-script {
    font-size: 1.2em !important;
    line-height: .78 !important;
  }

  .programs-page .programs-kicker {
    margin-bottom: .7rem !important;
    font-size: clamp(1rem, 4vw, 1.14rem) !important;
    line-height: 1.25 !important;
  }

  .programs-page .programs-lede {
    max-width: 21rem !important;
    margin: 0 auto !important;
    font-size: clamp(.96rem, 3.8vw, 1.05rem) !important;
    line-height: 1.48 !important;
  }
}

@media (max-width: 430px) {
  .programs-page .programs-hero-custom,
  .programs-page .programs-hero-inner {
    min-height: auto !important;
  }

  .programs-page .programs-hero-art {
    width: clamp(164px, 50vw, 198px) !important;
    height: clamp(164px, 50vw, 198px) !important;
    margin-top: 1.35rem !important;
  }

  .programs-page .programs-hero-copy h1 {
    font-size: clamp(2.32rem, 10.7vw, 3rem) !important;
  }
}

/* Production mobile overflow containment for wide decorative artwork. */
@media (max-width: 520px) {
  .home-page .communication-feature-cta,
  .about-page .about-mission-card,
  .about-page .about-drives-section,
  .programs-page .programs-hero-art {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: clip !important;
    contain: paint !important;
  }
}

/* 2026-06-11 Services hero background artwork and spacing refinement. */
.services-page .services-hero {
  isolation: isolate !important;
  position: relative !important;
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  min-height: clamp(520px, 54vw, 680px) !important;
  padding: clamp(4.25rem, 7vw, 6.75rem) 0 !important;
  background:
    radial-gradient(circle at 84% 50%, rgba(255, 46, 138, .1), transparent 36%),
    linear-gradient(90deg, var(--white) 0%, var(--white) 52%, rgba(255, 244, 249, .78) 100%) !important;
}

.services-page .services-hero-art {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 100vw !important;
  transform: translateX(-50%) !important;
  z-index: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.services-page .services-hero-art img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.services-page .services-hero::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .82) 0%,
    rgba(255, 255, 255, .48) 42%,
    rgba(255, 255, 255, .14) 68%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
}

.services-page .services-hero-grid {
  position: relative !important;
  z-index: 1 !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .82fr) !important;
  gap: clamp(2.5rem, 5.5vw, 5.5rem) !important;
  min-height: clamp(410px, 42vw, 540px) !important;
}

.services-page .services-hero h1 {
  max-width: 760px !important;
  font-size: clamp(3.35rem, 5.65vw, 6rem) !important;
  line-height: .95 !important;
}

.services-page .services-hero .lede {
  max-width: 620px !important;
  font-size: clamp(1.12rem, 1.45vw, 1.32rem) !important;
  line-height: 1.58 !important;
}

.services-page .services-hero-grid > div:last-child {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.services-page .services-hero-photo {
  position: relative !important;
  z-index: 1 !important;
  max-width: clamp(300px, 27vw, 405px) !important;
  border: 7px solid rgba(255, 255, 255, .96) !important;
  box-shadow:
    0 26px 62px rgba(20, 22, 58, .2),
    0 0 0 3px rgba(255, 46, 138, .34) !important;
}

@media (max-width: 980px) {
  .services-page .services-hero {
    min-height: auto !important;
    padding: clamp(3.25rem, 8vw, 4.75rem) 0 !important;
  }

  .services-page .services-hero-art {
    opacity: 1 !important;
  }

  .services-page .services-hero-art img {
    object-position: center center !important;
  }

  .services-page .services-hero::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, .74) 0%,
      rgba(255, 255, 255, .5) 45%,
      rgba(255, 255, 255, .14) 100%
    ) !important;
  }

  .services-page .services-hero-grid {
    grid-template-columns: 1fr !important;
    gap: clamp(1.5rem, 5vw, 2.5rem) !important;
    min-height: auto !important;
    text-align: center !important;
  }

  .services-page .services-hero h1,
  .services-page .services-hero .lede {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .services-page .services-hero h1 {
    font-size: clamp(3rem, 9vw, 4.75rem) !important;
  }

  .services-page .services-hero-photo {
    max-width: clamp(250px, 44vw, 340px) !important;
  }
}

@media (max-width: 520px) {
  .services-page .services-hero {
    padding: 2.75rem 0 3.5rem !important;
  }

  .services-page .services-hero-art {
    opacity: 1 !important;
  }

  .services-page .services-hero-art img {
    object-position: center center !important;
  }

  .services-page .services-hero-grid {
    gap: 1.35rem !important;
  }

  .services-page .services-hero h1 {
    font-size: clamp(2.52rem, 13vw, 3.35rem) !important;
    margin-bottom: 1rem !important;
  }

  .services-page .services-hero .lede {
    font-size: 1.02rem !important;
    line-height: 1.52 !important;
  }

  .services-page .services-hero-photo {
    max-width: clamp(210px, 64vw, 265px) !important;
    border-width: 6px !important;
  }
}

/* 2026-06-15 Programs capability content. */
.programs-page .program-capabilities,
.programs-page .signature-training,
.programs-page .program-engagement-options,
.programs-page .capability-snapshot {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.programs-page .program-capabilities,
.programs-page .program-engagement-options {
  background: var(--gray-100);
}

.programs-page .program-formats-section {
  background: linear-gradient(180deg, #fff7fb 0%, #ffffff 100%) !important;
  border-top: 1px solid rgba(255, 46, 138, .12);
  border-bottom: 1px solid rgba(0, 184, 181, .16);
}

.programs-page .program-capabilities {
  background: linear-gradient(180deg, #f4f8fb 0%, #eef7f7 100%) !important;
  border-bottom: 1px solid rgba(20, 22, 58, .08);
}

.programs-page .signature-training,
.programs-page .capability-snapshot {
  background: var(--white);
}

.programs-page .signature-training {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(255, 138, 0, .16);
}

.programs-page .speaking-possibilities-section {
  background: linear-gradient(180deg, #ffffff 0%, #fff9ef 100%) !important;
  border-top: 1px solid rgba(255, 138, 0, .16);
  border-bottom: 1px solid rgba(123, 44, 191, .14);
}

.programs-page .capability-snapshot {
  background: linear-gradient(180deg, #f8fbfb 0%, #ffffff 100%) !important;
}

.programs-page .program-capabilities .section-title,
.programs-page .signature-training .section-title,
.programs-page .program-engagement-options .section-title,
.programs-page .capability-snapshot .section-title {
  max-width: 820px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.programs-page .program-capabilities .section-title > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--gray-700);
}

.programs-page .program-section-kicker,
.programs-page .program-card-label {
  margin: 0 0 .55rem;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.programs-page .program-capabilities h2,
.programs-page .signature-training h2,
.programs-page .program-engagement-options h2,
.programs-page .capability-snapshot h2 {
  margin-bottom: .8rem;
  color: var(--pink);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
}

.programs-page .program-accordion-grid {
  display: grid;
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

.programs-page .program-detail-card {
  overflow: hidden;
  background: var(--white);
  border: 2px solid #d9dce6;
  border-top: 6px solid var(--pink);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.programs-page .program-detail-card:nth-child(2) {
  border-top-color: var(--teal);
}

.programs-page .program-detail-card:nth-child(3) {
  border-top-color: var(--orange);
}

.programs-page .program-detail-card summary {
  position: relative;
  display: grid;
  gap: .2rem;
  padding: 1.35rem 4rem 1.35rem 1.5rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.programs-page .program-detail-card summary::-webkit-details-marker {
  display: none;
}

.programs-page .program-detail-card summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 1.5rem;
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%);
}

.programs-page .program-detail-card:nth-child(2) summary::after {
  color: var(--teal);
}

.programs-page .program-detail-card:nth-child(3) summary::after {
  color: var(--orange);
}

.programs-page .program-detail-card[open] summary::after {
  content: '−';
}

.programs-page .program-detail-card summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -4px;
}

.programs-page .program-detail-card summary > span {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 800;
}

.programs-page .program-detail-card summary small {
  color: var(--gray-700);
  font-size: .92rem;
  font-weight: 500;
}

.programs-page .program-detail-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 0 1.5rem 1.75rem;
  border-top: 1px solid #e7e8ee;
}

.programs-page .program-detail-content > div {
  min-width: 0;
  padding-top: 1.5rem;
}

.programs-page .program-detail-content h3,
.programs-page .signature-program-card h3,
.programs-page .program-list-card h3,
.programs-page .snapshot-card h3 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
}

.programs-page .program-detail-content ul,
.programs-page .signature-program-card ul,
.programs-page .program-list-card ul,
.programs-page .snapshot-card ul {
  display: grid;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.programs-page .program-detail-content li,
.programs-page .signature-program-card li,
.programs-page .program-list-card li,
.programs-page .snapshot-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--gray-700);
  line-height: 1.48;
}

.programs-page .program-detail-content li::before,
.programs-page .signature-program-card li::before,
.programs-page .program-list-card li::before,
.programs-page .snapshot-card li::before {
  content: '';
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
}

.programs-page .signature-training-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.75fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}

.programs-page .signature-program-card,
.programs-page .program-list-card,
.programs-page .snapshot-card {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--white);
  border: 2px solid #d9dce6;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.programs-page .signature-program-card {
  border-top: 6px solid var(--orange);
}

.programs-page .leadership-program-card {
  border-top-color: var(--purple);
}

.programs-page .leadership-course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.4vw, 2rem);
}

.programs-page .leadership-course-grid > div {
  min-width: 0;
}

.programs-page .program-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.25rem);
  max-width: 1100px;
  margin: 0 auto;
}

.programs-page .program-options-grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.programs-page .program-list-card:first-child {
  border-top: 6px solid var(--teal);
}

.programs-page .program-list-card:last-child {
  border-top: 6px solid var(--pink);
}

.programs-page .program-list-card--formats {
  border-top-color: var(--teal) !important;
}

.programs-page .program-list-card--topics {
  border-top-color: var(--pink) !important;
}

.programs-page .program-list-card strong {
  color: var(--navy);
}

.programs-page .speaking-possibilities-cta {
  display: flex;
  gap: .95rem;
  align-items: center;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  flex-direction: column;
  text-align: center;
}

.programs-page .speaking-possibilities-cta p {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
}

.programs-page .speaking-possibilities-cta .btn {
  margin: 0 auto;
  white-space: nowrap;
}

.programs-page .capability-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.programs-page .snapshot-card {
  border-top: 6px solid var(--pink);
}

.programs-page .snapshot-card:nth-child(2) {
  border-top-color: var(--teal);
}

.programs-page .snapshot-card:nth-child(3) {
  border-top-color: var(--orange);
}

@media (max-width: 980px) {
  .programs-page .signature-training-grid,
  .programs-page .capability-snapshot-grid {
    grid-template-columns: 1fr;
  }

  .programs-page .leadership-course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .programs-page .program-detail-content,
  .programs-page .leadership-course-grid,
  .programs-page .program-options-grid {
    grid-template-columns: 1fr;
  }

  .programs-page .program-detail-card summary {
    padding: 1.2rem 3.25rem 1.2rem 1.15rem;
  }

  .programs-page .program-detail-card summary::after {
    right: 1.15rem;
  }

  .programs-page .program-detail-content {
    gap: 0;
    padding: 0 1.15rem 1.4rem;
  }
}

@media (max-width: 520px) {
  .programs-page .program-capabilities,
  .programs-page .signature-training,
  .programs-page .program-engagement-options,
  .programs-page .capability-snapshot {
    padding: 3.5rem 0;
  }

  .programs-page .signature-program-card,
  .programs-page .program-list-card,
  .programs-page .snapshot-card {
    padding: 1.35rem 1.15rem;
  }
}

/* Home hero: use the owner-provided artwork without the previous light wash. */
.home-page .home-hero::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

.home-page .home-hero h1,
.home-page .home-hero .lede {
  color: var(--white) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .58);
}

@media (max-width: 720px) {
  .home-page .home-hero .home-hero-grid {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .home-page .home-hero .home-hero-text {
    width: min(100%, 350px) !important;
    max-width: 100% !important;
    margin-right: auto !important;
    text-align: left !important;
  }

  .home-page .home-hero .hero-main-image {
    object-position: 32% top !important;
  }

  .home-page .home-hero h1 {
    font-size: clamp(2.35rem, 10.25vw, 3.45rem) !important;
  }

  .home-page .home-hero .lede {
    max-width: 34ch !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .home-page .home-hero-cta {
    justify-content: flex-start !important;
  }
}

@media (max-width: 430px) {
  .home-page .home-hero .home-hero-text {
    width: 100% !important;
  }

  .home-page .home-hero-cta {
    align-items: stretch !important;
    flex-direction: column !important;
    width: min(100%, 330px) !important;
  }

  .home-page .home-hero-cta .btn {
    width: 100% !important;
  }
}

/* Home hero: preserve the full 1380 x 775 artwork instead of cropping it. */
.home-page {
  --home-hero-height-fluid: clamp(540px, calc(100svh - 92px), 1078px);
}

.home-page .home-hero,
.home-page .home-hero .home-hero-image {
  background: #000 !important;
}

.home-page .home-hero .hero-main-image {
  object-fit: fill !important;
  object-position: center top !important;
}

@media (max-width: 980px) {
  .home-page .home-hero .hero-main-image {
    object-fit: contain !important;
  }

  .home-page .home-hero {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .home-page .home-hero .home-hero-image {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1380 / 775;
    transform: none !important;
  }

  .home-page .home-hero .home-hero-grid {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 2.5rem 1.5rem 3rem !important;
  }

  .home-page .home-hero .home-hero-text {
    width: min(100%, 620px) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    transform: none !important;
    text-align: center !important;
    align-items: center !important;
  }

  .home-page .home-hero .lede {
    max-width: 38rem !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .home-page .home-hero-cta {
    justify-content: center !important;
  }

  .home-page .home-hero .home-hero-image .floating-bubble {
    display: none !important;
  }

  .home-page .home-hero .hero-wendy-overlay {
    right: 0 !important;
    height: 98% !important;
    max-width: 55% !important;
    max-height: 98% !important;
  }
}

@media (max-width: 430px) {
  .home-page .home-hero .home-hero-grid {
    padding: 2rem 1.25rem 2.5rem !important;
  }

  .home-page .home-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3rem) !important;
  }

  .home-page .home-hero .hero-wendy-overlay {
    max-width: 62% !important;
  }
}

/* Home testimonial: wide editorial quote treatment inspired by the supplied reference. */
.home-page .testimonial-strip {
  min-height: clamp(420px, 34vw, 540px) !important;
  padding: 3rem 0 !important;
  background-position: center center !important;
}

.home-page .testimonial-strip > .container {
  width: min(100% - 3rem, 1320px) !important;
  max-width: 1320px !important;
  display: flex;
  align-items: center;
  min-height: inherit;
}

.home-page .testimonial-strip blockquote {
  width: min(62%, 790px) !important;
  max-width: 790px !important;
  margin: 0 !important;
  padding: 2.5rem 2.75rem 2.5rem 6rem !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, .84) !important;
  box-shadow: var(--shadow-lg) !important;
  backdrop-filter: blur(3px);
  color: #111 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.35rem, 2vw, 2rem) !important;
  font-weight: 700 !important;
  font-style: italic !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

.home-page .testimonial-strip blockquote::before {
  position: absolute;
  top: 2rem;
  left: 1.35rem;
  width: 72px !important;
  height: 58px !important;
  margin: 0 !important;
}

.home-page .testimonial-strip cite {
  margin-top: 1.35rem !important;
  color: #111 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.05rem, 1.45vw, 1.4rem) !important;
  font-weight: 800 !important;
  font-style: normal !important;
}

@media (max-width: 980px) {
  .home-page .testimonial-strip {
    min-height: 480px !important;
    background-position: 64% center !important;
  }

  .home-page .testimonial-strip blockquote {
    width: min(72%, 680px) !important;
    padding: 2rem 2rem 2rem 4.75rem !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .78) !important;
    box-shadow: var(--shadow-md) !important;
    backdrop-filter: blur(3px);
  }

  .home-page .testimonial-strip blockquote::before {
    top: 1.75rem;
    left: 1rem;
    width: 58px !important;
    height: 46px !important;
  }
}

@media (max-width: 720px) {
  .home-page .testimonial-strip {
    min-height: 520px !important;
    padding: 2rem 0 !important;
    background-position: 68% center !important;
  }

  .home-page .testimonial-strip > .container {
    width: min(100% - 2rem, 560px) !important;
  }

  .home-page .testimonial-strip blockquote {
    width: 100% !important;
    padding: 4.5rem 1.4rem 2rem !important;
    font-size: clamp(1.05rem, 4.5vw, 1.3rem) !important;
    line-height: 1.5 !important;
  }

  .home-page .testimonial-strip blockquote::before {
    top: 1.35rem;
    left: 50%;
    width: 58px !important;
    height: 46px !important;
    transform: translateX(-50%);
  }

  .home-page .testimonial-strip cite {
    font-size: 1rem !important;
  }
}

/* About hero: clean rolling purple-to-pink field matching the supplied reference. */
.about-page .about-hero.about-hero-custom {
  background-color: #fc2d8a !important;
  background-image: linear-gradient(90deg, #6b28b4 0%, #6b28b4 18%, #fc2d8a 42%, #fc2d8a 58%, #6b28b4 82%, #6b28b4 100%) !important;
  background-size: 300% 100% !important;
  animation: gradient-flow 10s linear infinite !important;
}

.about-page .about-hero.about-hero-custom::before {
  content: none !important;
  display: none !important;
  background: none !important;
  animation: none !important;
}

.about-page .about-hero.about-hero-custom::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.about-page .about-hero-content {
  position: relative;
  z-index: 1;
}

.about-page .about-hero-art {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.about-page .about-hero-person {
  filter: none !important;
}

@keyframes aboutHeroColorRoll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(222%);
  }
}

.about-page .about-faith-section .about-body {
  margin-right: auto;
  margin-left: clamp(0rem, 2.25vw, 2rem);
}

@media (max-width: 768px) {
  .about-page .about-faith-section .about-body {
    margin-left: 0;
  }
}

/* Services hero: preserve the complete owner-provided 1672 x 941 artwork. */
.services-page .services-hero {
  height: clamp(620px, 56.28vw, 1080px) !important;
  min-height: clamp(620px, 56.28vw, 1080px) !important;
  padding: 0 !important;
  background: #6b1fc2 !important;
}

.services-page .services-hero-art {
  background: #6b1fc2 !important;
}

.services-page .services-hero-art img {
  object-fit: contain !important;
  object-position: center top !important;
}

.services-page .services-hero::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.services-page .services-hero-grid {
  height: 100% !important;
  min-height: 0 !important;
  align-items: center !important;
}

.services-page .services-hero h1,
.services-page .services-hero .lede {
  color: var(--white) !important;
  text-shadow: 0 2px 12px rgba(20, 22, 58, .4);
}

@media (max-width: 980px) {
  .services-page .services-hero {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 0 3.5rem !important;
  }

  .services-page .services-hero-art {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1672 / 941;
    transform: none !important;
  }

  .services-page .services-hero-grid {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 2.75rem !important;
  }

  .services-page .services-hero h1,
  .services-page .services-hero .lede {
    color: var(--white) !important;
  }
}

@media (min-width: 600px) and (max-width: 980px) {
  .services-page .services-hero-grid {
    grid-template-columns: minmax(0, 1fr) 240px !important;
    gap: 2rem !important;
    text-align: left !important;
  }

  .services-page .services-hero h1,
  .services-page .services-hero .lede {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .services-page .services-hero h1 {
    font-size: clamp(3rem, 7vw, 4.15rem) !important;
  }

  .services-page .services-hero-photo {
    max-width: 240px !important;
  }
}

@media (max-width: 520px) {
  .services-page .services-hero {
    padding-bottom: 3rem !important;
  }

  .services-page .services-hero-grid {
    padding-top: 2.25rem !important;
    gap: 1.75rem !important;
  }

  .services-page .services-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3rem) !important;
  }

  .services-page .services-hero-photo {
    max-width: 210px !important;
  }
}

/* Services Career Coaching feature: reference-matched, section-scoped layout. */
.services-page .career-coaching-hero {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  height: clamp(320px, 29vw, 420px);
  aspect-ratio: auto;
  padding: 0 !important;
  overflow: hidden !important;
  background: #050505 !important;
}

.services-page .career-coaching-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: scale(1.1);
  transform-origin: 75% center;
  background: #050505 !important;
}

.services-page .career-coaching-hero-content {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  min-height: 100% !important;
  height: 100% !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  padding: clamp(2.75rem, 5.2vw, 5.25rem) 1.5rem 2rem !important;
  text-align: left !important;
}

.services-page .career-script {
  margin: 0 0 .45rem !important;
  color: var(--pink) !important;
  font-size: clamp(3.5rem, 6vw, 6.5rem) !important;
  line-height: .9 !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .5);
}

.services-page .career-coaching-hero h2 {
  margin: 0 !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.15rem, 2vw, 2rem) !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .72);
}

.services-page .career-suitcase {
  display: none !important;
}

.services-page .career-coaching-details {
  padding: clamp(3rem, 4.5vw, 4.25rem) 0 !important;
  background: var(--white) !important;
}

.services-page .career-coaching-grid {
  grid-template-columns: minmax(0, 1fr) minmax(450px, 500px) !important;
  gap: clamp(3rem, 4vw, 4.5rem) !important;
  align-items: start !important;
}

.services-page .career-coaching-left {
  display: flex;
  min-width: 0 !important;
  max-width: none !important;
  flex-direction: column;
  align-items: flex-start;
}

.services-page .career-coaching-left h2 {
  max-width: 620px !important;
  margin: 0 0 2.25rem !important;
  color: var(--teal) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.45rem, 1.8vw, 1.75rem) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.services-page .career-heading-line {
  white-space: normal !important;
}

.services-page .career-check-list {
  gap: .85rem !important;
  margin: 0 0 2rem !important;
}

.services-page .career-check-list li {
  align-items: center !important;
  gap: .75rem !important;
  color: #161616 !important;
  font-size: clamp(1rem, 1.15vw, 1.1rem) !important;
  line-height: 1.4 !important;
}

.services-page .career-check-list img {
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px !important;
  margin: 0 !important;
}

.services-page .career-learn-more {
  min-width: 180px !important;
  margin-top: .75rem;
  border-radius: 4px !important;
}

.services-page .coaching-packages-box {
  justify-self: stretch !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  min-height: 100%;
  padding: clamp(2rem, 3vw, 3rem) !important;
  border: 3px solid rgba(255, 46, 138, .55) !important;
  border-radius: 14px !important;
  background: var(--white) !important;
  box-shadow: none !important;
}

.services-page .coaching-packages-box h3 {
  margin: 0 0 2rem !important;
  color: var(--teal) !important;
  font-size: clamp(1.6rem, 2.1vw, 2rem) !important;
  line-height: 1.15 !important;
  text-align: center !important;
  white-space: normal !important;
}

.services-page .package-list {
  gap: 1.35rem !important;
  margin-bottom: 2rem !important;
}

.services-page .package-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: .85rem;
  align-items: start;
}

.services-page .package-item > img {
  width: 28px !important;
  height: 36px !important;
  margin-top: -.2rem !important;
  object-fit: contain;
}

.services-page .package-copy {
  min-width: 0;
}

.services-page .package-name {
  color: #161616 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1rem, 1.2vw, 1.12rem) !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  white-space: normal !important;
}

.services-page .package-name span {
  display: inline;
  font-weight: 600;
}

.services-page .package-name-session {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  flex-wrap: nowrap;
}

.services-page .package-name-session .package-title {
  white-space: nowrap;
  font-weight: 700;
}

.services-page .package-name-session .package-duration {
  white-space: nowrap;
  font-size: .78em;
  font-weight: 500;
}

.services-page .package-price {
  margin: .3rem 0 0 !important;
  color: #161616 !important;
  font-size: clamp(.92rem, 1.08vw, 1rem) !important;
  line-height: 1.45 !important;
}

.services-page .package-note {
  max-width: 34ch;
  margin: 1.75rem auto 0 !important;
  color: #161616 !important;
  font-size: clamp(.95rem, 1.1vw, 1rem) !important;
  line-height: 1.55 !important;
}

@media (max-width: 980px) {
  .services-page .career-coaching-hero {
    height: clamp(300px, 38vw, 360px);
  }

  .services-page .career-coaching-bg {
    transform: scale(1.06);
    transform-origin: 72% center;
  }

  .services-page .career-coaching-hero-content {
    padding-top: clamp(2.5rem, 7vw, 4.5rem) !important;
  }

  .services-page .career-coaching-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .services-page .career-coaching-left,
  .services-page .coaching-packages-box {
    width: min(100%, 680px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .services-page .career-learn-more {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .services-page .career-coaching-hero {
    height: 260px;
    min-height: 260px !important;
  }

  .services-page .career-coaching-bg {
    object-fit: cover !important;
    object-position: 28% center !important;
    transform: none;
  }

  .services-page .career-coaching-hero-content {
    min-height: 260px !important;
    padding: 2.5rem 1.25rem 1.75rem !important;
  }

  .services-page .career-script {
    font-size: clamp(3.15rem, 15vw, 4.25rem) !important;
  }

  .services-page .career-coaching-hero h2 {
    max-width: 16rem !important;
    font-size: 1.05rem !important;
  }

  .services-page .career-coaching-details {
    padding: 2.75rem 0 !important;
  }

  .services-page .career-coaching-left h2 {
    font-size: 1.35rem !important;
  }

  .services-page .career-check-list img {
    width: 32px !important;
    height: 32px !important;
    flex-basis: 32px !important;
  }

  .services-page .coaching-packages-box {
    padding: 1.75rem 1.35rem !important;
  }

  .services-page .coaching-packages-box h3 {
    font-size: 1.45rem !important;
  }

  .services-page .package-item {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: .65rem;
  }

  .services-page .package-item > img {
    width: 24px !important;
    height: 32px !important;
  }

  .services-page .package-name span {
    display: block;
    margin-top: .1rem;
  }
}

/* Shared page-hero sizing, based on the Programs hero. */
.programs-page .programs-hero-custom,
.services-page .services-hero,
.blog-page .blog-hero,
.gallery-page .gallery-hero {
  box-sizing: border-box !important;
  width: 100vw !important;
  height: 760px !important;
  min-height: 760px !important;
  max-height: 760px !important;
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden !important;
}

.programs-page .programs-hero-inner,
.services-page .services-hero-grid,
.gallery-page .gallery-hero-content {
  box-sizing: border-box !important;
  height: 100% !important;
  min-height: 0 !important;
  align-items: center !important;
}

.blog-page .blog-hero > .container {
  box-sizing: border-box !important;
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.services-page .services-hero-art {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  transform: none !important;
}

.services-page .services-hero-art img {
  width: 100% !important;
  height: 100% !important;
  object-fit: fill !important;
  object-position: center center !important;
}

.services-page .services-hero-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr) !important;
  gap: clamp(1.75rem, 3.5vw, 3.5rem) !important;
}

.services-page .services-hero-grid > div:first-child {
  max-width: 820px;
}

.services-page .services-hero h1 {
  max-width: 820px !important;
  margin-bottom: 1rem !important;
  font-size: clamp(2.85rem, 4.5vw, 4.9rem) !important;
  line-height: 1 !important;
}

.services-page .services-hero .lede {
  max-width: 720px !important;
  font-size: clamp(1rem, 1.2vw, 1.18rem) !important;
  line-height: 1.5 !important;
}

.blog-page .blog-hero,
.gallery-page .gallery-hero {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 980px) {
  .programs-page .programs-hero-custom,
  .services-page .services-hero,
  .blog-page .blog-hero,
  .gallery-page .gallery-hero {
    height: auto !important;
    min-height: clamp(560px, 78vw, 760px) !important;
    max-height: none !important;
  }

  .programs-page .programs-hero-inner,
  .services-page .services-hero-grid,
  .gallery-page .gallery-hero-content {
    height: auto !important;
    min-height: clamp(560px, 78vw, 760px) !important;
  }

  .blog-page .blog-hero > .container {
    height: auto !important;
    min-height: clamp(560px, 78vw, 760px) !important;
  }
}

@media (max-width: 720px) {
  .programs-page .programs-hero-custom,
  .services-page .services-hero,
  .blog-page .blog-hero,
  .gallery-page .gallery-hero {
    min-height: 520px !important;
  }

  .programs-page .programs-hero-inner,
  .services-page .services-hero-grid,
  .gallery-page .gallery-hero-content {
    min-height: 520px !important;
  }

  .blog-page .blog-hero > .container {
    min-height: 520px !important;
  }
}

/* Programs Custom Solutions: bottom-left full-height artwork with balanced copy. */
@media (min-width: 981px) {
  .programs-page .programs-custom-solutions {
    position: relative !important;
    height: clamp(560px, 46vw, 700px) !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    display: block !important;
  }

  .programs-page .programs-custom-grid {
    position: static !important;
    height: 100% !important;
    min-height: 0 !important;
    grid-template-columns: minmax(49%, 1fr) minmax(430px, .95fr) !important;
    gap: clamp(2rem, 4vw, 4rem) !important;
    align-items: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .programs-page .programs-custom-image {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: min(48vw, 780px) !important;
    height: 100% !important;
    margin: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
  }

  .programs-page .programs-custom-image img {
    width: auto !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: left bottom !important;
    margin: 0 !important;
  }

  .programs-page .programs-custom-copy {
    grid-column: 2 !important;
    align-self: center !important;
    width: 100% !important;
    max-width: 600px !important;
    padding: clamp(2rem, 4vw, 3.5rem) 0 !important;
    margin: 0 0 0 auto !important;
  }

  .programs-page .programs-custom-copy h2 {
    margin-bottom: 1rem !important;
    font-size: clamp(2.8rem, 4.3vw, 4.15rem) !important;
  }

  .programs-page .programs-custom-copy p {
    max-width: 580px !important;
    margin-bottom: 1.4rem !important;
    font-size: clamp(1.08rem, 1.35vw, 1.25rem) !important;
    line-height: 1.55 !important;
  }

  .programs-page .programs-check-list {
    gap: .85rem !important;
    margin-bottom: 1.6rem !important;
  }
}

/* Gallery hero: smaller Wendy, desk cropped below, copy aligned right. */
.gallery-page .gallery-hero {
  position: relative;
  background-color: #050505 !important;
  background-size: 100% 100% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.gallery-page .gallery-hero-content {
  justify-content: flex-end !important;
}

.gallery-page .gallery-hero-copy {
  width: min(50%, 650px) !important;
  margin-left: auto !important;
  text-align: left !important;
}

.gallery-page .gallery-hero-copy h2,
.gallery-page .gallery-hero-copy p {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .65);
}

.gallery-page .gallery-hero-copy h2 {
  white-space: nowrap;
}

.gallery-page .gallery-hero-content {
  position: relative;
}

.gallery-page .gallery-hero-portrait {
  position: absolute;
  top: 48%;
  left: clamp(2rem, 7vw, 8rem);
  width: clamp(340px, 32vw, 520px);
  aspect-ratio: 1;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 1.2vw, 18px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(123, 44, 191, .95), rgba(255, 46, 138, .96) 58%, rgba(0, 184, 181, .9));
  border: 6px solid var(--pink);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%);
  animation: none;
  pointer-events: none;
}

@media (min-width: 981px) {
  .gallery-page .gallery-hero-portrait {
    left: clamp(6.5rem, 12vw, 13rem);
  }
}

.gallery-page .gallery-hero-portrait::before {
  content: none;
}

.gallery-page .gallery-hero-portrait::after {
  content: none;
}

.gallery-page .gallery-hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 18%;
  margin: 0;
  transform: scale(1.18);
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .24));
}

.gallery-page .gallery-hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

@media (max-width: 980px) {
  .gallery-page .gallery-hero {
    background-size: 100% 100% !important;
    background-position: center center !important;
  }

  .gallery-page .gallery-hero-portrait {
    top: 47%;
    left: 1.5rem;
    width: clamp(290px, 40vw, 410px);
  }

  .gallery-page .gallery-hero-copy {
    width: min(54%, 520px) !important;
  }
}

@media (max-width: 720px) {
  .gallery-page .gallery-hero {
    background-size: 100% 100% !important;
    background-position: center center !important;
  }

  .gallery-page .gallery-hero-portrait {
    top: 47%;
    left: .75rem;
    width: min(47vw, 260px);
    transform: translateY(-50%);
    border-width: 4px;
    padding: 8px;
  }

  .gallery-page .gallery-hero-copy {
    width: 58% !important;
    margin-right: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-page .gallery-hero-portrait {
    animation: none;
  }
}

/* Gallery closing CTA: compact, contained, and responsive. */
.gallery-page .gallery-create-section {
  min-height: 340px !important;
  padding: clamp(2.75rem, 4.5vw, 4.25rem) 0 !important;
}

.gallery-page .gallery-create-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(90px, 140px) minmax(0, 1fr) minmax(190px, auto) !important;
  align-items: center !important;
  gap: clamp(2.5rem, 5vw, 6rem) !important;
  padding-right: clamp(1.5rem, 4vw, 3.5rem) !important;
  padding-left: clamp(1.5rem, 4vw, 3.5rem) !important;
}

.gallery-page .gallery-create-copy {
  width: 100% !important;
  max-width: 720px !important;
  justify-self: start !important;
  padding-right: clamp(1rem, 2vw, 2rem);
  text-align: left !important;
}

.gallery-page .gallery-create-copy h2,
.gallery-page .gallery-create-copy p {
  margin-right: 0 !important;
  margin-left: 0 !important;
  text-align: left !important;
}

.gallery-page .gallery-create-copy h2 {
  font-size: clamp(2.5rem, 3.35vw, 3.65rem) !important;
  white-space: nowrap !important;
}

.gallery-page .gallery-create-copy p {
  max-width: 650px !important;
}

.gallery-page .gallery-create-mic img {
  width: clamp(72px, 8vw, 120px) !important;
}

.gallery-page .gallery-create-action {
  grid-column: auto !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center;
  padding-left: clamp(.5rem, 2vw, 2rem);
}

.gallery-page .gallery-book-btn {
  min-width: 180px;
}

@media (max-width: 1024px) {
  .gallery-page .gallery-create-section {
    min-height: 0 !important;
    padding: 3rem 0 !important;
  }

  .gallery-page .gallery-create-grid {
    grid-template-columns: minmax(80px, 110px) minmax(0, 1fr) !important;
    gap: 1.75rem 2.5rem !important;
  }

  .gallery-page .gallery-create-action {
    grid-column: 2 !important;
    justify-content: flex-start !important;
    padding-left: 0;
  }

  .gallery-page .gallery-create-copy h2 {
    font-size: clamp(2.5rem, 6vw, 3.75rem) !important;
    white-space: normal !important;
  }
}

@media (max-width: 720px) {
  .gallery-page .gallery-create-section {
    padding: 2.75rem 0 !important;
  }

  .gallery-page .gallery-create-grid {
    grid-template-columns: 1fr !important;
    gap: 1.35rem !important;
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
    text-align: center !important;
  }

  .gallery-page .gallery-create-mic,
  .gallery-page .gallery-create-action {
    grid-column: 1 !important;
    justify-content: center !important;
  }

  .gallery-page .gallery-create-copy {
    max-width: 34rem !important;
    justify-self: center !important;
    padding-right: 0;
    text-align: center !important;
  }

  .gallery-page .gallery-create-copy h2,
  .gallery-page .gallery-create-copy p {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .gallery-page .gallery-create-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem) !important;
  }

  .gallery-page .gallery-book-btn {
    width: min(100%, 220px);
  }
}

/* Blog hero: reference-matched layered title over the owner-provided artwork. */
.blog-page .blog-hero {
  background-image: url("../images/blog/blog-pic.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.blog-page .blog-hero > .container {
  align-items: center !important;
}

.blog-page .blog-hero-copy {
  width: min(100%, 1180px);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.blog-page .blog-hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(360px, 32vw, 500px);
  min-height: clamp(96px, 9vw, 138px);
  padding: 1rem 2.75rem 1.25rem;
  color: #ffffff;
  background: url("../images/blog/blog-brush-stroke.png") center / 100% 100% no-repeat;
  font-family: var(--font-script);
  font-size: clamp(4rem, 5.8vw, 6rem);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(20, 22, 58, .3);
  transform: translateX(clamp(-8rem, -9vw, -4rem)) rotate(-5deg);
  transform-origin: center;
}

.blog-page .blog-hero-copy h1 {
  margin: -.35rem 0 0 !important;
  color: #ffffff !important;
  text-shadow: 0 3px 14px rgba(20, 22, 58, .3);
}

.blog-page .blog-hero-title-bold,
.blog-page .blog-hero-title-script {
  display: block;
  color: #ffffff;
}

.blog-page .blog-hero-title-bold {
  font-family: var(--font-display);
  font-size: clamp(6rem, 9vw, 9rem);
  font-weight: 900;
  line-height: .95;
}

.blog-page .blog-hero-title-script {
  margin-top: -.08em;
  font-family: var(--font-script);
  font-size: clamp(8.5rem, 13vw, 13rem);
  font-weight: 400;
  line-height: .82;
}

@media (max-width: 720px) {
  .blog-page .blog-hero-copy {
    width: min(100%, 38rem);
    margin-left: 0;
    text-align: left;
  }

  .blog-page .blog-hero-kicker {
    min-width: 230px;
    min-height: 64px;
    font-size: clamp(2.6rem, 10vw, 3.5rem);
    transform: rotate(-4deg);
  }

  .blog-page .blog-hero-title-bold {
    font-size: clamp(3.5rem, 15vw, 5.25rem);
  }

  .blog-page .blog-hero-title-script {
    font-size: clamp(5rem, 21vw, 7.25rem);
  }
}

/* Focused public-site mobile responsiveness pass. */
@media (max-width: 980px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  section,
  .container {
    min-width: 0;
  }

  img,
  svg,
  video,
  iframe {
    max-width: 100%;
  }

  .btn,
  button,
  input,
  select,
  textarea {
    max-width: 100%;
  }

  .site-header .nav-list {
    width: min(320px, calc(100vw - 1rem)) !important;
    max-width: calc(100vw - 1rem) !important;
  }

  .services-page .services-hero-art {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .services-page .services-hero-art img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .services-page .services-hero-grid {
    height: auto !important;
    min-height: clamp(560px, 78vw, 760px) !important;
    grid-template-columns: 1fr !important;
    align-content: center !important;
    gap: 1.5rem !important;
    padding: 3rem 1.5rem !important;
    text-align: center !important;
  }

  .services-page .services-hero-grid > div:first-child {
    width: min(100%, 680px);
    max-width: 100%;
    margin: 0 auto;
  }

  .services-page .services-hero h1 {
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: clamp(2.65rem, 8vw, 4.15rem) !important;
  }

  .services-page .services-hero .lede {
    max-width: 38rem !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .services-page .services-hero-photo {
    width: min(46vw, 260px) !important;
    max-width: 260px !important;
  }

  .services-page .career-coaching-bg {
    transform: none !important;
  }

  .gallery-page .gallery-hero {
    background-size: cover !important;
    background-position: 38% center !important;
  }

  .gallery-page .gallery-hero-content {
    justify-content: flex-end !important;
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .gallery-page .gallery-hero-copy {
    width: min(56%, 440px) !important;
    max-width: 440px !important;
  }

  .gallery-page .gallery-title-word {
    padding-right: .18em !important;
    font-size: clamp(3.4rem, 12vw, 5.5rem) !important;
  }

  .gallery-page .gallery-sparkle {
    width: clamp(26px, 6vw, 40px) !important;
  }

  .gallery-page .gallery-hero-copy h2 {
    font-size: clamp(1.45rem, 4.3vw, 2.4rem) !important;
    white-space: nowrap !important;
  }

  .gallery-page .gallery-hero-copy p {
    font-size: clamp(.92rem, 2.3vw, 1.05rem) !important;
    line-height: 1.55 !important;
  }

  .contact-page .testimonial-carousel,
  .contact-page .testimonial-carousel__viewport {
    width: 100%;
    max-width: 100%;
    overflow: hidden !important;
  }

  .contact-page .testimonial-carousel__track {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-header .nav {
    min-height: 82px;
  }

  .site-header .nav-logo img {
    max-width: 180px;
    max-height: 72px;
  }

  .services-page .services-hero-grid {
    min-height: 520px !important;
    padding: 2.5rem 1.25rem !important;
  }

  .services-page .services-hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.15rem) !important;
    line-height: 1.02 !important;
  }

  .services-page .services-hero .lede {
    font-size: .98rem !important;
    line-height: 1.5 !important;
  }

  .services-page .services-hero-photo {
    width: min(56vw, 220px) !important;
  }

  .gallery-page .gallery-hero {
    background-position: 34% center !important;
  }

  .gallery-page .gallery-hero-content {
    min-height: 520px !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .gallery-page .gallery-hero-copy {
    width: 56% !important;
    max-width: 14rem !important;
  }

  .gallery-page .gallery-title-word {
    font-size: clamp(3.1rem, 14vw, 4.25rem) !important;
  }

  .gallery-page .gallery-hero-copy h2 {
    font-size: clamp(1.35rem, 5.6vw, 1.75rem) !important;
  }

  .gallery-page .gallery-hero-copy p {
    font-size: .92rem !important;
    line-height: 1.5 !important;
  }

  .blog-page .blog-hero > .container {
    align-items: center !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .blog-page .blog-hero-copy {
    width: 100% !important;
    max-width: 23rem !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .blog-page .blog-hero-kicker {
    min-width: min(72vw, 270px) !important;
    min-height: 62px !important;
    font-size: clamp(2rem, 9vw, 2.75rem) !important;
    transform: rotate(-4deg) !important;
  }

  .blog-page .blog-hero-title-bold {
    font-size: clamp(3rem, 13vw, 4.25rem) !important;
    white-space: nowrap;
  }

  .blog-page .blog-hero-title-script {
    font-size: clamp(4.6rem, 19vw, 6.25rem) !important;
  }

  .footer-grid,
  .site-footer .footer-grid,
  .contact-page .site-footer .footer-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.75rem !important;
  }

  .site-footer {
    padding: 3rem 0 1.5rem !important;
  }

  .site-footer .footer-brand,
  .site-footer .footer-col,
  .site-footer .footer-bottom {
    min-width: 0;
  }

  .site-footer .footer-bottom {
    gap: .75rem !important;
  }

  .programs-page .programs-hero-art img {
    max-width: none !important;
  }
}

/* Gallery hero: stack the portrait above the copy when side-by-side space runs out. */
@media (max-width: 720px) {
  .gallery-page .gallery-hero {
    min-height: 620px !important;
  }

  .gallery-page .gallery-hero-portrait {
    top: 1.25rem !important;
    left: 50% !important;
    width: clamp(190px, 48vw, 240px) !important;
    transform: translateX(-50%) !important;
  }

  .gallery-page .gallery-hero-content {
    min-height: 620px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding-top: clamp(245px, 58vw, 285px) !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .gallery-page .gallery-hero-copy {
    width: 100% !important;
    max-width: 26rem !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .gallery-page .gallery-hero-copy p {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

/* Local no-AI FAQ chatbot, using the footer speech-bubble artwork as the interactive launcher. */
.site-footer::after {
  content: none !important;
  display: none !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.faq-chatbot {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 925;
  width: min(360px, calc(100vw - 2rem));
  pointer-events: none;
}

.faq-chatbot__toggle,
.faq-chatbot__panel {
  pointer-events: auto;
}

.faq-chatbot__toggle {
  display: flex;
  width: 92px;
  height: 74px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 10px 22px rgba(20, 22, 58, .24));
  transition: transform var(--transition), filter var(--transition);
}

.faq-chatbot__toggle:hover,
.faq-chatbot__toggle:focus-visible {
  transform: translateY(-3px) rotate(-2deg);
  filter: drop-shadow(0 14px 28px rgba(123, 44, 191, .32));
}

.faq-chatbot__icon {
  display: block;
  width: 90px;
  height: 70px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 70' fill='%23ffffff' stroke='%23ff2e8a' stroke-width='2.5'><ellipse cx='35' cy='28' rx='28' ry='22'/><circle cx='25' cy='28' r='2.5' fill='%23ff2e8a'/><circle cx='35' cy='28' r='2.5' fill='%23ff2e8a'/><circle cx='45' cy='28' r='2.5' fill='%23ff2e8a'/><path d='M22 47 L18 60 L32 50'/><ellipse cx='65' cy='40' rx='18' ry='14' fill='%23d6f5f4' stroke='%2300b8b5'/></svg>") no-repeat center / contain;
}

.faq-chatbot__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + .75rem);
  display: flex;
  max-height: min(560px, calc(100vh - 7rem));
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(0, 184, 181, .32);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(20, 22, 58, .26);
  transform: translateY(12px) scale(.98);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.faq-chatbot.is-open .faq-chatbot__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.faq-chatbot__header {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem .9rem;
  border-radius: 20px 20px 0 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink) 0%, #ff4aa0 34%, var(--purple) 72%, var(--teal) 100%);
  background-size: 200% 200%;
  animation: gradient-flow 10s ease infinite;
}

.faq-chatbot__eyebrow {
  margin: 0 0 .2rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq-chatbot__header h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.15;
}

.faq-chatbot__close {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.faq-chatbot__disclaimer {
  margin: 0;
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--teal-soft);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
}

.faq-chatbot__messages {
  display: flex;
  min-height: 180px;
  max-height: 300px;
  overflow-y: auto;
  flex-direction: column;
  gap: .8rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 184, 181, .12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
}

.faq-chatbot__message {
  display: flex;
  max-width: 92%;
  align-items: flex-end;
  gap: .5rem;
  color: var(--navy);
  font-size: .9rem;
  line-height: 1.42;
}

.faq-chatbot__message-content {
  padding: .75rem .9rem;
  border-radius: 18px;
}

.faq-chatbot__message--bot {
  align-self: flex-start;
}

.faq-chatbot__message--bot .faq-chatbot__message-content {
  border-bottom-left-radius: 6px;
  background: var(--white);
  border: 1px solid rgba(0, 184, 181, .18);
  box-shadow: 0 8px 20px rgba(20, 22, 58, .08);
}

.faq-chatbot__message--user {
  align-self: flex-end;
  justify-content: flex-end;
}

.faq-chatbot__message--user .faq-chatbot__message-content {
  border-bottom-right-radius: 6px;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(255, 46, 138, .2);
}

.faq-chatbot__message p {
  margin: 0;
}

.faq-chatbot__avatar {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  color: var(--white);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(20, 22, 58, .18);
}

.faq-chatbot__message-actions {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin-top: .7rem;
}

.faq-chatbot__message-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  padding: .48rem .72rem;
  font-size: .78rem;
  font-weight: 800;
}

.faq-chatbot__message-link:hover,
.faq-chatbot__message-link:focus-visible {
  background: var(--teal-deep);
  color: var(--white);
}

.faq-chatbot__prompts {
  display: flex;
  gap: .45rem;
  padding: .15rem 1rem .9rem;
  flex-wrap: wrap;
  background: #fff7fb;
}

.faq-chatbot__prompts button {
  border: 1px solid rgba(0, 184, 181, .28);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-deep);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 800;
  padding: .48rem .68rem;
  box-shadow: 0 5px 14px rgba(20, 22, 58, .06);
}

.faq-chatbot__prompts button:hover,
.faq-chatbot__prompts button:focus-visible {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.faq-chatbot__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .55rem;
  padding: .85rem 1rem 1rem;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.faq-chatbot__form input {
  min-width: 0;
  border: 2px solid rgba(0, 184, 181, .45);
  border-radius: 10px;
  padding: .72rem .8rem;
  color: var(--navy);
  font: inherit;
}

.faq-chatbot__form input:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 184, 181, .18);
}

.faq-chatbot__form button {
  border: 0;
  border-radius: 10px;
  background: var(--purple);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: .72rem .9rem;
}

.faq-chatbot__form button:hover,
.faq-chatbot__form button:focus-visible {
  background: var(--pink);
}

@media (max-width: 540px) {
  .faq-chatbot {
    right: max(.75rem, env(safe-area-inset-right));
    bottom: max(.75rem, env(safe-area-inset-bottom));
    width: min(340px, calc(100vw - 1.5rem));
  }

  .faq-chatbot__toggle {
    width: 78px;
    height: 64px;
  }

  .faq-chatbot__icon {
    width: 78px;
    height: 61px;
  }

  .faq-chatbot__panel {
    max-height: min(520px, calc(100vh - 6rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-chatbot__toggle,
  .faq-chatbot__panel,
  .faq-chatbot__header,
  .calendly-modal__header {
    transition: none;
    animation: none;
  }
}

/* Mobile-only Home hero portrait stack. Desktop hero remains governed by earlier rules. */
@media (max-width: 720px) {
  .home-page .home-hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: clamp(1.5rem, 5vw, 2.25rem) 0 clamp(2.25rem, 7vw, 3rem) !important;
    overflow: hidden !important;
    background-image: url("../images/home/hero.webp") !important;
    background-position: left center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }

  .home-page .home-hero .home-hero-image {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: min(70vw, 270px) !important;
    height: min(70vw, 270px) !important;
    min-height: 0 !important;
    max-width: 270px !important;
    max-height: 270px !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 auto .85rem !important;
    overflow: hidden !important;
    border: 6px solid var(--white) !important;
    border-radius: 50% !important;
    background: var(--navy) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28) !important;
    transform: none !important;
  }

  .home-page .home-hero .hero-main-image {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 58% 24% !important;
    opacity: .28 !important;
  }

  .home-page .home-hero .hero-wendy-overlay {
    position: absolute !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    z-index: 2 !important;
    display: block !important;
    width: 112% !important;
    height: 112% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center 18% !important;
    transform: translate(-50%, -50%) !important;
  }

  .home-page .home-hero .home-hero-image .floating-bubble {
    display: none !important;
  }

  .home-page .home-hero .home-hero-grid {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 1.25rem !important;
  }

  .home-page .home-hero .home-hero-text {
    width: min(100%, 360px) !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    align-items: center !important;
    text-align: center !important;
    transform: none !important;
  }

  .home-page .home-hero h1 {
    margin-bottom: .85rem !important;
    color: var(--white) !important;
    font-size: clamp(2.1rem, 8.1vw, 2.55rem) !important;
    line-height: .98 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45) !important;
  }

  .home-page .home-hero .make-impact-line {
    display: block !important;
    margin-top: .16em !important;
    white-space: normal !important;
  }

  .home-page .home-hero h1 .impact-word,
  .home-page .home-hero h1 .script.impact-word {
    display: block !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: .1em auto 0 !important;
    font-size: 1.45em !important;
    line-height: .72 !important;
    letter-spacing: 0 !important;
  }

  .home-page .home-hero h1 .impact-word::after {
    right: .08em !important;
    bottom: -.12em !important;
    left: .08em !important;
    width: auto !important;
  }

  .home-page .home-hero .lede {
    max-width: 29ch !important;
    margin: 0 auto 1.05rem !important;
    color: rgba(255, 255, 255, .92) !important;
    font-size: clamp(.94rem, 3.55vw, 1rem) !important;
    line-height: 1.38 !important;
    text-align: center !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35) !important;
  }

  .home-page .home-hero-cta {
    display: flex !important;
    width: min(100%, 330px) !important;
    margin: 0 auto !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: .7rem !important;
    flex-wrap: nowrap !important;
  }

  .home-page .home-hero-cta .btn {
    width: 100% !important;
    min-height: 48px !important;
    padding: .85rem 1rem !important;
    white-space: normal !important;
  }
}

@media (max-width: 380px) {
  .home-page .home-hero .home-hero-image {
    width: min(72vw, 250px) !important;
    height: min(72vw, 250px) !important;
  }

  .home-page .home-hero h1 {
    font-size: clamp(1.82rem, 8.6vw, 2.18rem) !important;
  }

  .home-page .home-hero .lede {
    font-size: .95rem !important;
  }
}

/* Home hero speech bubbles: independent subtle motion timing. */
.home-page .home-hero .home-hero-image .bubble-purple {
  animation-name: homeBubbleFloatPurple !important;
  animation-duration: 8.8s !important;
  animation-delay: -2.4s !important;
  animation-timing-function: ease-in-out !important;
}

.home-page .home-hero .home-hero-image .bubble-orange {
  animation-name: homeBubbleFloatOrange !important;
  animation-duration: 7.3s !important;
  animation-delay: -.8s !important;
  animation-timing-function: cubic-bezier(.42, 0, .58, 1) !important;
  opacity: 1 !important;
  filter: none !important;
}

.home-page .home-hero .home-hero-image .bubble-teal {
  animation-name: homeBubbleFloatTeal !important;
  animation-duration: 9.6s !important;
  animation-delay: -5.1s !important;
  animation-timing-function: ease-in-out !important;
}

@keyframes homeBubbleFloatPurple {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--bubble-rotate));
  }

  33% {
    transform: translate3d(-2px, -6px, 0) rotate(calc(var(--bubble-rotate) - .8deg));
  }

  68% {
    transform: translate3d(3px, -2px, 0) rotate(calc(var(--bubble-rotate) + .7deg));
  }
}

@keyframes homeBubbleFloatOrange {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--bubble-rotate));
  }

  28% {
    transform: translate3d(2px, -4px, 0) rotate(calc(var(--bubble-rotate) + .6deg));
  }

  58% {
    transform: translate3d(-1px, -8px, 0) rotate(calc(var(--bubble-rotate) - .7deg));
  }

  82% {
    transform: translate3d(1px, -3px, 0) rotate(calc(var(--bubble-rotate) + .35deg));
  }
}

@keyframes homeBubbleFloatTeal {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--bubble-rotate));
  }

  24% {
    transform: translate3d(1px, -3px, 0) rotate(calc(var(--bubble-rotate) + .45deg));
  }

  54% {
    transform: translate3d(3px, -7px, 0) rotate(calc(var(--bubble-rotate) + .9deg));
  }

  78% {
    transform: translate3d(-2px, -4px, 0) rotate(calc(var(--bubble-rotate) - .5deg));
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-hero .home-hero-image .floating-bubble {
    animation: none !important;
  }
}

/* Mobile-only header logo alignment. Desktop logo placement stays unchanged. */
@media (max-width: 720px) {
  .site-header .nav-logo {
    margin-left: 0 !important;
  }

  .site-header.is-scrolled .nav-logo {
    margin-left: 0 !important;
  }
}

/* Responsive production cleanup: keep the Home hero stable on tablet and
   prevent consent/chat controls from covering primary mobile actions. */
@media (min-width: 721px) and (max-width: 980px) {
  .home-page .home-hero {
    position: relative !important;
    display: block !important;
    height: clamp(640px, calc(100svh - 72px), 790px) !important;
    min-height: clamp(640px, calc(100svh - 72px), 790px) !important;
    max-height: none !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #000 !important;
  }

  .home-page .home-hero .home-hero-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #000 !important;
    transform: none !important;
  }

  .home-page .home-hero .hero-main-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: left center !important;
    opacity: 1 !important;
  }

  .home-page .home-hero .hero-wendy-overlay {
    position: absolute !important;
    right: clamp(-3rem, -5vw, -1.75rem) !important;
    bottom: 0 !important;
    left: auto !important;
    top: auto !important;
    z-index: 2 !important;
    display: block !important;
    width: min(43vw, 400px) !important;
    height: auto !important;
    max-width: none !important;
    max-height: 76% !important;
    object-fit: contain !important;
    object-position: right bottom !important;
    transform: none !important;
  }

  .home-page .home-hero .home-hero-image .floating-bubble {
    display: block !important;
  }

  .home-page .home-hero .home-hero-image .bubble-teal {
    display: none !important;
  }

  .home-page .home-hero .home-hero-grid {
    position: relative !important;
    z-index: 3 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    padding: 4.5rem clamp(2rem, 6vw, 3.75rem) 7.25rem !important;
  }

  .home-page .home-hero .home-hero-text {
    width: min(60vw, 530px) !important;
    max-width: 530px !important;
    margin: 0 !important;
    text-align: left !important;
    align-items: flex-start !important;
    transform: none !important;
  }

  .home-page .home-hero h1 {
    margin-bottom: 1.15rem !important;
    color: var(--white) !important;
    font-size: clamp(2.75rem, 6.2vw, 4rem) !important;
    line-height: .98 !important;
    text-align: left !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .42) !important;
  }

  .home-page .home-hero .make-impact-line {
    display: block !important;
    white-space: nowrap !important;
  }

  .home-page .home-hero h1 .impact-word,
  .home-page .home-hero h1 .script.impact-word {
    display: inline-block !important;
    width: auto !important;
    margin-left: .08em !important;
    font-size: 1.18em !important;
    line-height: .72 !important;
  }

  .home-page .home-hero .lede {
    max-width: 32rem !important;
    margin: 0 0 1.55rem !important;
    color: rgba(255, 255, 255, .95) !important;
    font-size: clamp(1rem, 2.15vw, 1.15rem) !important;
    line-height: 1.42 !important;
    text-align: left !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45) !important;
  }

  .home-page .home-hero-cta {
    justify-content: flex-start !important;
    gap: .9rem !important;
  }

  .home-page .home-hero-cta .btn {
    min-width: 0 !important;
    padding: .9rem 1.25rem !important;
    font-size: .88rem !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 721px) and (max-width: 840px) {
  .home-page .home-hero .hero-wendy-overlay {
    right: clamp(-3.25rem, -6vw, -2.25rem) !important;
    bottom: clamp(2rem, 7vw, 3.5rem) !important;
    width: min(39vw, 330px) !important;
    max-height: 72% !important;
  }

  .home-page .home-hero .home-hero-text {
    width: min(62vw, 470px) !important;
    max-width: 470px !important;
  }

  .home-page .home-hero h1 {
    font-size: clamp(2.65rem, 6.1vw, 3.15rem) !important;
  }

  .home-page .home-hero-cta {
    max-width: 510px !important;
  }

  .home-page .home-hero-cta .btn {
    padding-right: 1.08rem !important;
    padding-left: 1.08rem !important;
  }
}

@media (max-width: 720px) {
  .home-page .home-hero {
    padding-top: clamp(1rem, 4vw, 1.5rem) !important;
    padding-bottom: clamp(1.75rem, 6vw, 2.5rem) !important;
  }

  .home-page .home-hero .home-hero-image {
    width: min(64vw, 245px) !important;
    height: min(64vw, 245px) !important;
    max-width: 245px !important;
    max-height: 245px !important;
    margin-bottom: .7rem !important;
  }

  .home-page .home-hero h1 {
    font-size: clamp(2rem, 8vw, 2.38rem) !important;
  }

  .home-page .home-hero .lede {
    max-width: 30ch !important;
    margin-bottom: .9rem !important;
  }
}

@media (max-width: 980px) {
  .cookie-consent {
    right: clamp(.75rem, 2vw, 1rem) !important;
    bottom: calc(.75rem + env(safe-area-inset-bottom)) !important;
    left: clamp(.75rem, 2vw, 1rem) !important;
    width: auto !important;
    max-height: min(32vh, 250px) !important;
    border-radius: 16px !important;
    overflow-y: auto !important;
  }

  .cookie-consent__content {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: .85rem !important;
    padding: .8rem .95rem !important;
  }

  .cookie-consent__title {
    margin-bottom: .1rem !important;
    font-size: .95rem !important;
  }

  .cookie-consent__copy > p:not(.cookie-consent__title) {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    font-size: .78rem !important;
    line-height: 1.35 !important;
  }

  .cookie-consent__actions {
    display: flex !important;
    gap: .55rem !important;
  }

  .cookie-consent__button {
    min-width: 96px !important;
    min-height: 40px !important;
    padding: .65rem .8rem !important;
    border-radius: 12px !important;
    font-size: .76rem !important;
  }

  .faq-chatbot {
    bottom: calc(1rem + env(safe-area-inset-bottom)) !important;
  }

  body.cookie-consent-active .faq-chatbot {
    bottom: calc(min(32vh, 250px) + 1rem + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 520px) {
  .cookie-consent {
    max-height: min(34vh, 235px) !important;
  }

  .cookie-consent__content {
    grid-template-columns: 1fr !important;
    gap: .65rem !important;
  }

  .cookie-consent__copy > p:not(.cookie-consent__title) {
    -webkit-line-clamp: 3 !important;
  }

  .cookie-consent__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }

  .cookie-consent__button {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.cookie-consent-active .faq-chatbot {
    bottom: calc(min(34vh, 235px) + 1rem + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 1024px) {
  .site-header .nav-logo {
    margin-left: max(0px, env(safe-area-inset-left)) !important;
  }

  .site-header .nav-logo img {
    left: 0 !important;
  }
}

@media (max-width: 430px) {
  .site-header .nav-logo {
    width: clamp(166px, 48vw, 190px) !important;
  }
}

@media (max-width: 430px) {
  .services-page .package-name-session {
    display: block !important;
  }

  .services-page .package-name-session .package-title,
  .services-page .package-name-session .package-duration {
    display: inline !important;
    white-space: normal !important;
  }
}

/* Final mobile Contact hero alignment. */
@media (max-width: 640px) {
  .contact-page .contact-title-hero {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
  }

  .contact-page .contact-title-grid {
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: center !important;
    justify-content: center !important;
    place-items: center !important;
    height: 100% !important;
    min-height: 380px !important;
    max-height: 380px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .contact-page .contact-title-copy {
    align-self: center !important;
    justify-self: center !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .contact-page .contact-title-copy .script,
  .contact-page .contact-title-copy h1 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .contact-page .contact-title-art {
    display: none !important;
  }

  .contact-page .contact-schedule-hero {
    display: grid !important;
    place-items: center !important;
  }

  .contact-page .contact-schedule-hero .contact-hero-grid {
    align-items: center !important;
    justify-items: center !important;
  }
}
