.bh__inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  column-gap: clamp(16px, 2vw, 24px);
  row-gap: clamp(20px, 2.5vw, 28px);
  grid-template-columns: 6fr 5fr;
  grid-template-areas:
    "intro    routines"
    "clarity  material";
  align-items: start;
  max-height: 690px;
}

/* ── Intro block ── */
.bh__intro {
  grid-area: intro;
  align-self: start;
  padding-right: clamp(0px, 2.5vw, 32px);
  max-height: 678px;
  position: relative;
  z-index: 1;
}

/* .bh parent adds specificity to beat global link/paragraph color overrides */
.bh .bh__eyebrow {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
  color: #232426;
  line-height: 101%;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.bh__title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.01em;
  font-size: 36px;
  margin: 0 0 20px;
  color: #000000;
}

/* ── CTA button ── */
.bh__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Archivo;
  font-size: 16px;
  font-weight: 500;
  min-width: 199px;
  line-height: 150%;
  color: #232426;
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid #75787B;
  border-radius: 40px;
  background: #fff;
  height: 48px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.bh__cta:hover {
  background: #232320;
  color: #fff;
  border-color: #232320;
}

.bh__cta:focus-visible {
  outline: 2px solid #232320;
  outline-offset: 3px;
}

/* desktop CTA lives in intro; mobile CTA lives at the very bottom */
.bh__cta--mobile {
  display: none;
}

.bh__cta-wrap {
  grid-area: cta;
  display: none;
}

/* ── Cards ── */
.bh__card {
  display: flex;
  flex-direction: column;
}

.bh__card--routines {
  grid-area: routines;
}

.bh__card--material {
  grid-area: material;
}

.bh__card--clarity {
  grid-area: clarity;
  position: relative;
  top: -119px;
}

/* ── Media wrapper ── */
.bh__media {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #ece9e2;
  aspect-ratio: 16 / 10;
  width: 100%;
}

/* wardrobe card is taller to balance against routines + gap + material */
.bh__card--clarity .bh__media {
  aspect-ratio: 4 / 3;
}

/* ── Desktop fixed image heights (desktop only, not tablet/mobile) ── */
@media (min-width: 1024px) {
  .bh__card--routines .bh__media {
    height: 260px;
    aspect-ratio: unset;
  }

  .bh__card--clarity .bh__media {
    height: 380px;
    aspect-ratio: unset;
  }

  .bh__card--material .bh__media {
    height: 260px;
    aspect-ratio: unset;
  }
}

.bh__media img,
.bh__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bh__card:hover .bh__media img,
.bh__card:hover .bh__media video {
  transform: scale(1.1);
}

/* ── Captions ── */
.bh__caption {
  margin-top: 0.875em;
}

.bh__caption-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  color: #2E2F32;
  margin: 0;
}

.bh__caption-sub {
  font-family: Archivo;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 120%;
  color: #2E2F32;
  margin: 0.3em 0 0;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {

  .bh__media img,
  .bh__media video,
  .bh__cta {
    transition: none;
  }

  .bh__card:hover .bh__media img,
  .bh__card:hover .bh__media video {
    transform: none;
  }
}

/* ── Tablet (768px – 1023px) ── */
@media (max-width: 1023px) and (min-width: 768px) {

  /* Fall back to equal columns — 40% intro is too narrow at this viewport */
  .bh__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "intro    routines"
      "clarity  material";
    column-gap: clamp(14px, 2vw, 20px);
    row-gap: clamp(16px, 2.5vw, 24px);
  }

  .bh__title {
    font-size: clamp(1.7rem, 3.5vw, 2.1rem);
  }

  .bh__card--clarity .bh__media {
    aspect-ratio: 16 / 11;
  }
}

/* ── Mobile (below 768px) ── */
@media (max-width: 767px) {
  .bh .bh__eyebrow {
    font-size: 18px;
    line-height: 120%;
  }

  .bh__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "routines"
      "clarity"
      "material"
      "cta";
    gap: 6px;
    padding: 0 16px;
    max-height: unset;
  }

  .bh__intro {
    padding-right: 0;
  }

  .bh__title {
    font-size: 24px;
    line-height: 110%;
    max-width: none;
    margin-bottom: 0.8em;
  }

  /* ── Card 1: text left (42%), image right (58%) ── */
  .bh__card--routines {
    display: grid;
    grid-template-columns: 7fr 5fr;
    grid-template-areas: "caption media";
    gap: 26px;
    align-items: center;
  }

  .bh__card--routines .bh__media {
    grid-area: media;
    aspect-ratio: 3 / 4;
    max-width: 155px;
    max-height: 138px;
    min-width: 155px;
  }

  .bh__card--routines .bh__caption {
    grid-area: caption;
    margin-top: 0;
  }

  /* ── Card 2 (clarity class): image left (58%), text right (42%) ── */
  .bh__card--clarity {
    display: grid;
    grid-template-columns: 6fr 5fr;
    grid-template-areas: "media caption";
    gap: 16px;
    align-items: center;
    position: unset;
    justify-items: unset;
  }

  .bh__card--clarity .bh__media {
    grid-area: media;
    aspect-ratio: 3 / 4;
    max-width: 195px;
    max-height: 195px;
    min-width: 195px;
  }

  .bh__card--clarity .bh__caption {
    grid-area: caption;
    margin-top: 0;
    text-align: unset;
  }

  /* ── Card 3 (material class): full-width image, text right-aligned below ── */
  .bh__card--material {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "media" "caption";
    gap: 0;
    align-items: unset;
    justify-items: end;
  }

  .bh__card--material .bh__media {
    grid-area: unset;
    aspect-ratio: 16 / 10;
    max-width: 292px;
    max-height: 167px;
    min-width: unset;
  }

  .bh__card--material .bh__caption {
    grid-area: unset;
    text-align: right;
    margin-top: 0.75em;
  }

  /* Narrow-column captions: switch to italic serif, smaller sizes */
  .bh__card--routines .bh__caption-title,
  .bh__card--clarity .bh__caption-title {
    font-style: italic;
    font-size: 16px;
    line-height: 100%;
  }

  .bh__caption-title {
    font-style: italic;
    font-size: 16px;
    line-height: 100%;
  }

  .bh__card--routines .bh__caption-sub,
  .bh__card--clarity .bh__caption-sub {
    font-size: 12px;
    font-style: normal;
    line-height: 120%;
    margin-top: 0.4em;
  }

  .bh__caption-sub {
    font-size: 12px;
    font-style: normal;
    line-height: 120%;
    margin-top: 0.4em;
  }

  /* ── CTA ── */
  .bh__cta--desktop {
    display: none;
  }

  .bh__cta-wrap {
    display: flex;
    justify-content: center;
  }

  .bh__cta--mobile {
    display: inline-flex;
    width: 100%;
    margin: 10px 0;
    font-size: 12px;
    line-height: 150%;
    color: #75787B;
    height: 42px;
  }
}