/* ============================================================
   BETWEEN PICKUPS — v2 Design System
   ============================================================
   Refined: smaller, more elegant typography. Logo recurs as a
   side marker. Real podcast copy throughout.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bowlby+One&family=Familjen+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&display=swap');

:root {
  --bp-cyan: #16BFD9;
  --bp-cyan-deep: #0DA5BD;
  --bp-pink: #F0609F;
  --bp-pink-soft: #F49AC1;
  --bp-pink-deep: #D04686;
  --bp-cream: #F8EFD7;
  --bp-cream-2: #FBF6E6;
  --bp-ink: #1B1B26;
  --bp-ink-soft: #3A3A48;
  --bp-ink-mute: #6A6A78;

  --bp-radius-sm: 12px;
  --bp-radius: 22px;
  --bp-radius-lg: 36px;

  --bp-display: 'Bowlby One', 'Archivo Black', system-ui, sans-serif;
  --bp-headline: 'Familjen Grotesk', 'Inter', system-ui, sans-serif;
  --bp-body: 'Inter', system-ui, sans-serif;
  --bp-serif: 'Fraunces', Georgia, serif;
}

/* ============= Base ============= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--bp-body);
  font-size: 15px;
  color: var(--bp-ink);
  background: var(--bp-cream-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
strong { font-weight: 700; }

/* ============= Buttons ============= */
.bp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-family: var(--bp-headline);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.005em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.bp-btn:hover { transform: translateY(-1px); }
.bp-btn:active { transform: translateY(0); }

.bp-btn-pink {
  background: var(--bp-pink);
  color: white;
  box-shadow: 0 3px 0 var(--bp-pink-deep);
}
.bp-btn-pink:hover { box-shadow: 0 5px 0 var(--bp-pink-deep); }

.bp-btn-cream {
  background: var(--bp-cream);
  color: var(--bp-ink);
  box-shadow: 0 3px 0 rgba(0,0,0,0.15);
}
.bp-btn-cream:hover { box-shadow: 0 5px 0 rgba(0,0,0,0.2); background: white; }

.bp-btn-ink {
  background: var(--bp-ink);
  color: var(--bp-cream);
  box-shadow: 0 3px 0 #000;
}
.bp-btn-ink:hover { box-shadow: 0 5px 0 #000; }

.bp-btn-sm { padding: 8px 14px; font-size: 12.5px; }
.bp-btn-md { padding: 12px 22px; font-size: 14px; }
.bp-btn-full { width: 100%; justify-content: center; }

/* ============= Logo Marker (the recurring side sticker) ============= */
.bp-marker {
  position: absolute;
  left: 36px;
  top: 30px;
  z-index: 5;
  pointer-events: none;
}
.bp-marker img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 0 #1B1B26)
    drop-shadow(2px 3px 0 rgba(27, 27, 38, 0.85))
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}
.bp-marker-sm { width: 64px; }
.bp-marker-md { width: 110px; }
.bp-marker-lg { width: 140px; }

@media (max-width: 1100px) {
  .bp-marker { left: 20px; }
}

/* ============= Section helpers ============= */
.bp-section-title {
  font-family: var(--bp-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  color: var(--bp-ink);
  text-wrap: balance;
}
.bp-section-title-cream { color: var(--bp-cream); }
.bp-section-title-accent { color: var(--bp-pink); }

.bp-section-eyebrow {
  font-family: var(--bp-headline);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bp-pink-deep);
  margin-bottom: 14px;
}
.bp-section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.bp-section-lede {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--bp-ink-mute);
  max-width: 480px;
  margin: 8px auto 0;
}
.bp-section-lede-cyan {
  color: var(--bp-cream);
  opacity: 0.85;
  font-family: var(--bp-headline);
  letter-spacing: 0.04em;
  font-size: 13px;
  text-transform: uppercase;
}

/* ============= Header ============= */
.bp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(248, 239, 215, 0);
  transition: background 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease;
}
.bp-header.is-scrolled {
  background: rgba(248, 239, 215, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(27, 27, 38, 0.08);
}
.bp-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.bp-header-logo img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 8px;
}
.bp-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  margin-right: 8px;
  font-family: var(--bp-headline);
  font-weight: 500;
  font-size: 14px;
}
.bp-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--bp-ink);
}
.bp-nav a:hover { color: var(--bp-pink-deep); }

