/* ============================================
   HOMEPAGE — PREMIUM REDESIGN
   ============================================ */

/* --- Transparent Nav for Homepage --- */
.nav--transparent {
  background: transparent;
  border-bottom: none;
}

.nav--transparent .nav__link {
  color: rgba(255, 255, 255, 0.85);
}

.nav--transparent .nav__link:hover,
.nav--transparent .nav__link.active {
  color: #fff;
}

.nav--transparent .nav__link.active::after {
  background-color: var(--color-teal);
}

.nav--transparent .nav__toggle-icon,
.nav--transparent .nav__toggle-icon::before,
.nav--transparent .nav__toggle-icon::after {
  background-color: #fff;
}

.nav--transparent .nav__logo-dark {
  display: none;
}

.nav--transparent .nav__logo-light {
  display: block;
}

.nav--transparent.scrolled {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
}

.nav--transparent.scrolled .nav__link {
  color: var(--color-text-primary);
}

.nav--transparent.scrolled .nav__link:hover,
.nav--transparent.scrolled .nav__link.active {
  color: var(--color-teal);
}

.nav--transparent.scrolled .nav__toggle-icon,
.nav--transparent.scrolled .nav__toggle-icon::before,
.nav--transparent.scrolled .nav__toggle-icon::after {
  background-color: var(--color-navy);
}

.nav--transparent.scrolled .nav__logo-dark {
  display: block;
}

.nav--transparent.scrolled .nav__logo-light {
  display: none;
}

/* Non-transparent navs: hide the light logo */
.nav:not(.nav--transparent) .nav__logo-light {
  display: none;
}

/* Pages with full-bleed dark heroes — no main padding */
body:has(.hero-home) main,
body:has(.hero-v3) main,
body:has(.about-hero) main,
body:has(.services-hero) main,
body:has(.fw-hero) main,
body:has(.insights-hero) main,
body:has(.speaking-hero) main,
body:has(.speaking-hero-v3) main,
body:has(.contact-hero) main,
body:has(.contact-hero-v3) main,
body:has(.legal-hero) main,
body.home main,
body.page-template-front-page main,
body.page-template-page-about main,
body.page-template-page-services main,
body.page-template-page-framework main,
body.page-template-page-insights main,
body.page-template-page-speaking main,
body.page-template-page-contact main,
body.page-template-page-privacy main,
body.page-template-page-terms main,
body.blog main,
body.error404 main,
body.single main,
body.archive main,
body.category main {
  padding-top: 0;
}

/* --- Full-Bleed Hero --- */
.hero-home {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-home__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-home__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-home__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 37, 59, 0.92) 0%, rgba(6, 37, 59, 0.75) 50%, rgba(27, 104, 108, 0.6) 100%);
  z-index: 1;
}

.hero-home__content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 100px;
}

.hero-home__accent-line {
  width: 48px;
  height: 3px;
  background: var(--color-teal);
  margin-bottom: var(--space-lg);
}

.hero-home__text h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  max-width: 680px;
  margin-bottom: var(--space-lg);
}

.hero-home__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: var(--space-xl);
}

.hero-home__actions {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero-home {
    min-height: 80vh;
  }

  .hero-home__content {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-home__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
}

/* --- Credibility Bar --- */
.credibility-bar {
  background: var(--color-navy);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(27, 104, 108, 0.3);
}

.credibility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.credibility-bar__item {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  text-align: center;
}

.credibility-bar__number {
  font-size: 20px;
  font-weight: var(--weight-bold);
  color: var(--color-teal);
}

.credibility-bar__label {
  font-size: 14px;
  color: var(--color-text-on-dark-muted);
  letter-spacing: 0.02em;
}

.credibility-bar__divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 767px) {
  .credibility-bar__inner {
    gap: var(--space-lg);
  }

  .credibility-bar__divider {
    display: none;
  }

  .credibility-bar__item {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
    min-width: 100px;
  }
}

