/*
 * pages.css
 * Dr. Aprilia West — Inner Page Sections
 *
 * Covers shared section patterns used across
 * psychotherapy, executive coaching, trainings,
 * speaking/media, about, and connect pages.
 *
 * Includes: philosophy, image break, who-benefits,
 *           assessment, FAQ accordion, expertise grid,
 *           modalities, process steps, connect form layout.
 *
 * @package daw
 */

/* ─────────────────────────────────────────────
   PHILOSOPHY / APPROACH SECTION
   ───────────────────────────────────────────── */
.philosophy-section {
  background: var(--warm-white);
  padding: 100px var(--pad-x);
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 88px;
  align-items: start;
}

.phil-text h2 {
  margin-bottom: 32px;
}

.phil-callout {
  border-left: 2px solid var(--gold);
  padding: 20px 28px;
  background: rgba(184,150,90,0.04);
  margin: 36px 0;
}

.phil-callout p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.6;
}

.phil-callout .attr {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  display: block;
}

/* Modalities list */
.modalities-label {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.modalities-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modality-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border-left: 2px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}

.modality-tag:hover {
  border-left-color: var(--gold);
  background: rgba(184,150,90,0.03);
}

.modality-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.modality-name {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.modality-abbr {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-left: auto;
}

/* ─────────────────────────────────────────────
   IMAGE BREAK (full-width photo strip)
   ───────────────────────────────────────────── */
.img-break {
  width: 100%;
  height: clamp(300px, 45vw, 560px);
  overflow: hidden;
  position: relative;
}

.img-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.img-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,9,6,0.65) 0%, transparent 55%);
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
}

.img-break-quote {
  max-width: 520px;
}

.img-break-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.55;
  margin-bottom: 20px;
}

.img-break-quote blockquote em {
  color: var(--gold-light);
  font-style: normal;
}

.img-break-attr {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─────────────────────────────────────────────
   WHO WILL BENEFIT
   ───────────────────────────────────────────── */
.who-section {
  background: var(--black);
  padding: 100px var(--pad-x);
  position: relative;
  overflow: hidden;
}

.who-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 90% 50%, rgba(184,150,90,0.055) 0%, transparent 65%);
  pointer-events: none;
}

.who-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.who-text h2 {
  margin-bottom: 28px;
}

.who-body-p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,242,236,0.58);
  line-height: 1.85;
  margin-bottom: 18px;
}

.who-highlight {
  margin-top: 36px;
  padding: 28px 32px;
  background: rgba(184,150,90,0.07);
  border-top: 1px solid rgba(184,150,90,0.2);
}

.who-highlight-label {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.who-highlight-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  color: rgba(245,242,236,0.75);
  line-height: 1.6;
}

/* Expertise grid */
.expertise-label {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.expertise-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.expertise-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,150,90,0.08);
  padding: 24px 20px;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.expertise-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.expertise-item:hover {
  background: rgba(184,150,90,0.05);
  border-color: rgba(184,150,90,0.2);
}

.expertise-item:hover::before {
  transform: scaleX(1);
}

.expertise-icon {
  margin-bottom: 14px;
}

.expertise-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.3;
}

/* ─────────────────────────────────────────────
   ASSESSMENT SECTION
   ───────────────────────────────────────────── */
.assess-section {
  background: var(--warm-white);
  padding: 100px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.assess-img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 108%;
  overflow: hidden;
}

.assess-img-wrap img {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.assess-img-border {
  position: absolute;
  top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(184,150,90,0.3);
  pointer-events: none;
  z-index: 1;
}

.assess-tag {
  position: absolute;
  bottom: -18px; right: -18px;
  z-index: 2;
  background: var(--black);
  padding: 18px 22px;
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.5;
}

.assess-text h2 {
  margin-bottom: 24px;
}

.assess-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 32px 0 36px;
}

.assess-card {
  padding: 24px 28px;
  background: white;
  border-left: 2px solid var(--border);
  transition: border-color 0.25s;
}

.assess-card:hover {
  border-left-color: var(--gold);
}

.assess-card-title {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.assess-card-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   FAQ ACCORDION
   ───────────────────────────────────────────── */
.faq-section {
  background: var(--off-white);
  padding: 100px var(--pad-x);
}

.faq-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.faq-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 960px;
}

.faq-item {
  background: var(--warm-white);
  border-left: 2px solid transparent;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-left-color: var(--gold);
  background: white;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
  cursor: pointer;
  gap: 24px;
  user-select: none;
}

.faq-q {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon path {
  stroke: var(--black);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1), padding 0.35s;
  padding: 0 36px;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 36px 28px;
}

.faq-answer p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,150,90,0.3);
  transition: border-color 0.2s;
}

.faq-answer a:hover {
  border-color: var(--gold);
}

.faq-answer strong {
  font-weight: 500;
  color: var(--text-dark);
}

/* ─────────────────────────────────────────────
   PROCESS STEPS
   Used on coaching / trainings pages
   ───────────────────────────────────────────── */
.process-section {
  background: var(--black);
  padding: 100px var(--pad-x);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 85% 40%, rgba(184,150,90,0.05) 0%, transparent 65%);
  pointer-events: none;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.process-step {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(184,150,90,0.08);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}

.process-step:hover {
  background: rgba(184,150,90,0.04);
  border-color: rgba(184,150,90,0.2);
}

.process-step-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(184,150,90,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.process-step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.process-step-title em {
  font-style: italic;
  color: var(--gold-light);
}

.process-step-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,242,236,0.5);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE — BIO SECTION
   ───────────────────────────────────────────── */
.bio-section {
  background: var(--warm-white);
  padding: 100px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.bio-img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
}

.bio-img-wrap img {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bio-img-border {
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.bio-content h2 {
  margin-bottom: 28px;
}

/* ─────────────────────────────────────────────
   CONNECT PAGE — FULL LAYOUT
   ───────────────────────────────────────────── */
.connect-page {
  background: var(--warm-white);
  padding: 100px var(--pad-x);
}

.connect-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — INNER PAGES
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .philosophy-section {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 72px var(--pad-x-md);
  }

  .who-section {
    padding: 72px var(--pad-x-md);
  }

  .who-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .assess-section {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 72px var(--pad-x-md);
  }

  .faq-section {
    padding: 72px var(--pad-x-md);
  }

  .faq-header {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bio-section {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 72px var(--pad-x-md);
  }

  .connect-page-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .connect-page {
    padding: 72px var(--pad-x-md);
  }

  .img-break-overlay {
    padding: 0 var(--pad-x-md);
  }
}

@media (max-width: 640px) {
  .philosophy-section,
  .who-section,
  .assess-section,
  .faq-section,
  .process-section,
  .bio-section,
  .connect-page {
    padding: 56px var(--pad-x-sm);
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .faq-trigger {
    padding: 20px 20px;
  }

  .faq-answer,
  .faq-item.open .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .img-break-overlay {
    padding: 0 24px;
  }
}

/* ─────────────────────────────────────────────
   ABOUT PAGE — HERO  (.about-hero)
   Scoped class — does not inherit .page-hero styles.
   Matches static HTML exactly: two-column grid,
   photo left, text right, crosshatch ::before.
   ───────────────────────────────────────────── */
.about-hero {
  min-height: 100vh;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  align-items: start;
  padding-top: 0;
}

/* Crosshatch texture — same as other page heroes */
.about-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 2px, rgba(245,242,236,0.011) 2px, rgba(245,242,236,0.011) 3px),
    repeating-linear-gradient(90deg,  transparent, transparent 3px, rgba(245,242,236,0.007) 3px, rgba(245,242,236,0.007) 4px),
    repeating-linear-gradient(45deg,  transparent, transparent 6px, rgba(184,150,90,0.02)   6px, rgba(184,150,90,0.02)   7px),
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(245,242,236,0.009) 8px, rgba(245,242,236,0.009) 9px);
  pointer-events: none;
}

/* Photo column — sticky on desktop, image stays while right col scrolls */
.about-hero .hero-photo-col {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  align-self: start;
}

.about-hero .hero-photo-col img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-hero .hero-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,9,6,0.15) 0%, transparent 60%),
    linear-gradient(to top,   rgba(10,9,6,0.5)  0%, transparent 40%);
}

.about-hero .hero-photo-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 40px;
}

