/* ─── Theme Cards (clickable → modal) ──────────────────── */
.theme-card {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  background: var(--white);
  border: none;
  border-top: 3px solid var(--gold);
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(27,42,74,0.06);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  cursor: pointer;
}

.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(27,42,74,0.12);
}

.theme-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.theme-card:hover .theme-card-more { color: var(--gold-dark); }
.theme-card-more svg { transition: transform 0.18s var(--ease); }
.theme-card:hover .theme-card-more svg { transform: translateX(3px); }

.theme-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.theme-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.theme-card p {
  color: var(--slate);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ─── Testimonials carousel ────────────────────────────── */
.testimonials {
  margin-top: 48px;
}

/* Stage holds the viewport plus the two nav arrows. */
.testimonial-stage {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 68px;
}

.testimonial-viewport {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}

/* Hover pause: the card lifts slightly — enough of a cue on its own. */
.testimonial-stage.is-paused .testimonial-card {
  box-shadow: 0 10px 28px rgba(27,42,74,0.14);
  transform: translateY(-3px);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(27,42,74,0.14);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(27,42,74,0.08);
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.testimonial-arrow-prev { left: 0; }
.testimonial-arrow-next { right: 0; }

.testimonial-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(27,42,74,0.18);
}

.testimonial-arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .testimonial-stage { padding: 0; }
  .testimonial-arrow { display: none; }
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.6s var(--ease);
}

.testimonial-card {
  flex: 0 0 100%;
  margin: 0;
  background: var(--offwhite);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 2px 12px rgba(27,42,74,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  text-align: center;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(27,42,74,0.22);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.testimonial-dot:hover { background: rgba(27,42,74,0.45); }
.testimonial-dot.active { background: var(--gold); transform: scale(1.25); }

@media (prefers-reduced-motion: reduce) {
  .testimonial-track,
  .testimonial-card { transition: none; }
  .testimonial-stage.is-paused .testimonial-card { transform: none; }
}

.testimonial-quote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 0;
  color: var(--gold);
  vertical-align: -0.35em;
  margin-right: 4px;
}

.testimonial-author {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--slate);
}

/* Author normal weight, org bold, to visually separate the two */
.testimonial-author-name { font-weight: 500; }
.testimonial-author-org { font-weight: 700; color: var(--navy); }
.testimonial-author-sep { margin: 0 6px; color: var(--slate); opacity: 0.6; }

/* Carousel cards open the full quote on click */
.testimonial-card { cursor: pointer; }
.testimonial-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.testimonial-readmore {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.testimonial-card:hover .testimonial-readmore,
.testimonial-card:focus-visible .testimonial-readmore { opacity: 1; }

/* Full quote inside the modal */
.testimonial-modal-quote {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--navy);
}
.testimonial-modal-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 0;
  color: var(--gold);
  vertical-align: -0.35em;
  margin-right: 4px;
}

/* Paragraph breaks inside a multi-paragraph full quote */
.testimonial-modal-quote p { margin: 0 0 0.9em; }
.testimonial-modal-quote p:last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .testimonial-readmore,
  .quote-card-readmore { transition: none; }
}

/* ─── Quote wall (Testimonials page) ───────────────────── */
.quote-wall {
  columns: 3 300px;
  column-gap: 24px;
  margin-top: 48px;
}

.quote-card {
  break-inside: avoid;
  margin: 0 0 24px;
  background: var(--white);
  border: 1px solid rgba(27,42,74,0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  box-shadow: 0 2px 10px rgba(27,42,74,0.05);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.quote-card:hover {
  box-shadow: 0 10px 26px rgba(27,42,74,0.12);
  transform: translateY(-3px);
}

.quote-card-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--navy);
}

.quote-card-source {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(27,42,74,0.08);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.quote-card-org {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.quote-card-person {
  font-size: 0.83rem;
  color: var(--slate);
}

/* Category filter bar above the grid */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 40px 0 8px;
}

/* Grid cards are clickable — reveal the full quote in a modal */
.quote-card { cursor: pointer; position: relative; }
.quote-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.quote-card-readmore {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.quote-card:hover .quote-card-readmore,
.quote-card:focus-visible .quote-card-readmore { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .quote-card { transition: none; }
  .quote-card:hover { transform: none; }
}

/* ─── Trust Strip ──────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  padding: 28px 24px;
  overflow: hidden;
}

.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 26px;
  white-space: nowrap;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: var(--gold);
  opacity: 0.5;
}

/* ─── Press/Media Cards ────────────────────────────────── */
.press-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.press-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(27,42,74,0.08);
}

.press-outlet {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.press-headline {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.press-date {
  font-size: 0.82rem;
  color: var(--slate);
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 4px;
  transition: color 0.15s;
}

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

/* ─── Book Card ────────────────────────────────────────── */
.book-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 2px 12px rgba(27,42,74,0.06);
}

.book-cover {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.book-cover-placeholder {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--navy);
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}

.book-cover-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.book-info { display: flex; flex-direction: column; gap: 12px; }

.book-publisher {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.book-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.book-description {
  color: var(--slate);
  font-size: 0.97rem;
  line-height: 1.7;
}

.book-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.book-buy-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1.5px solid var(--navy);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.15s;
  cursor: pointer;
}

.book-buy-link:hover {
  background: var(--navy);
  color: var(--white);
}

/* ─── Freed Clients Grid ───────────────────────────────── */
.clients-grid {
  columns: 3;
  column-gap: 20px;
}

.client-card {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
}

.client-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s var(--ease);
}

.client-card-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #2a3d60, #1B2A4A);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-card-placeholder svg {
  opacity: 0.2;
  width: 40%;
}

