/* ============================================================
   SHAWNA SUCKOW  GLOBAL STYLESHEET
   Complete rebuild matching Figma prototype
   Brand: Hot Pink #FF1493 | Yellow #FFD700 | Navy #0d0d1a | Black #0a0a0a
   Fonts: HolidayFree | Insignia | Bebas Neue | Inter
   ============================================================ */

/*  CUSTOM FONTS  */
@font-face {
  font-family: 'HolidayFree';
  src: url('../fonts/HolidayFree.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Insignia';
  src: url('../fonts/Insignia.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Google Fonts: Bebas Neue + Inter loaded via <link> in HTML */

/*  CSS CUSTOM PROPERTIES  */
:root {
  --pink:   #FF1493;
  --yellow: #FFD700;
  --black:  #0a0a0a;
  --navy:   #0d0d1a;
  --white:  #ffffff;
  --purple: #6B2D8B;
  --blue:   #1565C0;
  --gray:   #888888;

  --font-holiday: 'HolidayFree', cursive;
  --font-bebas:   'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --bio-gradient:        linear-gradient(135deg, #6B2D8B 0%, #1565C0 50%, #1E90FF 100%);
  --newsletter-gradient: linear-gradient(135deg, #1565C0 0%, #7B1FA2 60%, #9C27B0 100%);
}

/*  RESET & BASE  */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/*  SHARED BUTTON STYLES  */
.btn {
  display: inline-block;
  font-family: var(--font-bebas);
  font-size: 16px;
  letter-spacing: 0.1em;
  border-radius: 50px;
  padding: 14px 36px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:hover { opacity: 0.85; transform: translateY(-2px); }

.btn--pink {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
a.btn--pink,
button.btn--pink { color: var(--white) !important; }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-black {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--yellow-nav {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  font-size: 14px;
}

/* Pipe separator */
.nav-pipe {
  color: rgba(255,255,255,0.4);
  padding: 0 4px;
  user-select: none;
}

/* 
   1. YELLOW TOP BAR
 */
.topbar {
  background: var(--yellow);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  flex-wrap: wrap;
  padding: 0 40px;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar__item { display: flex; align-items: center; gap: 6px; }
.topbar__item a { color: var(--black); text-decoration: none; }
.topbar__item a:hover { text-decoration: underline; }
.topbar__sep { color: rgba(10,10,10,0.4); user-select: none; }
.topbar__icon { font-size: 14px; }

/* 
   2. STICKY NAV
 */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-shawna {
  font-family: var(--font-holiday);
  font-size: 36px;
  color: var(--pink);
  line-height: 1;
}
.logo-suckow {
  font-family: var(--font-bebas);
  font-size: 32px;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1;
}

.site-nav__links { align-items: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.site-nav__links a:not(.btn) {
  color: var(--black);
  transition: color 0.15s;
}
.site-nav__links a:not(.btn):hover { color: var(--pink); }

/* Mobile hamburger  hidden on desktop */
.nav-toggle-input { display: none; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  order: 3;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.25s;
}

/* 
   3. HERO SECTION
 */
.hero {
  min-height: 85vh;
  background: url('../images/hero-bg.jpg') center right / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,26,0.38);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-left: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero__eyebrow-line {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
  margin-bottom: 4px;
  display: block;
}
.hero__eyebrow-name {
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-right: 6px;
}
.hero__eyebrow-sub {
  color: var(--white);
  font-weight: 400;
}
.hero__headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-bebas);
  font-size: 64px;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__line {
  display: block;
}
.hero__line--white  { color: var(--white); }
.hero__line--pink   { color: var(--pink); }
.hero__hl-yellow {
  background: var(--yellow);
  color: var(--black);
  padding: 2px 8px;
  display: inline;
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* 
   4. FRANK DOYLE TESTIMONIAL
 */
.testimonial-hero {
  position: relative;
  min-height: 400px;
  background: url('../images/testimonial-bg.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  margin-bottom: -1px;
}
.testimonial-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,26,0.85), rgba(10,10,26,0.4));
}
.testimonial-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-hero__intro {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 16px;
}
.testimonial-hero__quote {
  font-family: var(--font-bebas);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 20px;
}
.testimonial-hero__attr {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 12px;
}
.testimonial-hero__logo {
  font-family: var(--font-bebas);
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
}
.testimonial-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
  padding: 16px;
  transition: color 0.2s;
}
.testimonial-hero__arrow:hover { color: var(--white); }
.testimonial-hero__arrow--left  { left: 16px; }
.testimonial-hero__arrow--right { right: 16px; }

/* 
   5. AS FEATURED ON
 */
.featured-on {
  background: url('../images/fig-530-220.png') center center / cover no-repeat;
  background-color: var(--pink);
  padding: 60px 80px;
}
.featured-on__inner { text-align: center; }
.featured-on__label {
  font-family: var(--font-bebas);
  font-size: 18px;
  color: var(--yellow);
  letter-spacing: 0.3em;
  margin-bottom: 30px;
}
.featured-on__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.featured-on__logo-item {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  opacity: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.featured-on__watermark {
  font-family: var(--font-holiday);
  font-size: 48px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* 
   6 & 9. MARQUEE BARS
 */
.marquee-bar {
  background: var(--white);
  padding: 20px 0;
  overflow: hidden;
  margin: -1px 0;
  position: relative;
  z-index: 1;
}
.marquee-bar__track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-bar__track span {
  font-family: var(--font-bebas);
  font-size: 28px;
  color: var(--pink);
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-right: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 
   7. CLIENT LOGOS
 */
.client-logos {
  background: url('../images/fig-530-125.png') center center / cover no-repeat;
  background-color: var(--pink);
  padding: 60px 80px;
}
.client-logos__header {
  margin-bottom: 40px;
}
.client-logos__title-white {
  font-family: var(--font-bebas);
  font-size: 48px;
  color: var(--white);
  line-height: 1.1;
}
.client-logos__title-yellow {
  font-family: var(--font-bebas);
  font-size: 48px;
  color: var(--yellow);
  line-height: 1.1;
}
.client-logos__title-sub {
  font-family: var(--font-bebas);
  font-size: 32px;
  color: var(--white);
  line-height: 1.1;
  margin-top: 4px;
}
.client-logos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.client-logo-item {
  background: rgba(255,255,255,0.15);
  padding: 16px 24px;
  border-radius: 8px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}
.client-logo-item img { max-width: 120px; max-height: 60px; object-fit: contain; filter: brightness(0) invert(1); }
.featured-on__logo-img { max-height: 40px; max-width: 120px; object-fit: contain; filter: brightness(0) invert(1); }

/* 
   8. SPEAKER REEL
 */
.reel {
  position: relative;
  background: #0a0a1a url('../images/insider-experience.png') center top / cover no-repeat;
  padding: 60px 60px 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: -1px 0;
  z-index: 1;
}
.reel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.reel__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.reel__name {
  font-family: var(--font-holiday);
  font-size: 80px;
  color: var(--yellow);
  line-height: 1;
}
.reel__tagline {
  font-family: var(--font-bebas);
  font-size: 48px;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* 
   10. MEETING PLANNERS CHALLENGE
 */
.challenge {
  background: linear-gradient(180deg, #3d0020 0%, #c2185b 40%, #e91e90 100%);
  padding: 80px 60px 60px;
  display: block;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.challenge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/challenge-bg.jpg') center center / cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
.challenge__frustrated {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.challenge__frustration-big {
  font-family: var(--font-bebas);
  font-size: clamp(36px, 4.5vw, 52px);
  color: var(--yellow);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.challenge__body {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.challenge__scribble {
  display: block;
  max-width: 280px;
  margin: 32px auto;
  position: relative;
  z-index: 1;
}
.challenge__headline { display: none; }
.challenge__line { display: none; }
.challenge__hl-yellow { display: none; }
.challenge__squiggle { display: none; }
.challenge__transition {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--white);
  margin: 32px 0 16px;
  position: relative;
  z-index: 1;
}
.challenge__transform-big {
  font-family: var(--font-bebas);
  font-size: clamp(36px, 4.5vw, 52px);
  color: var(--yellow);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.challenge__arrow-down {
  font-size: 36px;
  color: var(--white);
  margin: 24px 0;
  display: block;
  position: relative;
  z-index: 1;
}
.challenge__imagine {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.challenge__changed {
  font-family: var(--font-bebas);
  font-size: clamp(20px, 2.5vw, 32px);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.challenge__changed-hl {
  background: var(--yellow);
  color: var(--black);
  padding: 4px 12px;
}
.challenge__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* 
   11. PARTICIPATE, APPLY & LEAVE TRANSFORMED
 */
.transform-cta {
  display: none;
}
.transform-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/challenge-bg.jpg') center center / cover no-repeat;
  opacity: 0.3;
}
.transform-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,20,147,0.2);
}
.transform-cta__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.transform-cta__intro {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 16px;
}
.transform-cta__headline {
  font-family: var(--font-bebas);
  font-size: clamp(48px, 8vw, 80px);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 24px;
}
.transform-cta__arrow {
  font-size: 40px;
  color: var(--white);
  margin: 30px 0;
  display: block;
}
.transform-cta__imagine {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}
.transform-cta__change {
  font-family: var(--font-bebas);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--black);
}
.transform-cta__hl {
  background: var(--yellow);
  padding: 4px 12px;
}

/* 
   12. THE BUYER INSIDER
 */
/* -- BUYER INSIDER EXPERIENCE -- clean rebuild --- */
.buyer-insider {
  position: relative;
  text-align: center;
  padding: 80px 60px 48px;
  margin: -1px 0;
  z-index: 1;
  overflow: hidden;
}
.buyer-insider__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.buyer-insider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(80,0,160,0.65) 0%, rgba(40,80,180,0.5) 30%, rgba(0,160,200,0.4) 50%, rgba(180,0,140,0.55) 75%, rgba(200,0,100,0.65) 100%);
  z-index: 1;
}
.buyer-insider > *:not(.buyer-insider__bg-img) { position: relative; z-index: 2; }
.buyer-insider__dashes { display: none; }
.buyer-insider__badge {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-bebas);
  font-size: 14px;
  letter-spacing: 0.2em;
  padding: 8px 24px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}
.buyer-insider__box-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.buyer-insider__experience {
  font-family: var(--font-bebas);
  font-size: clamp(80px, 12vw, 140px);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.buyer-insider__sparkle-left,
.buyer-insider__sparkle-right {
  color: var(--yellow);
  font-size: 20px;
  flex-shrink: 0;
}
.buyer-insider__box, .buyer-insider__box-text { display: none; }
.buyer-insider__intro {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  margin-top: 8px;
}
.buyer-insider__pov {
  font-family: var(--font-bebas);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--pink);
  letter-spacing: 0.05em;
  text-shadow: 0 0 8px rgba(0,0,0,0.6), 0 0 2px rgba(0,0,0,0.4);
  -webkit-font-smoothing: antialiased;
}
.buyer-insider__body {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  max-width: 580px;
  margin: 16px auto 0;
}
/* 
   13. BUYER INSIDER BIO BLURB
 */
.buyer-blurb {
  background: var(--white);
  padding: 60px 80px;
}
.buyer-blurb__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.buyer-blurb__text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--black);
  line-height: 1.7;
}
.buyer-blurb__highlight {
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}

/* 
   14. SIGNATURE KEYNOTE DETAIL
 */
/* -- SECRET SMALL BUSINESS SUPERPOWERS -- rebuilt --- */
.keynote-detail {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  margin: -1px 0;
  z-index: 1;
}
.keynote-detail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(200,0,100,0.75) 0%, rgba(200,0,100,0.5) 35%, rgba(200,0,100,0.15) 65%, transparent 100%);
  z-index: 1;
}
.keynote-detail__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
/* Gradient text backdrop -- left side */
.keynote-detail__left {
  position: relative;
  z-index: 3;
  max-width: 55%;
  padding: 56px 80px 48px 60px;
}
.keynote-detail__book-tag { display: none; }
.keynote-detail__title {
  font-family: var(--font-bebas);
  font-size: clamp(36px, 4.5vw, 52px);
  color: var(--yellow);
  line-height: 1.02;
  margin-bottom: 8px;
}
.keynote-detail__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 16px;
}
.keynote-detail__quote-box {
  display: inline-block;
  background: var(--yellow);
  padding: 3px 8px;
  margin-bottom: 12px;
}
.keynote-detail__quote-box em strong {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  text-decoration: underline;
}
.keynote-detail__body {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 12px;
}
.keynote-detail__body .hl-yellow { display: none; }
.keynote-detail__buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.keynote-detail__buttons .btn {
  font-size: 13px;
  padding: 10px 24px;
}
/* Hide old elements */
.keynote-accordion { display: none; }
.keynote-detail__center { display: none; }
.keynote-detail__right { display: none; }
.keynote-detail__right-heading { display: none; }
.keynote-detail__list { display: none; }
/* 
   15. "SMALL" DICTIONARY SECTION
 */
.dict {
  background: var(--white);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}
.dict__img-wrap {
  position: relative;
  display: inline-block;
}
.dict__img {
  width: 100%;
  max-width: 420px;
  border-radius: 4px;
}
.dict__squiggle { display: none; }
.dict__squiggle--tl { display: none; }
.dict__squiggle--br { display: none; }

.dict__word {
  font-family: var(--font-bebas);
  font-size: 120px;
  color: var(--pink);
  line-height: 0.9;
  margin-bottom: 8px;
}
.dict__phonetic {
  font-family: var(--font-bebas);
  font-size: 24px;
  color: var(--black);
  margin-bottom: 16px;
}
.dict__definition {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 16px;
}
.dict__hl {
  background: var(--yellow);
  padding: 2px 6px;
}
.dict__book-credit {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--pink);
  margin-bottom: 24px;
}
.dict__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* 
   16. BIO SECTION
 */
.bio {
  position: relative;
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 600px;
  overflow: hidden;
}
.bio__photo-col {
  overflow: hidden;
}
.bio__photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.bio__text-col {
  background: linear-gradient(135deg, #1a0a5e 0%, #6b1fa2 40%, #d4206e 100%);
  padding: 64px 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bio__sparkle {
  position: absolute;
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  pointer-events: none;
}
.bio__sparkle--1 { top: 48px; right: 80px; font-size: 22px; }
.bio__sparkle--2 { top: 120px; right: 40px; font-size: 14px; }

.bio__hello {
  font-family: var(--font-holiday);
  font-size: 64px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.bio__name {
  font-family: var(--font-bebas);
  font-size: 44px;
  color: var(--yellow);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.bio__subhead {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.5;
}
.bio__body {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 14px;
}
.bio__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}
/* Legacy selectors -- hidden */
.bio__left, .bio__right { display: none; }

/* 
   17. BTW SECTION
 */
.btw {
  background: #fff5f7;
  padding: 80px 40px;
  text-align: center;
}
.btw__intro {
  font-family: var(--font-bebas);
  font-size: 22px;
  color: var(--black);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}
.btw__list { margin-bottom: 32px; }
.btw__item {
  font-family: var(--font-bebas);
  font-size: clamp(36px, 5.25vw, 66px);
  color: var(--pink);
  line-height: 1.05;
}
.btw__outro {
  font-family: var(--font-bebas);
  font-size: 22px;
  color: var(--black);
  letter-spacing: 0.15em;
  margin-top: 40px;
}

/* 
   18. BOOK SECTION
 */
.book {
  background: #0d0d2b;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.book__cover {
  max-width: 380px;
  margin: 0 auto;
  transform: rotate(-8deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border-radius: 4px;
}
.book__bestseller {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.book__title-box {
  background: var(--yellow);
  padding: 12px 20px;
  display: inline-block;
  margin-bottom: 24px;
}
.book__title {
  font-family: var(--font-bebas);
  font-size: 36px;
  color: var(--black);
  letter-spacing: 0.04em;
}
.book__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 28px;
}
.book__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* 
   19. NEEN JAMES TESTIMONIAL
 */
.testimonial-neen {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,20,147,0.75) 0%, rgba(156,39,176,0.75) 50%, rgba(63,81,181,0.75) 100%),
    url('../images/shawna-suckow-brand-zebra-stripe-background.webp') center center / cover no-repeat;
  padding: 80px 60px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
/* Decorative wavy shapes */
.testimonial-neen::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: rgba(255,255,255,0.06);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.testimonial-neen::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  background: rgba(255,255,255,0.06);
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}
.testimonial-neen__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.testimonial-neen__quote {
  font-family: var(--font-bebas);
  font-size: clamp(32px, 5vw, 64px);
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 24px;
}
.testimonial-neen__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
}
.testimonial-neen__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}
.testimonial-neen__title {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.testimonial-neen__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 32px;
  cursor: pointer;
  z-index: 2;
  padding: 16px;
  transition: color 0.2s;
}
.testimonial-neen__arrow:hover { color: var(--white); }
.testimonial-neen__arrow--left  { left: 16px; }
.testimonial-neen__arrow--right { right: 16px; }

/* 
   20. CLIENT TESTIMONIALS
 */
.testimonials {
  background: #f9f9f9;
  padding: 80px 60px;
}
.testimonials__header { text-align: center; margin-bottom: 48px; }
.testimonials__heading {
  font-family: var(--font-bebas);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--black);
  letter-spacing: 0.04em;
}
.testimonials__heading-accent { color: var(--pink); }
.testimonials__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: #666;
  margin-top: 8px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  text-align: center;
}
.testimonial-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid var(--pink);
}
.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card__attr {
  font-family: var(--font-body);
  font-size: 14px;
  color: #666;
}

/* 
   21. PODCAST SECTION
 */
.podcast {
  background-color: #F5C000;
  background-image: radial-gradient(circle, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
}
.podcast__badge {
  background: #000;
  color: var(--white);
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-bebas);
  font-size: 52px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.podcast__subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.4;
}
.podcast__highlight {
  background: #e8a800;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 2px;
}
.podcast__highlight em strong {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--black);
}
.podcast__body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 24px;
}
.podcast__platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.podcast__platform-badge {
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}
.podcast__platform-badge img { max-height: 32px; max-width: 100px; object-fit: contain; }
.podcast__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* iPhone mockup */
.podcast__phone {
  width: 240px;
  height: 480px;
  border-radius: 40px;
  border: 8px solid #222;
  background: #111;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.podcast__phone-notch {
  width: 100px;
  height: 20px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.podcast__phone-screen {
  flex: 1;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 8px;
  text-align: center;
}
.podcast__phone-cover {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin-bottom: 4px;
}
.podcast__phone-label {
  font-family: var(--font-bebas);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.08em;
}
.podcast__phone-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.podcast__phone-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  margin: 8px 0;
  padding-left: 4px;
}
.podcast__phone-host {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* 
   22. FROM THE BLOG
 */
.blog-preview {
  background: var(--white);
  padding: 60px 80px;
}
.blog-preview__heading {
  font-family: var(--font-bebas);
  font-size: 64px;
  color: var(--pink);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.blog-card { }
.blog-card__img {
  aspect-ratio: 16/9;
  border-radius: 4px 4px 0 0;
  margin-bottom: 0;
  overflow: hidden;
  background: #e8e8e8;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  text-align: center;
  padding: 16px 8px;
  line-height: 1.45;
}
.blog-preview__cta { text-align: center; }

/* 
   23. NEWSLETTER
 */
.newsletter {
  background: linear-gradient(to right, #1a3aab 0%, #6b1fa2 50%, #d4206e 100%);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}
/* Shawna photo -- right side blending in */
.newsletter__bg-photo {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  mix-blend-mode: luminosity;
  opacity: 0.55;
}
/* Gradient mask -- fades photo into gradient smoothly */
.newsletter__bg-mask {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 65%;
  background: linear-gradient(to right, #6b1fa2 0%, transparent 60%);
  z-index: 1;
}
.newsletter__content {
  position: relative;
  z-index: 2;
  width: 55%;
  padding: 60px;
}
.newsletter__heading {
  font-family: var(--font-bebas);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
/* Envelope icon -- top center area */
.newsletter__icon {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
  z-index: 3;
}
/* Sparkles -- right side */
.newsletter__sparkle {
  position: absolute;
  color: rgba(255,255,255,0.65);
  pointer-events: none;
  z-index: 3;
}
.newsletter__sparkle--1 { top: 30px; right: 80px; font-size: 28px; }
.newsletter__sparkle--2 { top: 80px; right: 48px; font-size: 16px; }
.newsletter__sparkle--3 { bottom: 60px; left: 160px; font-size: 14px; opacity: 0.4; }

.newsletter__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  margin-bottom: 28px;
}
.newsletter__body strong em,
.newsletter__body em strong {
  font-style: italic;
  font-weight: 700;
}
.newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  align-items: center;
}
.newsletter__input {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  height: 48px;
  border-radius: 8px;
  border: none;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  background: rgba(255,255,255,0.95);
  color: var(--black);
}
.newsletter__input::placeholder { color: #888; }
.newsletter__btn { height: 48px; display: flex; align-items: center; border-radius: 8px; }
.newsletter__disclaimer {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

/* 
   HELLO BIO SECTION
=========================================================== */
.hello-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  overflow: hidden;
}
.hello-bio__left {
  background: linear-gradient(135deg, #2a0a5e 0%, #6b1fa2 40%, #d4206e 100%);
  padding: 56px 48px 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hello-bio__star {
  position: absolute;
  color: rgba(255,255,255,0.6);
  pointer-events: none;
}
.hello-bio__star--1 { top: 48px; right: 80px; font-size: 20px; }
.hello-bio__star--2 { top: 110px; right: 40px; font-size: 14px; }
.hello-bio__hello {
  font-family: var(--font-holiday);
  font-size: clamp(56px, 7vw, 80px);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.hello-bio__name {
  font-family: var(--font-bebas);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.hello-bio__subhead {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
.hello-bio__body {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 12px;
}
.hello-bio__wavy-arrow {
  color: var(--white);
  font-size: 28px;
  margin: 12px 0;
  display: inline-block;
  transform: rotate(15deg);
  opacity: 0.6;
}
.hello-bio__buttons {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hello-bio__buttons .btn { font-size: 13px; padding: 10px 24px; }
.hello-bio__right {
  background: #f5f0eb;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hello-bio__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* SCROLL TO TOP -- pink circle, fixed bottom-left */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}
.scroll-top__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  box-shadow: 0 4px 16px rgba(200,0,100,0.35);
}
.scroll-top__btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* ===========================================================
   24. FOOTER
 */
.footer {
  background: var(--black);
  padding: 60px 40px;
  text-align: center;
}
.footer__name-first {
  font-family: var(--font-holiday);
  font-size: 64px;
  color: var(--pink);
  line-height: 1;
}
.footer__name-last {
  font-family: var(--font-bebas);
  font-size: 48px;
  color: var(--white);
  display: block;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 24px;
}
.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
}
.footer__nav a { color: var(--white); transition: color 0.2s; }
.footer__nav a:hover { color: var(--pink); }
.footer__contact {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__legal {
  font-family: var(--font-body);
  font-size: 12px;
  color: #666;
}
.footer__legal a { color: #666; text-decoration: underline; }
.footer__legal a:hover { color: var(--white); }

/* 
   RESPONSIVE  Mobile < 768px
 */
@media (max-width: 768px) {

  /* Top bar */
  .topbar {
    height: auto;
    padding: 8px 16px;
    gap: 4px;
    flex-direction: column;
    align-items: center;
  }
  .topbar__left { flex-wrap: wrap; justify-content: center; }
  .topbar__right { justify-content: center; }
  .topbar__sep { display: none; }

  /* Nav */
  .site-nav {
    padding: 0 20px;
    flex-wrap: wrap;
    height: auto;
    min-height: 64px;
  }
  .nav-hamburger { display: flex; }
  .site-nav__links { align-items: center;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0 20px;
    order: 4;
    background: var(--white);
  }
  .site-nav__links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  .nav-toggle-input:checked ~ .site-nav__links { align-items: center;
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    background-position: 72% center;
    align-items: flex-end;
    padding-bottom: 40px;
  }
  .hero__content {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100%;
  }
  .hero__headline { font-size: 44px; }

  /* Testimonial hero */
  .testimonial-hero { padding: 60px 40px; }
  .testimonial-hero__arrow { display: none; }

  /* Featured on */
  .featured-on { padding: 40px 24px; }
  .featured-on__logos { gap: 20px; }

  /* Client logos */
  .client-logos { padding: 40px 24px; }
  .client-logos__grid { grid-template-columns: repeat(3, 1fr); }

  /* Challenge */
  .challenge {
    padding: 60px 24px;
  }

  /* Buyer Insider */
  .buyer-insider { padding: 60px 24px 40px; }

  /* Buyer blurb */
  .buyer-blurb { padding: 40px 24px; }

  /* Keynote detail */
  .keynote-detail__left {
    max-width: 100%;
    padding: 40px 24px;
  }

  /* Dictionary */
  .dict {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  .dict__word { font-size: 80px; }

  /* Bio */
  .bio { grid-template-columns: 1fr; }
  .bio__photo-col { min-height: 350px; }
  .bio__text-col { padding: 48px 24px; }

  /* BTW */
  .btw { padding: 60px 24px; }
  .btw__item { font-size: clamp(32px, 8vw, 88px); }

  /* Book */
  .book {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  /* Neen James */
  .testimonial-neen { padding: 60px 32px; }
  .testimonial-neen__arrow { display: none; }

  /* Testimonials */
  .testimonials { padding: 60px 24px; }
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Podcast */
  .podcast {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  /* Blog */
  .blog-preview { padding: 40px 24px; }
  .blog-preview__grid { grid-template-columns: 1fr; }

  /* Newsletter */
  .newsletter { flex-direction: column; }
  .newsletter__bg-photo,
  .newsletter__bg-mask,
  .newsletter__icon,
  .newsletter__sparkle { display: none; }
  .newsletter__content {
    width: 100%;
    padding: 40px 24px;
  }

  /* Footer */
  .hello-bio { grid-template-columns: 1fr; }
  .hello-bio__left { padding: 48px 24px; order: 2; }
  .hello-bio__right { min-height: 340px; order: 1; }
  .footer { padding: 40px 24px; }
  .footer__nav { gap: 8px; }
}


/* =======================================================
   NAV DROPDOWN
======================================================= */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown__toggle {
  background: none;
  border: none;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.01em;
  line-height: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.nav-dropdown__toggle:hover {
  color: var(--pink);
}
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 0;
  padding-top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  min-width: 160px;
  z-index: 200;
  overflow: visible;
}
/* Visible box inside the padding bridge */
.nav-dropdown__menu-inner,
.nav-dropdown__menu a {
  background: #ffffff;
}
.nav-dropdown__menu a {
  display: block;
  padding: 12px 20px;
  color: var(--black);
  font-size: 14px;
  white-space: nowrap;
  border-left: 1px solid rgba(0,0,0,0.12);
  border-right: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.nav-dropdown__menu a:first-child {
  border-top: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px 6px 0 0;
}
.nav-dropdown__menu a:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.12);
  border-radius: 0 0 6px 6px;
}
.nav-dropdown__menu a:hover {
  background: rgba(233,30,140,0.08);
  color: var(--pink);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: block;
}
/* Active page nav link - pink highlight */
.site-nav__links a.nav-active {
  color: var(--pink) !important;
  font-weight: 700;
}

/* Dropdown stays white background when open (mobile-open class) */
.nav-dropdown.mobile-open .nav-dropdown__menu {
  background: #ffffff;
}
.nav-dropdown.mobile-open .nav-dropdown__menu a {
  background: #ffffff;
}
/* Ensure site-nav always stays white - never transparent */
.site-nav,
.site-nav.nav-open,
.nav-toggle-input:checked ~ .site-nav__links {
  background: var(--white);
}
/* Dropdown menu always white background */
.nav-dropdown__menu,
.nav-dropdown.mobile-open .nav-dropdown__menu,
.nav-dropdown:hover .nav-dropdown__menu {
  background: transparent; /* container is transparent, items have white bg */
}
.nav-dropdown__menu a,
.nav-dropdown.mobile-open .nav-dropdown__menu a {
  background: #ffffff !important;
}

/* =====================================================
   BLOG POST PAGES
===================================================== */
.blog-post-hero {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.blog-post-back {
  display: inline-block;
  padding: 12px 24px;
  color: var(--pink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.blog-post-back:hover { text-decoration: underline; }
.blog-post-header {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 40px 0;
}
.blog-post-title {
  font-family: var(--font-bebas);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--black);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.blog-post-meta {
  font-size: 13px;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.blog-post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 40px 0;
  max-width: 860px;
  margin: 0 auto;
}
.blog-post-tag {
  background: var(--yellow);
  color: #09091f;
  font-family: var(--font-bebas);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 50px;
}
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 40px 80px;
  align-items: start;
}
.blog-post-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.blog-post-body p { margin-bottom: 18px; }
.blog-post-body h2 {
  font-family: var(--font-bebas);
  font-size: 28px;
  color: var(--black);
  letter-spacing: 0.04em;
  margin: 32px 0 12px;
}
.blog-post-body h3 {
  font-family: var(--font-bebas);
  font-size: 22px;
  color: var(--black);
  letter-spacing: 0.04em;
  margin: 24px 0 10px;
}
.blog-post-body ul, .blog-post-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body strong { color: var(--black); }
.blog-post-callout {
  background: var(--yellow);
  padding: 28px 36px;
  border-radius: 12px;
  text-align: center;
  margin: 32px 0;
}
.blog-post-callout p {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
  margin: 0;
}
.blog-post-related {
  margin: 48px 0 32px;
  padding: 28px 32px;
  background: #f8f8f8;
  border-radius: 12px;
}
.blog-post-related__heading {
  font-family: var(--font-bebas);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #09091f;
  margin-bottom: 16px;
}
.blog-post-related__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-post-related__list a {
  color: var(--pink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.blog-post-related__list a:hover { text-decoration: underline; }
.blog-post-related__list .pod-link { color: #09091f; }

/* Sidebar */
.blog-post-sidebar {
  position: sticky;
  top: 90px;
}
.blog-post-sidebar__author {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
  text-align: center;
}
.blog-post-sidebar__img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 12px;
  display: block;
  border: 3px solid var(--pink);
}
.blog-post-sidebar__name {
  font-family: var(--font-bebas);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 2px;
}
.blog-post-sidebar__title {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-post-sidebar__bio {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 14px;
  text-align: left;
}
.blog-post-sidebar__more {
  font-family: var(--font-bebas);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--black);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--yellow);
}
.blog-post-sidebar__links { display: flex; flex-direction: column; gap: 0; }
.blog-post-sidebar__link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.15s;
}
.blog-post-sidebar__link:hover { color: var(--pink); }
.blog-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 28px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-top: 40px;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.blog-share__btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.blog-share__btn--twitter { background: #000; color: #fff; }
.blog-share__btn--linkedin { background: #0077b5; color: #fff; }
.blog-share__btn--facebook { background: #1877f2; color: #fff; }
.blog-share__btn--reddit { background: #ff4500; color: #fff; }

/* Blog Explore More section */
.blog-explore-more {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}
.blog-explore-more__heading {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.blog-explore-more__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-explore-more__list a {
  color: var(--pink);
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.15s;
}
.blog-explore-more__list a:hover { opacity: 0.75; }

/* Blog podcast link (inline CTA) */
.blog-post-content a[href*="podcast"],
.blog-post-body a[href*="podcast"],
article a[href*="podcast"] {
  color: var(--pink);
  text-decoration: underline;
  font-weight: 500;
}

/* Photo credit at bottom of post */
.blog-post-photo-credit {
  margin-top: 24px;
  font-size: 12px;
  color: #888;
  font-style: italic;
}
.blog-post-photo-credit a {
  color: #888;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .blog-post-layout { grid-template-columns: 1fr; padding: 24px 20px 60px; }
  .blog-post-sidebar { position: static; }
  .blog-post-header { padding: 20px 20px 0; }
  .blog-post-tags { padding: 12px 20px 0; }
}
/* ===========================================================
   RESPONSIVE IMPROVEMENTS -- TABLET (769px-1024px)
   =========================================================== */
@media (max-width: 1024px) {
  .site-nav { padding: 0 28px; }
  .site-nav__links { gap: 18px; font-size: 13px; }

  .hero__content { padding-left: 36px; }
  .hero__headline { font-size: 52px; }

  .testimonial-hero { padding: 60px 40px; }

  .client-logos { padding: 40px 40px; }
  .client-logos__grid { grid-template-columns: repeat(4, 1fr); }

  .reel { padding: 60px 40px; }
  .reel__name { font-size: 60px; }
  .reel__tagline { font-size: 36px; }

  .buyer-insider { padding: 60px 40px; }

  .keynote-detail__left { max-width: 60%; padding: 40px 40px 40px 40px; }

  .dict { padding: 60px 40px; gap: 40px; }
  .dict__word { font-size: 90px; }

  .bio { grid-template-columns: 45% 55%; }
  .bio__text-col { padding: 48px 36px; }

  .book { padding: 60px 40px; gap: 40px; }

  .testimonials { padding: 60px 40px; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid .testimonial-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }

  .podcast { padding: 60px 40px; gap: 32px; }

  .blog-preview { padding: 40px 40px; }

  .newsletter__content { width: 60%; padding: 40px 40px; }

  .hello-bio__left { padding: 48px 36px; }

  .featured-on { padding: 40px 40px; }
}

/* ===========================================================
   RESPONSIVE IMPROVEMENTS -- MOBILE (768px) ADDITIONS
   =========================================================== */
@media (max-width: 768px) {
  /* Topbar -- hide on very small screens to save space */
  .topbar { display: none; }

  /* Nav -- ensure hamburger works with dropdowns on mobile */
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu { display: none; }
  .nav-toggle-input:checked ~ .site-nav__links .nav-dropdown__menu { display: block; position: static; transform: none; box-shadow: none; border: none; border-radius: 0; min-width: auto; }
  .nav-toggle-input:checked ~ .site-nav__links .nav-dropdown__menu a { padding: 10px 20px; font-size: 13px; color: #666; border-bottom-color: #f0f0f0; }
  .nav-toggle-input:checked ~ .site-nav__links .nav-dropdown__toggle { padding: 12px 0; }
  .nav-dropdown__toggle { width: 100%; justify-content: space-between; padding: 12px 0; font-size: 14px; font-weight: 600; border-bottom: 1px solid #eee; }

  /* Client logos - 2 col on mobile */
  .client-logos__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .client-logo-item { font-size: 11px; min-height: 44px; padding: 10px; }

  /* Podcast phone mockup -- hide on mobile, just show text */
  .podcast__phone { display: none; }
  .podcast { grid-template-columns: 1fr; }

  /* Buyer insider -- scale down huge text */
  .buyer-insider__experience { font-size: clamp(60px, 18vw, 120px); }

  /* Reel -- tighter, shift bg to show face */
  .reel { padding: 48px 24px 40px; background-position: 78% top; }
  .reel__name { font-size: 56px; }
  .reel__tagline { font-size: 32px; }

  /* Dict -- center image */
  .dict__img-wrap { display: flex; justify-content: center; }
  .dict__img { max-width: 280px; }

  /* Book -- center cover, remove rotation */
  .book__cover { max-width: 260px; transform: none; }

  /* Keynote detail -- full width */
  .keynote-detail__left { max-width: 100%; padding: 40px 24px; }

  /* Testimonials -- 1 col */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Featured on logos -- wrap tighter */
  .featured-on__logos { gap: 16px; }
  .featured-on__logo-item { font-size: 14px; }

  /* Marquee -- slightly smaller on mobile */
  .marquee-bar__track span { font-size: 20px; }

  /* Scroll top button -- hide on very small screens to avoid covering content */
  .scroll-top { bottom: 16px; right: 16px; }
  .scroll-top__btn { width: 40px; height: 40px; font-size: 18px; }

  /* Blog preview grid */
  .blog-preview__grid { grid-template-columns: 1fr 1fr; }

  /* Footer nav -- tighter */
  .footer__name-first { font-size: 48px; }
  .footer__name-last { font-size: 36px; }
}

/* ===========================================================
   RESPONSIVE -- SMALL MOBILE (480px)
   =========================================================== */
@media (max-width: 480px) {
  /* Hero -- font adjustment */
  .hero__headline { font-size: 36px; }
  .hero__content { padding-left: 16px; padding-right: 16px; }

  /* Buyer blurb -- smaller font */
  .buyer-blurb__text { font-size: 16px; }
  .buyer-blurb { padding: 32px 20px; }

  /* Dict -- huge word shrinks */
  .dict__word { font-size: 64px; }

  /* Bio photo smaller min-height */
  .bio__photo-col { min-height: 280px; }
  .bio__text-col { padding: 36px 20px; }

  /* Blog preview -- 1 col on very small */
  .blog-preview__grid { grid-template-columns: 1fr; }

  /* Newsletter form -- stack */
  .newsletter__form { flex-direction: column; }
  .newsletter__input { max-width: 100%; }
  .newsletter__content { padding: 32px 20px; }

  /* Book section */
  .book { padding: 48px 20px; }

  /* Podcast section */
  .podcast { padding: 48px 20px; }

  /* Challenge section */
  .challenge { padding: 48px 20px; }

  /* Hello bio */
  .hello-bio__left { padding: 40px 20px; order: 2; }
  .hello-bio__right { min-height: 300px; order: 1; }
  .hello-bio__hello { font-size: 48px; }

  /* Footer */
  .footer { padding: 32px 20px; }

  /* BTW items */
  .btw__item { font-size: 10vw; }

  /* Testimonial neen */
  .testimonial-neen { padding: 48px 20px; }

  /* Client logos -- 2 col stays fine */
  .client-logos { padding: 32px 20px; }

  /* Featured on */
  .featured-on { padding: 32px 20px; }
}

/* ===========================================================
   MOBILE NAV DROPDOWN -- JS-driven (tap to open)
   =========================================================== */
@media (max-width: 768px) {
  /* Disable hover-based dropdowns, use JS .mobile-open class */
  .nav-dropdown:hover .nav-dropdown__menu { display: none; }
  .nav-dropdown:focus-within .nav-dropdown__menu { display: none; }
  .nav-dropdown.mobile-open .nav-dropdown__menu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #f8f8f8;
    min-width: auto;
    width: 100%;
  }
  .nav-dropdown.mobile-open .nav-dropdown__menu a {
    padding: 10px 16px;
    font-size: 13px;
    color: #444;
    border-bottom-color: #eee;
  }
  .nav-dropdown__toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
  }
}


/* ===========================================================
   TARGETED FIXES -- 2026-03-23
   =========================================================== */

/* #1 Book bestseller text -- white on pink gradient bg */
.book__bestseller { color: var(--white) !important; }

/* #10 Let's do this -- fix overflow clip on mobile */
.how-to-bring-speaking__heading {
  overflow: visible !important;
  white-space: normal !important;
  -webkit-text-fill-color: initial !important;
  background: none !important;
  color: var(--yellow) !important;
  font-size: clamp(32px, 8vw, 52px) !important;
}

/* #11 Consulting service cards -- permanent pink border (not hover-only) */
.service-card { border-color: var(--pink) !important; }

/* #16 About bio -- stack photo on top on mobile */
@media (max-width: 768px) {
  .bio { grid-template-columns: 1fr; }
  .bio__photo-col { min-height: 360px; order: 1; }
  .bio__text-col { order: 2; }
}

/* #17 Blog grid -- 1-col on mobile */
@media (max-width: 768px) {
  .blog-grid__posts { grid-template-columns: 1fr !important; }
  .blog-post-card__img { aspect-ratio: 16/9; background: #e8e8e8; overflow: hidden; }
  .blog-post-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
}

/* #18 Book section -- stack on mobile */
@media (max-width: 768px) {
  .book { grid-template-columns: 1fr !important; gap: 32px; }
  .book__cover { max-width: 220px; transform: rotate(-4deg); }
  .book__buttons { flex-direction: column; align-items: flex-start; gap: 12px; }
  .book__title-box { display: block; }
}
/* #1 Hide scroll-top button on mobile -- prevents covering hero content */
@media (max-width: 768px) { .scroll-top { display: none; } }

/* #2 Mobile nav -- dropdowns collapsed by default, only open via JS .mobile-open */
@media (max-width: 768px) {
  .nav-dropdown__menu { display: none !important; }
  .nav-dropdown.mobile-open .nav-dropdown__menu { display: block !important; }
}

/* #3 BOOK SHAWNA button centered in mobile nav */
@media (max-width: 768px) {
  .site-nav__links .btn--yellow-nav { text-align: center; width: 100%; display: block; margin-top: 8px; border-radius: 8px; }
}

/* #14 Blog post pages -- force 1-col on mobile */
@media (max-width: 768px) {
  .blog-post-layout { grid-template-columns: 1fr !important; padding: 20px 16px 60px !important; gap: 32px !important; }
  .blog-post-sidebar { position: static !important; }
  .blog-post-hero { max-height: 260px; object-fit: cover; object-position: center 25%; }
  .blog-post-header { padding: 16px 16px 0 !important; }
  .blog-post-tags { padding: 10px 16px 0 !important; }
}
/* #1 Mobile nav -- center all items */
@media (max-width: 768px) {
  .site-nav__links { align-items: center !important; }
  .site-nav__links a:not(.btn) { text-align: center !important; width: 100%; }
  .nav-dropdown { width: 100%; text-align: center; }
  .nav-dropdown__toggle { justify-content: center !important; text-align: center !important; width: 100%; }
  .nav-dropdown.mobile-open .nav-dropdown__menu a { text-align: center !important; }
}
/* #3 Planners hero -- headline top, content bottom on mobile */
@media (max-width: 768px) {
  .mp-hero {
    min-height: 100vh !important;
    background-position: 80% center !important;
    align-items: stretch !important;
  }
  .mp-hero__content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 100vh;
    padding-top: 48px !important;
    padding-bottom: 48px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}