/* --- Problem Section --- */
.problem-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .problem-section {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.problem-section__lead h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  max-width: 480px;
}

.problem-section__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.problem-stat {
  position: relative;
  padding-left: var(--space-lg);
}

.problem-stat__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-teal);
  border-radius: 2px;
}

.problem-stat__number {
  font-size: 28px;
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.problem-stat p {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* --- Services Home --- */
.services-home__header {
  max-width: 560px;
  margin-bottom: var(--space-2xl);
}

.services-home__header h2 {
  margin-bottom: var(--space-md);
}

.services-home__header p {
  color: var(--color-text-secondary);
}

.services-home__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .services-home__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-item {
  background: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-lg);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background-color var(--transition-fast);
}

.service-item:hover {
  background: var(--color-bg-alt);
}

.service-item__number {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-teal);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}

.service-item__title {
  font-size: var(--text-card-title);
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.service-item__desc {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.service-item__link {
  margin-top: var(--space-lg);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-teal);
  transition: color var(--transition-fast);
}

.service-item:hover .service-item__link {
  color: var(--color-teal-dark);
}

/* --- Framework Home --- */
.framework-home__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-2xl);
}

.framework-home__header h2 {
  margin-bottom: var(--space-md);
}

.framework-home__flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
}

.framework-home__step {
  flex: 1;
  max-width: 240px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.framework-home__step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-teal);
}

.framework-home__step-num {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--weight-bold);
  color: var(--color-teal);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  padding: 4px 12px;
  border: 1px solid rgba(27, 104, 108, 0.4);
  border-radius: 100px;
}

.framework-home__step-content h3 {
  font-size: 17px;
  font-weight: var(--weight-semibold);
  color: #fff;
  margin-bottom: 6px;
}

.framework-home__step-content p {
  font-size: 13px;
  color: var(--color-text-on-dark-muted);
  line-height: 1.5;
}

.framework-home__connector {
  width: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.framework-home__connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: rgba(27, 104, 108, 0.5);
}

.framework-home__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

@media (max-width: 767px) {
  .framework-home__flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .framework-home__step {
    max-width: 100%;
    width: 100%;
  }

  .framework-home__connector {
    width: auto;
    height: 24px;
  }

  .framework-home__connector::after {
    width: 1px;
    height: 100%;
  }
}

/* --- Quote Section --- */
.quote-section {
  background: var(--color-bg-primary);
}

.quote-section__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-section__mark {
  font-size: 120px;
  line-height: 0.6;
  color: var(--color-teal-light);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-md);
}

.quote-section__inner blockquote p {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: var(--weight-medium);
  color: var(--color-navy);
  line-height: 1.55;
  margin-bottom: var(--space-xl);
}

.quote-section__inner cite {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  font-style: normal;
  text-align: left;
}

.quote-section__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-section__inner cite strong {
  display: block;
  font-size: 15px;
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
}

.quote-section__inner cite span {
  display: block;
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* --- Insights Home Header --- */
.insights-home__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  gap: var(--space-lg);
}

.insights-home__header h2 {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .insights-home__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Speaking Home --- */
.speaking-home__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .speaking-home__inner {
    grid-template-columns: 5fr 6fr;
  }
}

.speaking-home__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.speaking-home__image img {
  width: 100%;
  height: auto;
  display: block;
}

.speaking-home__content h2 {
  margin-bottom: var(--space-md);
}

.speaking-home__content > p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.speaking-home__topics {
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.speaking-home__topic {
  font-size: 15px;
  font-weight: var(--weight-medium);
  color: var(--color-navy);
}

/* --- Final CTA --- */
.cta-final {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 37, 59, 0.93) 0%, rgba(6, 37, 59, 0.85) 100%);
  z-index: 1;
}

.cta-final__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-final__content h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: var(--space-md);
}