.about-hero .hero-credentials {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-hero .hero-cred {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-hero .hero-cred::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Text column — scrolls naturally while photo sticks */
.about-hero .hero-text-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 120px 64px 72px 64px;
  background: linear-gradient(to left, rgba(10,9,6,0.6) 0%, transparent 100%);
  min-height: 100vh;
}

.about-hero .hero-text-col::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,150,90,0.2) 30%, rgba(184,150,90,0.2) 70%, transparent);
}

.about-hero .hero-name {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--off-white);
  margin-bottom: 8px;
}

.about-hero .hero-name em {
  font-style: italic;
  color: var(--gold-light);
}

.about-hero .hero-title-line {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.45);
  margin-bottom: 40px;
  margin-top: 20px;
}

.about-hero .hero-intro {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245,242,236,0.65);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 40px;
}

.about-hero .hero-fun-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 28px;
  background: rgba(184,150,90,0.07);
  border-left: 2px solid rgba(184,150,90,0.3);
  margin-bottom: 40px;
  max-width: 400px;
}

.about-hero .fun-fact {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(245,242,236,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-hero .fun-fact svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.about-hero .hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.6);
  text-decoration: none;
  transition: color 0.25s;
}

.btn-outline-light:hover { color: var(--gold-light); }
.btn-outline-light svg   { transition: transform 0.25s; }
.btn-outline-light:hover svg { transform: translateX(4px); }

/* Bio section layout */
.bio-section {
  background: var(--warm-white);
  padding: 100px var(--pad-x);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.bio-sidebar {}

.sidebar-block {
  margin-bottom: 40px;
  padding: 28px 32px;
  background: white;
  border-top: 2px solid var(--gold);
}

.sidebar-title {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.credential-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.credential-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}

.credential-text strong {
  font-weight: 500;
  color: var(--text-dark);
  display: block;
}


/* ─────────────────────────────────────────────
   CONNECT PAGE — contact section layout
   ───────────────────────────────────────────── */
.contact-section {
  background: var(--warm-white);
  padding: 100px var(--pad-x);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.contact-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-headline em { font-style: italic; color: var(--gold); }

.contact-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Inquiry type cards */
.inquiry-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 40px;
}

.inquiry-card {
  padding: 18px 22px;
  background: white;
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.inquiry-card:hover,
.inquiry-card.selected {
  border-left-color: var(--gold);
  background: rgba(184,150,90,0.03);
}

.inquiry-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 6px;
}

.inquiry-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(184,150,90,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inquiry-card-label {
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.inquiry-card-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
}

.inquiry-card-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  padding-left: 50px;
}

/* Contact details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(184,150,90,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-label {
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
}

/* Form wrap — sticky */
.contact-form-wrap {
  position: sticky;
  top: 100px;
}

.form-card {
  background: white;
  padding: 48px 44px;
  border-top: 3px solid var(--gold);
}

.form-card-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-card-title em { font-style: italic; color: var(--gold); }

.form-card-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 32px;
}

.form-submit {
  padding: 18px;
  background: var(--black);
  color: var(--off-white);
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.form-submit:hover { background: var(--gold); color: var(--black); }
.form-submit svg   { transition: transform 0.25s; }
.form-submit:hover svg { transform: translateX(4px); }

/* ── Courses section (trainings page) ── */
.courses-section {
  background: var(--off-white);
  padding: 80px var(--pad-x) 100px;
}

.courses-header {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.courses-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

.courses-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.course-card {
  background: var(--warm-white);
  position: relative;
  transition: background 0.3s;
}

.course-card:hover { background: white; }

.course-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 40px 48px 36px;
  cursor: pointer;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  display: inline-block;
}

.badge-available { background: rgba(184,150,90,0.12); color: var(--gold);       border: 1px solid rgba(184,150,90,0.3); }
.badge-closed    { background: rgba(90,90,90,0.08);   color: var(--text-light);  border: 1px solid rgba(90,90,90,0.15); }
.badge-coming    { background: rgba(184,150,90,0.06); color: var(--gold-light);  border: 1px solid rgba(184,150,90,0.2); }
.badge-type      { background: var(--black);           color: var(--gold);        border: 1px solid transparent; }

.course-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 10px;
}

.course-title em { font-style: italic; color: var(--gold); }

.course-subtitle {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 6px;
}

.course-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 580px;
}

.course-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.course-price { text-align: right; }
.course-price-label { font-family: var(--condensed); font-size: 9px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.course-price-num   { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--text-dark); line-height: 1; }
.course-price-sub   { font-family: var(--condensed); font-size: 9px; letter-spacing: 0.1em; color: var(--text-light); margin-top: 2px; }

.course-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  cursor: pointer;
}

.course-card.open .course-toggle {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.course-card.open .course-toggle svg path { stroke: var(--black); }

.course-body { max-height: 0; overflow: hidden; transition: max-height 0.55s cubic-bezier(0.16,1,0.3,1); }
.course-card.open .course-body { max-height: 3000px; }

.course-body-inner {
  padding: 0 48px 48px;
  border-top: 1px solid var(--border);
  margin: 0 48px;
}

.course-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 40px;
}

.course-section-title {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.course-body-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.course-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.course-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}

.course-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 1px;
  background: var(--gold);
}

.course-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── Speaking section (speaking-media page) ── */
.speaking-section {
  background: var(--warm-white);
  padding: 100px var(--pad-x);
}

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  /* Disable sticky on mobile — reverts to normal flow */
  .about-hero .hero-photo-col {
    position: relative;
    height: 60vh;
    top: auto;
  }

  .about-hero .hero-text-col {
    padding: 64px var(--pad-x-md) 56px;
    background: var(--black);
    min-height: auto;
  }

  .bio-section {
    grid-template-columns: 1fr;
    padding: 72px var(--pad-x-md);
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 72px var(--pad-x-md);
  }

  .courses-header {
    grid-template-columns: 1fr;
  }

  .course-body-grid {
    grid-template-columns: 1fr;
  }

  .course-header,
  .course-body-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .course-body-inner {
    margin: 0 32px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: auto;
  }

  .about-hero .hero-text-col {
    padding: 48px var(--pad-x-sm);
  }

  .bio-section,
  .contact-section,
  .courses-section,
  .speaking-section {
    padding: 56px var(--pad-x-sm);
  }

  .course-header,
  .course-body-inner {
    padding-left: var(--pad-x-sm);
    padding-right: var(--pad-x-sm);
  }

  .course-body-inner {
    margin: 0 var(--pad-x-sm);
  }
}

/* ─────────────────────────────────────────────
   EXECUTIVE COACHING — INTRO SECTION
   ───────────────────────────────────────────── */
.intro-section {
	background: var(--off-white);
	padding: 100px var(--pad-x);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.intro-visual {
	position: relative;
}

.intro-img-wrap {
	position: relative;
	width: 100%;
	padding-bottom: 115%;
	overflow: hidden;
}

.intro-img-wrap img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center top;
}

.intro-img-border {
	position: absolute;
	top: -14px; left: -14px; right: 14px; bottom: 14px;
	border: 1px solid rgba(184,150,90,0.35);
	pointer-events: none;
	z-index: 1;
}

.intro-tag {
	position: absolute;
	bottom: -18px; right: -18px;
	z-index: 2;
	background: var(--gold);
	padding: 16px 20px;
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--black);
	line-height: 1.4;
}

.intro-text h2 {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 50px);
	font-weight: 300;
	line-height: 1.15;
	color: var(--text-dark);
	margin-bottom: 28px;
}

.intro-text h2 em { font-style: italic; color: var(--gold); }

.intro-body {
	font-size: 15px;
	font-weight: 300;
	color: var(--text-mid);
	line-height: 1.85;
	margin-bottom: 18px;
}

.intro-stats {
	display: flex;
	gap: 40px;
	margin-top: 36px;
	padding-top: 36px;
	border-top: 1px solid var(--border);
}

.intro-stats .stat-num {
	font-family: var(--serif);
	font-size: 44px;
	font-weight: 300;
	color: var(--gold);
	line-height: 1;
}

.intro-stats .stat-label {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-light);
	margin-top: 4px;
}

/* ─────────────────────────────────────────────
   PULL QUOTE
   ───────────────────────────────────────────── */
