/*
Theme Name: Matthew_Abrams
Theme URI: http://themekraft.com/store/_tk-free-wordpress-starter-theme-based-on-twitter-bootstrap/
Template: _tk
Author: ThemeKraft
Author URI: http://themekraft.com/
Description: Custom child theme for matthewabrams.com
Version: 1.0.0

*/

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #FAF8F3;
  --white: #FFFFFF;
  --charcoal: #1A2626;
  --gold: #C4963A;
  --gold-light: #E8C97A;
  --teal: #2A6B68;
  --teal-light: #3D8E8A;
  --warm-gray: #F2EDE4;
  --mid-gray: #7A7068;
  --text: #1A2626;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
}

a, a:hover, a:focus { text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--charcoal);
}

/* ─── NAV ─── */
nav.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0 52px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  gap: 0;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.5px;
  line-height: 1;
}
.nav-logo-text span { color: var(--gold); }
.nav-logo-sig {
  height: 38px;
  width: auto;
  opacity: 0.72;
  margin-left: -7px;
  margin-top: -10px;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); }
/* WordPress adds current-menu-item class */
.nav-links .current-menu-item > a { color: var(--teal); }

/* ── Dropdown submenus (desktop) ── */
.nav-links li.menu-item-has-children { position: relative; }
/* small caret after parent items */
.nav-links li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-links li.menu-item-has-children:hover > a::after { opacity: 1; }
.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}
.nav-links li.menu-item-has-children:hover > .sub-menu,
.nav-links li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .sub-menu li { width: auto; }
.nav-links .sub-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 11px;
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--charcoal);
}
.nav-links .sub-menu a:hover { color: var(--teal); background: rgba(0,0,0,0.03); }
.nav-links .sub-menu .current-menu-item > a { color: var(--teal); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.social-icon:hover { background: var(--teal); }

.nav-newsletter {
  background: var(--gold);
  color: white;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-left: 6px;
  transition: background 0.2s;
}
.nav-newsletter:hover { background: var(--teal); color: white; }

/* ─── HERO ─── */
.hero {
  margin-top: 70px;
  height: calc(100vh - 70px);
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: #1C3030;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Still photo — sits on top of video as a placeholder, fades out once video is ready */
.hero-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
  transition: opacity 2s ease;
}
.hero-img-bg.faded-out { opacity: 0; pointer-events: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(250,248,243,0.97) 0%,
    rgba(250,248,243,0.92) 25%,
    rgba(250,248,243,0.55) 48%,
    rgba(250,248,243,0.0) 68%
  );
  z-index: 1;
}


.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(26,38,38,0.15), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 80px;
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: 76px;
  font-weight: 900;
  line-height: 1.0;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.hero-headline em {
  font-style: italic;
  color: var(--teal);
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 420px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--charcoal);
  color: white;
  padding: 17px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--teal); color: white; }

.btn-ghost {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--gold);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--teal); border-color: var(--teal); }