.cta-final__content p {
  color: var(--color-text-on-dark-muted);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

@media (max-width: 767px) {
  .cta-final {
    padding: var(--space-3xl) 0;
  }
}

/* ============================================
   SHARED — INNER PAGE HERO (dark full-bleed)
   ============================================ */
.page-hero-dark {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-dark--short {
  min-height: 40vh;
}

.page-hero-dark__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-dark__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-dark__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 37, 59, 0.93) 0%, rgba(6, 37, 59, 0.82) 100%);
  z-index: 1;
}

.page-hero-dark__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
}

.page-hero-dark__accent {
  width: 48px;
  height: 3px;
  background: var(--color-teal);
  margin-bottom: var(--space-lg);
}

.page-hero-dark h1 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 52px);
  max-width: 640px;
  margin-bottom: var(--space-md);
}

.page-hero-dark p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 520px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .page-hero-dark {
    min-height: 40vh;
  }

  .page-hero-dark--short {
    min-height: 32vh;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

/* Founder */
.about-founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 768px) {
  .about-founder {
    grid-template-columns: 5fr 7fr;
  }
}

.about-founder__photo {
  position: relative;
}

.about-founder__photo img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

.about-founder__photo::after {
  content: '';
  position: absolute;
  top: 16px;
  right: -12px;
  bottom: -12px;
  left: 16px;
  border: 2px solid var(--color-teal);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-founder__bio {
  padding-top: var(--space-sm);
}

.about-founder__name {
  margin-bottom: var(--space-sm);
}

.about-founder__name-line {
  width: 40px;
  height: 2px;
  background: var(--color-teal);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about-founder__bio p {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

/* Mission */
.mission-section {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.mission-section__accent {
  width: 48px;
  height: 3px;
  background: var(--color-teal);
  margin: 0 auto var(--space-lg);
}

.mission-section h2 {
  margin-bottom: var(--space-xl);
}

.mission-section p {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Values — bordered grid like homepage services */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.values-grid__item {
  background: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-lg);
}

.values-grid__num {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-teal);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}

.values-grid__item h3 {
  margin-bottom: var(--space-sm);
}

.values-grid__item p {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

/* Overview split */
.services-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 768px) {
  .services-overview {
    grid-template-columns: 7fr 5fr;
  }
}

.services-overview__text h2 {
  margin-bottom: var(--space-lg);
}

.services-overview__text p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.services-overview__sidebar {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border-left: 3px solid var(--color-teal);
}

.services-overview__sidebar h3 {
  margin-bottom: var(--space-lg);
}

.services-overview__sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.services-overview__sidebar li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: 15px;
}

.services-overview__sidebar li span {
  color: var(--color-teal);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

/* Deliverables — bordered grid */
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.deliverable-item {
  background: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-lg);
}

.deliverable-item__num {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-teal);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.deliverable-item h3 {
  font-size: var(--text-card-title);
  margin-bottom: var(--space-sm);
}

.deliverable-item p {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Process timeline */
.process-timeline {
  display: flex;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.process-timeline__step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 var(--space-md);
}

.process-timeline__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: var(--weight-bold);
  margin: 0 auto var(--space-md);
}

.process-timeline__step h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.process-timeline__step p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .process-timeline {
    flex-direction: column;
    gap: var(--space-lg);
    padding-left: 36px;
  }

  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-timeline__step {
    text-align: left;
    display: flex;
    gap: var(--space-md);
    padding: 0;
  }

  .process-timeline__circle {
    flex-shrink: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ============================================
   FRAMEWORK PAGE
   ============================================ */

/* Pipeline diagram */
.framework-pipeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.framework-pipeline__stage {
  flex: 1;
  max-width: 220px;
  background: var(--color-navy);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.framework-pipeline__num {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--weight-bold);
  color: var(--color-teal);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  padding: 3px 10px;
  border: 1px solid rgba(27, 104, 108, 0.5);
  border-radius: 100px;
}

.framework-pipeline__stage h3 {
  font-size: 16px;
  font-weight: var(--weight-semibold);
  color: #fff;
  margin-bottom: 4px;
}

.framework-pipeline__stage p {
  font-size: 13px;
  color: var(--color-text-on-dark-muted);
  line-height: 1.5;
}

.framework-pipeline__arrow {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.framework-pipeline__arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .framework-pipeline {
    flex-direction: column;
    align-items: center;
    padding: var(--space-lg);
  }

  .framework-pipeline__stage {
    max-width: 100%;
    width: 100%;
  }

  .framework-pipeline__arrow {
    width: auto;
    height: 28px;
    transform: rotate(90deg);
  }
}

/* Stage deep dive */
.stage-dive {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .stage-dive {
    grid-template-columns: 1fr 1fr;
  }

  .stage-dive--reverse {
    direction: rtl;
  }

  .stage-dive--reverse > * {
    direction: ltr;
  }
}

.stage-dive__text {
  position: relative;
}

.stage-dive__num {
  font-size: clamp(60px, 8vw, 100px);
  font-weight: var(--weight-bold);
  color: var(--color-teal-light);
  line-height: 0.9;
  margin-bottom: var(--space-md);
}

.stage-dive__text h2 {
  margin-bottom: var(--space-lg);
}

.stage-dive__text p {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.stage-dive__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stage-dive__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   INSIGHTS PAGE
   ============================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: var(--color-bg-primary);
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.filter-btn.active {
  background-color: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-text-on-dark);
}

/* Featured article */
.card--featured {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .card--featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .card--featured .card__image {
    aspect-ratio: auto;
    min-height: 300px;
  }

  .card--featured .card__image img {
    height: 100%;
  }

  .card--featured .card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
  }

  .card--featured .card__title {
    font-size: var(--text-h3);
  }

  .card--featured .card__excerpt {
    -webkit-line-clamp: 3;
  }
}

/* ============================================
   SPEAKING PAGE
   ============================================ */

/* Speaker bio split */
.speaker-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .speaker-split {
    grid-template-columns: 5fr 7fr;
  }
}

.speaker-split__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.speaker-split__image img {
  width: 100%;
  height: auto;
  display: block;
}

.speaker-split__content h2 {
  margin-bottom: var(--space-md);
}

.speaker-split__content p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Engagement timeline */
.timeline {
  position: relative;
  padding-left: 32px;
  max-width: 680px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 7px;
  width: 2px;
  background: var(--color-border);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-teal);
  border: 3px solid var(--color-bg-alt);
  z-index: 1;
}

