/* =============================================
   STREET TALK WITH NOMSTAR — Complete Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito:wght@300;400;500;600;700&display=swap');

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

/* VARIABLES */
:root {
  --white:        #FFFFFF;
  --warm:         #FAF8F5;
  --warm2:        #F3EFE9;
  --warm3:        #EAE4DC;
  --purple:       #6B2FA0;
  --purple-light: #9B67CC;
  --purple-pale:  #F0E8F8;
  --ink:          #1E1218;
  --ink-mid:      #5C4F58;
  --ink-light:    #9C8F98;
  --border:       #E4DDD8;
  --gold:         #C8943A;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Nunito', sans-serif;
  --nav-height:   68px;
}

/* BASE */
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(40px, 5vw, 68px); letter-spacing: -1.5px; }
h2 { font-size: clamp(30px, 3.5vw, 50px); letter-spacing: -1px; }
h3 { font-size: clamp(22px, 2.5vw, 34px); }
h4 { font-size: 19px; }
p  { font-size: 15px; line-height: 1.8; color: var(--ink-mid); }

/* SHARED */
.page-label {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--purple); background: var(--purple-pale);
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.section-divider { height: 1px; background: var(--border); margin: 0 60px; }

.btn-purple {
  display: inline-block; background: var(--purple); color: white;
  padding: 13px 30px; border-radius: 30px; font-family: var(--font-body);
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-purple:hover { background: var(--purple-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,47,160,0.25); }

.btn-ghost {
  display: inline-block; background: transparent; color: var(--purple);
  padding: 13px 22px; border-radius: 30px; font-family: var(--font-body);
  font-size: 14px; font-weight: 700; border: 2px solid var(--purple); cursor: pointer; transition: background 0.2s;
}
.btn-ghost:hover { background: var(--purple-pale); }

.btn-white {
  display: inline-block; background: white; color: var(--ink);
  padding: 13px 28px; border-radius: 30px; font-family: var(--font-body);
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  transition: background 0.2s, color 0.2s; white-space: nowrap; flex-shrink: 0;
}
.btn-white:hover { background: var(--purple-pale); color: var(--purple); }

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px; height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 34px; width: auto; }
.nav-logo-text { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--ink); }
.nav-logo-text em { font-style: normal; color: var(--purple); }

.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 600; color: var(--ink-mid); padding: 8px 14px; border-radius: 20px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); background: var(--purple-pale); }
.nav-links .nav-cta { background: var(--purple); color: white; padding: 9px 18px; }
.nav-links .nav-cta:hover { background: var(--purple-light); color: white; }

/* ===================== HOME ===================== */
#home { padding-top: var(--nav-height); background: var(--warm); }

.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Fixed height — same proportion as a 16:9 video at half viewport width */
  height: calc(100vh - var(--nav-height));
  max-height: 700px;
}

.home-hero-left {
  padding: 52px 40px 52px 60px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.home-hero-left h1 { margin-bottom: 16px; }
.home-hero-left h1 span { color: var(--purple); }

.tagline { font-size: 15px; line-height: 1.75; color: var(--ink-mid); max-width: 420px; margin-bottom: 24px; }

.reach-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border); border-radius: 40px;
  padding: 9px 18px 9px 12px; margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(107,47,160,0.08); width: fit-content;
}
.reach-dot { width: 9px; height: 9px; background: var(--purple); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
.reach-badge span { font-size: 13px; font-weight: 700; color: var(--ink); }
.reach-badge span em { font-style: normal; color: var(--purple); }

.hero-btns { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.hero-logo-watermark img { height: 38px; width: auto; opacity: 0.65; }

/* Hero right — video/image fills the column exactly */
.home-hero-right {
  position: relative; background: var(--ink); overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  z-index: 1;
}
/* Fallback — shown only if video src is missing/fails */
.hero-photo-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.stat-float {
  position: absolute; background: white; border-radius: 10px;
  padding: 10px 16px; box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  z-index: 3; text-align: center;
}
.stat-float .num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--purple); line-height: 1; }
.stat-float .lbl { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); margin-top: 3px; }
.stat-float.sf1 { top: 14%; right: 5%; }
.stat-float.sf2 { bottom: 18%; left: 5%; }
.stat-float.sf3 { bottom: 34%; right: 5%; }

