:root {
  --bh-black: #000000;
  --bh-white: #ffffff;
  --bh-white-soft: rgba(255, 255, 255, 0.72);
  --bh-white-faint: rgba(255, 255, 255, 0.5);
  --bh-white-border: rgba(255, 255, 255, 0.45);
  --bh-font: "Helvetica Neue", Inter, Helvetica, Arial, sans-serif;
  --bh-nav-offset: clamp(3.75rem, 6vw, 5.5rem);
  --bh-gutter: clamp(1.25rem, 3vw, 2.5rem);
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bh-black);
  color: var(--bh-white);
  font-family: var(--bh-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.bh-archive-theme {
  background: var(--bh-black);
  color: var(--bh-white);
}

body.template-collection {
  scroll-snap-type: y proximity;
}

.bh-archive-theme *,
.bh-archive-theme *::before,
.bh-archive-theme *::after {
  box-sizing: border-box;
}

.bh-archive-theme img {
  display: block;
  max-width: 100%;
}

.bh-archive-theme a {
  color: inherit;
  text-decoration: none;
}

.bh-archive-theme button,
.bh-archive-theme input,
.bh-archive-theme select,
.bh-archive-theme textarea {
  font: inherit;
}

.bh-main {
  min-height: 100vh;
  animation: bh-page-enter 420ms ease both;
}

body.is-leaving .bh-main {
  opacity: 0;
  transition: opacity 220ms ease;
}

.bh-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.bh-skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--bh-white);
  color: var(--bh-black);
}

.bh-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bh-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
}

.bh-site-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem var(--bh-gutter);
}

.bh-site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.bh-site-header__link {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 220ms ease;
}

.bh-site-header__link:hover,
.bh-site-header__link:focus-visible {
  opacity: 1;
}

.bh-site-header__sound {
  border: 0;
  background: transparent;
  color: var(--bh-white);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.58;
  cursor: pointer;
  transition: opacity 220ms ease;
}

.bh-site-header__sound:hover,
.bh-site-header__sound:focus-visible,
.bh-site-header__sound[aria-pressed="true"] {
  opacity: 1;
}

.bh-site-header__time {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.42;
  white-space: nowrap;
  pointer-events: none;
}

.bh-entry {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(2rem, 5vw, 3rem) var(--bh-gutter);
}