/* ============= Hero ============= */
.bp-hero {
  position: relative;
  background: var(--bp-cyan);
  padding: 56px 0 88px;
  overflow: hidden;
}
.bp-hero-grain {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.10) 0, transparent 38%),
    radial-gradient(circle at 85% 75%, rgba(240, 96, 159, 0.15) 0, transparent 50%);
  pointer-events: none;
}
.bp-hero-grid {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.bp-hero-copy { color: var(--bp-cream); }

.bp-display {
  font-family: var(--bp-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin: 16px 0 28px;
  text-wrap: balance;
  color: var(--bp-cream);
}
.bp-display em {
  font-style: italic;
  font-family: var(--bp-serif);
  font-weight: 500;
  color: var(--bp-pink);
  font-size: 0.95em;
}
.bp-display-underline {
  position: relative;
  display: inline-block;
}
.bp-display-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 6px;
  background: var(--bp-pink);
  border-radius: 4px;
  transform: rotate(-1deg);
}

.bp-hero-cta { margin-bottom: 32px; }

.bp-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--bp-headline);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bp-cream);
  opacity: 0.85;
}
.bp-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bp-meta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bp-pink);
  animation: bp-pulse 1.6s ease-in-out infinite;
}
@keyframes bp-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.bp-meta-divider {
  width: 1px; height: 14px;
  background: rgba(248, 239, 215, 0.4);
}

.bp-hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.bp-hero-cover {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: var(--bp-radius);
  overflow: hidden;
  box-shadow:
    0 0 0 4px var(--bp-cream),
    14px 18px 0 var(--bp-pink);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}
.bp-hero-cover:hover { transform: rotate(0deg) scale(1.01); }
.bp-hero-cover img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ============= About / Speech bubble ============= */
.bp-about {
  position: relative;
  background: var(--bp-pink);
  padding: 100px 0 110px;
}
.bp-about-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}
.bp-bubble {
  position: relative;
  background: var(--bp-cream);
  border: 3px solid var(--bp-ink);
  border-radius: 48px;
  padding: 56px 56px 48px;
  box-shadow: 10px 12px 0 rgba(27, 27, 38, 0.85);
}
.bp-bubble-tail {
  position: absolute;
  bottom: -28px;
  left: 90px;
  width: 50px;
  height: 50px;
  background: var(--bp-cream);
  border-right: 3px solid var(--bp-ink);
  border-bottom: 3px solid var(--bp-ink);
  transform: rotate(45deg);
  border-bottom-right-radius: 8px;
}
.bp-bubble-title {
  text-align: center;
  margin-bottom: 24px;
  font-size: clamp(24px, 2.6vw, 36px);
}
.bp-bubble-title-accent {
  color: var(--bp-pink);
}
.bp-bubble-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--bp-ink-soft);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 14px;
  text-wrap: pretty;
}
.bp-bubble-body em {
  font-family: var(--bp-serif);
  font-style: italic;
  font-weight: 500;
}

.bp-pillars-head {
  margin-top: 36px;
  margin-bottom: 18px;
  font-family: var(--bp-display);
  font-size: 18px;
  text-align: center;
  color: var(--bp-ink);
  letter-spacing: 0.01em;
}

.bp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  padding: 24px 0 0;
  border-top: 2px dashed rgba(27, 27, 38, 0.18);
}
.bp-pillar {
  text-align: center;
}
.bp-pillar-label {
  font-family: var(--bp-headline);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--bp-pink-deep);
}
.bp-pillar p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--bp-ink-soft);
  margin: 0;
}

.bp-bubble-stinger {
  font-family: var(--bp-display);
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.2;
  text-align: center;
  color: var(--bp-cream);
  background: var(--bp-ink);
  border-radius: 16px;
  padding: 18px 24px;
  max-width: 440px;
  margin: 0 auto;
}
.bp-bubble-stinger-em {
  color: var(--bp-pink);
}