.timeline__year {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-teal);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.timeline__item h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.timeline__item p {
  color: var(--color-text-secondary);
  font-size: 15px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 7fr 5fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid var(--color-border);
  border-radius: 0;
  font-size: var(--text-body);
  color: var(--color-text-primary);
  background: transparent;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--color-teal);
  box-shadow: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.form-group textarea:focus {
  border-color: var(--color-teal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-secondary);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%235A6B7B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.contact-sidebar {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.contact-sidebar h3 {
  margin-bottom: var(--space-md);
}

.contact-sidebar > p {
  color: var(--color-text-secondary);
  font-size: 15px;
  margin-bottom: var(--space-xl);
}

.contact-sidebar__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-sidebar__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-teal);
  margin-top: 2px;
}

.contact-sidebar__item strong {
  display: block;
  font-size: 14px;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.contact-sidebar__item a,
.contact-sidebar__item p {
  font-size: 15px;
  margin: 0;
}

.contact-sidebar__expect {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.contact-sidebar__expect h4 {
  font-size: 15px;
  margin-bottom: var(--space-sm);
}

.contact-sidebar__expect p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SPEAKING PAGE — HERO & TOPICS
   ============================================ */

.speaking-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.speaking-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.speaking-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaking-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 37, 59, 0.92) 0%, rgba(6, 37, 59, 0.78) 50%, rgba(27, 104, 108, 0.55) 100%);
  z-index: 1;
}