.btn-outline-white {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: white;
  padding: 13px 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-white:hover { background: white; color: var(--charcoal); }

.btn-teal {
  display: inline-block;
  background: var(--teal);
  color: white;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-teal:hover { background: var(--teal-light); color: white; }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-gold:hover { background: #b8892e; color: white; }

.btn-white {
  display: inline-block;
  background: white;
  color: var(--teal);
  padding: 17px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-white:hover { background: var(--charcoal); color: white; }

/* ─── CONFLICT PROFILES ─── */
.conflict-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.profile-card {
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.profile-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196,150,58,0.15);
  border: 1px solid rgba(196,150,58,0.3);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.profile-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.profile-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  line-height: 1.15;
}
.profile-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 380px;
}

/* ─── QUOTE BANNER ─── */
/* ─── TAGLINE BREAK ─── */
.tagline-break {
  background: var(--cream);
  padding: 80px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tagline-break p {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto;
}
.tagline-break strong { font-weight: 700; }

.quote-banner {
  background: #D4A94B;
  padding: 90px 120px;
  text-align: center;
}
.quote-banner p {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 600;
  color: #2A1E04;
  line-height: 1.3;
  max-width: 880px;
  margin: 0 auto;
}
.quote-banner em { font-style: italic; }

/* ─── STATS ─── */
.stats-section {
  background: var(--cream);
  padding: 100px 80px;
}

.section-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.stat-item {
  background: white;
  padding: 52px 28px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.stat-icon { width: 54px; height: 54px; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.stat-number .suffix {
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--mid-gray);
  line-height: 1.6;
}

.stats-footnote {
  text-align: center;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 14px;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.stats-footnote strong { color: var(--charcoal); }
.tedx-dot {
  display: inline-block;
  background: #E62B1E;
  color: white;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  letter-spacing: 1px;
}

/* ─── CONFLICT SECTION ─── */
.conflict-section {
  position: relative;
  background: url('assets/images/whiteboard.jpg') center/cover no-repeat;
  padding: 120px 80px 100px;
  text-align: center;
  overflow: hidden;
}
.conflict-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18,27,25,0.84);
  z-index: 0;
}
.conflict-section > * { position: relative; z-index: 1; }

.conflict-intro {
  max-width: 780px;
  margin: 0 auto 72px;
}
.conflict-intro p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}
.conflict-intro p strong { color: rgba(255,255,255,0.9); }

.gold-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.tension-diagram { max-width: 420px; margin: 0 auto; }

/* ─── SERVICES ─── */
.services-section {
  background: var(--white);
  padding: 120px 0 0;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 80px;
}
.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.services-header p {
  font-size: 17px;
  color: var(--mid-gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.service-card {
  background: var(--cream);
  padding: 52px 48px 56px;
  position: relative;
  overflow: hidden;
}
.service-card.dark { background: var(--charcoal); }

/* Matthew photo — centered vertically behind text */
.service-card-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 110%;
  width: auto;
  object-fit: contain;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}
/* All text/buttons float above the image */
.service-card > * { position: relative; z-index: 1; }
/* Photo must stay absolute — overrides the wildcard above */
.service-card-photo { position: absolute; z-index: 0; }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  margin-bottom: 8px;
}
.service-card.dark .service-num { color: rgba(255,255,255,0.05); }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.service-card.dark h3 { color: white; }

.service-card p {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}
.service-card.dark p { color: rgba(255,255,255,0.55); }

/* ─── PODCASTS + MEDIA ─── */
.media-section {
  background: var(--charcoal);
  padding: 100px 80px;
}
.media-section .section-eyebrow { color: var(--gold); }
.media-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
}
.media-section > p {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.6;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
/* Homepage media slider — 4 cards per view, arrows + bullets */
.media-slider { position: relative; }
.media-slider-viewport { overflow: hidden; }
.media-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.media-track .media-card {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
}
.media-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(26,38,38,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.media-slider-arrow:hover { background: var(--gold); border-color: var(--gold); }
.media-slider-arrow.prev { left: -18px; }
.media-slider-arrow.next { right: -18px; }
.media-slider-arrow:disabled { opacity: 0.25; cursor: default; }
.media-slider-arrow:disabled:hover { background: rgba(26,38,38,0.55); border-color: rgba(255,255,255,0.25); }
.media-slider-arrow svg { width: 18px; height: 18px; }
.media-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.media-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.media-slider-dot.active { background: var(--gold); }
.media-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s, border-color 0.2s;
}
.media-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,150,58,0.3);
}
.media-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(196,150,58,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.media-card-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  background: rgba(255,255,255,0.04);
  margin-bottom: 4px;
}
.media-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 20px;
  width: fit-content;
}
.media-card-badge.live {
  background: rgba(42,107,104,0.3);
  color: #5DBEAB;
  border: 1px solid rgba(93,190,171,0.25);
}
.media-card-badge.live::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5DBEAB;
  display: block;
}
.media-card-badge.upcoming {
  background: rgba(196,150,58,0.15);
  color: var(--gold);
  border: 1px solid rgba(196,150,58,0.2);
}
.media-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  flex: 1;
}
.media-card-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}
.media-card-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.media-card-link:hover { color: #e8c97a; }

/* Hidden podcast cards — revealed on expand */
.media-card.media-hidden { display: none; }
.media-grid.expanded .media-card.media-hidden { display: flex; }

.media-toggle-wrap {
  text-align: center;
  margin-bottom: 24px;
}
.btn-media-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-media-toggle:hover {
  border-color: rgba(196,150,58,0.5);
  color: var(--gold);
}

/* ─── BOOK ─── */
.book-section {
  background: var(--teal);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.book-cover-photo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px 60px 20px;
}
.book-cover-wrap {
  position: relative;
  display: inline-block;
}
.book-cover-photo img {
  width: 420px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.25);
  display: block;
}
.book-cover-photo img.book-seal {
  position: absolute;
  top: -46px;
  left: -70px;
  width: 190px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.30));
}
.book-section .book-content {
  padding: 90px 60px 90px 80px;
  max-width: 540px;
  flex-shrink: 0;
  color: white;
}
.book-content .section-eyebrow {
  text-align: left;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.book-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}
