
/* =========================================================
   BETWEEN HOPE & HUSTLE
   Hope & Hustle Media™ Podcast Page
   
========================================================= */

/* =========================================================
   PAGE VARIABLES
========================================================= */

.bhh-page {
  --bhh-navy: var(--navy, #0f1a2a);
  --bhh-navy-soft: var(--navy-soft, #17263a);
  --bhh-navy-dark: #08111f;

  --bhh-gold: var(--gold, #d4a642);
  --bhh-gold-dark: var(--gold-dark, #b88a2e);
  --bhh-gold-light: #e6c36f;
  --bhh-gold-soft: rgba(212, 166, 66, 0.14);

  --bhh-beige: var(--beige, #f7f3ec);
  --bhh-cream: var(--cream, #fffdf8);
  --bhh-white: var(--white, #ffffff);

  --bhh-text: var(--text-dark, #1e2430);
  --bhh-muted: var(--text-muted, #6b7280);
  --bhh-border: var(--border, #e7dec8);

  --bhh-success: #209356;

  --bhh-radius-small: 14px;
  --bhh-radius-medium: 22px;
  --bhh-radius-large: 32px;
  --bhh-radius-pill: 999px;

  --bhh-shadow:
    0 22px 55px rgba(15, 26, 42, 0.12);

  --bhh-dark-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28);

  --bhh-transition: 240ms ease;
}

/* =========================================================
   PAGE BASE
========================================================= */

.bhh-page {
  min-height: 100vh;
  background: var(--bhh-cream);
  color: var(--bhh-text);
}

.bhh-page main {
  overflow: hidden;
}

.bhh-page img {
  max-width: 100%;
  display: block;
}

.bhh-page a {
  text-decoration: none;
}

.bhh-page section {
  scroll-margin-top: 120px;
}

/* =========================================================
   SHARED PODCAST TYPOGRAPHY
========================================================= */

.bhh-page .section-heading {
  max-width: 780px;
}

.bhh-page .section-heading > p:last-child {
  margin-top: 18px;
  color: var(--bhh-muted);
  font-size: 1.03rem;
}

.bhh-page h2 {
  color: var(--bhh-navy);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.bhh-page h3 {
  color: var(--bhh-navy);
}

.bhh-page .eyebrow {
  color: var(--bhh-gold-dark);
}

/* =========================================================
   HERO
========================================================= */

.bhh-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 0 100px;
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(212, 166, 66, 0.24),
      transparent 30%
    ),
    radial-gradient(
      circle at 8% 85%,
      rgba(255, 255, 255, 0.06),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--bhh-navy-dark),
      var(--bhh-navy-soft)
    );
  color: var(--bhh-white);
}

.bhh-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    );
  background-size: 48px 48px;
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.92),
      transparent
    );
}

.bhh-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -250px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(212, 166, 66, 0.16);
  border-radius: 50%;
}

.bhh-hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(320px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.bhh-status-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.bhh-status,
.bhh-network-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: var(--bhh-radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bhh-status {
  gap: 8px;
  color: #84e3ad;
  background: rgba(32, 147, 86, 0.14);
  border: 1px solid rgba(132, 227, 173, 0.24);
}

.bhh-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(132, 227, 173, 0.08);
}

.bhh-network-label {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bhh-hero .eyebrow {
  color: var(--bhh-gold);
}

.bhh-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--bhh-white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.bhh-hero h1 span {
  color: var(--bhh-gold);
}

.bhh-hero-tagline {
  max-width: 680px;
  margin-top: 24px;
  color: var(--bhh-white);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.55;
}

.bhh-hero-description {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 1.03rem;
  line-height: 1.8;
}

.bhh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.bhh-hero-art {
  display: flex;
  justify-content: flex-end;
}

.bhh-cover-card {
  position: relative;
  width: min(470px, 100%);
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--bhh-radius-large);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.04)
    );
  box-shadow: var(--bhh-dark-shadow);
  backdrop-filter: blur(15px);
  transform: rotate(1.5deg);
}

.bhh-cover-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
}

.bhh-cover-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 8px 5px;
}

.bhh-cover-details span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bhh-cover-details strong {
  color: var(--bhh-gold);
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.bhh-about-section {
  background: var(--bhh-cream);
}

.bhh-about-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);
  align-items: start;
  gap: 72px;
}