/* ============= Episodes ============= */
.bp-episodes {
  position: relative;
  background: var(--bp-cyan);
  padding: 88px 0 100px;
}
.bp-episodes-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.bp-ep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.bp-ep-card {
  background: var(--bp-cream);
  border-radius: var(--bp-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 0 rgba(27, 27, 38, 0.85);
}
.bp-ep-card:hover { transform: translateY(-3px); box-shadow: 0 9px 0 rgba(27, 27, 38, 0.85); }
.bp-ep-art {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd;
}
.bp-ep-art img {
  width: 100%; height: 100%; object-fit: cover;
}
.bp-ep-meta {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.bp-ep-topic {
  font-family: var(--bp-headline);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bp-pink-deep);
}
.bp-ep-title {
  font-family: var(--bp-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.05;
  color: var(--bp-ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.bp-ep-body {
  font-size: 13px;
  line-height: 1.5;
  color: var(--bp-ink-mute);
  margin: 4px 0 0;
}

/* ============= Hosts ============= */
.bp-hosts { position: relative; }
.bp-host-block {
  position: relative;
  padding: 96px 0;
}
.bp-host-block-pink { background: var(--bp-pink); }
.bp-host-block-cyan { background: var(--bp-cyan); }
.bp-hosts-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.bp-host-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.bp-host-row-reverse { grid-template-columns: 1.2fr 0.8fr; }
.bp-host-row-reverse .bp-host-portrait { order: 2; }
.bp-host-row-reverse .bp-host-card { order: 1; }

.bp-host-portrait {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--bp-radius);
  overflow: hidden;
  box-shadow:
    0 0 0 4px var(--bp-cream),
    10px 12px 0 var(--bp-ink);
  transform: rotate(-2deg);
  background: #eee;
}
.bp-host-row-reverse .bp-host-portrait { transform: rotate(2deg); }
.bp-host-portrait img {
  width: 100%; height: 100%; object-fit: cover;
}

.bp-host-card {
  background: var(--bp-cream);
  border-radius: var(--bp-radius);
  padding: 40px 44px 36px;
  box-shadow: 6px 8px 0 rgba(27, 27, 38, 0.7);
}
.bp-host-name {
  font-family: var(--bp-display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  color: var(--bp-ink);
  text-align: center;
}
.bp-host-bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--bp-ink-soft);
  margin: 0 0 12px;
  text-wrap: pretty;
}
.bp-host-bio em {
  font-family: var(--bp-serif);
  font-style: italic;
  font-weight: 500;
}
.bp-host-bio strong { color: var(--bp-ink); font-weight: 600; }
.bp-host-mediakit {
  text-align: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(27, 27, 38, 0.18);
}
.bp-host-mediakit a {
  color: var(--bp-pink-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

/* ============= Testimonials ============= */
.bp-testimonials {
  position: relative;
  background: var(--bp-pink);
  padding: 96px 0 110px;
}
.bp-testimonials-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.bp-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.bp-quote-card {
  position: relative;
  background: var(--bp-cream);
  border-radius: var(--bp-radius);
  padding: 32px 26px 26px;
  margin: 0;
  box-shadow: 0 6px 0 rgba(27, 27, 38, 0.7);
  display: flex;
  flex-direction: column;
}
.bp-quote-card:nth-child(1) { transform: rotate(-0.7deg); }
.bp-quote-card:nth-child(2) { transform: translateY(14px) rotate(0.5deg); }
.bp-quote-card:nth-child(3) { transform: rotate(0.4deg); }
.bp-quote-mark {
  margin-bottom: 6px;
  line-height: 0;
}
.bp-quote-card blockquote {
  margin: 0 0 18px;
  font-family: var(--bp-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--bp-ink-soft);
  flex: 1;
  text-wrap: pretty;
}
.bp-quote-card figcaption {
  font-family: var(--bp-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--bp-ink);
}

/* ============= Listen ============= */
.bp-listen {
  position: relative;
  background: var(--bp-cyan);
  padding: 96px 0 110px;
  overflow: hidden;
}
.bp-listen-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.bp-listen-left {
  position: relative;
  display: grid;
  gap: 24px;
}
.bp-contact-bubble {
  background: var(--bp-cream);
  border-radius: 28px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 6px 0 rgba(27, 27, 38, 0.7);
}
.bp-contact-bubble-text {
  font-family: var(--bp-headline);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--bp-ink-soft);
  margin: 12px 0 22px;
  letter-spacing: 0.02em;
}
.bp-contact-bubble-contact {
  font-family: var(--bp-headline);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bp-ink);
  margin: 0;
  padding-top: 18px;
  border-top: 1px dashed rgba(27, 27, 38, 0.18);
}
.bp-contact-bubble-contact a {
  color: var(--bp-pink-deep);
  text-decoration: none;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  display: inline-block;
  margin-top: 4px;
  border-bottom: 2px dotted var(--bp-pink-deep);
}
.bp-listen-photo {
  border-radius: var(--bp-radius);
  overflow: hidden;
  box-shadow: 0 0 0 4px var(--bp-cream), 8px 10px 0 var(--bp-ink);
  transform: rotate(-1.5deg);
}
.bp-listen-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.bp-listen-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--bp-radius-lg);
  padding: 36px 32px 32px;
  box-shadow: 0 8px 0 rgba(27, 27, 38, 0.7);
}
.bp-listen-card-title {
  font-family: var(--bp-display);
  font-size: 24px;
  text-align: center;
  margin: 0 0 20px;
  color: var(--bp-ink);
}
.bp-platforms {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.bp-platform-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bp-cream);
  border-radius: 999px;
  font-family: var(--bp-headline);
  font-weight: 600;
  font-size: 14px;
  color: var(--bp-ink);
  transition: transform 0.15s ease, background 0.15s ease;
}
.bp-platform-pill:hover {
  transform: translateX(4px);
  background: white;
}
.bp-platform-pill > svg:last-child { margin-left: auto; }

