/* ═══════════════════════════════════════════════════
   DR. MARK LUCKIE — NEW SECTIONS CSS
   Press bar, Services, Blog preview, Booking CTA,
   Speaking stats, Form row, Newsletter note, Footer extras
═══════════════════════════════════════════════════ */

/* ══════════════════════════════════════
   PRESS / AS SEEN IN
══════════════════════════════════════ */
#press {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 44px 0;
}
.press-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  margin-bottom: 2rem;
}
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.press-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 12px 24px;
  transition: var(--transition);
  cursor: default;
}
.press-logo-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.press-logo-item i {
  font-size: 1.1rem;
  color: var(--gold);
}
.press-logo-item span {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
/* Grant Cardone featured pill — gold border highlight */
.press-logo-featured {
  border-color: rgba(201,168,76,0.4) !important;
  background: rgba(201,168,76,0.07) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.press-logo-featured span {
  color: var(--gold) !important;
  font-weight: 700 !important;
}

/* ══════════════════════════════════════
   SERVICES SNAPSHOT
══════════════════════════════════════ */
#services-snap {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#services-snap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 3rem;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
}
.service-icon i {
  font-size: 1.3rem;
  color: var(--gold);
  transition: color var(--transition-fast);
}
.service-card:hover .service-icon i { color: var(--black); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.9rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.service-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.service-link:hover { gap: 14px; color: var(--gold-light); }
.service-link i { font-size: 0.7rem; }

.services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ══════════════════════════════════════
   ABOUT ACTIONS
══════════════════════════════════════ */
.about-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   SPEAKING STATS
══════════════════════════════════════ */
.speaking-stats {
  display: flex;
  gap: 32px;
  margin: 2rem 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.speaking-stat { text-align: left; }
.s-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.s-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ══════════════════════════════════════
   BLOG PREVIEW
══════════════════════════════════════ */
#blog-preview {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#blog-preview::after {
  content: 'BLOG';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255,255,255,0.015);
  pointer-events: none;
  letter-spacing: 0.05em;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 3rem;
}

/* Featured blog card */
.blog-card--featured {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card--featured:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.blog-card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.blog-card--featured .blog-card-img-wrap {
  height: 300px;
}
.blog-card--small .blog-card-img-wrap {
  height: 160px;
}
.blog-card-img-wrap img {
  transition: transform 0.7s ease;
  object-position: center top;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.06); }

.blog-card-category {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 1;
}

.blog-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card--small .blog-card-body { padding: 18px 20px 20px; }

.blog-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 0.8rem;
}
.blog-card-meta span {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card-meta i { color: var(--gold); font-size: 0.65rem; }

.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.blog-card--small .blog-card-body h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.blog-card-body h3 a { transition: color var(--transition-fast); }
.blog-card-body h3 a:hover { color: var(--gold); }

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  flex: 1;
}

.blog-read-more {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
  margin-top: auto;
}
.blog-read-more:hover { gap: 14px; }

/* Small blog cards sidebar */
.blog-preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-card--small {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  flex: 1;
}
.blog-card--small:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.blog-preview-cta {
  text-align: center;
}

/* ══════════════════════════════════════
   BOOKING CTA
══════════════════════════════════════ */
#booking {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}
.booking-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: saturate(0.2) brightness(0.4);
}
.booking-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,9,0.85) 0%,
    rgba(9,9,9,0.78) 100%
  );
}
.booking-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.booking-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}
.booking-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.booking-option {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.booking-option:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-8px);
}
.booking-option--featured {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.booking-option--featured:hover { transform: translateY(-14px); }

.booking-option-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.booking-option-icon {
  width: 68px; height: 68px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}
.booking-option:hover .booking-option-icon,
.booking-option--featured .booking-option-icon {
  background: var(--gold);
}
.booking-option-icon i {
  font-size: 1.4rem;
  color: var(--gold);
  transition: color var(--transition-fast);
}
.booking-option:hover .booking-option-icon i,
.booking-option--featured .booking-option-icon i { color: var(--black); }

.booking-option h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.booking-option p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

/* ══════════════════════════════════════
   CONTACT FORM ROW
══════════════════════════════════════ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ══════════════════════════════════════
   FOOTER EXTRAS
══════════════════════════════════════ */
.newsletter-note {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.25) !important;
  margin-top: 10px !important;
  font-style: italic;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   SHARED PAGE HEADER (for blog, services)
══════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 100px;
  background: var(--charcoal);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-options { grid-template-columns: 1fr; max-width: 400px; }
  .booking-option--featured { transform: none; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .blog-preview-sidebar { flex-direction: row; }
  .blog-card--small { flex: 1; }
}

/* ══════════════════════════════════════
   CREDENTIALS / EEAT TRUST SECTION
══════════════════════════════════════ */
#credentials {
  background: var(--charcoal);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
  margin-bottom: 3rem;
}
.cred-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cred-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
}
.cred-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.cred-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}
.cred-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  flex: 1;
}
.cred-card p em { color: var(--gold); font-style: italic; }
.cred-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: auto;
  align-self: flex-start;
}