.intro-strip {
  background: var(--purple); padding: 24px 60px;
  display: flex; align-items: center; gap: 28px;
}
.intro-strip-logo { flex-shrink: 0; }
.intro-strip-logo img { height: 44px; width: auto; }
.intro-strip p { font-size: 14px; color: rgba(255,255,255,0.88); line-height: 1.65; }
.intro-strip p strong { color: white; font-weight: 700; }

/* ===================== ABOUT ===================== */
#about { padding: 90px 60px; background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center; /* image and text same height */
  margin-top: 36px;
}

/* Image constrained to match text column height */
.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  /* Let the image be as tall as the text, not taller */
  align-self: stretch;
  max-height: 560px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
}
.about-logo-overlay {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.92); border-radius: 8px; padding: 8px 12px;
  backdrop-filter: blur(8px);
}
.about-logo-overlay img { height: 30px; width: auto; }

.about-content h2 { margin-bottom: 20px; }
.about-content h2 em { font-style: italic; color: var(--purple); }
.about-content p { margin-bottom: 16px; }

.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.highlight-item { background: var(--warm); border-radius: 10px; padding: 18px; border: 1px solid var(--border); }
.highlight-item .hi-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--purple); line-height: 1; margin-bottom: 4px; }
.highlight-item .hi-label { font-size: 11px; font-weight: 600; color: var(--ink-light); }

/* ===================== TEAM ===================== */
#team { padding: 90px 60px; background: var(--warm); }

.team-intro { max-width: 540px; margin-bottom: 44px; }
.team-intro h2 { margin-bottom: 10px; }

.host-card {
  background: var(--white); border-radius: 16px; padding: 36px;
  display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: center;
  margin-bottom: 28px; border: 1px solid var(--border); position: relative; overflow: hidden;
}
.host-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--purple); }

.host-photo-wrap { border-radius: 12px; overflow: hidden; }
.host-photo-wrap img {
  width: 100%;
  height: 280px; /* Fixed height — not full body */
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
}

.host-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--purple); color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 10px; }
.host-info h3 { margin-bottom: 4px; }
.host-title { font-size: 12px; font-weight: 700; color: var(--purple); margin-bottom: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.host-info p { font-size: 14px; line-height: 1.8; }
.host-logo { margin-top: 20px; }
.host-logo img { height: 34px; width: auto; opacity: 0.7; }

/* Team grid — 4 cards, images contained and consistent */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.team-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(107,47,160,0.1); }

.team-photo {
  width: 100%;
  height: 180px; /* Fixed, controlled height — no overflow */
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}
.team-card:hover .team-photo img { transform: scale(1.04); }

.team-card-body { padding: 16px 16px 20px; }
.team-card h4 { font-size: 16px; margin-bottom: 4px; }
.team-card .role { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; }
.team-card p { font-size: 12px; line-height: 1.65; color: var(--ink-light); }

/* ===================== EPISODES ===================== */
#episodes { padding: 90px 60px; background: var(--white); }

.episodes-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }

.ep-row-label { font-size: 13px; font-weight: 700; color: var(--ink-mid); margin-bottom: 16px; margin-top: 36px; }
.ep-row-label:first-of-type { margin-top: 0; }

.episodes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 4px; }

.episode-card { background: var(--warm); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; }
.episode-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(107,47,160,0.1); }

.episode-thumb { aspect-ratio: 16/9; background: var(--warm2); position: relative; overflow: hidden; }
.episode-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.episode-info { padding: 16px 18px; }
.ep-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple); margin-bottom: 5px; }
.episode-info h4 { font-size: 15px; line-height: 1.3; margin-bottom: 5px; }
.episode-info p { font-size: 12px; line-height: 1.6; }

.episodes-cta { text-align: center; margin-top: 48px; }
.episodes-cta p { margin-bottom: 14px; }

/* ===================== PARTNERSHIPS ===================== */
#partnerships { padding: 90px 60px; background: var(--warm); }

.partnerships-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.partnerships-logo { margin-bottom: 16px; }
.partnerships-logo img { height: 56px; width: auto; margin: 0 auto; }
.partnerships-header h2 { margin-bottom: 12px; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-bottom: 56px; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.stat-block { background: var(--white); padding: 28px 20px; text-align: center; }
.stat-block .platform { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.stat-block .big-num { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--purple); line-height: 1; margin-bottom: 4px; }
.stat-block .sub { font-size: 11px; color: var(--ink-light); }

.demo-section { background: var(--white); border-radius: 14px; padding: 40px; margin-bottom: 56px; border: 1px solid var(--border); }
.demo-section h3 { margin-bottom: 24px; }
.demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.demo-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); font-family: var(--font-body); }
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.bar-label { font-size: 12px; color: var(--ink); min-width: 62px; }
.bar-track { flex: 1; height: 5px; background: var(--warm2); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--purple), var(--purple-light)); border-radius: 3px; }
.bar-pct { font-size: 11px; font-weight: 700; color: var(--purple); min-width: 36px; text-align: right; }