.bhh-about-grid h2 {
  max-width: 640px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.bhh-about-copy {
  position: relative;
  padding-left: 30px;
  border-left: 3px solid var(--bhh-gold);
}

.bhh-about-copy::before {
  content: "“";
  position: absolute;
  top: -58px;
  left: 15px;
  color: rgba(212, 166, 66, 0.09);
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
  pointer-events: none;
}

.bhh-about-copy p {
  position: relative;
  margin-bottom: 18px;
  color: var(--bhh-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.bhh-about-copy p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   PODCAST THEMES
========================================================= */

.bhh-themes-section {
  background: var(--bhh-beige);
}

.bhh-theme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.bhh-theme-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--bhh-border);
  border-radius: var(--bhh-radius-medium);
  background: var(--bhh-white);
  box-shadow: 0 14px 38px rgba(15, 26, 42, 0.06);
  transition:
    transform var(--bhh-transition),
    border-color var(--bhh-transition),
    box-shadow var(--bhh-transition);
}

.bhh-theme-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(212, 166, 66, 0.14);
  border-radius: 50%;
}

.bhh-theme-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 166, 66, 0.48);
  box-shadow: var(--bhh-shadow);
}

.bhh-theme-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--bhh-navy);
  color: var(--bhh-gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.bhh-theme-card h3 {
  margin-bottom: 13px;
  font-size: 1.18rem;
}

.bhh-theme-card p {
  color: var(--bhh-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* =========================================================
   LISTEN / IONO PLAYER
========================================================= */

.bhh-listen-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(212, 166, 66, 0.2),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--bhh-navy-dark),
      var(--bhh-navy)
    );
  color: var(--bhh-white);
}

.bhh-listen-section::before {
  content: "";
  position: absolute;
  left: -220px;
  bottom: -250px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.bhh-listen-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);
  align-items: center;
  gap: 60px;
}

.bhh-listen-copy .eyebrow {
  color: var(--bhh-gold);
}

.bhh-listen-copy h2 {
  margin-bottom: 22px;
  color: var(--bhh-white);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.bhh-listen-copy > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
  line-height: 1.8;
}

.iono-player-shell {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(212, 166, 66, 0.34);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: var(--bhh-dark-shadow);
  backdrop-filter: blur(12px);
}

.iono-player-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(212, 166, 66, 0.12),
      transparent 34%
    );
  pointer-events: none;
}

.iono-player-shell iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 450px;
  display: block;
  border: 0;
  border-radius: 17px;
  background: var(--bhh-navy-dark);
}

.iono-player-shell noscript p {
  position: relative;
  z-index: 1;
  margin: 12px 4px 2px;
  color: rgba(255, 255, 255, 0.72);
}

.bhh-player-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
}

.bhh-player-indicator {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--bhh-gold);
  box-shadow: 0 0 0 5px rgba(212, 166, 66, 0.12);
}

.bhh-player-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.bhh-player-note strong {
  color: var(--bhh-white);
}

/* =========================================================
   GALLERY
========================================================= */

.bhh-gallery-section {
  background: var(--bhh-cream);
}

.bhh-gallery-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(0, 0.75fr);
  grid-template-rows: repeat(2, minmax(240px, 340px));
  gap: 20px;
}

.bhh-gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--bhh-border);
  border-radius: var(--bhh-radius-medium);
  background: var(--bhh-navy);
  box-shadow: 0 16px 42px rgba(15, 26, 42, 0.1);
}

.bhh-gallery-featured {
  grid-row: 1 / 3;
}

.bhh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 400ms ease,
    filter 400ms ease;
}

.bhh-gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background:
    linear-gradient(
      to top,
      rgba(8, 17, 31, 0.94),
      transparent
    );
  pointer-events: none;
}

.bhh-gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.04);
}

.bhh-gallery-logo img {
  object-fit: contain;
  padding: 35px;
  background: var(--bhh-navy-soft);
}

.bhh-gallery-item figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* =========================================================
   PROJECT INFORMATION
========================================================= */

.bhh-project-section {
  background: var(--bhh-beige);
}

.bhh-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.bhh-project-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  padding: 36px;
  border: 1px solid var(--bhh-border);
  border-radius: var(--bhh-radius-large);
  background: var(--bhh-white);
  box-shadow: 0 14px 38px rgba(15, 26, 42, 0.06);
}

.bhh-project-card::after {
  content: "";
  position: absolute;
  right: -85px;
  bottom: -95px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(212, 166, 66, 0.15);
  border-radius: 50%;
}

.bhh-project-card-dark {
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 166, 66, 0.2),
      transparent 35%
    ),
    var(--bhh-navy);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--bhh-white);
  box-shadow: var(--bhh-dark-shadow);
}