.speaking-hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
}

.speaking-hero__accent-line {
  width: 48px;
  height: 3px;
  background: var(--color-teal);
  margin-bottom: var(--space-lg);
}

.speaking-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 52px);
  max-width: 640px;
  margin-bottom: var(--space-md);
}

.speaking-hero__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 560px;
  line-height: 1.6;
}

/* Topics grid */
.speaking-topics__header {
  max-width: 560px;
  margin-bottom: var(--space-2xl);
}

.speaking-topics__header h2 {
  margin-bottom: var(--space-md);
}

.speaking-topics__header p {
  color: var(--color-text-secondary);
}

.speaking-topics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .speaking-topics__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.speaking-topic-item {
  background: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: background-color var(--transition-fast);
}

.speaking-topic-item:hover {
  background: var(--color-bg-alt);
}

.speaking-topic-item__number {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-teal);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}

.speaking-topic-item__title {
  font-size: var(--text-card-title);
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.speaking-topic-item__desc {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE — HERO & PANEL
   ============================================ */

.contact-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy);
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 37, 59, 1) 0%, rgba(6, 37, 59, 0.85) 50%, rgba(27, 104, 108, 0.4) 100%);
  z-index: 1;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 70px;
}

.contact-hero__accent-line {
  width: 48px;
  height: 3px;
  background: var(--color-teal);
  margin-bottom: var(--space-lg);
}

.contact-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 52px);
  max-width: 640px;
  margin-bottom: var(--space-md);
}

.contact-hero__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 520px;
  line-height: 1.6;
}

/* Contact form modern variant */
.contact-layout__form h2 {
  margin-bottom: var(--space-xl);
}

/* Contact panel */
.contact-panel {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.contact-panel__avatar {
  margin-bottom: var(--space-lg);
}

.contact-panel__avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-panel h3 {
  margin-bottom: var(--space-sm);
}

.contact-panel > p {
  color: var(--color-text-secondary);
  font-size: 15px;
  margin-bottom: var(--space-xl);
}

.contact-panel__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: 0;
}

.contact-panel__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-panel__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-teal);
  margin-top: 2px;
}

.contact-panel__icon svg {
  width: 100%;
  height: 100%;
}

.contact-panel__item strong {
  display: block;
  font-size: 14px;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.contact-panel__item a {
  font-size: 15px;
}

.contact-panel__expect {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-bg-primary);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-teal);
}

.contact-panel__expect h4 {
  font-size: 15px;
  margin-bottom: var(--space-md);
}

.contact-panel__expect ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-panel__expect li {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  padding-left: var(--space-md);
  position: relative;
}

.contact-panel__expect li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
}

/* ============================================
   SPEAKING PAGE — BIO & ENGAGEMENTS (missing)
   ============================================ */

/* Speaker bio split */
.speaker-bio {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .speaker-bio {
    grid-template-columns: 5fr 7fr;
  }
}

.speaker-bio__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.speaker-bio__image img {
  width: 100%;
  height: auto;
  display: block;
}

.speaker-bio__content h2 {
  margin-bottom: var(--space-md);
}

.speaker-bio__content > p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.speaker-bio__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.speaker-bio__highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 15px;
  color: var(--color-text-primary);
}

.speaker-bio__highlight svg {
  flex-shrink: 0;
  color: var(--color-teal);
  margin-top: 2px;
}

/* Engagements timeline */
.engagements__header {
  margin-bottom: var(--space-2xl);
}

.engagements__header h2 {
  margin-bottom: 0;
}

.engagements__timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
}

.engagements__line {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 7px;
  width: 2px;
  background: var(--color-border);
}

.engagement-item {
  position: relative;
  padding-bottom: var(--space-xl);
  padding-left: var(--space-md);
}

.engagement-item:last-child {
  padding-bottom: 0;
}

.engagement-item__dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-teal);
  border: 3px solid var(--color-bg-primary);
  z-index: 1;
}

