/* HERO */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  margin-top: 64px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,15,28,0.15) 0%,
    rgba(26,15,28,0.2) 40%,
    rgba(26,15,28,0.85) 100%
  );
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.04;
  background-image: radial-gradient(circle, #E8896A 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); width: 100%;
  margin: 0 auto;
  padding: 0 3rem 5rem;
}
.hero-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem;
}
.hero-kicker::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--coral); flex-shrink: 0;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700; line-height: 1.04;
  color: var(--white); margin-bottom: 1.4rem;
  letter-spacing: -0.03em; max-width: 820px;
}
.hero-title em { font-style: italic; color: var(--coral); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  line-height: 1.72; max-width: 580px; margin-bottom: 2.2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-coral {
  background: var(--coral); color: var(--white);
  padding: 0.9rem 2.1rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, opacity 0.2s; display: inline-block;
}
.btn-coral:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-ghost-light {
  color: rgba(255,255,255,0.85); border: 2px solid rgba(255,255,255,0.3);
  padding: 0.9rem 2.1rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s; display: inline-block;
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-primary {
  background: var(--plum); color: var(--white);
  padding: 0.9rem 2.1rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, background 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--mauve); transform: translateY(-2px); }
.btn-ghost {
  color: var(--plum); border: 2px solid var(--plum);
  padding: 0.9rem 2.1rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s; display: inline-block;
}
.btn-ghost:hover { background: var(--plum); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--coral);
  padding: 0.9rem 2.2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s; display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.14); }
.btn-outline-white {
  color: var(--white); border: 2px solid rgba(255,255,255,0.55);
  padding: 0.9rem 2.1rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s; display: inline-block;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* SECTIONS */
section { padding: 5.5rem 2.5rem; }
.container { max-width: var(--max); margin: 0 auto; }
.s-label { font-family: var(--ff-script); font-size: 1.4rem; color: var(--coral); display: block; margin-bottom: 0.4rem; }
.s-title { font-family: var(--ff-display); font-size: clamp(2rem, 3.5vw, 2.85rem); font-weight: 700; color: var(--plum); line-height: 1.17; letter-spacing: -0.022em; }
.s-sub { color: var(--muted); font-size: 1.06rem; max-width: 620px; margin-top: 0.9rem; line-height: 1.72; }

/* QUICK STATS BAR */
.stats-bar {
  background: var(--plum);
  padding: 2rem 2.5rem;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.stats-bar .inner {
  max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.1);
  border-radius: var(--r); overflow: hidden;
}
.stat-item {
  background: var(--plum);
  padding: 1.8rem 1.5rem; text-align: center;
  transition: background 0.2s;
}
.stat-item:hover { background: rgba(255,255,255,0.07); }
.stat-num {
  font-family: var(--ff-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--coral); line-height: 1; margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* WHAT I OFFER */
.offers { background: var(--cream); }
.offers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: 3rem;
}
.offer-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: 0 3px 20px rgba(92,45,94,0.08);
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px; background: var(--coral);
}
.offer-card:nth-child(2)::before { background: var(--teal); }
.offer-card:nth-child(3)::before { background: var(--plum); }
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(92,45,94,0.14); }
.offer-num {
  font-family: var(--ff-display);
  font-size: 3.5rem; font-weight: 700;
  color: var(--blush); line-height: 1;
  margin-bottom: 0.8rem;
}
.offer-name {
  font-family: var(--ff-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--plum); margin-bottom: 0.7rem; line-height: 1.2;
}
.offer-desc {
  font-size: 0.92rem; color: var(--muted);
  line-height: 1.68; flex: 1; margin-bottom: 1.4rem;
}
.offer-details {
  list-style: none; margin-bottom: 1.4rem;
}
.offer-details li {
  font-size: 0.86rem; color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(92,45,94,0.06);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.offer-details li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral); flex-shrink: 0;
  margin-top: 0.45rem;
}
.offer-card:nth-child(2) .offer-details li::before { background: var(--teal); }
.offer-card:nth-child(3) .offer-details li::before { background: var(--plum); }