.bhh-card-label {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--bhh-gold-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bhh-project-card-dark .bhh-card-label {
  color: var(--bhh-gold);
}

.bhh-project-card h3 {
  max-width: 580px;
  margin-bottom: 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.bhh-project-card-dark h3 {
  color: var(--bhh-white);
}

.bhh-project-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bhh-project-card li {
  position: relative;
  padding-left: 26px;
  color: var(--bhh-muted);
  line-height: 1.65;
}

.bhh-project-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--bhh-gold);
}

.bhh-project-card-dark p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.bhh-text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--bhh-gold);
  font-weight: 800;
}

.bhh-text-link::after {
  content: "→";
  margin-left: 9px;
  transition: transform var(--bhh-transition);
}

.bhh-text-link:hover::after {
  transform: translateX(4px);
}

/* =========================================================
   PRODUCTION CREDIT
========================================================= */

.bhh-production-section {
  padding: 76px 0;
  background: var(--bhh-cream);
  border-top: 1px solid var(--bhh-border);
  border-bottom: 1px solid var(--bhh-border);
}

.bhh-production-grid {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.bhh-production-logo {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--bhh-border);
  border-radius: 24px;
  background: var(--bhh-white);
  box-shadow: 0 12px 32px rgba(15, 26, 42, 0.07);
}

.bhh-production-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bhh-production-grid h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.bhh-production-grid p:not(.eyebrow) {
  max-width: 720px;
  color: var(--bhh-muted);
  line-height: 1.75;
}

/* =========================================================
   FINAL CTA
========================================================= */

.bhh-final-cta {
  position: relative;
  overflow: hidden;
}

.bhh-final-cta::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.bhh-final-cta .eyebrow {
  color: var(--bhh-gold);
}

.bhh-final-cta h2 {
  color: var(--bhh-white);
  font-family: "Playfair Display", Georgia, serif;
}

.bhh-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.bhh-page a:focus-visible,
.bhh-page button:focus-visible {
  outline: 3px solid rgba(212, 166, 66, 0.75);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .bhh-cover-card,
  .bhh-theme-card,
  .bhh-gallery-item img,
  .bhh-text-link::after {
    transition: none;
  }

  .bhh-theme-card:hover,
  .bhh-gallery-item:hover img,
  .bhh-text-link:hover::after {
    transform: none;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  .bhh-hero-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, 0.72fr);
    gap: 44px;
  }

  .bhh-theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bhh-listen-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .bhh-listen-copy {
    max-width: 720px;
  }

  .bhh-production-grid {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .bhh-production-grid > .btn {
    grid-column: 2;
    justify-self: start;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {
  .bhh-hero {
    padding: 120px 0 72px;
  }

  .bhh-hero-grid,
  .bhh-about-grid,
  .bhh-project-grid {
    grid-template-columns: 1fr;
  }

  .bhh-hero-grid,
  .bhh-about-grid {
    gap: 45px;
  }

  .bhh-hero-art {
    justify-content: flex-start;
  }

  .bhh-cover-card {
    width: min(440px, 100%);
    transform: none;
  }

  .bhh-about-copy {
    padding-left: 22px;
  }

  .bhh-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .bhh-gallery-featured {
    grid-row: auto;
  }

  .bhh-gallery-item {
    min-height: 310px;
  }

  .bhh-gallery-logo {
    min-height: 280px;
  }

  .bhh-production-grid {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 24px;
  }

  .bhh-production-logo {
    width: 90px;
    height: 90px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {
  .bhh-hero {
    padding: 104px 0 62px;
  }

  .bhh-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .bhh-status-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .bhh-hero-actions,
  .bhh-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .bhh-hero-actions .btn,
  .bhh-cta-actions .btn {
    width: 100%;
  }

  .bhh-cover-details {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .bhh-theme-grid {
    grid-template-columns: 1fr;
  }

  .bhh-theme-card {
    min-height: auto;
  }

  .iono-player-shell {
    padding: 8px;
    border-radius: 18px;
  }

  .iono-player-shell iframe {
    min-height: 430px;
    border-radius: 12px;
  }

  .bhh-gallery-item {
    min-height: 260px;
  }

  .bhh-project-card {
    min-height: auto;
    padding: 27px;
    border-radius: 22px;
  }

  .bhh-production-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .bhh-production-logo {
    width: 84px;
    height: 84px;
  }

  .bhh-production-grid > .btn {
    grid-column: auto;
    width: 100%;
  }
}