.bp-platform-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bp-platform-icon-spotify {
  background: #1DB954;
  flex-direction: column;
  gap: 2px;
}
.bp-platform-icon-spotify span {
  display: block;
  height: 1.5px;
  background: white;
  border-radius: 2px;
}
.bp-platform-icon-spotify span:nth-child(1) { width: 12px; }
.bp-platform-icon-spotify span:nth-child(2) { width: 9px; }
.bp-platform-icon-spotify span:nth-child(3) { width: 6px; }

.bp-platform-icon-apple {
  background: linear-gradient(135deg, #FA72A8, #8B5CF6);
}
.bp-platform-icon-apple::after {
  content: '';
  width: 3px; height: 14px;
  background: white;
  border-radius: 2px;
}

.bp-platform-icon-google {
  background: #4285F4;
}
.bp-platform-icon-google::after {
  content: '';
  width: 9px; height: 9px;
  background: white;
  border-radius: 50%;
}

.bp-listen-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  font-family: var(--bp-headline);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bp-ink-mute);
}
.bp-listen-divider::before,
.bp-listen-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(27, 27, 38, 0.15);
}

.bp-follow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--bp-headline);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bp-ink-soft);
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}

/* ============= Contact ============= */
.bp-contact {
  position: relative;
  background: var(--bp-cream-2);
  padding: 96px 0 100px;
}
.bp-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.bp-contact-lede {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--bp-ink-soft);
  margin: 0 0 28px;
  max-width: 380px;
}
.bp-contact-channels {
  display: grid;
  gap: 20px;
}
.bp-contact-label {
  font-family: var(--bp-headline);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bp-pink-deep);
  margin-bottom: 4px;
}
.bp-contact-value {
  font-family: var(--bp-display);
  font-size: 17px;
  color: var(--bp-ink);
  line-height: 1.1;
}
.bp-contact-form {
  background: var(--bp-cream);
  border-radius: var(--bp-radius);
  padding: 30px 30px 28px;
  display: grid;
  gap: 14px;
  box-shadow: 0 6px 0 rgba(27, 27, 38, 0.7);
}
.bp-contact-form label {
  display: grid;
  gap: 6px;
}
.bp-contact-form span {
  font-family: var(--bp-headline);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bp-ink-mute);
}
.bp-contact-form input,
.bp-contact-form select,
.bp-contact-form textarea {
  font-family: var(--bp-body);
  font-size: 14px;
  padding: 11px 14px;
  border: 1.5px solid rgba(27, 27, 38, 0.15);
  border-radius: 10px;
  background: var(--bp-cream-2);
  color: var(--bp-ink);
  outline: none;
  resize: vertical;
}
.bp-contact-form input:focus,
.bp-contact-form select:focus,
.bp-contact-form textarea:focus {
  border-color: var(--bp-pink);
  box-shadow: 0 0 0 3px rgba(240, 96, 159, 0.18);
}

/* ============= Footer ============= */
.bp-footer {
  background: var(--bp-ink);
  color: var(--bp-cream);
  padding: 72px 0 24px;
}
.bp-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
}
.bp-footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  background: var(--bp-cyan);
  border-radius: 10px;
  padding: 8px;
}
.bp-footer-brand p {
  color: rgba(248, 239, 215, 0.7);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 280px;
  margin: 0;
}
.bp-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bp-footer-head {
  font-family: var(--bp-headline);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bp-pink);
  margin-bottom: 14px;
}
.bp-footer-cols a {
  display: block;
  padding: 5px 0;
  font-family: var(--bp-headline);
  font-weight: 400;
  font-size: 13.5px;
  color: rgba(248, 239, 215, 0.85);
  transition: color 0.15s ease;
}
.bp-footer-cols a:hover { color: var(--bp-pink); }
.bp-footer-bottom {
  max-width: 1240px;
  margin: 48px auto 0;
  padding: 22px 32px 0;
  border-top: 1px solid rgba(248, 239, 215, 0.1);
  display: flex;
  justify-content: space-between;
  font-family: var(--bp-headline);
  font-size: 12px;
  color: rgba(248, 239, 215, 0.5);
}