/* SIGNATURE TALK */
.signature {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.signature::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,137,106,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}
.signature .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 5rem; align-items: center;
}
.sig-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem;
}
.sig-eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--coral); flex-shrink: 0;
}
.sig-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 1.3rem;
  letter-spacing: -0.02em;
}
.sig-title em { color: var(--coral); font-style: italic; }
.sig-body p {
  color: rgba(255,255,255,0.68); font-size: 1.04rem;
  line-height: 1.75; margin-bottom: 1rem;
}
.sig-outcomes {
  list-style: none; margin: 1.8rem 0 2.2rem;
}
.sig-outcomes li {
  font-size: 0.92rem; color: rgba(255,255,255,0.75);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: flex-start; gap: 0.7rem;
}
.sig-outcomes li::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral); flex-shrink: 0; margin-top: 0.42rem;
}
.sig-photo {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.sig-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}

/* ADDITIONAL TOPICS */
.topics { background: var(--blush); position: relative; overflow: hidden; }
.topics::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(92,45,94,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.topics .container { position: relative; z-index: 1; }
.topics-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem; margin-top: 3rem;
}
.topic-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem;
  box-shadow: 0 2px 14px rgba(92,45,94,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.topic-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(92,45,94,0.13); }
.topic-num {
  font-family: var(--ff-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--blush); line-height: 1; flex-shrink: 0;
  width: 2rem; text-align: center;
}
.topic-name {
  font-family: var(--ff-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--plum); margin-bottom: 0.4rem; line-height: 1.25;
}
.topic-desc {
  font-size: 0.88rem; color: var(--muted); line-height: 1.6;
}

/* PAST ENGAGEMENTS */
.engagements {
  background: var(--cream);
}
.eng-photos { grid-template-columns: 1fr; }
.eng-list { list-style: none; }
.eng-list li {
  font-size: 0.96rem; color: var(--text);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(92,45,94,0.1);
  display: flex; align-items: center; gap: 0.8rem;
}
.eng-list li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral); flex-shrink: 0;
}
.eng-list li strong {
  color: var(--plum); font-weight: 700;
}
.eng-photo {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 16px 48px rgba(92,45,94,0.12);
}
.eng-photo img {
  width: 100%; height: 380px;
  object-fit: cover; object-position: center 30%;
}

/* ENGAGEMENTS TABLES */
.eng-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}
.eng-table-block {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(92,45,94,0.08);
}
.eng-table-header {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1.1rem 1.4rem;
}
.upcoming-header { background: rgba(232,137,106,0.08); border-bottom: 2px solid rgba(232,137,106,0.2); }
.past-header     { background: rgba(92,45,94,0.05);   border-bottom: 2px solid rgba(92,45,94,0.12); }
.eng-col-label {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.2rem 0.65rem;
  border-radius: 50px;
}
.eng-col-label.upcoming { background: rgba(232,137,106,0.18); color: var(--coral); border: 1px solid rgba(232,137,106,0.35); }
.eng-col-label.past     { background: rgba(92,45,94,0.1);      color: var(--plum);  border: 1px solid rgba(92,45,94,0.22); }
.eng-col-title {
  font-family: var(--ff-display);
  font-size: 1rem; font-weight: 700; color: var(--plum);
}
.eng-table {
  width: 100%; border-collapse: collapse;
}
.eng-table thead tr {
  background: rgba(92,45,94,0.04);
}
.eng-table th {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  padding: 0.65rem 1.4rem; text-align: left;
  border-bottom: 1px solid rgba(92,45,94,0.08);
}
.eng-table tbody tr {
  border-bottom: 1px solid rgba(92,45,94,0.06);
  transition: background 0.15s;
}
.eng-table tbody tr:last-child { border-bottom: none; }
.eng-table tbody tr:hover { background: rgba(92,45,94,0.03); }
.eng-td-org {
  font-size: 0.9rem; font-weight: 700; color: var(--text);
  padding: 0.7rem 1.4rem; line-height: 1.3;
}
.eng-table td:not(.eng-td-org) {
  padding: 0.7rem 1rem 0.7rem 0;
  white-space: nowrap;
}
.eng-td-year { font-size: 0.82rem; font-weight: 700; padding-right: 1.4rem !important; }
.upcoming-year { color: var(--coral); }
.eng-tag {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.18rem 0.55rem;
  border-radius: 50px; white-space: nowrap;
}
.eng-tag-keynote  { background: rgba(232,137,106,0.12); color: var(--coral); }
.eng-tag-training { background: rgba(74,155,155,0.12);  color: var(--teal); }
.eng-tag-lecture  { background: rgba(92,45,94,0.1);     color: var(--plum); }
.eng-tag-panel    { background: rgba(196,136,154,0.15); color: var(--rose); }
.eng-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem; margin-top: 2rem;
}
.eng-photo-card {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 12px 36px rgba(92,45,94,0.12);
  aspect-ratio: 4/3;
}
.eng-photo-card img { width: 100%; height: 100%; object-fit: cover; }