.client-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,42,74,0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.client-card:hover .client-overlay { opacity: 1; }
.client-card:hover img { opacity: 0.7; }

.client-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
}

.client-year {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
}

.client-teaser {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Modal ────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17,28,51,0.75);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: 8px;
  max-width: 580px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.2s var(--ease);
}

.modal-backdrop.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
  color: var(--slate);
}

.modal-close:hover { background: var(--offwhite); }

.modal-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.modal-year {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.modal-story {
  color: var(--slate);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* ─── Award Cards ──────────────────────────────────────── */
.awards-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.award-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.award-item:first-child { border-top: 1px solid var(--border); }

.award-year-badge {
  min-width: 60px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  padding-top: 3px;
}

.award-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.award-org {
  font-size: 0.9rem;
  color: var(--slate);
}

/* ─── Video Cards ──────────────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(27,42,74,0.07);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.video-card:hover {
  box-shadow: 0 8px 28px rgba(27,42,74,0.12);
  transform: translateY(-2px);
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}

.video-placeholder svg { color: rgba(255,255,255,0.3); }

.video-info { padding: 16px 20px; }

.video-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.3;
}

/* ─── Filter Pills ─────────────────────────────────────── */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--slate);
  cursor: pointer;
  transition: all 0.15s;
}

.filter-pill:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.filter-pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ─── Contact Form ─────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 2px 16px rgba(27,42,74,0.07);
  max-width: 640px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--offwhite);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.08);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 16px;
}

/* ─── Speaker Details Strip ────────────────────────────── */
.speaker-details-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 48px 0;
}

.speaker-detail {
  padding: 28px 28px;
  border-right: 1px solid var(--border);
}

.speaker-detail:last-child { border-right: none; }

.speaker-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.speaker-detail-value {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

/* ─── Latin America Section ────────────────────────────── */
.latam-section {
  background: var(--white);
}

.latam-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.latam-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a3d60 0%, #1B2A4A 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.latam-map-dots {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Bio Page ─────────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}

.bio-photo {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.bio-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}

.bio-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-photo-placeholder svg { opacity: 0.15; }

.bio-pull-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 36px 0;
  background: rgba(201,168,76,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.bio-pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

.bio-credentials {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--slate);
}

.credential-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .book-card {
    grid-template-columns: 150px 1fr;
    gap: 24px;
    padding: 28px;
  }

  .bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bio-photo {
    position: static;
    max-width: 280px;
  }

  .latam-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .speaker-details-strip {
    grid-template-columns: 1fr;
  }

  .speaker-detail { border-right: none; border-bottom: 1px solid var(--border); }
  .speaker-detail:last-child { border-bottom: none; }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid { columns: 2; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 60px 20px; }
  .clients-grid { columns: 1; }
  .videos-grid { grid-template-columns: 1fr; }
  .book-card { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .trust-item { padding: 6px 14px; font-size: 0.92rem; }
}

/* ─── Hero with photo ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}

.hero-text {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 80px 64px 80px 48px;
}

.hero-photo {
  background-color: #2a3d60;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 520px;
  position: relative;
}

.hero-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(27,42,74,0.35), transparent);
}

.hero-photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.hero-photo.has-photo .hero-photo-fallback { display: none; }

/* ─── Looping reel video band ──────────────────────────── */
.reel-loop {
  position: relative;
  width: 100%;
  /* Match the source video's 16:9 frame so cover fills it exactly without
     cropping Justin's face. min-height is only a floor for narrow screens. */
  aspect-ratio: 16 / 9;
  min-height: 420px;
  overflow: hidden;
  background: var(--navy);
}

.reel-loop video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-loop-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  background: linear-gradient(to bottom, rgba(27,42,74,0.5), rgba(27,42,74,0.3));
  color: var(--white);
}

.reel-loop-overlay h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
  max-width: 16ch;
}

.reel-loop-overlay p {
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

/* ─── Speaker reel embed ───────────────────────────────── */
.reel-embed {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 12px 40px rgba(27,42,74,0.18);
}

.reel-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── Photo gallery strip ──────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #2a3d60;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.gallery figure:hover img { transform: scale(1.05); }

.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(to top, rgba(27,42,74,0.9), transparent);
}

/* ─── Book cover (real image) ──────────────────────────── */
.book-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ─── Latin America photo ──────────────────────────────── */
.latam-photo {
  aspect-ratio: 4 / 3;
  background-color: #2a3d60;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--radius);
}

/* ─── Theme modal body ─────────────────────────────────── */
.modal-body p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.modal-body p:last-child { margin-bottom: 0; }

/* ─── Responsive: media-rich additions ─────────────────── */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 56px 28px; }
  .hero-photo { min-height: 340px; order: 2; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .reel-loop { min-height: 360px; }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
}

/* ─── Bio body paragraphs (rendered from list) ─────────── */
[data-bio-body] p { margin-bottom: 20px; max-width: 64ch; }
[data-bio-body] p:last-child { margin-bottom: 0; }