.packages-heading { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 24px; text-align: center; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 56px; }
.pkg-card { background: var(--white); border-radius: 14px; padding: 28px 24px; border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; }
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(107,47,160,0.1); }
.pkg-card.featured { background: var(--purple); border-color: var(--purple); }
.pkg-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.pkg-card.featured .pkg-badge { color: rgba(255,255,255,0.6); }
.pkg-card h4 { margin-bottom: 8px; }
.pkg-card.featured h4 { color: white; }
.pkg-card p { font-size: 13px; line-height: 1.65; margin-bottom: 18px; }
.pkg-card.featured p { color: rgba(255,255,255,0.7); }
.pkg-features { display: flex; flex-direction: column; gap: 9px; }
.pkg-features li { font-size: 13px; color: var(--ink-mid); display: flex; gap: 8px; align-items: flex-start; }
.pkg-card.featured .pkg-features li { color: rgba(255,255,255,0.82); }
.pkg-features li::before { content: '✓'; color: var(--purple); font-weight: 700; flex-shrink: 0; }
.pkg-card.featured .pkg-features li::before { color: rgba(255,255,255,0.55); }

.mediakit-banner { background: var(--ink); border-radius: 14px; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-bottom: 56px; }
.mediakit-banner h3 { color: white; margin-bottom: 6px; }
.mediakit-banner p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 420px; }

.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.contact-logo { margin-bottom: 16px; }
.contact-logo img { height: 40px; width: auto; }
.contact-left h3 { margin-bottom: 12px; }
.contact-left p { margin-bottom: 20px; }
.contact-detail { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-mid); }
.contact-detail strong { color: var(--ink); }

.contact-form { background: var(--white); border-radius: 14px; padding: 28px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 13px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); }
.form-field input, .form-field textarea, .form-field select { background: var(--warm); border: 1px solid var(--border); color: var(--ink); padding: 11px 13px; font-family: var(--font-body); font-size: 14px; border-radius: 7px; outline: none; transition: border-color 0.2s; resize: none; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--purple); }
.form-field textarea { height: 90px; }
.form-submit { background: var(--purple); color: white; border: none; padding: 13px; font-family: var(--font-body); font-size: 14px; font-weight: 700; border-radius: 30px; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--purple-light); }
.form-success { display: none; text-align: center; font-size: 14px; font-weight: 600; color: var(--purple); padding: 10px; background: var(--purple-pale); border-radius: 7px; }
.form-success.show { display: block; }