.pull-quote {
	background: var(--black);
	padding: 80px var(--pad-x);
	position: relative;
	overflow: hidden;
}

.pull-quote::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,150,90,0.06) 0%, transparent 70%);
	pointer-events: none;
}

.pull-quote-inner {
	position: relative;
	z-index: 1;
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.quote-text {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(20px, 2.5vw, 28px);
	font-weight: 300;
	color: var(--off-white);
	line-height: 1.55;
	margin-bottom: 32px;
}

.quote-text em {
	color: var(--gold-light);
	font-style: normal;
}

.quote-attr {
	font-family: var(--condensed);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
}

.quote-role {
	font-family: var(--condensed);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.12em;
	color: rgba(245,242,236,0.55);
	margin-top: 6px;
}

/* ─────────────────────────────────────────────
   COACHING SERVICES ACCORDION
   ───────────────────────────────────────────── */
.coaching-services-section {
	background: var(--off-white);
	padding: 100px var(--pad-x);
}

.services-header-grid {
	margin-bottom: 64px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: end;
}

.services-intro-text {
	font-size: 15px;
	font-weight: 300;
	color: var(--text-mid);
	line-height: 1.8;
}

.coaching-services-grid {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.service-item {
	background: var(--warm-white);
	border-left: 2px solid transparent;
	transition: border-color 0.3s, background 0.3s;
	cursor: pointer;
}

.service-item:hover,
.service-item.open {
	border-left-color: var(--gold);
	background: white;
}

.service-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 32px 40px;
	gap: 24px;
	user-select: none;
}

.service-trigger-left {
	display: flex;
	align-items: center;
	gap: 24px;
}

.service-num {
	font-family: var(--serif);
	font-size: 32px;
	font-weight: 300;
	color: rgba(184,150,90,0.25);
	line-height: 1;
	flex-shrink: 0;
}

.service-label {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 4px;
}

.service-name {
	font-family: var(--serif);
	font-size: clamp(20px, 2.5vw, 26px);
	font-weight: 400;
	color: var(--text-dark);
	line-height: 1.2;
}

.service-name em { font-style: italic; color: var(--gold); }

.service-chevron {
	width: 32px;
	height: 32px;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.25s, border-color 0.25s, transform 0.35s;
}

.service-item.open .service-chevron {
	background: var(--gold);
	border-color: var(--gold);
	transform: rotate(45deg);
}

.service-item.open .service-chevron svg {
	stroke: var(--black);
}

.service-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), padding 0.4s;
	padding: 0 40px;
}

.service-item.open .service-body {
	max-height: 1200px;
	padding: 0 40px 40px 88px;
}

.service-body-text {
	font-size: 15px;
	font-weight: 300;
	color: var(--text-mid);
	line-height: 1.85;
	margin-bottom: 24px;
}

.service-body-text strong {
	font-weight: 500;
	color: var(--text-dark);
}

.supports-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 40px;
	margin-top: 20px;
}

.supports-col h4 {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}

.supports-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.supports-list li {
	font-size: 13px;
	font-weight: 300;
	color: var(--text-mid);
	padding-left: 16px;
	position: relative;
	line-height: 1.5;
}

.supports-list li::before {
	content: '';
	position: absolute;
	left: 0; top: 8px;
	width: 5px; height: 1px;
	background: var(--gold);
}

/* ─────────────────────────────────────────────
   CHOICEFULNESS SECTION
   ───────────────────────────────────────────── */
.choice-section {
	background: var(--black);
	padding: 100px var(--pad-x);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.choice-section::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 50% 70% at 20% 60%, rgba(184,150,90,0.06) 0%, transparent 60%);
	pointer-events: none;
}

.choice-visual {
	position: relative;
	z-index: 1;
}

.choice-img-wrap {
	width: 100%;
	padding-bottom: 110%;
	position: relative;
	overflow: hidden;
}

.choice-img-wrap img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	filter: grayscale(20%);
}

.choice-text {
	position: relative;
	z-index: 1;
}

.choice-text h2 {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 50px);
	font-weight: 300;
	color: var(--off-white);
	line-height: 1.15;
	margin-bottom: 28px;
}

.choice-text h2 em { font-style: italic; color: var(--gold-light); }

.choice-body {
	font-size: 15px;
	font-weight: 300;
	color: rgba(245,242,236,0.6);
	line-height: 1.85;
	margin-bottom: 20px;
}

.choice-word {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(48px, 6vw, 72px);
	font-weight: 300;
	color: var(--gold);
	line-height: 1;
	margin: 32px 0 24px;
	display: block;
}

.choice-tagline {
	font-size: 14px;
	font-weight: 300;
	color: rgba(245,242,236,0.45);
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 40px;
}

/* ─────────────────────────────────────────────
   COACHING TESTIMONIALS
   ───────────────────────────────────────────── */
.coaching-testimonials-section {
	background: var(--warm-white);
	padding: 100px var(--pad-x);
}

.coaching-testimonials-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
}

.t-text {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(17px, 2vw, 20px);
	font-weight: 300;
	color: var(--text-dark);
	line-height: 1.65;
	margin-bottom: 28px;
}

.t-author {
	font-family: var(--condensed);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-dark);
}

.t-role {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: var(--text-light);
	margin-top: 4px;
}

/* Testimonial card — coaching variant (dark bg card) */
.coaching-testimonials-section .testimonial-card {
	background: var(--off-white);
	padding: 48px 52px;
	position: relative;
	border-top: 2px solid transparent;
	transition: border-color 0.3s;
}

.coaching-testimonials-section .testimonial-card:hover {
	border-color: var(--gold);
}

/* ─────────────────────────────────────────────
   RESPONSIVE — EXECUTIVE COACHING
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
	.intro-section,
	.choice-section {
		grid-template-columns: 1fr;
		gap: 56px;
		padding: 72px var(--pad-x-md);
	}

	.choice-visual { order: -1; }

	.coaching-services-section,
	.coaching-testimonials-section,
	.pull-quote {
		padding-left:  var(--pad-x-md);
		padding-right: var(--pad-x-md);
	}

	.services-header-grid { grid-template-columns: 1fr; }

	.coaching-testimonials-grid { grid-template-columns: 1fr; }

	.supports-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.intro-section,
	.choice-section,
	.coaching-services-section,
	.coaching-testimonials-section,
	.pull-quote {
		padding: 64px var(--pad-x-sm);
	}

	.service-trigger { padding: 24px 20px; }

	.service-item.open .service-body {
		padding: 0 20px 32px 20px;
	}

	.coaching-testimonials-section .testimonial-card {
		padding: 32px 28px;
	}
}

/* ─────────────────────────────────────────────
   TRAININGS PAGE — HERO PARTNERS
   ───────────────────────────────────────────── */
.hero-partners {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.hero-partners-label {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(245,242,236,0.8);
	margin-right: 6px;
}

.partner-pill {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 14px;
	border: 1px solid rgba(184,150,90,0.8);
	color: rgba(245,242,236,0.8);
}

/* ─────────────────────────────────────────────
   TRAININGS — INTRO STRIP (by the numbers)
   ───────────────────────────────────────────── */
.trainings-intro-strip {
	background: var(--warm-white);
	padding: 72px var(--pad-x) 0;
}

.trainings-intro-strip h2 {
	font-family: var(--serif);
	font-size: clamp(30px, 3.8vw, 46px);
	font-weight: 300;
	color: var(--text-dark);
	line-height: 1.15;
	margin-bottom: 0;
}

.trainings-intro-strip h2 em {
	font-style: italic;
	color: var(--gold);
}

.trainings-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	margin-top: 48px;
}

.training-stat {
	background: white;
	padding: 32px 28px;
	text-align: center;
}

.training-stat-num {
	font-family: var(--serif);
	font-size: 48px;
	font-weight: 300;
	font-style: italic;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 8px;
}

.training-stat-label {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-light);
}

/* ─────────────────────────────────────────────
   TRAININGS — PULL QUOTE (light variant)
   Different from exec coaching dark pull quote
   ───────────────────────────────────────────── */
.trainings-pull-quote {
	background: var(--warm-white);
	padding: 64px var(--pad-x);
}

.trainings-pull-quote-inner {
	border-left: 2px solid var(--gold);
	padding: 24px 40px;
	max-width: 860px;
	margin: 0 auto;
}