.bh-entry__inner {
  position: relative;
  min-height: calc(100vh - clamp(4rem, 8vw, 6rem));
  min-height: calc(100svh - clamp(4rem, 8vw, 6rem));
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-entry__copy {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.bh-entry__brand {
  margin: 0;
  font-size: clamp(3.4rem, 11vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.bh-entry__index {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.68;
}

.bh-entry__statement {
  display: grid;
  gap: 0.25rem;
  margin-top: 1rem;
}

.bh-entry__statement p {
  margin: 0;
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.74;
}

.bh-entry__enter {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.72;
  transition: opacity 220ms ease;
}

.bh-entry__enter:hover,
.bh-entry__enter:focus-visible {
  opacity: 1;
}

.bh-archive-theme .rte p {
  margin: 0;
}

.bh-archive-theme .rte p + p {
  margin-top: 1rem;
}

.bh-archive {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--bh-nav-offset);
}

.bh-archive--collection {
  min-height: auto;
  padding-top: 0;
}

.bh-archive-reel {
  width: 100%;
}

.bh-archive-panel {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--bh-nav-offset);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.bh-archive-panel + .bh-archive-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bh-archive__grid {
  display: grid;
  min-height: calc(100vh - var(--bh-nav-offset));
  min-height: calc(100svh - var(--bh-nav-offset));
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.bh-archive--collection .bh-archive__grid {
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
}

.bh-archive--collection .bh-archive__content {
  padding-left: clamp(2.75rem, 5vw, 5.5rem);
  padding-right: clamp(1.75rem, 4vw, 4rem);
}

.bh-archive--collection .bh-archive__text {
  transform: translateY(-1vh);
}

.bh-archive__media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: 0;
}

.bh-archive__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.bh-archive--product .bh-archive__media {
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: flex-start;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.bh-archive--product .bh-archive__media img {
  width: min(100%, 620px);
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: contain;
}

.bh-product-gallery {
  display: grid;
  width: min(100%, 760px);
  gap: clamp(1rem, 2vw, 1.35rem);
}

.bh-product-gallery__main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: min(76vh, 780px);
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: 0;
}

.bh-product-gallery__main .bh-product-gallery__image {
  display: block;
  width: min(100%, 680px);
  height: min(76vh, 780px);
  max-height: min(76vh, 780px);
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
  filter: none;
  transition:
    opacity 220ms ease,
    transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.bh-product-gallery__image--cutout {
  object-fit: contain;
  object-position: center;
}

.bh-product-gallery__image--lifestyle {
  object-fit: cover;
  object-position: center;
}

.bh-product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.bh-product-gallery__thumb {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  text-align: left;
}

.bh-product-gallery__thumb[aria-current="true"] {
  color: var(--bh-white);
}

.bh-product-gallery__thumb-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 0;
  max-height: none;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
  filter: none;
  opacity: 0.48;
  transition:
    opacity 180ms ease,
    transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.bh-product-gallery__thumb[aria-current="true"] .bh-product-gallery__thumb-image,
.bh-product-gallery__thumb:hover .bh-product-gallery__thumb-image {
  opacity: 1;
}

.bh-product-gallery__thumb-image--cutout {
  object-fit: contain;
  object-position: center;
}

.bh-product-gallery__thumb-image--lifestyle {
  object-fit: cover;
  object-position: center;
}

.bh-product-gallery__thumb span,
.bh-product-gallery__counter {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bh-product-gallery__counter {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
}

@media (hover: hover) and (pointer: fine) {
  .bh-archive__media:hover img {
    transform: scale(1.015);
  }

  .bh-archive--product .bh-archive__media:hover img {
    transform: none;
  }

  .bh-product-gallery__thumb:hover .bh-product-gallery__thumb-image {
    transform: translateY(-2px);
  }
}

.bh-archive__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.bh-archive__text,
.bh-product-artifact {
  width: min(100%, 420px);
}

.bh-archive__index {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.42;
}

.bh-archive__title {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(2.2rem, 4.4vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.bh-archive__geography {
  margin: 1.35rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
}

.bh-archive__details {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}

.bh-archive__details p,
.bh-product-artifact__details p {
  margin: 0;
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.bh-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid var(--bh-white-border);
  background: transparent;
  color: var(--bh-white);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.bh-outline-button:hover,
.bh-outline-button:focus-visible {
  background: var(--bh-white);
  border-color: var(--bh-white);
  color: var(--bh-black);
}

.bh-outline-button[disabled] {
  opacity: 0.38;
  cursor: not-allowed;
}

.bh-archive--collection .bh-archive__title {
  max-width: 7ch;
  font-size: clamp(2.7rem, 5.6vw, 5.9rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.bh-archive--collection .bh-archive__index {
  margin-bottom: 1.35rem;
  opacity: 0.34;
}

.bh-archive--collection .bh-archive__geography {
  margin-top: 1.55rem;
  opacity: 0.46;
}

.bh-archive--collection .bh-archive__details {
  gap: 0.9rem;
  margin-top: 2.5rem;
}

.bh-archive--collection .bh-outline-button {
  margin-top: 3rem;
}

.bh-archive__empty-note {
  margin: 3rem 0 0;
  max-width: 28ch;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  line-height: 1.8;
  text-transform: uppercase;
  opacity: 0.48;
}

.bh-manifesto,
.bh-home-objects,
.bh-home-notes,
.bh-home-cta {
  padding: clamp(3.5rem, 7vw, 6rem) var(--bh-gutter);
}

.bh-manifesto__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.bh-manifesto__eyebrow,
.bh-home-objects__eyebrow,
.bh-home-notes__eyebrow,
.bh-home-cta__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.46;
}

.bh-manifesto__title,
.bh-home-objects__title,
.bh-home-notes__title,
.bh-home-cta__title {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.2rem, 4.9vw, 4.9rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.bh-manifesto__body {
  display: grid;
  gap: 2.5rem;
}

.bh-manifesto__copy {
  max-width: 38rem;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
}

.bh-manifesto__notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.bh-manifesto__note,
.bh-home-note {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bh-manifesto__note-label,
.bh-home-note__label {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
}

.bh-manifesto__note-copy,
.bh-home-note__copy {
  margin: 0;
  max-width: 18ch;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  line-height: 1.8;
  text-transform: uppercase;
  opacity: 0.72;
}

.bh-home-objects__header,
.bh-home-notes__header,
.bh-home-cta__inner {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.bh-home-objects__title,
.bh-home-notes__title {
  max-width: 12ch;
}

.bh-home-objects__list {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  width: min(100%, 1220px);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.bh-home-object {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  min-height: 82vh;
  background: #020202;
}

.bh-home-object--reverse {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.bh-home-object--reverse .bh-home-object__media {
  order: 2;
}

.bh-home-object--reverse .bh-home-object__content {
  order: 1;
}

.bh-home-object__media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: 0;
}

.bh-home-object__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (hover: hover) and (pointer: fine) {
  .bh-home-object__media:hover img {
    transform: scale(1.015);
  }
}

.bh-home-object__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 5vw, 4.25rem);
}

.bh-home-object__index {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.38;
}

.bh-home-object__title {
  margin: 0;
  max-width: 7ch;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.89;
  text-transform: uppercase;
}

.bh-home-object__geography {
  margin: 1.4rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.48;
}

.bh-home-object__details {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.bh-home-object__details p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.bh-home-object .bh-outline-button {
  margin-top: 2.75rem;
  align-self: flex-start;
}

.bh-home-objects__empty {
  width: min(100%, 1220px);
  margin: 2.5rem auto 0;
}

.bh-home-objects__empty p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.48;
}

.bh-home-notes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: min(100%, 1220px);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.bh-home-cta {
  padding-top: clamp(4rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 10vw, 8rem);
}

.bh-home-cta__title {
  max-width: 8ch;
}

.bh-home-cta__copy {
  max-width: 28rem;
  margin: 1.5rem 0 0;
  font-size: 0.94rem;
  letter-spacing: 0.14em;
  line-height: 1.9;
  text-transform: uppercase;
  opacity: 0.66;
}

.bh-home-cta__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.bh-home-cta__secondary,
.bh-cart__continue {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.52;
  transition: opacity 220ms ease;
}

.bh-home-cta__secondary:hover,
.bh-home-cta__secondary:focus-visible,
.bh-cart__continue:hover,
.bh-cart__continue:focus-visible {
  opacity: 1;
}

.bh-product-artifact__title {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.bh-product-artifact__details {
  display: grid;
  gap: 0.7rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

.bh-product-artifact__geography {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
}

.bh-product-artifact__eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.42;
}

.bh-product-artifact__purchase {
  margin-top: 2.4rem;
}

.bh-product-artifact__price {
  margin: 0 0 1.15rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.76;
}

.bh-product-form {
  margin-top: 0;
}

.bh-product-form__selector {
  margin-bottom: 1rem;
}

.bh-product-form__select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--bh-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  appearance: none;
}

.bh-product-form__select option {
  background: var(--bh-black);
  color: var(--bh-white);
}

.bh-product-accordions {
  display: grid;
  gap: 0;
  margin-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bh-product-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bh-product-accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--bh-white);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

.bh-product-accordion__toggle::after {
  content: "+";
  opacity: 0.62;
}

.bh-product-accordion__toggle[aria-expanded="true"]::after {
  content: "-";
}

.bh-product-accordion__content {
  padding: 0 0 1.1rem;
  max-width: 34rem;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.bh-product-accordion__content p {
  margin: 0;
}

.bh-cart {
  padding: calc(var(--bh-nav-offset) + 1rem) var(--bh-gutter) clamp(3rem, 7vw, 5rem);
}

.bh-cart__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.bh-cart__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.bh-cart__title {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.bh-cart-form {
  margin-top: 2.5rem;
}

.bh-cart-lines {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.bh-cart-line {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.bh-cart-line__image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: 0;
}

.bh-cart-line__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.bh-cart-line__title {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bh-cart-line__variant {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
}

.bh-cart-line__controls {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.bh-cart-line__quantity {
  width: 72px;
  padding: 0.75rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--bh-white);
}

.bh-cart-line__remove,
.bh-cart-line__price,
.bh-cart__subtotal span:first-child {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.68;
}

.bh-cart-line__price {
  padding-top: 0.2rem;
  white-space: nowrap;
}

.bh-cart__footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2rem;
}

.bh-cart__subtotal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.bh-cart__subtotal span:last-child {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bh-cart__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.bh-cart__meta {
  display: grid;
  gap: 0.7rem;
}

.bh-cart__note {
  margin: 0;
  max-width: 28rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1.8;
  text-transform: uppercase;
  opacity: 0.46;
}

.bh-outline-button--filled {
  background: var(--bh-white);
  border-color: var(--bh-white);
  color: var(--bh-black);
}

.bh-outline-button--filled:hover,
.bh-outline-button--filled:focus-visible {
  background: transparent;
  color: var(--bh-white);
}

.bh-cart__empty {
  display: grid;
  gap: 1.5rem;
  justify-items: start;
  margin-top: 3rem;
}

.bh-cart__empty p {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.58;
}

.bh-home-bundle,
.bh-bundle-hero,
.bh-bundle-curated,
.bh-bundle-builder,
.bh-bundle-why,
.bh-bundle-final,
.bh-bundle-builder-page,
.bh-bundle-product-page {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 7vw, 6rem) var(--bh-gutter);
}

.bh-home-bundle::before,
.bh-bundle-hero::before,
.bh-bundle-curated::before,
.bh-bundle-builder::before,
.bh-bundle-why::before,
.bh-bundle-final::before,
.bh-bundle-builder-page::before,
.bh-bundle-product-page::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0, transparent 68%);
}

.bh-home-bundle__inner,
.bh-bundle-curated__header,
.bh-bundle-builder__header,
.bh-bundle-why__intro,
.bh-bundle-final,
.bh-bundle-builder-page,
.bh-bundle-product-page > div {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.bh-home-bundle__eyebrow,
.bh-bundle-hero__copy p,
.bh-bundle-curated__header p,
.bh-bundle-builder__header p,
.bh-bundle-why__intro p,
.bh-bundle-final p,
.bh-bundle-builder-page p,
.bh-bundle-product-page p,
.bh-bundle-summary__kicker,
.bh-bundle-product__meta,
.bh-curated-bundle__meta,
.bh-curated-bundle__badge,
.bh-cart-line__bundle {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.48;
}

.bh-home-bundle__title,
.bh-bundle-hero h1,
.bh-bundle-curated__header h2,
.bh-bundle-builder__header h2,
.bh-bundle-why__intro h2,
.bh-bundle-final h2,
.bh-bundle-builder-page h1,
.bh-bundle-product-page h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.7rem, 7vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.bh-home-bundle__copy,
.bh-bundle-hero__copy span,
.bh-bundle-builder__header span,
.bh-bundle-why__intro span,
.bh-bundle-builder-page span,
.bh-bundle-product-page span {
  display: block;
  max-width: 42rem;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-transform: uppercase;
}

.bh-home-bundle__actions,
.bh-bundle-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.bh-bundle-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding-top: calc(var(--bh-nav-offset) + clamp(2rem, 6vw, 5rem));
}

.bh-bundle-hero__copy {
  width: min(100%, 760px);
}

.bh-bundle-hero__visual {
  position: relative;
  min-height: min(72vh, 780px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #020202;
}

.bh-bundle-hero__visual span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.bh-bundle-hero__visual span:nth-child(1) {
  width: 58%;
  aspect-ratio: 4 / 5;
  left: 12%;
  top: 12%;
}

.bh-bundle-hero__visual span:nth-child(2) {
  width: 42%;
  aspect-ratio: 1;
  right: 9%;
  bottom: 18%;
}

.bh-bundle-hero__visual span:nth-child(3) {
  width: 34%;
  height: 1px;
  left: 48%;
  top: 52%;
  transform: rotate(-18deg);
}

.bh-bundle-curated__grid,
.bh-bundle-builder__curated,
.bh-bundle-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 1220px);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.bh-curated-bundle,
.bh-bundle-product,
.bh-bundle-summary,
.bh-bundle-why__grid article {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 220ms ease,
    transform 500ms cubic-bezier(0.19, 1, 0.22, 1),
    background-color 220ms ease;
}

.bh-curated-bundle:hover,
.bh-bundle-product:hover,
.bh-bundle-why__grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.045);
}

.bh-curated-bundle__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.72);
  opacity: 1;
}

.bh-curated-bundle__image,
.bh-bundle-product__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
  background: transparent;
}

.bh-curated-bundle__product-image,
.bh-bundle-product__image {
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: none;
}

.bh-curated-bundle__body,
.bh-bundle-product__body,
.bh-bundle-summary,
.bh-bundle-why__grid article {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.bh-curated-bundle h3,
.bh-bundle-product h3,
.bh-bundle-summary h2,
.bh-bundle-why__grid h3 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-transform: uppercase;
}

.bh-curated-bundle p,
.bh-bundle-summary__copy,
.bh-bundle-why__grid p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-transform: uppercase;
}

.bh-curated-bundle__price {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin: 1.2rem 0 1.25rem;
}

.bh-curated-bundle__price span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  text-decoration: line-through;
}

.bh-curated-bundle__price strong {
  font-size: 0.94rem;
  letter-spacing: 0.12em;
}

.bh-bundle-builder__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  width: min(100%, 1220px);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.bh-bundle-builder__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.bh-bundle-summary {
  position: sticky;
  top: calc(var(--bh-nav-offset) + 1rem);
}

.bh-bundle-progress {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.bh-bundle-progress__topline,
.bh-bundle-progress__tiers,
.bh-bundle-summary__totals div,
.bh-cart__subtotal--saving {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bh-bundle-progress__track {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.bh-bundle-progress__track span {
  display: block;
  height: 100%;
  background: #fff;
  transition: width 260ms ease;
}

.bh-bundle-progress__tiers span {
  max-width: 9ch;
  opacity: 0.35;
}

.bh-bundle-progress__tiers span[aria-current="true"] {
  opacity: 1;
}

.bh-bundle-product {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1fr);
}

.bh-bundle-product__media {
  min-height: 320px;
}

.bh-bundle-product__controls {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.bh-bundle-product__controls label {
  display: grid;
  gap: 0.45rem;
}

.bh-bundle-product__controls label span {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.44;
}

.bh-bundle-product__controls select,
.bh-bundle-product__quantity,
.bh-bundle-product__select {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--bh-white);
}

.bh-bundle-product__controls select {
  width: 100%;
  padding: 0 0.8rem;
  border-radius: 0;
}

.bh-bundle-product__quantity {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
}

.bh-bundle-product__quantity button,
.bh-bundle-product__select,
.bh-bundle-summary__link {
  border: 0;
  background: transparent;
  color: var(--bh-white);
  cursor: pointer;
}

.bh-bundle-product__quantity span {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.bh-bundle-product__select {
  width: 100%;
  margin-top: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bh-bundle-product__select[aria-pressed="true"] {
  background: #fff;
  color: #000;
}

.bh-bundle-product__price {
  margin: 0.85rem 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.68;
}

.bh-bundle-summary__lines,
.bh-bundle-summary__totals,
.bh-bundle-summary__actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.bh-bundle-summary__line {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bh-bundle-summary__line span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bh-bundle-summary__line small,
.bh-bundle-summary__empty,
.bh-bundle-summary__warning {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bh-bundle-summary__final {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.bh-bundle-summary__warning {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.bh-bundle-summary__link {
  justify-self: start;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.58;
}

.bh-bundle-sticky {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 12;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
}

.bh-bundle-sticky div {
  display: grid;
  gap: 0.15rem;
}

.bh-bundle-sticky span,
.bh-bundle-sticky small,
.bh-bundle-sticky a {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bh-bundle-sticky small {
  opacity: 0.52;
}

.bh-bundle-sticky a {
  padding: 0.75rem 0.9rem;
  background: #fff;
  color: #000;
}

.bh-bundle-why__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bh-bundle-final {
  min-height: 55vh;
  display: grid;
  align-content: center;
  justify-items: start;
}

.bh-bundle-final .bh-outline-button,
.bh-bundle-product-page .bh-outline-button {
  margin-top: 2rem;
}

.bh-bundle-builder-page,
.bh-bundle-product-page {
  min-height: 70vh;
  display: grid;
  align-content: center;
  padding-top: calc(var(--bh-nav-offset) + clamp(2rem, 6vw, 5rem));
}

.bh-product-bundle-upsell {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 1.2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bh-product-bundle-upsell p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bh-product-bundle-upsell span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  line-height: 1.7;
  text-transform: uppercase;
}

.bh-product-bundle-upsell .bh-outline-button {
  justify-self: start;
  min-height: 44px;
}

.bh-cart-line__bundle {
  margin-bottom: 0.55rem;
}

.bh-cart-line__price {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
}

.bh-cart-line__price span {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: line-through;
}

.bh-cart-line__price strong {
  font-weight: 500;
}

.bh-image-fallback,
.bh-bundle-image-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 240px;
  color: rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #020202;
}

.bh-bundle-image-fallback span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bh-collage-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.08), transparent 24rem),
    linear-gradient(135deg, #030303 0%, #0a0a0a 52%, #020202 100%);
  color: #f4f4f0;
  min-height: 100vh;
  overflow: hidden;
}

.bh-collage-page::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.bh-collage-page > * {
  position: relative;
  z-index: 1;
}

.bh-collage-hero,
.bh-collage-intro,
.bh-collage-grid,
.bh-collage-story,
.bh-collage-final {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}

.bh-collage-hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 7vw, 5rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.65fr);
  min-height: 92vh;
  padding-top: calc(var(--bh-nav-offset) + 3rem);
}

.bh-collage-hero p,
.bh-collage-intro a,
.bh-collage-story a,
.bh-collage-final a,
.bh-collage-card p {
  font-family: var(--bh-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bh-collage-hero p {
  color: rgba(244, 244, 240, 0.58);
  font-size: 0.75rem;
}

.bh-collage-hero h1 {
  font-family: var(--bh-display);
  font-size: clamp(4.5rem, 18vw, 15rem);
  font-weight: 400;
  line-height: 0.8;
  margin: 1rem 0;
}

.bh-collage-hero span,
.bh-collage-intro p,
.bh-collage-story p,
.bh-collage-final p {
  color: rgba(244, 244, 240, 0.68);
  display: block;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.7;
  max-width: 46rem;
}

.bh-collage-hero__artifact,
.bh-collage-card__visual {
  background: #070707;
  border: 1px solid rgba(244, 244, 240, 0.16);
  overflow: hidden;
  position: relative;
}

.bh-collage-hero__artifact {
  aspect-ratio: 4 / 5;
}

.bh-collage-hero__artifact::before,
.bh-collage-card__visual::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.16), transparent 16rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), transparent 42%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
  content: "";
  inset: 0;
  position: absolute;
}

.bh-collage-hero__artifact span {
  background:
    linear-gradient(#050505, #121212) padding-box,
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent) border-box;
  border: 1px solid transparent;
  bottom: 12%;
  height: 58%;
  left: 22%;
  position: absolute;
  width: 56%;
}

.bh-collage-hero__artifact span::before {
  border: 1px solid rgba(244, 244, 240, 0.26);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  content: "";
  height: 42%;
  left: 28%;
  position: absolute;
  top: -29%;
  width: 44%;
}

.bh-collage-intro {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.bh-collage-intro div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.bh-collage-intro a,
.bh-collage-story a,
.bh-collage-final a {
  border: 1px solid rgba(244, 244, 240, 0.34);
  color: #f4f4f0;
  display: inline-flex;
  font-size: 0.68rem;
  justify-content: center;
  min-width: 9.5rem;
  padding: 0.9rem 1rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.bh-collage-intro a:hover,
.bh-collage-story a:hover,
.bh-collage-final a:hover {
  background: #f4f4f0;
  border-color: #f4f4f0;
  color: #040404;
}

.bh-collage-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding-bottom: clamp(4rem, 10vw, 8rem);
}

.bh-collage-card {
  grid-column: span 4;
  position: relative;
}

.bh-collage-card[data-size="1"] {
  grid-column: span 5;
  margin-top: 4rem;
}

.bh-collage-card[data-size="2"] {
  grid-column: span 3;
  margin-top: 2rem;
}

.bh-collage-card__visual {
  aspect-ratio: 4 / 5;
}

.bh-collage-card__visual span {
  bottom: 1rem;
  color: rgba(244, 244, 240, 0.8);
  font-family: var(--bh-mono);
  font-size: 0.72rem;
  left: 1rem;
  letter-spacing: 0.22em;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.bh-collage-card p {
  color: rgba(244, 244, 240, 0.48);
  font-size: 0.65rem;
  margin-top: 0.85rem;
}

.bh-collage-story,
.bh-collage-final {
  border-top: 1px solid rgba(244, 244, 240, 0.16);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
  padding-bottom: clamp(4rem, 10vw, 8rem);
  padding-top: clamp(3rem, 8vw, 6rem);
}

.bh-collage-final {
  align-items: center;
  min-height: 42vh;
}

::selection {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
}

@keyframes bh-page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media screen and (max-width: 980px) {
  .bh-manifesto__inner,
  .bh-manifesto__notes,
  .bh-home-object,
  .bh-home-object--reverse,
  .bh-home-notes__grid,
  .bh-archive__grid,
  .bh-cart-line,
  .bh-cart__footer {
    grid-template-columns: 1fr;
  }

  .bh-archive__grid {
    min-height: auto;
  }

  .bh-archive-panel {
    min-height: auto;
    scroll-snap-align: none;
  }

  .bh-archive--collection .bh-archive__text {
    transform: none;
  }

  .bh-archive__media img {
    aspect-ratio: 4 / 5;
  }

  .bh-archive--product .bh-archive__media {
    padding: 1rem var(--bh-gutter);
  }

  .bh-archive--product .bh-archive__media img {
    width: min(100%, 520px);
    max-height: 76vh;
    aspect-ratio: auto;
  }

  .bh-product-gallery {
    gap: 0.9rem;
  }

  .bh-product-gallery__main {
    min-height: min(68vh, 560px);
  }

  .bh-product-gallery__main .bh-product-gallery__image {
    width: 100%;
    height: min(68vh, 560px);
    max-height: min(68vh, 560px);
  }

  .bh-product-gallery__thumbs {
    gap: 0.45rem;
  }

  .bh-archive__content {
    padding: 2rem var(--bh-gutter) 3rem;
  }

  .bh-home-object {
    min-height: auto;
  }

  .bh-home-object__media img {
    aspect-ratio: 4 / 5;
  }

  .bh-cart-line__price {
    padding-top: 0;
  }
}

@media screen and (max-width: 640px) {
  .bh-site-header__inner {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .bh-site-header__time {
    display: none;
  }

  .bh-site-header__actions {
    gap: 0.75rem;
  }

  .bh-entry__statement p {
    letter-spacing: 0.18em;
  }

  .bh-product-form__select,
  .bh-outline-button,
  .bh-cart-line__quantity {
    font-size: 0.74rem;
  }

  .bh-manifesto,
  .bh-home-objects,
  .bh-home-notes,
  .bh-home-cta {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .bh-cart {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media screen and (max-width: 980px) {
  .bh-bundle-hero,
  .bh-bundle-builder__layout,
  .bh-bundle-product {
    grid-template-columns: 1fr;
  }

  .bh-bundle-hero {
    min-height: auto;
    padding-top: calc(var(--bh-nav-offset) + 3rem);
  }

  .bh-bundle-hero__visual {
    min-height: 48vh;
  }

  .bh-bundle-curated__grid,
  .bh-bundle-builder__curated,
  .bh-bundle-builder__grid,
  .bh-bundle-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bh-bundle-summary {
    position: static;
  }

  .bh-bundle-product__media,
  .bh-curated-bundle__image {
    min-height: 300px;
  }
}

@media screen and (max-width: 640px) {
  .bh-site-header__actions {
    gap: 0.55rem;
  }

  .bh-site-header__actions .bh-site-header__link[href="/bundles"] {
    display: none;
  }

  .bh-home-bundle,
  .bh-bundle-hero,
  .bh-bundle-curated,
  .bh-bundle-builder,
  .bh-bundle-why,
  .bh-bundle-final,
  .bh-bundle-builder-page,
  .bh-bundle-product-page {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .bh-bundle-hero__actions,
  .bh-home-bundle__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bh-bundle-curated__grid,
  .bh-bundle-builder__curated,
  .bh-bundle-builder__grid,
  .bh-bundle-why__grid {
    grid-template-columns: 1fr;
  }

  .bh-bundle-product__media,
  .bh-curated-bundle__image {
    min-height: 270px;
  }

  .bh-bundle-builder {
    padding-bottom: 6.5rem;
  }

  .bh-bundle-sticky {
    display: flex;
  }

  .bh-cart-line__price {
    justify-items: start;
  }
}

@media screen and (max-width: 980px) {
  .bh-collage-hero,
  .bh-collage-intro,
  .bh-collage-story,
  .bh-collage-final {
    grid-template-columns: 1fr;
  }

  .bh-collage-intro div {
    justify-content: flex-start;
  }

  .bh-collage-card,
  .bh-collage-card[data-size="1"],
  .bh-collage-card[data-size="2"] {
    grid-column: span 6;
    margin-top: 0;
  }
}

@media screen and (max-width: 640px) {
  .bh-collage-hero,
  .bh-collage-intro,
  .bh-collage-grid,
  .bh-collage-story,
  .bh-collage-final {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .bh-collage-hero {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .bh-collage-grid {
    grid-template-columns: 1fr;
  }

  .bh-collage-card,
  .bh-collage-card[data-size="1"],
  .bh-collage-card[data-size="2"] {
    grid-column: auto;
  }

  .bh-collage-intro div {
    flex-direction: column;
  }
}