.book-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 44px;
}

/* ─── TESTIMONIAL ─── */
.testimonial-section {
  background: var(--warm-gray);
  padding: 80px 80px 60px;
  text-align: center;
}
.testimonial-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid rgba(26,38,38,0.25);
  padding: 8px 20px;
  margin-bottom: 52px;
}
.testimonial-carousel { position: relative; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }

.testimonial-carousel blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--charcoal);
  max-width: 820px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.testimonial-carousel blockquote em { font-style: italic; }

.testimonial-attr {
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--charcoal);
}
.testimonial-attr span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--mid-gray);
  margin-top: 8px;
  font-size: 10px;
  text-transform: uppercase;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}
.testimonial-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(26,38,38,0.18);
  cursor: pointer;
  transition: background 0.2s;
}
.testimonial-dots .dot.active { background: var(--gold); }

.testimonial-photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
  box-shadow: 0 3px 14px rgba(26,38,38,0.14);
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(26,38,38,0.22);
  color: var(--charcoal);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 2;
}
.testimonial-arrow:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.testimonial-arrow.prev { left: -10px; }
.testimonial-arrow.next { right: -10px; }
.testimonial-arrow svg { width: 16px; height: 16px; }

/* ─── PRESS ─── */
.press-section {
  background: var(--white);
  padding: 56px 80px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin-bottom: 40px;
}

.press-logo {
  opacity: 0.55;
  transition: opacity 0.2s;
  color: var(--charcoal);
  cursor: default;
  display: flex;
  align-items: center;
}
.press-logo:hover { opacity: 0.8; }