/* ============= Subscribe Popup ============= */
.bp-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 27, 38, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: bp-fade-in 0.25s ease;
}
@keyframes bp-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.bp-popup {
  position: relative;
  background: var(--bp-cream);
  border-radius: var(--bp-radius-lg);
  max-width: 660px;
  width: 100%;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  overflow: hidden;
  animation: bp-pop-in 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
@keyframes bp-pop-in {
  from { transform: translateY(20px) scale(0.92); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.bp-popup-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bp-ink);
  color: var(--bp-cream);
  border: none;
  font-size: 20px;
  line-height: 1;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bp-popup-close:hover { background: var(--bp-pink-deep); }

.bp-popup-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  min-height: 320px;
}
.bp-popup-art {
  position: relative;
  background: var(--bp-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
}
.bp-popup-stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 14px,
    rgba(27,27,38,0.04) 14px,
    rgba(27,27,38,0.04) 15px
  );
}
.bp-popup-logo {
  position: relative;
  width: 100%;
  max-width: 180px;
  height: auto;
  transform: rotate(-4deg);
  filter: drop-shadow(4px 6px 0 rgba(27, 27, 38, 0.18));
}
.bp-popup-body {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bp-popup-eyebrow {
  font-family: var(--bp-headline);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bp-pink-deep);
  margin-bottom: 12px;
}
.bp-popup-title {
  font-family: var(--bp-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
  color: var(--bp-ink);
  text-wrap: balance;
}
.bp-popup-title-accent { color: var(--bp-pink); }
.bp-popup-sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--bp-ink-soft);
  margin: 0 0 18px;
}
.bp-popup-form {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.bp-popup-form input {
  flex: 1;
  font-family: var(--bp-body);
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid rgba(27, 27, 38, 0.18);
  border-radius: 999px;
  background: var(--bp-cream-2);
  outline: none;
}
.bp-popup-form input:focus {
  border-color: var(--bp-pink);
  box-shadow: 0 0 0 3px rgba(240, 96, 159, 0.18);
}
.bp-popup-error {
  font-size: 12.5px;
  color: var(--bp-pink-deep);
  margin-bottom: 6px;
}
.bp-popup-meta {
  font-size: 11.5px;
  color: var(--bp-ink-mute);
  font-family: var(--bp-headline);
  margin-top: 4px;
}
.bp-popup-success { text-align: center; padding: 20px 0; }
.bp-popup-success-check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bp-pink);
  color: white;
  font-family: var(--bp-display);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.bp-popup-success p {
  font-size: 14.5px;
  color: var(--bp-ink-soft);
  margin: 0;
}

/* ============= Sticky subscribe pill ============= */
.bp-sticky-sub {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  background: var(--bp-pink);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--bp-headline);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 0 var(--bp-pink-deep), 0 8px 24px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.bp-sticky-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--bp-pink-deep), 0 12px 28px rgba(0,0,0,0.22);
}
.bp-sticky-sub-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: white;
  animation: bp-pulse 1.6s ease-in-out infinite;
}

/* ============= Responsive ============= */
@media (max-width: 960px) {
  .bp-nav { display: none; }
  .bp-marker { display: none; }
  .bp-hero { padding: 36px 0 56px; }
  .bp-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .bp-hero-art { order: -1; }
  .bp-hero-cover { max-width: 280px; }
  .bp-bubble { padding: 36px 24px 32px; border-radius: 32px; }
  .bp-pillars { grid-template-columns: 1fr; gap: 18px; }
  .bp-ep-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-host-block { padding: 64px 0; }
  .bp-host-row, .bp-host-row-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bp-host-row-reverse .bp-host-portrait { order: 0; }
  .bp-host-row-reverse .bp-host-card { order: 0; }
  .bp-host-card { padding: 28px 24px; }
  .bp-quote-grid { grid-template-columns: 1fr; gap: 18px; }
  .bp-quote-card:nth-child(2) { transform: rotate(0.5deg); }
  .bp-listen-inner { grid-template-columns: 1fr; gap: 36px; }
  .bp-contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .bp-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .bp-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .bp-popup-grid { grid-template-columns: 1fr; }
  .bp-popup-art { display: none; }
  .bp-popup-body { padding: 28px 24px; }
  .bp-popup-form { flex-direction: column; }
}

@media (max-width: 600px) {
  .bp-ep-grid { grid-template-columns: 1fr; }
}