/* ===================== FOOTER ===================== */
footer { background: var(--ink); padding: 44px 60px 24px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo-img { height: 40px; width: auto; margin-bottom: 4px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 18px; align-items: center; }
.footer-links a { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { font-size: 12px; display: flex; justify-content: space-between; color: rgba(255,255,255,0.3); }

/* ===================== ANIMATIONS ===================== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===================== TABLET ===================== */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .section-divider { margin: 0 28px; }

  .home-hero { grid-template-columns: 1fr; height: auto; max-height: none; }
  .home-hero-left { padding: 52px 32px 36px 40px; }
  .home-hero-right { height: 420px; }
  .stat-float.sf3 { display: none; }
  .intro-strip { padding: 22px 40px; }

  #about { padding: 80px 40px; }
  .about-grid { gap: 40px; }

  #team { padding: 80px 40px; }
  .host-card { grid-template-columns: 200px 1fr; gap: 28px; padding: 32px; }
  .host-photo-wrap img { height: 240px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  #episodes { padding: 80px 40px; }
  .episodes-intro { grid-template-columns: 1fr; gap: 10px; }
  .episodes-grid { grid-template-columns: repeat(2, 1fr); }

  #partnerships { padding: 80px 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .demo-grid { grid-template-columns: 1fr; gap: 24px; }
  .packages-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .mediakit-banner { flex-direction: column; text-align: center; padding: 32px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }

  footer { padding: 40px 40px 20px; }
}

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  nav { padding: 0 20px; height: 60px; }
  .nav-logo-img { height: 26px; }
  .nav-logo-text { font-size: 14px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 60px; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 14px; gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 11px 14px; border-radius: 8px; }
  .nav-links .nav-cta { text-align: center; border-radius: 8px; margin-top: 6px; }

  .home-hero { grid-template-columns: 1fr; height: auto; }
  .home-hero-left { padding: 40px 20px 28px; }
  .home-hero-right { height: 280px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-purple, .btn-ghost { text-align: center; }
  .stat-float { padding: 8px 12px; }
  .stat-float .num { font-size: 16px; }
  .stat-float.sf1 { top: 8%; right: 4%; }
  .stat-float.sf2 { bottom: 8%; left: 3%; }
  .stat-float.sf3 { display: none; }

  .intro-strip { padding: 18px 20px; flex-wrap: wrap; gap: 12px; }
  .intro-strip-logo img { height: 32px; }

  #about { padding: 56px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 24px; }
  .about-image { max-height: 320px; }
  .about-highlights { grid-template-columns: 1fr 1fr; gap: 10px; }

  #team { padding: 56px 20px; }
  .host-card { grid-template-columns: 1fr; padding: 24px 18px; gap: 20px; }
  .host-photo-wrap img { height: 200px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .team-photo { height: 140px; }

  #episodes { padding: 56px 20px; }
  .episodes-intro { grid-template-columns: 1fr; gap: 8px; margin-bottom: 28px; padding-bottom: 24px; }
  .episodes-grid { grid-template-columns: 1fr; gap: 14px; }

  #partnerships { padding: 56px 20px; }
  .partnerships-logo img { height: 40px; }
  .stats-row { grid-template-columns: 1fr 1fr; margin-bottom: 36px; }
  .stat-block { padding: 20px 12px; }
  .stat-block .big-num { font-size: 28px; }
  .demo-section { padding: 22px 16px; margin-bottom: 36px; }
  .packages-grid { grid-template-columns: 1fr; max-width: 100%; margin-bottom: 36px; }
  .mediakit-banner { padding: 24px 18px; margin-bottom: 36px; gap: 18px; }
  .btn-white { width: 100%; text-align: center; }
  .contact-wrap { gap: 24px; }
  .contact-form { padding: 20px 14px; }
  .form-row { grid-template-columns: 1fr; }

  .section-divider { margin: 0 20px; }
  footer { padding: 32px 20px 18px; }
  .footer-top { flex-direction: column; gap: 18px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ===================== SMALL MOBILE ===================== */
@media (max-width: 480px) {
  .about-highlights { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-block { border-bottom: 1px solid var(--border); }
  .stat-block:last-child { border-bottom: none; }
  .home-hero-right { height: 220px; }
}


/* --- Logo fixes --- */
/* Nav logo — small, clean, no background */
.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

/* Hero watermark logo — black, visible on warm background */
.hero-logo-watermark img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}

/* Intro strip logo — white version on purple */
.intro-strip-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* About overlay logo */
.about-logo-overlay img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Host card logo */
.host-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
}

/* Partnerships header logo */
.partnerships-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* Contact section logo */
.contact-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Footer logo — fix stretching, white version */
.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain; /* prevents stretching */
  max-width: 220px;
  margin-bottom: 6px;
}

/* --- Hero photo — zoom out to show more of her --- */
.hero-video,
.hero-photo {
  object-position: center center; /* changed from top center */
}

/* --- About image — zoom out to show full seated pose --- */
.about-image img {
  object-fit: contain;        /* show full image, no cropping */
  object-position: center;
  background: var(--warm2);   /* fill any gaps with warm colour */
}

/* --- Team card images — contained, no overflow --- */
.team-photo {
  height: 160px;
}
.team-photo img {
  object-fit: contain;        /* show full image */
  object-position: center;
  background: var(--warm2);
}

/* --- Collab brands section --- */
.collabs-section {
  margin-bottom: 56px;
}

.brands-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.brand-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 200px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.brand-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(107,47,160,0.1);
}
.brand-item img {
  width: 120px;
  height: 100px;
  object-fit: contain;
  border-radius: 6px;
}
.brand-item span {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

/* Mobile collabs */
@media (max-width: 768px) {
  .brands-grid { gap: 14px; }
  .brand-item { width: 140px; padding: 14px 16px; }
  .brand-item img { width: 90px; height: 75px; }
  .footer-logo-img { height: 40px; max-width: 160px; }
}

/* --- Logo — 1.5x bigger across the board --- */
.nav-logo-img              { height: 48px; }
.hero-logo-watermark img   { height: 78px; }
.intro-strip-logo img      { height: 78px; }
.about-logo-overlay img    { height: 54px; }
.host-logo img             { height: 66px; }
.partnerships-logo img     { height: 108px; }
.contact-logo img          { height: 72px; }
.footer-logo-img           { height: 78px; max-width: 280px; }

/* --- About image — fill card fully, no side gaps --- */
.about-image {
  background: var(--white); /* match site background */
}
.about-image img {
  object-fit: cover;            /* back to cover — fills the space */
  object-position: center 10%;  /* show from slightly above centre so face visible */
}

/* --- Team card images — back to cover, no gaps --- */
.team-photo {
  height: 180px;
  background: var(--warm2);
}
.team-photo img {
  object-fit: cover;
  object-position: center top;
}

/* --- Brand cards — bigger --- */
.brand-item {
  width: 240px;
  padding: 24px 28px;
}
.brand-item img {
  width: 160px;
  height: 130px;
  object-fit: contain;
}
.brand-item span {
  font-size: 13px;
}

/* --- Hero video controls --- */
.hero-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-btn {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 14px;
}
.hero-btn:hover {
  background: rgba(255,255,255,0.32);
}

/* Mobile logo scaling */
@media (max-width: 768px) {
  .nav-logo-img            { height: 36px; }
  .hero-logo-watermark img { height: 56px; }
  .intro-strip-logo img    { height: 52px; }
  .about-logo-overlay img  { height: 40px; }
  .host-logo img           { height: 48px; }
  .partnerships-logo img   { height: 72px; }
  .contact-logo img        { height: 52px; }
  .footer-logo-img         { height: 56px; max-width: 200px; }
  .brand-item              { width: 160px; padding: 16px 18px; }
  .brand-item img          { width: 110px; height: 90px; }
}

/* =============================================
   IMPACT SECTION — append to bottom of style.css
   ============================================= */

#impact {
  padding: 100px 60px;
  background: var(--white);
}

/* Header */
.impact-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.impact-header h2 { margin-bottom: 16px; }
.impact-header h2 em { font-style: italic; color: var(--purple); }
.impact-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-mid);
}