/* Trust bar */
.cred-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
}
.cred-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.cred-trust-item i { color: var(--gold); font-size: 0.9rem; }
.cred-trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(201,168,76,0.2);
}

@media (max-width: 900px) {
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-trust-divider { display: none; }
  .cred-trust-bar { gap: 0.5rem; }
}
@media (max-width: 600px) {
  .cred-grid { grid-template-columns: 1fr; }
  .cred-trust-item { padding: 0.4rem 1rem; }
}
#podcast {
  background: var(--off-black);
  padding: clamp(50px, 6vw, 80px) 0;
}
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: stretch;
}
@media (max-width: 900px) { .podcast-grid { grid-template-columns: 1fr; } }

/* Left column: featured card + TikTok stacked */
.podcast-left-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

/* TikTok item — inherits .podcast-item styles, sits under featured card */
.podcast-item-tiktok {
  margin-top: 0;
  border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.1);
  flex-shrink: 0;
  flex: 0 0 auto;
}

/* ── Photo strip: 2 images side by side ── */
.podcast-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  flex-shrink: 0;
}
.podcast-photo-cell {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.podcast-photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.podcast-photo-cell:hover img { transform: scale(1.05); }
.podcast-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(to top, rgba(9,9,9,0.85) 0%, transparent 100%);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Pull quote card ── */
.podcast-quote-card {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}
.podcast-quote-icon {
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0.7;
}
.podcast-quote-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}
.podcast-quote-source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Featured */
.podcast-featured {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.podcast-featured:hover { border-color: rgba(201,168,76,0.4); }
.podcast-featured-img {
  position: relative;
  overflow: hidden;
}
.podcast-featured-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.podcast-featured:hover .podcast-featured-img img { transform: scale(1.04); }
.podcast-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  pointer-events: none;
  padding-left: 4px;
}
.podcast-featured:hover .podcast-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.podcast-featured-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.podcast-featured-body .btn-ghost {
  margin-top: auto;
  align-self: flex-start;
}
.podcast-featured-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  margin: .75rem 0;
  line-height: 1.35;
}
.podcast-featured-body p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.podcast-meta {
  display: flex; gap: 1.25rem;
  font-size: .78rem; color: var(--grey);
  margin-bottom: 1.5rem;
}
.podcast-meta span { display: flex; align-items: center; gap: .35rem; }

/* Platform badge */
.podcast-platform-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 2px;
  font-weight: 700;
}
.podcast-platform-badge.small { font-size: .6rem; padding: .25rem .7rem; }

/* List */
.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
}
.podcast-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.1rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: none;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  border-radius: 0;
  transition: border-color 0.25s, background 0.25s;
  flex: 1;
}
.podcast-list .podcast-item:last-child {
  border-bottom: none;
}
.podcast-list .podcast-item + .podcast-item {
  border-top: none;
  margin-top: 0;
}
.podcast-item:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}
.podcast-item-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.podcast-item-body { flex: 1; }
.podcast-item-body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin: .5rem 0 .4rem;
  line-height: 1.3;
}
.podcast-item-body p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: .5rem;
}
.podcast-item-meta {
  font-size: .75rem; color: var(--grey);
  display: flex; gap: 1rem;
}
.podcast-item-meta span { display: flex; align-items: center; gap: .3rem; }

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

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .press-logos { gap: 10px; }
  .press-logo-item { padding: 10px 16px; }
  .speaking-stats { gap: 20px; }
  .blog-preview-sidebar { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .services-cta { flex-direction: column; align-items: center; }
  .podcast-item { flex-direction: column; }
}

@media (max-width: 480px) {
  .booking-options { grid-template-columns: 1fr; }
  .press-logos { justify-content: center; }
}

/* ════════════════════════════════════════════
   INSTAGRAM / SOCIAL WALL SECTION
════════════════════════════════════════════ */
#social {
  background: var(--black);
  overflow: hidden;
  padding-bottom: 0;
}