.trainings-quote-text {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 300;
	color: var(--text-dark);
	line-height: 1.65;
	margin-bottom: 20px;
}

.trainings-quote-text em {
	font-style: normal;
	color: var(--gold);
}

.trainings-quote-attr {
	font-family: var(--condensed);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-mid);
}

.trainings-quote-role {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: var(--text-light);
	margin-top: 4px;
}

/* ─────────────────────────────────────────────
   TRAININGS — TESTIMONIALS
   ───────────────────────────────────────────── */
.trainings-testimonials-section {
	background: var(--black);
	padding: 100px var(--pad-x);
	position: relative;
	overflow: hidden;
}

.trainings-testimonials-section::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 50% 60% at 85% 40%, rgba(184,150,90,0.05) 0%, transparent 65%);
	pointer-events: none;
}

.trainings-testimonials-section .testimonials-header {
	text-align: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

.trainings-testimonials-section .testimonials-header h2 {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 300;
	color: var(--off-white);
}

.trainings-testimonials-section .testimonials-header h2 em {
	font-style: italic;
	color: var(--gold-light);
}

.trainings-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
	position: relative;
	z-index: 1;
}

.t-card {
	background: #0e0b08;
	padding: 44px 40px;
	border-top: 1px solid rgba(184,150,90,0.08);
	transition: border-color 0.3s, background 0.3s;
}

.t-card:hover {
	background: #130f0b;
	border-color: rgba(184,150,90,0.25);
}

.t-card .t-text {
	font-family: var(--serif);
	font-style: italic;
	font-size: 16px;
	font-weight: 300;
	color: rgba(245,242,236,0.8);
	line-height: 1.7;
	margin-bottom: 24px;
}

.t-card .t-author {
	font-family: var(--condensed);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

.t-card .t-role {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: rgba(245,242,236,0.35);
	margin-top: 4px;
}

/* Research ref inside course bodies */
.research-ref {
	background: rgba(184,150,90,0.04);
	border-left: 2px solid rgba(184,150,90,0.3);
	padding: 16px 20px;
	margin-top: 20px;
}

.research-ref p {
	font-size: 12px;
	font-weight: 300;
	color: var(--text-light);
	line-height: 1.7;
	font-style: italic;
}

/* notify note */
.notify-note {
	font-size: 12px;
	font-weight: 300;
	color: var(--text-light);
	font-style: italic;
	margin-top: 8px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — TRAININGS
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
	.trainings-intro-strip,
	.trainings-pull-quote,
	.trainings-testimonials-section {
		padding-left:  var(--pad-x-md);
		padding-right: var(--pad-x-md);
	}

	.trainings-testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.trainings-intro-strip,
	.trainings-pull-quote,
	.trainings-testimonials-section {
		padding: 56px var(--pad-x-sm);
	}

	.trainings-stats-grid { grid-template-columns: 1fr; }

	.trainings-pull-quote-inner { padding: 20px 24px; }

	.t-card { padding: 32px 28px; }
}

/* ─────────────────────────────────────────────
   SPEAKING + MEDIA PAGE
   ───────────────────────────────────────────── */

/* Hero — full bleed photo variant */
.page-hero .hero-img-overlay {
	background-size: cover;
	background-position: center 20%;
	opacity: 1;
	mix-blend-mode: normal;
}

/* Hero pull quote */
.hero-pull-quote {
	max-width: 600px;
	margin-bottom: 40px;
}

.hero-pull-quote blockquote {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(17px, 2vw, 22px);
	font-weight: 300;
	color: rgba(245,242,236,0.75);
	line-height: 1.6;
	margin-bottom: 14px;
}

.hero-pull-quote blockquote em {
	font-style: normal;
	color: var(--gold-light);
}

.hero-pull-quote cite {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(245,242,236,0.4);
	font-style: normal;
}

/* Hero CTA row */
.hero-cta-row {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

/* ── SPEAKING & FACILITATING SECTION ── */
.sm-speaking-section {
	background: var(--warm-white);
	padding: 100px var(--pad-x);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 88px;
	align-items: start;
}

.speaking-text h2 {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 50px);
	font-weight: 300;
	line-height: 1.15;
	color: var(--text-dark);
	margin-bottom: 28px;
}

.speaking-text h2 em { font-style: italic; color: var(--gold); }

.topics-label {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 36px 0 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border);
}

.sm-topics-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-bottom: 40px;
}

.topic-item {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px 20px;
	background: white;
	border-left: 2px solid transparent;
	transition: border-color 0.25s, background 0.25s;
}

.topic-item:hover {
	border-left-color: var(--gold);
	background: rgba(184,150,90,0.02);
}

.topic-num {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 300;
	color: rgba(184,150,90,0.3);
	line-height: 1;
	flex-shrink: 0;
	width: 28px;
}

.topic-text {
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 400;
	color: var(--text-dark);
	line-height: 1.3;
}

.topic-text em { font-style: italic; color: var(--gold); }

/* Speaking visual column */
.speaking-visual {
	position: relative;
}

.speaking-img-primary {
	width: 100%;
	padding-bottom: 118%;
	position: relative;
	overflow: hidden;
}

.speaking-img-primary img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center top;
}

.speaking-img-border {
	position: absolute;
	top: -14px; right: -14px; bottom: 14px; left: 14px;
	border: 1px solid rgba(184,150,90,0.3);
	pointer-events: none;
	z-index: 1;
}

.speaking-gold-tag {
	position: absolute;
	bottom: -18px; left: -18px;
	z-index: 2;
	background: var(--gold);
	padding: 18px 22px;
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--black);
	line-height: 1.5;
}

/* ── AS SEEN ON ── */
.media-logos-section {
	background: var(--black);
	padding: 72px var(--pad-x) 80px;
	position: relative;
	overflow: hidden;
}

.media-logos-section::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(184,150,90,0.05) 0%, transparent 65%);
	pointer-events: none;
}

.media-logos-inner {
	position: relative;
	z-index: 1;
}

.media-logos-label {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(245,242,236,0.3);
	text-align: center;
	margin-bottom: 40px;
}

.media-logos-grid {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.media-logo-item {
	padding: 20px 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid rgba(184,150,90,0.1);
	transition: background 0.3s;
}

.media-logo-item:last-child { border-right: none; }

.media-logo-item:hover {
	background: rgba(184,150,90,0.04);
}

.media-logo-img {
	height: 40px;
	width: auto;
	display: block;
	opacity: 0.55;
	transition: opacity 0.3s;
	filter: brightness(0) invert(1);
}

.media-logo-item:hover .media-logo-img {
	opacity: 0.9;
}

/* ── QUOTE BREAK ── */
.sm-quote-break {
	background: var(--black);
	padding: 88px var(--pad-x);
	position: relative;
	overflow: hidden;
}

.sm-quote-break::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 65% 70% at 50% 50%, rgba(184,150,90,0.06) 0%, transparent 70%);
	pointer-events: none;
}

.sm-quote-break .quote-break-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 860px;
	margin: 0 auto;
}

.qb-mark {
	font-family: var(--serif);
	font-size: 140px;
	font-weight: 300;
	color: rgba(184,150,90,0.1);
	line-height: 0.55;
	margin-bottom: 32px;
	display: block;
}

.qb-text {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(22px, 3vw, 34px);
	font-weight: 300;
	color: var(--off-white);
	line-height: 1.5;
	margin-bottom: 32px;
}

.qb-text em { font-style: normal; color: var(--gold-light); }

.qb-attr {
	font-family: var(--condensed);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
}

.qb-role {
	font-family: var(--condensed);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.12em;
	color: rgba(245,242,236,0.55);
	margin-top: 6px;
}

/* ── PODCASTS SECTION — light background ── */
.podcasts-section {
	background: var(--off-white);
	padding: 100px var(--pad-x);
}

.podcasts-header {
	margin-bottom: 64px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: end;
}

.podcasts-header h2 {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 50px);
	font-weight: 300;
	line-height: 1.15;
	color: var(--text-dark);
}

.podcasts-header h2 em { font-style: italic; color: var(--gold); }

.podcasts-intro {
	font-size: 15px;
	font-weight: 300;
	color: var(--text-mid);
	line-height: 1.8;
}

.podcasts-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
}