.logo-forbes {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -1px;
}
.logo-fast-company {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.logo-stanford {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
  max-width: 110px;
}

.press-divider {
  width: 1px;
  height: 64px;
  background: rgba(0,0,0,0.12);
}

/* ─── KEYNOTE SECTION ─── */
.keynote-section {
  background: #163330;
  padding: 100px 80px;
  text-align: center;
}
.keynote-headline {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 64px;
  line-height: 1.4;
}
.keynote-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.keynote-player {
  position: relative;
  width: 580px;
  margin: 0 auto 28px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.keynote-player img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.2) brightness(0.8);
}
.keynote-player-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  pointer-events: none;
}
.keynote-play-btn {
  position: absolute;
  bottom: 28px;
  left: 28px;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.keynote-play-btn svg { margin-left: 4px; }
.keynote-watch-label {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #C85A3A;
  margin-bottom: 48px;
  font-style: italic;
}
.keynote-topics {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.keynote-topic {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 200px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}
.keynote-topic:hover { color: white; }
.keynote-topic-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,90,58,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
footer.site-footer {
  background: var(--charcoal);
  padding: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.footer-brand-name span { color: var(--gold); }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-bottom: 28px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }

.footer-newsletter-text {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-newsletter-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.footer-newsletter-btn:hover { background: var(--teal); color: white; }

.newsletter-form input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 16px;
  color: white;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-form button {
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.newsletter-form button:hover { background: var(--teal); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-legal-links { display: flex; gap: 24px; }

/* ─── INNER PAGES ─── */
.page-main {
  margin-top: 70px;
  padding: 80px;
  min-height: calc(100vh - 70px);
}
.page-main .entry-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 32px;
  line-height: 1.1;
}
.page-main .entry-content {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--mid-gray);
}
.page-main .entry-content p { margin-bottom: 1.5em; }
.page-main .entry-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--charcoal);
  margin: 2em 0 0.75em;
}
.page-main .entry-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--charcoal);
  margin: 1.5em 0 0.5em;
}
.page-main .entry-content a {
  color: var(--teal);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* Hamburger toggle — hidden on desktop */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
  z-index: 101;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
nav.site-nav.nav-open .nav-mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.site-nav.nav-open .nav-mobile-toggle span:nth-child(2) { opacity: 0; }
nav.site-nav.nav-open .nav-mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   INNER PAGES
═══════════════════════════════════════════════════════════ */

/* ── Page sub-hero ── */
/* ── 404 page ── */
.error-404-section {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  margin-top: 70px;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 40px;
}
.error-404-section::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  max-width: 100%;
  background: radial-gradient(circle, rgba(196,150,58,0.11) 0%, rgba(196,150,58,0) 65%);
  pointer-events: none;
}
.error-404-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.error-404-code {
  font-family: 'Playfair Display', serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -3px;
  margin-bottom: 12px;
}
.error-404-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.error-404-text {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 40px;
}
.error-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.error-404-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.error-404-links span {
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 700;
}
.error-404-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.error-404-links a:hover { color: var(--gold); }

/* ── Legal / prose pages ── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-updated {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(26,38,38,0.1);
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 48px 0 16px;
}
.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 26px 0 10px;
}
.legal-content p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26,38,38,0.82);
  margin-bottom: 18px;
}
.legal-content ul {
  margin: 0 0 20px;
  padding-left: 22px;
}
.legal-content li {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26,38,38,0.82);
  margin-bottom: 9px;
}
.legal-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--gold); }
.legal-content strong { color: var(--charcoal); font-weight: 700; }

/* ── General page prose (WYSIWYG body on the General Page template) ── */
.page-prose {
  max-width: 100%;
  margin: 0 auto;
  color: rgba(26,38,38,0.82);
}
/* CTA button under General Page content */
.page-cta {
  margin: 40px 0 0;
}
.page-prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 44px 0 16px;
}
.page-prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 32px 0 12px;
}
.page-prose h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 24px 0 10px;
}
.page-prose p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(26,38,38,0.82);
  margin-bottom: 20px;
}
.page-prose ul,
.page-prose ol {
  margin: 0 0 20px;
  padding-left: 24px;
}
.page-prose li {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(26,38,38,0.82);
  margin-bottom: 9px;
}
.page-prose a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-prose a:hover { color: var(--gold); }
.page-prose strong { color: var(--charcoal); font-weight: 700; }
.page-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin: 24px 0;
}
.page-prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
}
.page-prose > :first-child { margin-top: 0; }
.page-prose > :last-child { margin-bottom: 0; }

.page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--charcoal);
  margin-top: 70px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.35;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,38,38,0.95) 0%, rgba(26,38,38,0.55) 70%, rgba(26,38,38,0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 800px;
}
.page-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 520px;
}

