
/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--charcoal);
  padding: 1.2rem var(--gutter);
}
.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.ts-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 2rem;
  flex: 1;
  justify-content: center;
}
.ts-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  white-space: nowrap;
}
.ts-label {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  white-space: nowrap;
}
.ts-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-strip { padding: 1rem 1.25rem; }
  .trust-strip-inner { gap: 0; justify-content: space-between; }
  .ts-item { padding: 0; gap: 0.4rem; flex-direction: column; text-align: center; flex: 1; }
  .ts-num   { font-size: 1.1rem; }
  .ts-label { font-size: 0.55rem; letter-spacing: 0.1em; line-height: 1.3; }
  .ts-div   { height: 24px; }
}
@media (max-width: 430px) {
  .ts-item { padding: 0; }
  .ts-num  { font-size: 1rem; }
  .ts-label { font-size: 0.5rem; }
}

/* ── HOME PAGE ── */

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}
.hero-left {
  padding: clamp(3rem, 7vw, 7rem) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.hero-title { margin-bottom: 1.2rem; }
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--cream);
}
.hero-right .img-placeholder { position: absolute; inset: 0; }
.hero-portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 1.2rem 1.8rem;
  min-width: 200px;
  box-shadow: var(--shadow-md);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
}
.badge-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
}

/* Press bar */
.press-bar {
  background: var(--cream);
  border-top: 1px solid var(--cream-dk);
  padding: 1.4rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.press-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
  flex-shrink: 0;
  margin: 0;
}
.press-items {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.press-items span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 600;
}
.press-divider { color: var(--cream-dk); }

/* About preview */
.about-img-wrap {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
  isolation: isolate;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.about-gold-frame {
  position: absolute;
  bottom: 0; right: 0;
  width: 80%; height: 78%;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 0;
}
.about-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.55;
  margin: 2rem 0;
}
.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--cream);
  padding-top: 1.8rem;
  margin-top: 1.8rem;
}
.metric { text-align: left; padding-right: 1.2rem; }
.metric + .metric { border-left: 1px solid var(--cream); padding-left: 1.2rem; }
.metric-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  display: block;
}
.metric-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.3rem;
  display: block;
}
.section-sub {
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* Five F's */
.fives-sub {
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 3rem;
}
.fives-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--cream-dk);
  max-width: 640px;
}
.f-row {
  display: flex;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dk);
  line-height: 1;
  transition: padding-left var(--transition);
}
.f-row:hover { padding-left: 0.5rem; }
.f-initial {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
  width: clamp(2rem, 3.5vw, 3rem);
  flex-shrink: 0;
}
.f-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

/* Cards grid */
.cards-grid { margin-top: 3rem; }
.coaching-cta { margin-top: 3rem; text-align: center; }

/* Podcast */
.podcast-visual {
  background: var(--charcoal);
  padding: 3rem;
  display: flex;
  align-items: flex-end;
  min-height: 360px;
}
.podcast-show-badge {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.podcast-show-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
}
.podcast-play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.podcast-info h2 { margin-bottom: 1rem; }
.podcast-info p  { margin-bottom: 2rem; }
.podcast-platforms { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── RESPONSIVE (desktop overrides; mobile handled in mobile.css) ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { max-width: 100%; }
  .about-metrics { grid-template-columns: 1fr 1fr; row-gap: 1.5rem; }
}