.podcast-card {
	background: var(--warm-white);
	position: relative;
	overflow: hidden;
	transition: background 0.3s;
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.podcast-card:hover { background: white; }

.podcast-card::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.podcast-card:hover::after { transform: scaleX(1); }

.podcast-thumb {
	width: 100%;
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
	background: var(--black);
}

.podcast-thumb img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease, filter 0.4s ease;
	filter: grayscale(20%);
}

.podcast-card:hover .podcast-thumb img {
	transform: scale(1.04);
	filter: grayscale(0%);
}

.podcast-thumb-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(10,9,6,0.6) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.3s;
}

.podcast-card:hover .podcast-thumb-overlay { opacity: 1; }

.podcast-play {
	position: absolute; inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.podcast-card:hover .podcast-play { opacity: 1; }

.podcast-play-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(184,150,90,0.9);
	display: flex;
	align-items: center;
	justify-content: center;
}

.podcast-info {
	padding: 20px 18px 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.podcast-show {
	font-family: var(--condensed);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 6px;
}

.podcast-title {
	font-family: var(--serif);
	font-size: 15px;
	font-weight: 400;
	color: var(--text-dark);
	line-height: 1.4;
	flex: 1;
}

.podcast-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--condensed);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-light);
	text-decoration: none;
	margin-top: 12px;
	transition: color 0.25s;
}

.podcast-link:hover { color: var(--gold); }

.podcast-link svg { transition: transform 0.2s; }
.podcast-link:hover svg { transform: translateX(3px); }

/* ── RESPONSIVE — SPEAKING + MEDIA ── */
@media (max-width: 1024px) {
	.sm-speaking-section {
		grid-template-columns: 1fr;
		gap: 56px;
		padding: 72px var(--pad-x-md);
	}

	.media-logos-section,
	.sm-quote-break,
	.podcasts-section {
		padding-left:  var(--pad-x-md);
		padding-right: var(--pad-x-md);
	}

	.podcasts-grid     { grid-template-columns: repeat(2, 1fr); }
	.podcasts-header   { grid-template-columns: 1fr; }
	.media-logo-item   { padding: 16px 24px; }
}

@media (max-width: 640px) {
	.sm-speaking-section,
	.media-logos-section,
	.sm-quote-break,
	.podcasts-section {
		padding: 64px var(--pad-x-sm);
	}

	.podcasts-grid   { grid-template-columns: repeat(2, 1fr); }
	.media-logo-item { padding: 14px 18px; }

	.hero-cta-row { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────────
   ABOUT PAGE — BIO SECTION (corrected)
   ───────────────────────────────────────────── */
.bio-section {
	background: var(--warm-white);
	padding: 100px var(--pad-x);
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 80px;
	align-items: start;
}

.bio-text h2 {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 50px);
	font-weight: 300;
	line-height: 1.15;
	color: var(--text-dark);
	margin-bottom: 32px;
}

.bio-text h2 em { font-style: italic; color: var(--gold); }

/* Career timeline */
.career-timeline { margin-top: 48px; }

.timeline-label {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.timeline-label::before {
	content: '';
	width: 24px;
	height: 1px;
	background: var(--gold);
	display: block;
}

.timeline {
	display: flex;
	flex-direction: column;
}

.timeline-item {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 0;
	position: relative;
}

.timeline-item:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 99px; top: 28px; bottom: -20px;
	width: 1px;
	background: linear-gradient(to bottom, rgba(184,150,90,0.3), rgba(184,150,90,0.05));
}

.timeline-year {
	padding: 20px 20px 20px 0;
}

.timeline-year span {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

.timeline-content {
	padding: 18px 0 28px 24px;
	border-left: 1px solid rgba(184,150,90,0.2);
	position: relative;
}

.timeline-content::before {
	content: '';
	position: absolute;
	left: -5px; top: 24px;
	width: 9px; height: 9px;
	border-radius: 50%;
	background: var(--gold);
	border: 2px solid var(--warm-white);
}

.timeline-role {
	font-family: var(--condensed);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.timeline-org {
	font-size: 13px;
	font-weight: 300;
	color: var(--text-mid);
}

/* Sidebar */
.bio-sidebar {}

.sidebar-block {
	margin-bottom: 36px;
}

.sidebar-title {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border);
}

.credential-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.credential-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.credential-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
	margin-top: 8px;
}

.credential-text {
	font-size: 13px;
	font-weight: 300;
	color: var(--text-mid);
	line-height: 1.55;
}

.credential-text strong {
	font-weight: 500;
	color: var(--text-dark);
	display: block;
	margin-bottom: 1px;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE — TRUST SECTION (dark bg)
   ───────────────────────────────────────────── */
.about-trust-section {
	background: var(--black);
	padding: 100px var(--pad-x);
}

.about-trust-section .trust-header {
	margin-bottom: 64px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: end;
}

.about-trust-section .trust-header h2,
.about-trust-section .serif-light {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 50px);
	font-weight: 300;
	line-height: 1.15;
	color: var(--off-white);
}

.about-trust-section .serif-light em,
.about-trust-section .trust-header h2 em {
	font-style: italic;
	color: var(--gold-light);
}

.trust-intro {
	font-size: 15px;
	font-weight: 300;
	color: rgba(245,242,236,0.5);
	line-height: 1.8;
}

.about-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(184,150,90,0.1);
}

.trust-card {
	background: var(--black);
	padding: 44px 36px;
	position: relative;
	overflow: hidden;
	transition: background 0.35s;
}

.trust-card::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(184,150,90,0.04) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.35s;
}

.trust-card:hover { background: #100d09; }
.trust-card:hover::before { opacity: 1; }

.trust-card-num {
	font-family: var(--serif);
	font-size: 60px;
	font-weight: 300;
	color: rgba(184,150,90,0.12);
	line-height: 1;
	margin-bottom: 12px;
}

.trust-card-icon { display: none; }

.trust-card-title {
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 400;
	color: var(--off-white);
	line-height: 1.3;
	margin-bottom: 14px;
}

.trust-card-title em { font-style: italic; color: var(--gold-light); }

.trust-card-body {
	font-size: 13px;
	font-weight: 300;
	color: rgba(245,242,236,0.48);
	line-height: 1.75;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE — PERSONAL SECTION
   ───────────────────────────────────────────── */
.personal-section {
	background: var(--warm-white);
	padding: 100px var(--pad-x);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.personal-text h2 {
	font-family: var(--serif);
	font-size: clamp(30px, 3.5vw, 46px);
	font-weight: 300;
	line-height: 1.2;
	color: var(--text-dark);
	margin-bottom: 28px;
}

.personal-text h2 em { font-style: italic; color: var(--gold); }

.personal-facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
	margin-top: 40px;
}

.personal-fact {
	background: white;
	padding: 24px 22px;
	transition: background 0.25s;
}

.personal-fact:hover { background: rgba(184,150,90,0.04); }

.personal-fact-icon { margin-bottom: 12px; }

.personal-fact-label {
	font-family: var(--condensed);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 4px;
}

.personal-fact-value {
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 400;
	color: var(--text-dark);
}

.personal-visual { position: relative; }

.personal-img-wrap {
	width: 100%;
	padding-bottom: 120%;
	position: relative;
	overflow: hidden;
}

.personal-img-wrap img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center top;
}

.personal-img-border {
	position: absolute;
	top: -14px; left: -14px; right: 14px; bottom: 14px;
	border: 1px solid rgba(184,150,90,0.3);
	pointer-events: none;
	z-index: 1;
}

.personal-gold-tag {
	position: absolute;
	bottom: -18px; right: -18px;
	z-index: 2;
	background: var(--gold);
	padding: 18px 22px;
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--black);
	line-height: 1.5;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — ABOUT PAGE
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
	.bio-section {
		grid-template-columns: 1fr;
		gap: 56px;
		padding: 72px var(--pad-x-md);
	}

	.about-trust-section,
	.personal-section {
		padding: 72px var(--pad-x-md);
	}

	.about-trust-section .trust-header { grid-template-columns: 1fr; }
	.about-trust-grid { grid-template-columns: repeat(2, 1fr); }

	.personal-section { grid-template-columns: 1fr; gap: 56px; }
	.personal-visual   { order: -1; }
}