/* ── Inner section wrappers ── */
.inner-section {
  padding: 100px 80px;
}
.inner-section-wrap {
  max-width: 1300px;
  margin: 0 auto;
}
.bg-cream { background: var(--cream); }
.bg-warm  { background: var(--warm-gray); }
.bg-dark  { background: var(--charcoal); }
.bg-teal  { background: var(--teal); }
.bg-white { background: var(--white); }

.inner-section-header { margin-bottom: 60px; }
.inner-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -1px;
}
.inner-section-header.light h2 { color: white; }
.inner-section-header p {
  font-size: 17px;
  color: var(--mid-gray);
  max-width: 580px;
  line-height: 1.7;
}
.inner-section-header.light p { color: rgba(255,255,255,0.55); }

/* ── Topic / feature cards grid ── */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.topic-card {
  background: var(--cream);
  padding: 48px 40px 52px;
}
.topic-card.dark { background: var(--charcoal); }
.topic-card.teal { background: var(--teal); }
.topic-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  margin-bottom: 16px;
}
.topic-card.dark .topic-num,
.topic-card.teal .topic-num { color: rgba(255,255,255,0.06); }
.topic-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.2;
}
.topic-card.dark h3,
.topic-card.teal h3 { color: white; }
.topic-card p {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.topic-card.dark p,
.topic-card.teal p { color: rgba(255,255,255,0.55); }

/* ── Two-column ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.two-col-text h2.light { color: white; }
.two-col-text p {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.two-col-text p.light { color: rgba(255,255,255,0.6); }
.two-col-text ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.two-col-text li {
  font-size: 15px;
  color: var(--mid-gray);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
.two-col-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--gold);
}
.icon-list li { padding-left: 0; position: static; }
.icon-list li::before { display: none; }
.two-col-text li.light,
.two-col-text.light li { color: rgba(255,255,255,0.65); }
.two-col-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* ── Credibility bar ── */
.cred-bar {
  background: var(--charcoal);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.cred-item { text-align: center; }
.cred-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.cred-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.cred-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

/* ── Process steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.process-step { text-align: center; }
.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* ── GHL Placeholder ── */
.ghl-placeholder {
  background: var(--warm-gray);
  border: 2px dashed rgba(196,150,58,0.4);
  padding: 80px 48px;
  text-align: center;
}
.ghl-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,150,58,0.1);
  border: 1px solid rgba(196,150,58,0.3);
  padding: 6px 14px;
  margin-bottom: 16px;
}
.ghl-placeholder h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}
.ghl-placeholder p {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto;
}
.ghl-form {
  max-width: 680px;
  margin: 0 auto;
}
.ghl-form iframe {
  display: block;
  width: 100%;
}

/* ── Page CTA strip ── */
.page-cta-strip {
  background: var(--teal);
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.page-cta-strip-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.page-cta-strip-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}
.page-cta-strip-actions {
  flex-shrink: 0;
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ── Pull quote ── */
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 12px 0 12px 36px;
  margin: 40px 0;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 12px !important;
}
.pull-quote cite {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-style: normal;
}

/* ── Endorsement cards ── */
.endorsement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.endorsement-card {
  background: var(--cream);
  padding: 40px 36px 44px;
  border-top: 3px solid var(--gold);
}
.endorsement-text {
  font-size: 16px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
}
.endorsement-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.endorsement-role {
  font-size: 13px;
  color: var(--mid-gray);
}

/* ── Testimonial wall (photo + text quote cards) ── */
.testimonial-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.testimonial-quote-card {
  background: var(--cream);
  border-top: 3px solid var(--gold);
  padding: 36px 32px 32px;
  flex: 0 1 calc(33.333% - 16px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
}
.testimonial-quote-card .testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 26px;
  flex: 1;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-person-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
  line-height: 1.25;
}
.testimonial-person-role {
  font-size: 12px;
  color: var(--mid-gray);
  line-height: 1.35;
}