/* Three pillars */
.impact-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 64px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.impact-pillar {
  background: var(--warm);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.impact-pillar.featured {
  background: var(--purple);
}

.pillar-icon { font-size: 28px; }

.impact-pillar h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.impact-pillar.featured h4 { color: white; }

.impact-pillar p { font-size: 14px; line-height: 1.75; }
.impact-pillar.featured p { color: rgba(255,255,255,0.8); }

/* Photo gallery */
.impact-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 210px 210px;
  grid-auto-rows: 210px;
  gap: 12px;
  margin-bottom: 64px;
}

/* Large image spans 2 columns and 2 rows */
.gallery-item.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item.gallery-large img { object-position: center top; }

.gallery-item:hover img { transform: scale(1.04); }

/* Caption overlay */
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,18,24,0.85) 0%, transparent 100%);
  padding: 20px 16px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-item.gallery-large .gallery-caption { transform: translateY(0); padding: 32px 24px 24px; }

.gallery-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  background: var(--purple);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.gallery-caption p {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

/* CTA block */
.impact-cta {
  background: var(--warm);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 56px;
  text-align: center;
}
.impact-cta-inner { max-width: 600px; margin: 0 auto; }
.impact-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}
.impact-cta p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 28px;
}

/* Also update the nav to include Impact link */
/* Add this to your nav links in index.html:
   <li><a href="#impact">Impact</a></li>
   Place it between Episodes and the Partner CTA */

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  #impact { padding: 80px 40px; }
  .impact-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 180px 180px;
    grid-auto-rows: 180px;
  }
  .gallery-item.gallery-large { grid-column: span 2; }
}

@media (max-width: 768px) {
  #impact { padding: 60px 20px; }

  .impact-pillars { grid-template-columns: 1fr; }
  .impact-pillar { padding: 28px 20px; }

  .impact-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
    grid-auto-rows: 160px;
    gap: 8px;
  }
  .gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item.gallery-large .gallery-caption { transform: translateY(100%); }
  .gallery-item:hover .gallery-caption { transform: translateY(0); }

  .impact-cta { padding: 36px 20px; }
}