@media (max-width: 640px) {
	.bio-section,
	.about-trust-section,
	.personal-section {
		padding: 56px var(--pad-x-sm);
	}

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

	.personal-facts { grid-template-columns: 1fr 1fr; }

	.timeline-item { grid-template-columns: 80px 1fr; }
}

/* ─────────────────────────────────────────────
   COACHING TESTIMONIALS — header alignment fix
   ───────────────────────────────────────────── */
.coaching-testimonials-section .testimonials-header {
	text-align: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

.coaching-testimonials-section .testimonials-header h2 {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 50px);
	font-weight: 300;
	color: var(--text-dark);
}

.coaching-testimonials-section .testimonials-header h2 em {
	font-style: italic;
	color: var(--gold);
}

.coaching-testimonials-section .sec-label-c {
	justify-content: center;
	margin-bottom: 16px;
}

/* ─────────────────────────────────────────────
   COURSE DETAILS STRIP
   ───────────────────────────────────────────── */
.course-details {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid var(--border);
}

.course-detail-item {}

.course-detail-label {
	font-family: var(--condensed);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: 4px;
}

.course-detail-value {
	font-family: var(--condensed);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--text-dark);
}

@media (max-width: 640px) {
	.course-details { gap: 20px; }
}

/* ─────────────────────────────────────────────
   CONNECT — AFTER YOU REACH OUT
   ───────────────────────────────────────────── */
.expect-section {
	background: var(--black);
	padding: 100px var(--pad-x);
	position: relative;
	overflow: hidden;
}

.expect-section::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 55% 60% at 85% 50%, rgba(184,150,90,0.055) 0%, transparent 65%);
	pointer-events: none;
}

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

.expect-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: end;
	margin-bottom: 64px;
}

.expect-header h2 {
	font-family: var(--serif);
	font-size: clamp(30px, 3.5vw, 46px);
	font-weight: 300;
	color: var(--off-white);
	line-height: 1.15;
}

.expect-header h2 em { font-style: italic; color: var(--gold-light); }

.expect-intro {
	font-size: 15px;
	font-weight: 300;
	color: rgba(245,242,236,0.5);
	line-height: 1.8;
}

.expect-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(184,150,90,0.1);
}

.expect-step {
	background: var(--black);
	padding: 36px 28px;
	position: relative;
	transition: background 0.3s;
}

.expect-step:hover { background: #100d09; }

.step-num {
	font-family: var(--serif);
	font-size: 52px;
	font-weight: 300;
	color: rgba(184,150,90,0.12);
	line-height: 1;
	margin-bottom: 20px;
}

.step-title {
	font-family: var(--serif);
	font-size: 19px;
	font-weight: 400;
	color: var(--off-white);
	line-height: 1.3;
	margin-bottom: 12px;
}

.step-title em { font-style: italic; color: var(--gold-light); }

.step-body {
	font-size: 13px;
	font-weight: 300;
	color: rgba(245,242,236,0.45);
	line-height: 1.7;
}

/* ─────────────────────────────────────────────
   CONNECT — INVITE DR. WEST TO SPEAK
   ───────────────────────────────────────────── */
.connect-speaking-section {
	background: var(--warm-white);
	padding: 80px var(--pad-x);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.connect-speaking-section .speaking-text h2 {
	font-family: var(--serif);
	font-size: clamp(28px, 3.2vw, 42px);
	font-weight: 300;
	color: var(--text-dark);
	line-height: 1.2;
	margin-bottom: 20px;
}

.connect-speaking-section .speaking-text h2 em { font-style: italic; color: var(--gold); }

.speaking-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 24px 0 32px;
}

.topic-pill {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 7px 14px;
	border: 1px solid var(--border);
	color: var(--text-mid);
	transition: border-color 0.25s, color 0.25s;
}

.topic-pill:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.connect-speaking-section .speaking-visual { position: relative; }

.connect-speaking-section .speaking-img-wrap {
	width: 100%;
	padding-bottom: 75%;
	position: relative;
	overflow: hidden;
}

.connect-speaking-section .speaking-img-wrap img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center;
}

.connect-speaking-section .speaking-img-border {
	position: absolute;
	top: -12px; right: -12px; bottom: 12px; left: 12px;
	border: 1px solid rgba(184,150,90,0.3);
	pointer-events: none;
	z-index: 1;
}

.connect-speaking-section .speaking-tag {
	position: absolute;
	bottom: -16px; left: -16px;
	z-index: 2;
	background: var(--gold);
	padding: 16px 20px;
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--black);
	line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.expect-section { padding: 72px var(--pad-x-md); }
	.expect-header { grid-template-columns: 1fr; }
	.expect-steps { grid-template-columns: repeat(2, 1fr); }
	.connect-speaking-section { grid-template-columns: 1fr; gap: 48px; padding: 72px var(--pad-x-md); }
	.connect-speaking-section .speaking-visual { order: -1; }
}

@media (max-width: 640px) {
	.expect-section { padding: 56px var(--pad-x-sm); }
	.expect-steps { grid-template-columns: 1fr; }
	.connect-speaking-section { padding: 56px var(--pad-x-sm); }
}

/* ─────────────────────────────────────────────
   BLOGS / APPLIED RESEARCH PAGE
   ───────────────────────────────────────────── */

/* ── HERO — split layout ── */
.blogs-hero {
	background: var(--black);
	padding: 140px var(--pad-x) 80px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	position: relative;
	overflow: hidden;
}

.blogs-hero::before {
	content: '';
	position: absolute; inset: 0;
	background-image:
		repeating-linear-gradient(0deg,   transparent, transparent 2px, rgba(245,242,236,0.012) 2px, rgba(245,242,236,0.012) 3px),
		repeating-linear-gradient(90deg,  transparent, transparent 3px, rgba(245,242,236,0.007) 3px, rgba(245,242,236,0.007) 4px),
		repeating-linear-gradient(45deg,  transparent, transparent 6px, rgba(184,150,90,0.02)   6px, rgba(184,150,90,0.02)   7px),
		repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(245,242,236,0.009) 8px, rgba(245,242,236,0.009) 9px);
	pointer-events: none;
}

.blogs-hero::after {
	content: '';
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 50% 60% at 85% 40%, rgba(184,150,90,0.055) 0%, transparent 65%),
		linear-gradient(160deg, #100d08 0%, #0a0906 55%, #160f06 100%);
	pointer-events: none;
}

.blogs-hero-left,
.blogs-hero-right {
	position: relative;
	z-index: 1;
}

.blogs-hero-headline {
	font-family: var(--serif);
	font-size: clamp(44px, 5.5vw, 72px);
	font-weight: 300;
	line-height: 1.1;
	color: var(--off-white);
}

.blogs-hero-headline em {
	font-style: italic;
	color: var(--gold-light);
	display: block;
}

.blogs-hero-body {
	font-size: 15px;
	font-weight: 300;
	color: rgba(245,242,236,0.6);
	line-height: 1.85;
	margin-bottom: 20px;
}

.blogs-hero-body:last-child { margin-bottom: 0; }

/* ── PULL QUOTE ── */
.blogs-pull-quote {
	position: relative;
	overflow: hidden;
	background-image: url('../images/cloudwaterhead_bw.webp');
	background-size: cover;
	background-position: center 30%;
	padding: 100px var(--pad-x);
}

.blogs-pull-quote::before {
	content: '';
	position: absolute; inset: 0;
	background:
		linear-gradient(to right, rgba(10,9,6,0.88) 0%, rgba(10,9,6,0.72) 55%, rgba(10,9,6,0.5) 100%),
		linear-gradient(to bottom, rgba(10,9,6,0.3) 0%, transparent 30%, transparent 70%, rgba(10,9,6,0.3) 100%);
}

.blogs-pull-inner {
	position: relative;
	z-index: 1;
	max-width: 700px;
}

.blogs-quote-mark {
	font-family: var(--serif);
	font-size: 120px;
	font-weight: 300;
	color: rgba(184,150,90,0.25);
	line-height: 0.6;
	margin-bottom: 24px;
}

.blogs-quote-text {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(26px, 3.5vw, 42px);
	font-weight: 300;
	color: var(--off-white);
	line-height: 1.4;
	margin-bottom: 28px;
}

.blogs-quote-attr {
	font-family: var(--condensed);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: rgba(245,242,236,0.5);
}