/* AUDIENCE PHOTO STRIP */
.audience-strip {
  background: var(--plum);
  height: 320px; overflow: hidden; position: relative;
}
.audience-strip img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  opacity: 0.5;
}
.audience-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(74,30,76,0.95) 0%, rgba(74,30,76,0.6) 50%, rgba(74,30,76,0.85) 100%);
}
.audience-text {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.audience-text blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic; color: var(--white);
  max-width: 780px; line-height: 1.45;
  letter-spacing: -0.01em;
}
.audience-text cite {
  display: block; margin-top: 1.2rem;
  font-family: var(--ff-body); font-style: normal;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral);
}

/* LOGISTICS */
.logistics {
  background: linear-gradient(135deg, var(--blush) 0%, #fbe8ef 50%, var(--cream) 100%);
  position: relative; overflow: hidden;
}
.logistics::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, #5C2D5E 1px, transparent 1px);
  background-size: 26px 26px; opacity: 0.035;
}
.logistics .container { position: relative; z-index: 1; }
.logistics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: 3rem;
}
.log-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  box-shadow: 0 2px 14px rgba(92,45,94,0.08);
}
.log-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.log-icon svg { width: 20px; height: 20px; stroke: var(--plum); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.log-name {
  font-family: var(--ff-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--plum); margin-bottom: 0.5rem;
}
.log-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* TESTIMONIALS */
.testimonials {
  background: var(--dark); position: relative; overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .s-title { color: var(--white); }
.testimonials .s-label { color: var(--coral); }
.t-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem; margin-top: 2.8rem;
}
.t-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: 2rem;
  transition: background 0.2s;
}
.t-card:hover { background: rgba(255,255,255,0.09); }
.t-stars { color: var(--coral); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 0.15em; }
.t-quote {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1rem; color: var(--white);
  line-height: 1.65; margin-bottom: 1rem;
}
.t-name { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--rose); }

/* CTA STRIP */
.cta-strip {
  background: var(--coral); padding: 5.5rem 2.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-strip h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 0.9rem; letter-spacing: -0.022em;
}
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 1.12rem; margin-bottom: 2.2rem; }
.cta-strip .detail {
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  margin-top: 1.4rem;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-content { padding: 0 1.5rem 4rem; }
  .offers-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .signature .container { grid-template-columns: 1fr; gap: 3rem; }
  .sig-photo { max-width: 380px; }
  .topics-grid { grid-template-columns: 1fr; }
  .eng-tables { grid-template-columns: 1fr; gap: 2rem; }
  .logistics-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .t-grid { grid-template-columns: 1fr; }
  .stats-bar .inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .stats-bar .inner { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* MOBILE HERO FIX: allow the full hero copy to fit below the header */
@media (max-width: 600px) {
  .hero {
    height: auto;
    min-height: calc(100svh - 64px);
    margin-top: 64px;
    overflow: visible;
    align-items: flex-start;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    min-height: 100%;
    overflow: hidden;
  }

  .hero-content {
    padding: 2rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
    line-height: 1.02;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns a {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   MOBILE WIDTH GUARD
   Keeps grid/flex content inside the viewport.
   ========================================================= */
.hero,
.hero-wrap,
.page-hero,
.page-wrap,
.hero-left,
.hero-right,
.hero-content,
.container {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 600px) {
  section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-left,
  .hero-content,
  .form-side {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title,
  .page-title,
  .page-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-btns,
  .about-btns,
  .jump-links,
  .jump-pills,
  .pod-links {
    max-width: 100%;
  }
}

/* Speaking-page tables were able to establish a desktop-width layout on mobile. */
.engagements,
.engagements .container,
.eng-tables,
.eng-table-block {
  min-width: 0;
  max-width: 100%;
}

.eng-table-block {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 600px) {
  .hero {
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 2rem 1.25rem 3rem;
  }

  .hero-title {
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 1.04;
  }

  .eng-table {
    min-width: 560px;
  }
}