@media (max-width: 480px) {
  .impact-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 200px;
    grid-auto-rows: 200px;
  }
  .gallery-item.gallery-large { grid-column: span 1; grid-row: span 1; }
  .gallery-caption { transform: translateY(0) !important; }
}

/* Reel thumb — taller aspect ratio for vertical reels */
.reel-thumb {
  aspect-ratio: 9/16;
  max-height: 340px;
  background: var(--ink);
}

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

/* Watch full interview button */
.watch-full-btn {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  background: var(--purple-pale);
  padding: 7px 14px;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}
.watch-full-btn:hover {
  background: var(--purple);
  color: white;
}

.watch-full-btn--disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
}

/* Placeholder card */
.reel-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm2);
  border: 2px dashed var(--border);
}

.reel-thumb--placeholder .placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.placeholder-icon {
  font-size: 32px;
  opacity: 0.2;
  color: var(--purple);
}
.reel-thumb--placeholder p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* Impact extra text placeholder */
.impact-extra:empty { display: none; }
.impact-extra {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-mid);
}

/* Mobile reel adjustments */
@media (max-width: 768px) {
  .reel-thumb {
    aspect-ratio: 9/16;
    max-height: 260px;
  }
}

/* ---- IMPACT GALLERY: 3 images, equal height, proper alignment ---- */
.impact-gallery--three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 320px;
  gap: 12px;
  margin-bottom: 48px;
  /* Reset any conflicting rules */
  max-height: none;
}

/* All three images same size, same row */
.impact-gallery--three .gallery-item {
  grid-column: auto;
  grid-row: auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* Large item is NOT large anymore — all three equal */
.impact-gallery--three .gallery-large {
  grid-column: auto;
  grid-row: auto;
}

.impact-gallery--three .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: unset;
  display: block;
}

/* Caption always visible on all three */
.impact-gallery--three .gallery-caption {
  transform: translateY(0);
}

/* ---- IMPACT CTA — tighter, less overwhelming ---- */
.impact-cta {
  background: var(--warm);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 40px 48px;
  text-align: center;
  margin-top: 0;
}
.impact-cta-inner {
  max-width: 540px;
  margin: 0 auto;
}
.impact-cta h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 12px;
}
.impact-cta p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ---- REEL CARDS — consistent height, proper alignment ---- */

/* Episodes grid for reels: all cards same height */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start; /* top align so cards don't stretch */
}

.reel-card {
  display: flex;
  flex-direction: column;
}

/* Reel thumb: fixed height portrait ratio */
.reel-thumb {
  position: relative;
  width: 100%;
  padding-top: 177%; /* 9:16 aspect ratio */
  height: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 0; /* card handles radius */
  flex-shrink: 0;
}

.reel-thumb iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Placeholder thumb — same height as real reel */
.reel-thumb--placeholder {
  position: relative;
  width: 100%;
  padding-top: 177%;
  height: 0;
  background: var(--warm2);
  border: 2px dashed var(--border);
}
.reel-thumb--placeholder .placeholder-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
}
.placeholder-icon {
  font-size: 28px;
  opacity: 0.2;
  color: var(--purple);
}
.reel-thumb--placeholder p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* Episode info section below reel */
.reel-card .episode-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.reel-card .episode-info h4 {
  font-size: 15px;
  margin-bottom: 6px;
}
.reel-card .episode-info p {
  font-size: 12px;
  line-height: 1.6;
  flex: 1;
}

/* Watch full button */
.watch-full-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  background: var(--purple-pale);
  padding: 7px 14px;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}
.watch-full-btn:hover {
  background: var(--purple);
  color: white;
}
.watch-full-btn--disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .impact-gallery--three {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 260px;
  }
}

@media (max-width: 768px) {
  .impact-gallery--three {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .impact-gallery--three .gallery-item {
    height: 220px;
  }
  .impact-cta { padding: 28px 20px; }

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

/* Reel cards — same size as original video cards */
.reel-thumb {
  padding-top: 56.25%; /* back to 16:9 ratio, same as before */
}

.reel-thumb--placeholder {
  padding-top: 56.25%;
}

/* Impact gallery — fix GBV crop, show more of image */
.impact-gallery--three {
  grid-template-rows: 280px;
}

.impact-gallery--three .gallery-item img {
  object-position: center top;
}

/* Impact CTA — narrower, less wide */
.impact-cta {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 36px 40px;
}