/* ── THE GOAL ── */
.blogs-goal-section {
	background: var(--black);
	padding: 100px var(--pad-x);
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 80px;
	align-items: start;
	position: relative;
	overflow: hidden;
}

.blogs-goal-section::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 50% 60% at 15% 50%, rgba(184,150,90,0.05) 0%, transparent 65%);
	pointer-events: none;
}

.blogs-goal-left,
.blogs-goal-right { position: relative; z-index: 1; }

.blogs-goal-heading {
	font-family: var(--serif);
	font-size: clamp(48px, 6vw, 80px);
	font-weight: 300;
	line-height: 1.0;
	color: var(--off-white);
}

.blogs-goal-heading em {
	font-style: italic;
	color: var(--gold-light);
	display: block;
}

.blogs-goal-intro {
	font-size: 15px;
	font-weight: 300;
	color: rgba(245,242,236,0.6);
	line-height: 1.85;
	margin-bottom: 28px;
}

.blogs-goal-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.blogs-goal-list li {
	font-size: 14px;
	font-weight: 300;
	color: rgba(245,242,236,0.58);
	line-height: 1.7;
	padding-left: 20px;
	position: relative;
}

.blogs-goal-list li::before {
	content: '';
	position: absolute;
	left: 0; top: 10px;
	width: 6px; height: 1px;
	background: var(--gold);
}

/* ── AREAS OF EXPERTISE ── */
.blogs-expertise-section {
	background: var(--off-white);
	padding: 100px var(--pad-x);
}

.blogs-expertise-header {
	margin-bottom: 64px;
	max-width: 680px;
}

.blogs-expertise-header h2 {
	font-family: var(--serif);
	font-size: clamp(36px, 4.5vw, 58px);
	font-weight: 300;
	color: var(--text-dark);
	line-height: 1.1;
	margin-bottom: 20px;
}

.blogs-expertise-header h2 em {
	font-style: italic;
	color: var(--gold);
}

.blogs-expertise-intro {
	font-size: 15px;
	font-weight: 300;
	color: var(--text-mid);
	line-height: 1.8;
}

.blogs-expertise-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
}

/* Expertise accordion card */
.expertise-card {
	background: var(--warm-white);
	border-top: 2px solid transparent;
	transition: border-color 0.3s, background 0.3s;
}

.expertise-card:hover,
.expertise-card.open {
	border-top-color: var(--gold);
	background: white;
}

.expertise-card-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 32px 36px;
	cursor: pointer;
	user-select: none;
	gap: 24px;
}

.expertise-card-title {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 400;
	color: var(--text-dark);
	line-height: 1.3;
}

.expertise-card-toggle {
	width: 28px;
	height: 28px;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.25s, border-color 0.25s, transform 0.35s;
}

.expertise-card.open .expertise-card-toggle {
	background: var(--gold);
	border-color: var(--gold);
	transform: rotate(45deg);
}

.expertise-card.open .expertise-card-toggle svg {
	stroke: var(--black);
}

.expertise-card-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), padding 0.35s;
	padding: 0 36px;
}

.expertise-card.open .expertise-card-body {
	max-height: 800px;
	padding: 0 36px 36px;
}

.expertise-card-body p {
	font-size: 14px;
	font-weight: 300;
	color: var(--text-mid);
	line-height: 1.8;
	margin-bottom: 14px;
}

.expertise-card-body p:last-child { margin-bottom: 0; }

.expertise-card-lead strong {
	font-weight: 500;
	color: var(--text-dark);
}

/* ── PUBLISHED WORKS ── */
.blogs-books-section {
	background: var(--warm-white);
	padding: 100px var(--pad-x);
}

.blogs-books-header {
	margin-bottom: 64px;
}

.blogs-books-header h2 {
	font-family: var(--serif);
	font-size: clamp(36px, 4.5vw, 58px);
	font-weight: 300;
	color: var(--text-dark);
	line-height: 1.1;
}

.blogs-books-header h2 em {
	font-style: italic;
	color: var(--gold);
}

.blogs-books-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	margin-bottom: 64px;
}

.blogs-book-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.blogs-book-cover {
	background: var(--black);
	overflow: hidden;
}

.blogs-book-cover img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}

.blogs-book-card:hover .blogs-book-cover img {
	transform: scale(1.03);
}

.blogs-book-role {
	font-family: var(--condensed);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--gold);
	margin-bottom: 6px;
}

.blogs-book-title {
	font-family: var(--serif);
	font-style: italic;
	font-size: 17px;
	font-weight: 400;
	color: var(--text-dark);
	line-height: 1.4;
	margin-bottom: 12px;
}

.blogs-book-quote {
	font-family: var(--serif);
	font-style: italic;
	font-size: 15px;
	font-weight: 300;
	color: var(--text-mid);
	line-height: 1.65;
	margin-bottom: 8px;
	padding-left: 12px;
	border-left: 2px solid rgba(184,150,90,0.3);
}

.blogs-book-attr {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: var(--text-light);
}

.blogs-books-cta {
	text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	.blogs-hero {
		grid-template-columns: 1fr;
		gap: 48px;
		padding: 120px var(--pad-x-md) 72px;
	}

	.blogs-pull-quote,
	.blogs-goal-section,
	.blogs-expertise-section,
	.blogs-books-section {
		padding-left:  var(--pad-x-md);
		padding-right: var(--pad-x-md);
	}

	.blogs-goal-section { grid-template-columns: 1fr; gap: 40px; }
	.blogs-expertise-grid { grid-template-columns: 1fr; }
	.blogs-books-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
	.blogs-hero {
		padding: 110px var(--pad-x-sm) 56px;
	}

	.blogs-pull-quote,
	.blogs-goal-section,
	.blogs-expertise-section,
	.blogs-books-section {
		padding: 64px var(--pad-x-sm);
	}

	.blogs-books-grid { grid-template-columns: 1fr; }

	.expertise-card-trigger { padding: 24px 20px; }
	.expertise-card.open .expertise-card-body { padding: 0 20px 28px; }
}

/* ─────────────────────────────────────────────
   GENERIC PAGE TEMPLATE (page.php)
   ───────────────────────────────────────────── */
.generic-hero {
	background: var(--black);
	min-height: 36vh;
	display: flex;
	align-items: flex-end;
	position: relative;
	overflow: hidden;
	padding: 0 var(--pad-x) 72px;
}

.generic-hero::before {
	content: '';
	position: absolute; inset: 0;
	background-image:
		repeating-linear-gradient(0deg,   transparent, transparent 2px, rgba(245,242,236,0.012) 2px, rgba(245,242,236,0.012) 3px),
		repeating-linear-gradient(90deg,  transparent, transparent 3px, rgba(245,242,236,0.007) 3px, rgba(245,242,236,0.007) 4px),
		repeating-linear-gradient(45deg,  transparent, transparent 6px, rgba(184,150,90,0.020)  6px, rgba(184,150,90,0.020)  7px),
		repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(245,242,236,0.009) 8px, rgba(245,242,236,0.009) 9px);
	pointer-events: none;
}

.generic-hero::after {
	content: '';
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 50% 60% at 80% 30%, rgba(184,150,90,0.055) 0%, transparent 60%),
		linear-gradient(165deg, #100c08 0%, #0a0906 50%, #160f06 100%);
	pointer-events: none;
}

.generic-hero-content {
	position: relative;
	z-index: 3;
	animation: heroIn 1s cubic-bezier(0.16,1,0.3,1) both;
}

.generic-hero-title {
	font-family: var(--serif);
	font-size: clamp(40px, 6vw, 80px);
	font-weight: 300;
	line-height: 1.05;
	color: var(--off-white);
}

/* Page content area */
.generic-content {
	background: var(--warm-white);
	padding: 80px var(--pad-x);
	max-width: 860px;
	margin: 0 auto;
}

/* Prose styles for block editor content */
.generic-content h2 {
	font-family: var(--serif);
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 300;
	color: var(--text-dark);
	margin: 48px 0 20px;
	line-height: 1.2;
}

.generic-content h3 {
	font-family: var(--serif);
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 400;
	color: var(--text-dark);
	margin: 36px 0 16px;
	line-height: 1.3;
}

.generic-content p {
	font-size: 15px;
	font-weight: 300;
	color: var(--text-mid);
	line-height: 1.85;
	margin-bottom: 20px;
}