/* ── Book hero (Inviting Genius page) ── */
.book-page-hero {
  background: var(--charcoal);
  padding: 100px 80px;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.book-page-cover {
  flex-shrink: 0;
  width: 380px;
}
.book-page-cover img {
  width: 100%;
  display: block;
  border-radius: 4px;
}
.book-page-text { max-width: 580px; }
.book-page-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.book-page-subtitle {
  font-size: 17px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
}
.book-page-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 16px;
}
.book-retailers {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  margin-top: 32px;
}
.btn-retailer {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.btn-retailer:hover { opacity: 1; }

/* ── Pre-order bonus ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.bonus-item {
  padding: 36px 28px 40px;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  text-align: center;
}
.bonus-item-icon { font-size: 28px; margin-bottom: 14px; }
.bonus-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.bonus-item p {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.5;
}

/* ── About stats ── */
.about-stats-wrap {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 60px;
  flex: 1;
}
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  text-transform: uppercase;
}
.about-stats-image {
  flex-shrink: 0;
  width: 340px;
}
.about-stats-image img {
  width: 100%;
  display: block;
}

/* ── Author bio ── */
.author-bio-block {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.author-bio-photo {
  flex-shrink: 0;
  width: 260px;
}
.author-bio-photo img {
  width: 100%;
  display: block;
}
.author-bio-text .page-eyebrow { color: var(--teal); margin-bottom: 12px; }
.author-bio-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.author-bio-text p {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ── Press features ── */
.press-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.press-feature {
  background: var(--cream);
  padding: 44px 40px;
  border-left: 4px solid var(--gold);
}
.press-pub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.press-pull {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 20px;
}
.press-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.press-link:hover { color: var(--charcoal); }

/* ── Contact inquiry paths ── */
.contact-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.contact-path {
  padding: 56px 48px;
  background: var(--cream);
  text-decoration: none;
  display: block;
  transition: background 0.2s;
  border-top: 3px solid transparent;
}
.contact-path:hover { background: var(--warm-gray); border-top-color: var(--gold); }
.contact-path-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-path h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.contact-path p {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.contact-path-arrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
}

/* ── Newsletter page ── */
.newsletter-page-hero {
  background: var(--charcoal);
  padding: 120px 80px;
  text-align: center;
  margin-top: 70px;
}
.newsletter-page-hero .page-eyebrow { margin-bottom: 16px; }
.newsletter-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

/* ── 1100px responsive overrides — inner pages ── */
/* ── 1100px: Small desktop ── */
@media (max-width: 1100px) {
  nav.site-nav { padding: 0 36px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 10.5px; letter-spacing: 1px; }
  .hero-headline { font-size: 62px; }
  .quote-banner { padding: 70px 80px; }
  .quote-banner p { font-size: 36px; }
  .book-cover-photo img { width: 340px; }
  .book-cover-photo img.book-seal { width: 155px; top: -38px; left: -50px; }
  .keynote-player { width: 100%; max-width: 500px; }
  .keynote-player img { height: 320px; }
}

/* ── 900px: Tablet ── */
@media (max-width: 900px) {
  nav.site-nav { padding: 0 24px; }

  .nav-mobile-toggle { display: flex; }
  .nav-right .social-icon { display: none; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.99);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.35s ease;
    z-index: 99;
    backdrop-filter: blur(12px);
    margin: 0;
  }
  nav.site-nav.nav-open .nav-links {
    max-height: 480px;
    padding: 12px 24px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  /* WordPress wraps nav items in <li class="menu-item"> */
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 13px 0;
    font-size: 13px;
    letter-spacing: 1.5px;
    white-space: normal;
  }
  /* Submenus stack inline (indented) on mobile — no hover dropdown */
  .nav-links .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    width: 100%;
    padding: 0 0 8px;
    margin: 0;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }
  .nav-links .sub-menu li { border-bottom: none; }
  .nav-links .sub-menu a {
    padding: 10px 0 10px 18px;
    font-size: 11.5px;
    color: var(--warm-gray, #6b6b6b);
  }
  .nav-links li.menu-item-has-children > a::after { display: none; }

  .hero-headline { font-size: 52px; letter-spacing: -1.5px; }
  .hero-content { padding: 0 0 0 40px; max-width: 500px; }
  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(250,248,243,0.98) 0%,
      rgba(250,248,243,0.95) 30%,
      rgba(250,248,243,0.70) 60%,
      rgba(250,248,243,0.0) 82%
    );
  }

  .tagline-break { padding: 64px 40px; }
  .tagline-break p { font-size: 22px; }

  .profile-card { padding: 52px 36px; }

  .quote-banner { padding: 72px 60px; }
  .quote-banner p { font-size: 34px; }

  .stats-section { padding: 80px 40px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }

  .conflict-section { padding: 100px 40px 80px; }

  .services-section { padding-top: 90px; }
  .services-header { padding: 0 40px; }
  .services-header h2 { font-size: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card:last-child { grid-column: span 2; }
  .service-card { padding: 44px 36px 48px; }

  .media-section { padding: 80px 40px; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .media-track .media-card { flex-basis: calc((100% - 16px) / 2); }

  .book-section { flex-direction: column; }
  .book-cover-photo { order: -1; padding: 60px 40px 0; }
  .book-cover-photo img { width: 280px; }
  .book-section .book-content { padding: 40px 40px 60px; max-width: none; }

  .testimonial-section { padding: 64px 40px 48px; }
  .testimonial-carousel blockquote { font-size: 19px; }
  .testimonial-arrow { display: none; }

  .press-section { padding: 48px 40px; }
  .press-logos { gap: 32px; }

  .keynote-section { padding: 80px 40px; }
  .keynote-player { width: 100%; }
  .keynote-player img { height: 300px; }

  footer.site-footer { padding: 64px 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Inner pages — tablet */
  .page-hero { height: 360px; }
  .page-hero-content { padding: 0 40px; }
  .page-hero h1 { font-size: 40px; }
  .inner-section { padding: 72px 40px; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
  .topic-grid .topic-card:nth-child(3):last-child { grid-column: span 2; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-image img { height: 320px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cred-bar { gap: 40px; padding: 48px 40px; }
  .cred-divider { display: none; }
  .book-page-hero { flex-direction: column; padding: 72px 40px; align-items: flex-start; gap: 40px; }
  .book-page-cover { width: 200px; }
  .book-page-text h1 { font-size: 38px; }
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
  .endorsement-grid { grid-template-columns: 1fr; gap: 2px; }
  .testimonial-quote-card { flex-basis: 100%; }
  .press-features-grid { grid-template-columns: 1fr 1fr; }
  .contact-paths { grid-template-columns: 1fr; gap: 2px; }
  .page-cta-strip { flex-direction: column; padding: 56px 40px; gap: 24px; }
  .page-cta-strip-actions { flex-direction: column; align-items: flex-start; }
  .author-bio-block { flex-direction: column; gap: 36px; }
  .author-bio-photo { width: 180px; }
  .about-stats-wrap { flex-direction: column; gap: 40px; }
  .about-stats-image { width: 100%; max-width: 340px; }
  .about-stat-num { font-size: 44px; }
  .newsletter-page-hero { padding: 80px 40px; }
  .newsletter-page-hero h1 { font-size: 38px; }
}

/* ── 600px: Mobile ── */
@media (max-width: 600px) {
  nav.site-nav { padding: 0 20px; }
  .nav-newsletter { display: none; }
  .nav-logo-text { font-size: 17px; }
  .error-404-section { padding: 72px 24px; }
  .error-404-code { font-size: 96px; letter-spacing: -2px; }
  .error-404-section h1 { font-size: 34px; }
  .error-404-text { font-size: 15px; }
  .error-404-links { gap: 14px 18px; }
  .nav-logo-sig { height: 30px; margin-top: -7px; margin-left: -5px; }

  .hero-content { padding: 0 24px; max-width: 100%; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(250,248,243,0.92) 0%,
      rgba(250,248,243,0.82) 60%,
      rgba(250,248,243,0.55) 100%
    );
  }
  .hero-headline { font-size: 40px; letter-spacing: -1px; margin-bottom: 18px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }

  .tagline-break { padding: 48px 24px; }
  .tagline-break p { font-size: 19px; }

  .conflict-profiles { grid-template-columns: 1fr; }
  .profile-card { padding: 44px 24px; }
  .profile-card h3 { font-size: 28px; }

  .quote-banner { padding: 56px 24px; }
  .quote-banner p { font-size: 26px; }

  .stats-section { padding: 60px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(5) { grid-column: span 2; }
  .stat-number { font-size: 42px; }

  .conflict-section { padding: 64px 24px 52px; }
  .conflict-intro { margin-bottom: 48px; }
  .conflict-intro p { font-size: 16px; }

  .services-section { padding-top: 72px; }
  .services-header { padding: 0 24px; }
  .services-header h2 { font-size: 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child { grid-column: span 1; }
  .service-card { padding: 44px 28px 48px; }
  .service-card-photo { height: 85%; }

  .media-section { padding: 64px 24px; }
  .media-section h2 { font-size: 30px; }
  .media-grid { grid-template-columns: 1fr; gap: 12px; }
  .media-track .media-card { flex-basis: 100%; }
  .media-slider-arrow.prev { left: -6px; }
  .media-slider-arrow.next { right: -6px; }

  .book-section { flex-direction: column; }
  .book-cover-photo { order: -1; padding: 48px 24px 0; }
  .book-cover-photo img { width: 100%; max-width: 260px; }
  .book-cover-photo img.book-seal { width: 118px; top: -30px; left: -18px; }
  .book-section .book-content { padding: 32px 24px 48px; }
  .book-content h2 { font-size: 32px; }
  .book-content p { font-size: 15px; margin-bottom: 32px; }

  .testimonial-section { padding: 52px 24px 40px; }
  .testimonial-carousel blockquote { font-size: 16px; max-width: 100%; }

  .press-section { padding: 40px 24px; }
  .press-logos { gap: 20px; flex-wrap: wrap; }

  .keynote-section { padding: 60px 24px; }
  .keynote-headline { font-size: 24px; margin-bottom: 36px; }
  .keynote-player img { height: 220px; }
  .keynote-topics { gap: 20px; }
  .keynote-topic { max-width: 140px; font-size: 13px; }

  footer.site-footer { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Inner pages — mobile */
  .page-hero { height: 320px; }
  .page-hero-content { padding: 0 24px; }
  .page-hero h1 { font-size: 34px; letter-spacing: -1px; }
  .page-hero-sub { font-size: 15px; }
  .inner-section { padding: 60px 24px; }
  .inner-section-header h2 { font-size: 30px; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-grid .topic-card:nth-child(3):last-child { grid-column: span 1; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .cred-bar { flex-direction: column; gap: 32px; padding: 48px 24px; }
  .cred-number { font-size: 40px; }
  .book-page-hero { padding: 56px 24px; }
  .book-page-cover { width: 160px; }
  .book-page-text h1 { font-size: 32px; }
  .book-retailers { gap: 8px; flex-wrap: wrap; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-stat-num { font-size: 38px; }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .press-features-grid { grid-template-columns: 1fr; }
  .ghl-placeholder { padding: 48px 24px; }
  .page-cta-strip { padding: 48px 24px; }
  .page-cta-strip-text h2 { font-size: 26px; }
  .newsletter-page-hero { padding: 72px 24px; }
  .newsletter-page-hero h1 { font-size: 32px; }
}

/* ── 380px: Very small phones ── */
@media (max-width: 380px) {
  .hero-headline { font-size: 34px; }
  .nav-logo-text { font-size: 15px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