.section--bg-alt .engagement-item__dot {
  border-color: var(--color-bg-alt);
}

.engagement-item__year {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-teal);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.engagement-item__content h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.engagement-item__content p {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Modern form variant — bottom-border-only inputs */
.contact-form--modern .form-group--modern label {
  font-size: 12px;
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form--modern .form-group--modern input,
.contact-form--modern .form-group--modern select {
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid var(--color-border);
  border-radius: 0;
  font-size: var(--text-body);
  color: var(--color-text-primary);
  background: transparent;
  transition: border-color var(--transition-fast);
}

.contact-form--modern .form-group--modern input:focus,
.contact-form--modern .form-group--modern select:focus {
  outline: none;
  border-bottom-color: var(--color-teal);
  box-shadow: none;
}

.contact-form--modern .form-group--modern textarea {
  min-height: 120px;
  resize: vertical;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-body);
  color: var(--color-text-primary);
  background: transparent;
  transition: border-color var(--transition-fast);
}

.contact-form--modern .form-group--modern textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: none;
}

.contact-form--modern .form-group--modern select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%235A6B7B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.contact-form--modern .form-group--modern input::placeholder,
.contact-form--modern .form-group--modern textarea::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.6;
}

@media (max-width: 767px) {
  .speaking-hero {
    min-height: 45vh;
  }

  .contact-hero {
    min-height: 35vh;
  }
}

/* ============================================
   FRAMEWORK PAGE — COMPLETE REBUILD
   ============================================ */

/* Hero */
.fw-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fw-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fw-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fw-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 37, 59, 0.93) 0%, rgba(6, 37, 59, 0.82) 100%);
  z-index: 1;
}

.fw-hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
}

.fw-hero__accent {
  width: 48px;
  height: 3px;
  background: var(--color-teal);
  margin-bottom: var(--space-lg);
}

.fw-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 52px);
  max-width: 700px;
  margin-bottom: var(--space-md);
}

.fw-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 580px;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .fw-hero {
    min-height: 40vh;
  }
}

/* Pipeline diagram */
.fw-pipeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: 0 8px 40px rgba(6, 37, 59, 0.08);
}

.fw-pipeline__stage {
  flex: 1;
  max-width: 240px;
  background: var(--color-navy);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fw-pipeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(27, 104, 108, 0.2);
  color: var(--color-teal);
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.fw-pipeline__stage h3 {
  font-size: 17px;
  font-weight: var(--weight-semibold);
  color: #fff;
  margin-bottom: 6px;
}

.fw-pipeline__stage p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.fw-pipeline__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  flex-shrink: 0;
  color: var(--color-teal);
}

.fw-pipeline__arrow svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 767px) {
  .fw-pipeline {
    flex-direction: column;
    align-items: center;
    padding: var(--space-xl) var(--space-md);
    gap: 0;
  }

  .fw-pipeline__stage {
    max-width: 100%;
    width: 100%;
  }

  .fw-pipeline__arrow {
    width: auto;
    height: 28px;
    transform: rotate(90deg);
  }
}

/* Stage deep dives */
.fw-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .fw-stage {
    grid-template-columns: 1fr 1fr;
  }

  .fw-stage--reverse .fw-stage__text {
    order: 2;
  }

  .fw-stage--reverse .fw-stage__image {
    order: 1;
  }
}

.fw-stage__text {
  position: relative;
}

.fw-stage__watermark {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: var(--weight-bold);
  color: rgba(27, 104, 108, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.fw-stage__text .eyebrow {
  position: relative;
  z-index: 1;
}

.fw-stage__text h2 {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-lg);
}

.fw-stage__text p {
  position: relative;
  z-index: 1;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.fw-stage__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(6, 37, 59, 0.1);
}

.fw-stage__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .fw-stage__watermark {
    top: -15px;
    right: 0;
  }

  .fw-stage__image {
    order: -1;
  }
}