.generic-content a {
	color: var(--gold);
	text-decoration: none;
	border-bottom: 1px solid rgba(184,150,90,0.3);
	transition: border-color 0.2s;
}

.generic-content a:hover {
	border-color: var(--gold);
}

.generic-content ul,
.generic-content ol {
	padding-left: 24px;
	margin-bottom: 20px;
}

.generic-content li {
	font-size: 15px;
	font-weight: 300;
	color: var(--text-mid);
	line-height: 1.8;
	margin-bottom: 8px;
}

.generic-content strong {
	font-weight: 500;
	color: var(--text-dark);
}

.generic-content hr {
	border: none;
	border-top: 1px solid var(--border);
	margin: 48px 0;
}

@media (max-width: 1024px) {
	.generic-hero   { padding: 0 var(--pad-x-md) 64px; }
	.generic-content { padding: 64px var(--pad-x-md); }
}

@media (max-width: 640px) {
	.generic-hero   { padding: 0 var(--pad-x-sm) 56px; }
	.generic-content { padding: 56px var(--pad-x-sm); }
}

/* ─────────────────────────────────────────────
   PRACTICE PAGE
   ───────────────────────────────────────────── */

/* Hero — light split layout */
.practice-hero {
	background: var(--off-white);
	padding: 140px var(--pad-x) 72px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	min-height: 50vh;
}

.practice-hero-headline {
	font-family: var(--serif);
	font-size: clamp(52px, 7vw, 88px);
	font-weight: 300;
	line-height: 1.05;
	color: var(--text-dark);
}

.practice-hero-headline em {
	font-style: italic;
	color: var(--gold);
	display: block;
}

.practice-hero-subtitle {
	font-family: var(--condensed);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 24px;
}

.practice-hero-body {
	font-size: 15px;
	font-weight: 300;
	color: var(--text-mid);
	line-height: 1.85;
	margin-bottom: 16px;
}

.practice-link {
	color: var(--gold);
	text-decoration: none;
	border-bottom: 1px solid rgba(184,150,90,0.3);
	transition: border-color 0.2s;
}

.practice-link:hover { border-color: var(--gold); }

.practice-disclaimer {
	font-size: 13px;
	font-weight: 300;
	font-style: italic;
	color: var(--text-light);
	line-height: 1.7;
}

/* Practice sections container */
.practice-sections {
	background: var(--warm-white);
}

/* Individual practice section */
.practice-item {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 64px;
	align-items: center;
	padding: 56px var(--pad-x);
	background: var(--warm-white);
}

.practice-item:nth-child(even) {
	background: var(--off-white);
}

.practice-divider {
	height: 1px;
	background: var(--border);
	margin: 0 var(--pad-x);
}

/* Image column */
.practice-item-image {
	position: relative;
	overflow: hidden;
	background: var(--black);
}

.practice-item-image img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.4s;
}

.practice-item:hover .practice-item-image img {
	filter: grayscale(30%);
}

/* Content column */
.practice-item-content {}

.practice-item-title {
	font-family: var(--serif);
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 300;
	color: var(--text-dark);
	line-height: 1.2;
	margin-bottom: 28px;
}

.practice-coming-soon {
	font-family: var(--condensed);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-light);
	font-style: italic;
}

/* Custom audio player */
.practice-player {
	background: white;
	border: 1px solid var(--border);
	border-left: 3px solid var(--gold);
	padding: 18px 20px;
}

.player-controls {
	display: grid;
	grid-template-columns: 36px 1fr auto auto;
	gap: 12px;
	align-items: center;
}

.player-play-btn {
	width: 36px;
	height: 36px;
	background: var(--black);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--off-white);
	flex-shrink: 0;
	transition: background 0.25s;
}

.player-play-btn:hover { background: var(--gold); color: var(--black); }

.player-track-wrap {
	flex: 1;
}

.player-track {
	width: 100%;
	height: 3px;
	background: rgba(0,0,0,0.08);
	position: relative;
	cursor: pointer;
	border-radius: 0;
}

.player-track:hover { background: rgba(0,0,0,0.15); }

.player-progress {
	position: absolute;
	left: 0; top: 0; bottom: 0;
	background: var(--gold);
	width: 0%;
	transition: width 0.1s linear;
}

.player-labels {
	display: none;
}

.player-title {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-mid);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 280px;
}

.player-author {
	font-family: var(--condensed);
	font-size: 9px;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: var(--text-light);
	margin-top: 2px;
}

.player-time {
	font-family: var(--condensed);
	font-size: 11px;
	font-weight: 400;
	color: var(--text-light);
	white-space: nowrap;
	flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.practice-hero {
		grid-template-columns: 1fr;
		gap: 48px;
		padding: 120px var(--pad-x-md) 56px;
	}

	.practice-item {
		grid-template-columns: 220px 1fr;
		gap: 40px;
		padding: 48px var(--pad-x-md);
	}

	.practice-item-image img { height: 220px; }

	.practice-divider { margin: 0 var(--pad-x-md); }
}

@media (max-width: 640px) {
	.practice-hero {
		padding: 100px var(--pad-x-sm) 48px;
	}

	.practice-item {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 40px var(--pad-x-sm);
	}

	.practice-item-image img {
		height: 200px;
		width: 100%;
	}

	.practice-divider { margin: 0 var(--pad-x-sm); }

	.player-controls { grid-template-columns: 36px 1fr auto; }
}

/* ─────────────────────────────────────────────
   INTRO SECTION — text-only variant
   No image column — full width copy
   ───────────────────────────────────────────── */
.intro-section--text-only {
	grid-template-columns: 1fr;
}

.intro-section--text-only .intro-text h2 {
	font-size: clamp(36px, 4.5vw, 58px);
}

.intro-section--text-only .intro-stats {
	gap: 60px;
}

/* ─────────────────────────────────────────────
   SM SPEAKING SECTION — text-only variant
   ───────────────────────────────────────────── */
.sm-speaking-section--text-only {
	grid-template-columns: 1fr;
	max-width: 860px;
	margin: 0 auto;
}

/* ─────────────────────────────────────────────
   CLIENT LOGOS MARQUEE  (.logo-list-container)
   Sits between hero and breadcrumb on Speaking page.
   Infinite scroll via CSS animation — no JS.
   ───────────────────────────────────────────── */
.logo-list-container {
	background: rgba(10,9,6,0.96);
	border-top: 1px solid rgba(184,150,90,0.12);
	border-bottom: 1px solid rgba(184,150,90,0.12);
	overflow: hidden;
	position: relative;
	padding: 28px 0;
	display: none !important;
}

.logo-list-track {
	display: flex;
	align-items: center;
	gap: 80px;
	width: max-content;
}

.logo-list-track:hover {
	animation-play-state: paused;
}

.logo-set {
	display: flex;
	align-items: center;
	gap: 80px;
	flex-shrink: 0;
}

.logo-list-item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.logo-list-item img {
	height: 40px;
	width: auto;
	display: block;
	opacity: 0.5;
	filter: brightness(0) invert(1);
	transition: opacity 0.3s;
}

.logo-list-item:hover img {
	opacity: 0.9;
}

@keyframes logoMarquee {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@media (max-width: 640px) {
	.logo-list-item img { height: 28px; }
	.logo-list-track,
	.logo-set           { gap: 48px; }
}

/* ─────────────────────────────────────────────
   ABOUT — HERO INTRO FULL (bio in hero)
   ───────────────────────────────────────────── */
.hero-intro-full {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

/* ─────────────────────────────────────────────
   ABOUT — 3-COLUMN CREDENTIALS SECTION
   ───────────────────────────────────────────── */
.about-credentials-section {
	background: var(--warm-white);
	padding: 72px var(--pad-x);
}

.about-credentials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
}

.about-credentials-grid .sidebar-block {
	background: white;
	padding: 36px 32px;
	margin-bottom: 0;
}

.about-credentials-grid .sidebar-title {
	font-family: var(--condensed);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
}

@media (max-width: 1024px) {
	.about-credentials-section { padding: 56px var(--pad-x-md); }
	.about-credentials-grid { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 640px) {
	.about-credentials-section { padding: 48px var(--pad-x-sm); }
	.hero-intro-full { max-height: none; overflow-y: visible; }
}