/* ── Top Header ── */
.social-wall-header {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.social-wall-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.social-wall-brand {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  min-width: 280px;
}
.social-wall-ig-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 20px rgba(220,39,67,0.35));
  transition: transform 0.3s, filter 0.3s;
}
.social-wall-ig-logo:hover {
  transform: scale(1.08) rotate(-5deg);
  filter: drop-shadow(0 6px 28px rgba(220,39,67,0.55));
}
.social-wall-ig-logo svg { width: 100%; height: 100%; }
.social-wall-info { flex: 1; }
.social-wall-handle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}
.social-wall-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.social-wall-info h2 em { color: var(--gold); font-style: italic; }
.social-wall-info p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 420px;
}

/* Stats */
.social-wall-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.sw-stat {
  text-align: center;
}
.sw-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.sw-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}
.sw-follow-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* ── Scrolling Posts ── */
.ig-live-feed-wrap {
  padding: 3rem 0 0;
  position: relative;
}

.ig-posts-scroll-track {
  overflow: hidden;
  position: relative;
}
.ig-posts-scroll-track::before,
.ig-posts-scroll-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}
.ig-posts-scroll-track::before {
  left: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}
.ig-posts-scroll-track::after {
  right: 0;
  background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

.ig-posts-row {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem 0 1.5rem;
  width: max-content;
  animation: igScroll 55s linear infinite;
  will-change: transform;
}
.ig-posts-row:hover { animation-play-state: paused; }

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

/* Post Card */
.ig-post-card {
  width: 280px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ig-post-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

/* Image area */
.ig-post-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.ig-post-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.ig-post-card:hover .ig-post-img-wrap img { transform: scale(1.07); }

/* Overlay */
.ig-post-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.ig-post-card:hover .ig-post-overlay { opacity: 1; }

/* Type badges */
.ig-reel-badge,
.ig-carousel-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}
.ig-post-reel .ig-reel-badge { background: rgba(220,39,67,0.8); }

/* Like/comment row */
.ig-post-actions {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 600;
}
.ig-post-actions span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.ig-post-actions .fa-heart { color: #ff4d6d; }

/* Caption */
.ig-post-caption {
  padding: 0.9rem 1rem;
}
.ig-post-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}
.ig-post-caption p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Follow Strip ── */
.ig-follow-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem 0;
  margin-top: 1rem;
}
.ig-follow-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-platform-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ig-platform-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  color: var(--white);
  transition: all 0.25s;
  font-size: 1.15rem;
}
.ig-platform-link > div {
  display: flex;
  flex-direction: column;
}
.ig-platform-link strong {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}
.ig-platform-link span:not(.follow-badge) {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
}
.follow-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  margin-left: auto;
  white-space: nowrap;
}

/* Platform hover colors */
.ig-platform-link.instagram:hover {
  background: linear-gradient(135deg, rgba(240,148,51,0.15), rgba(220,39,67,0.15), rgba(188,24,136,0.15));
  border-color: rgba(220,39,67,0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220,39,67,0.2);
}
.ig-platform-link.instagram i { 
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ig-platform-link.facebook:hover {
  border-color: rgba(24,119,242,0.5);
  background: rgba(24,119,242,0.1);
  transform: translateY(-3px);
}
.ig-platform-link.facebook i { color: #1877f2; }
.ig-platform-link.youtube:hover {
  border-color: rgba(255,0,0,0.5);
  background: rgba(255,0,0,0.1);
  transform: translateY(-3px);
}
.ig-platform-link.youtube i { color: #ff0000; }
.ig-platform-link.amazon:hover {
  border-color: rgba(255,153,0,0.5);
  background: rgba(255,153,0,0.1);
  transform: translateY(-3px);
}
.ig-platform-link.amazon i { color: #ff9900; }
.ig-platform-link.tiktok:hover {
  border-color: rgba(0,242,234,0.5);
  background: rgba(0,242,234,0.08);
  transform: translateY(-3px);
}
.ig-platform-link.tiktok i { color: #00f2ea; }

/* Behold.so widget override styles */
behold-widget {
  --behold-font-family: var(--font-body);
  --behold-border-radius: 6px;
  --behold-gap: 1.25rem;
}

/* Responsive */
@media (max-width: 900px) {
  .social-wall-top { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .social-wall-stats { justify-content: flex-start; }
  .ig-platform-links { gap: 0.75rem; }
  .ig-platform-link { padding: 0.75rem 1rem; font-size: 1rem; }
}
@media (max-width: 600px) {
  .ig-post-card { width: 240px; }
  .ig-platform-links { flex-direction: column; width: 100%; }
  .ig-platform-link { width: 100%; justify-content: flex-start; border-radius: 8px; }
  .social-wall-brand { flex-direction: column; align-items: flex-start; }
}
