:root {
  --magenta: #c21896;
  --magenta-bright: #e23aab;
  --magenta-deep: #8e0f6d;
  --purple: #3d2a7a;
  --purple-deep: #1a102e;
  --night: #120c1f;
  --ink: #16141c;
  --ink-soft: #3a3544;
  --muted: #6b6574;
  --paper: #f4f0ea;
  --paper-2: #e8e1d6;
  --cream: #faf7f2;
  --white: #ffffff;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --sans: "Outfit", "Segoe UI", system-ui, sans-serif;
  --radius: 18px;
  --shadow: 0 0 0 1px rgb(22 20 28 / 0.06), 0 8px 24px -12px rgb(22 20 28 / 0.16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
  margin: 0;
}
p { text-wrap: pretty; }
button, [role="button"] { cursor: pointer; font-family: inherit; }
::selection { background: var(--magenta); color: #fff; }

.bp-skip {
  position: absolute; left: -999px; top: 0;
}
.bp-skip:focus {
  left: 1rem; top: 1rem; z-index: 80;
  background: #fff; padding: .5rem 1rem; border-radius: 999px;
}

.bp-wrap {
  width: min(80rem, calc(100% - 2.5rem));
  margin-inline: auto;
}
@media (min-width: 640px) {
  .bp-wrap { width: min(80rem, calc(100% - 4rem)); }
}

.bp-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--magenta);
}
.bp-kicker--light { color: var(--magenta-bright); }
.bp-kicker--ghost { color: rgba(255,255,255,.7); }

.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 3rem;
  padding: 0 1.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  transition: transform 150ms ease, background-color 150ms ease;
}
.bp-btn:active { transform: scale(0.96); }
.bp-btn--magenta { background: var(--magenta); color: #fff; }
.bp-btn--magenta:hover { background: var(--magenta-bright); }
.bp-btn--white { background: #fff; color: var(--ink); }
.bp-btn--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
}
.bp-btn--ghost:hover { background: rgba(255,255,255,.1); }
.bp-btn--ink { background: var(--ink); color: #fff; }

/* Header */
.bp-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 5rem;
  display: flex;
  align-items: center;
  color: #fff;
  transition: background-color 300ms ease, color 300ms ease, box-shadow 300ms ease;
}
.bp-header.is-solid {
  background: rgb(244 240 234 / 0.95);
  color: var(--ink);
  box-shadow: 0 1px 0 rgb(22 20 28 / 0.08);
  backdrop-filter: blur(12px);
}
.bp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(80rem, calc(100% - 2.5rem));
  margin-inline: auto;
}
.bp-nav { display: none; gap: 1.75rem; }
.bp-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: .6;
}
.bp-nav a:hover, .bp-nav a.is-active { opacity: 1; }
.bp-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--magenta);
}
.bp-header:not(.is-solid) .bp-nav a.is-active::after { background: var(--magenta-bright); }
.bp-header__cta { display: none; }
.bp-header:not(.is-solid) .bp-header__cta {
  background: #fff;
  color: var(--ink);
}
.bp-burger {
  width: 2.75rem; height: 2.75rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  display: grid;
  place-items: center;
}
@media (min-width: 1024px) {
  .bp-nav, .bp-header__cta { display: flex; }
  .bp-burger { display: none; }
}

.bp-logo { display: flex; align-items: center; gap: .75rem; color: var(--magenta); }
.bp-logo__mark { width: auto; height: 3rem; }
.bp-logo__type { display: flex; align-items: flex-end; gap: .65rem; }
.bp-logo__wordmark {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: .92;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
}
.bp-logo__bureau { color: var(--ink); }
.bp-logo__peru { color: var(--purple); }
.bp-logo__tag {
  display: none;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.25;
  border-left: 1px solid rgb(22 20 28 / 0.2);
  padding-left: .5rem;
  margin-bottom: 2px;
  color: var(--ink-soft);
}
.bp-logo--light,
.bp-header:not(.is-solid) .bp-logo {
  color: #fff;
}
.bp-logo--light .bp-logo__bureau,
.bp-logo--light .bp-logo__peru,
.bp-header:not(.is-solid) .bp-logo__bureau,
.bp-header:not(.is-solid) .bp-logo__peru {
  color: #fff;
}
.bp-logo--light .bp-logo__tag,
.bp-header:not(.is-solid) .bp-logo__tag {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.35);
}
@media (min-width: 640px) { .bp-logo__tag { display: block; } }

.bp-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--purple-deep);
  color: #fff;
  padding: 0 1.25rem;
}
.bp-drawer.is-open { display: block; }
.bp-drawer__bar {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bp-drawer nav { display: flex; flex-direction: column; gap: .25rem; padding-top: 2rem; }
.bp-drawer nav a {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
body.is-locked { overflow: hidden; }

/* Hero */
.bp-hero {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  background: var(--night);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bp-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}
.bp-hero__slide.is-active { opacity: 1; }
.bp-hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  animation: ken 18s ease-in-out infinite alternate;
}
.bp-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--night), rgb(18 12 31 / .78), rgb(26 16 46 / .35)),
    linear-gradient(to top, var(--night), transparent, rgb(18 12 31 / .4));
}
.bp-hero__content {
  position: relative;
  padding: 8rem 0 6rem;
}
.bp-hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(3.1rem, 11vw, 8.4rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.02em;
}
.bp-hero h1 span.accent { color: var(--magenta-bright); }
.bp-hero__lead {
  margin-top: 1.75rem;
  max-width: 36rem;
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
}
.bp-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.25rem; }
.bp-hero__meta {
  margin-top: 3.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.bp-dots { display: flex; gap: 6px; }
.bp-dots button {
  height: 6px; width: 10px; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.35);
  padding: 0;
  transition: width 300ms ease, background-color 300ms ease;
}
.bp-dots button.is-on { width: 28px; background: var(--magenta-bright); }

@keyframes ken {
  from { transform: scale(1.06); }
  to { transform: scale(1.16) translate3d(-1.5%, 1%, 0); }
}

.bp-marquee {
  overflow: hidden;
  border-block: 1px solid rgb(22 20 28 / 0.08);
  background: var(--paper-2);
  padding: 1.15rem 0;
}
.bp-marquee__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marquee 38s linear infinite;
}
.bp-marquee span {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(22 20 28 / 0.45);
  white-space: nowrap;
}
.bp-marquee i { color: var(--magenta); font-style: normal; margin-left: 2.5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.bp-stats {
  background: var(--purple-deep);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.bp-stats__item {
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.bp-stats__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
.bp-stats__item strong {
  display: block;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--magenta-bright);
}
.bp-stats__item span {
  display: block;
  margin-top: .75rem;
  max-width: 12rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
@media (min-width: 640px) {
  .bp-stats { grid-template-columns: repeat(4, 1fr); }
  .bp-stats__item {
    border-bottom: 0;
    border-right: 1px solid rgba(255,255,255,.1);
    padding: 3.5rem 2rem;
  }
  .bp-stats__item:last-child { border-right: 0; }
  .bp-stats__item strong { font-size: 3.6rem; }
}

.bp-section { padding: 5rem 0; }
.bp-section--cream { background: var(--cream); }
.bp-section__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.bp-section__head h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .bp-section__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.bp-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bp-svc-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .bp-svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .bp-svc-grid { grid-template-columns: repeat(3, 1fr); } }
.bp-svc-card {
  position: relative;
  isolation: isolate;
  min-height: 22rem;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
}
.bp-svc-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: -2;
  transition: transform 700ms ease;
}
.bp-svc-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, var(--night), rgb(18 12 31 / .55), rgb(18 12 31 / .1));
}
.bp-svc-card:hover img { transform: scale(1.05); }
.bp-svc-card h3 {
  margin-top: .4rem;
  font-size: 1.7rem;
  text-transform: uppercase;
}
.bp-svc-card p { color: rgba(255,255,255,.75); font-size: .9rem; }

.bp-feat {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.bp-feat img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  transition: transform 700ms ease;
}
.bp-feat:hover img { transform: scale(1.04); }
.bp-feat::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(18 12 31 / .8), transparent);
}
.bp-feat__cap {
  position: absolute;
  left: 0; bottom: 0;
  padding: 1.5rem 2rem;
  color: #fff;
  z-index: 1;
}
.bp-feat__cap h3 {
  font-size: clamp(1.6rem, 4vw, 3rem);
  text-transform: uppercase;
}

.bp-cards { display: grid; gap: 1rem; }
@media (min-width: 640px) { .bp-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .bp-cards { grid-template-columns: repeat(3, 1fr); } }
.bp-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.bp-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms ease;
}
.bp-card:hover img { transform: scale(1.05); }
.bp-card__body { padding: 1rem 1.25rem 1.2rem; }
.bp-card__body p {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
}
.bp-card__body h3, .bp-card__body h2 {
  margin: .25rem 0 0;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.bp-value {
  background: var(--purple-deep);
  color: #fff;
  display: grid;
}
@media (min-width: 1024px) { .bp-value { grid-template-columns: 5fr 7fr; } }
.bp-value__intro { padding: 4rem 1.5rem; position: relative; overflow: hidden; }
@media (min-width: 640px) { .bp-value__intro { padding: 5rem 2.5rem; } }
.bp-value__intro h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}
.bp-value__intro p { color: rgba(255,255,255,.7); max-width: 28rem; }
.bp-value__list { border-top: 1px solid rgba(255,255,255,.1); }
@media (min-width: 1024px) { .bp-value__list { border-top: 0; border-left: 1px solid rgba(255,255,255,.1); } }
.bp-value__item {
  display: flex;
  gap: 1.25rem;
  padding: 2.4rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.bp-value__item:last-child { border-bottom: 0; }
.bp-value__item h3 { font-size: 1.4rem; text-transform: uppercase; }
.bp-value__item p { color: rgba(255,255,255,.65); font-size: .95rem; }

.bp-split { display: grid; }
@media (min-width: 1024px) { .bp-split { grid-template-columns: 1fr 1fr; } }
.bp-split__media { min-height: 22rem; position: relative; }
.bp-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bp-split__copy { display: flex; flex-direction: column; justify-content: center; padding: 3.5rem 1.5rem; }
@media (min-width: 640px) { .bp-split__copy { padding: 4rem 3rem; } }
.bp-split__copy h2 { margin-top: .75rem; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }
.bp-split--dark .bp-split__copy { background: var(--ink); color: #fff; }
.bp-split--dark .bp-split__copy p { color: rgba(255,255,255,.7); }
.bp-split__num {
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 600;
  line-height: .9;
  color: var(--magenta-bright);
}

.bp-cta {
  background: var(--magenta);
  color: #fff;
  position: relative;
}
.bp-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .bp-cta__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.bp-cta h2 {
  margin-top: .75rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  max-width: 36rem;
}

.bp-pagehero {
  position: relative;
  isolation: isolate;
  background: var(--purple-deep);
  color: #fff;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
}
.bp-pagehero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; z-index: -2;
}
.bp-pagehero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, var(--purple-deep), rgb(26 16 46 / .85), rgb(26 16 46 / .4));
}
.bp-pagehero h1 {
  margin-top: 1rem;
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: .9;
  max-width: 18ch;
}
.bp-pagehero p.lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: rgba(255,255,255,.75);
  font-size: 1.15rem;
}

.bp-prose { color: var(--ink-soft); font-size: 1.05rem; }
.bp-prose p + p { margin-top: 1.1rem; }
.bp-prose strong { color: var(--ink); }

.bp-filters {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  margin-bottom: 2rem;
}
.bp-filters button {
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgb(22 20 28 / 0.1);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bp-filters button.is-on { background: var(--ink); color: #fff; box-shadow: none; }

.bp-svc-row {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) { .bp-svc-row { grid-template-columns: 5fr 7fr; } }
.bp-svc-row__media { min-height: 16rem; position: relative; }
.bp-svc-row__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bp-svc-row__copy { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.bp-svc-row__copy h2 { margin-top: .4rem; font-size: clamp(1.6rem, 3vw, 2.2rem); text-transform: uppercase; }

.bp-checks { list-style: none; padding: 0; margin: 1.75rem 0 0; }
.bp-checks li { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .7rem; }
.bp-checks i {
  width: 1.5rem; height: 1.5rem; border-radius: 999px;
  background: rgb(194 24 150 / 0.12);
  color: var(--magenta);
  display: grid; place-items: center;
  font-style: normal;
  flex-shrink: 0;
}

.bp-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
@media (min-width: 640px) { .bp-form { padding: 2rem; } }
.bp-form__grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .bp-form__grid { grid-template-columns: 1fr 1fr; } }
.bp-form label { display: block; }
.bp-form label.full { grid-column: 1 / -1; }
.bp-form span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.bp-form input, .bp-form select, .bp-form textarea {
  margin-top: .4rem;
  width: 100%;
  border: 0;
  background: var(--paper);
  border-radius: 12px;
  padding: 0 1rem;
  height: 3rem;
  font: inherit;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgb(22 20 28 / 0.1);
  outline: none;
}
.bp-form textarea { height: auto; padding: .85rem 1rem; resize: vertical; }
.bp-form input:focus, .bp-form select:focus, .bp-form textarea:focus {
  box-shadow: inset 0 0 0 2px var(--magenta);
}

.bp-footer { background: var(--night); color: #fff; }
.bp-footer__grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 1024px) { .bp-footer__grid { grid-template-columns: 5fr 7fr; } }
.bp-footer p { color: rgba(255,255,255,.7); max-width: 26rem; }
.bp-footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (min-width: 640px) { .bp-footer__cols { grid-template-columns: 1fr 1fr 1fr; } }
.bp-footer h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta-bright);
  margin-bottom: 1rem;
}
.bp-footer ul { list-style: none; padding: 0; margin: 0; }
.bp-footer li { margin-bottom: .6rem; }
.bp-footer a { color: rgba(255,255,255,.75); }
.bp-footer a:hover { color: #fff; }
.bp-footer__bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.1rem 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
@media (min-width: 640px) {
  .bp-footer__bar { flex-direction: row; justify-content: space-between; }
}

.bp-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  width: 3.5rem; height: 3.5rem;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -10px rgb(37 211 102 / 0.8);
}
.bp-wa svg { width: 1.75rem; height: 1.75rem; fill: currentColor; }

.bp-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.bp-chips a {
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgb(22 20 28 / 0.12);
}
.bp-chips a:hover { background: var(--ink); color: #fff; }

.bp-gallery { display: flex; gap: .5rem; overflow-x: auto; margin-top: .75rem; }
.bp-gallery button {
  height: 5rem; width: 7rem; flex-shrink: 0;
  padding: 0; border: 0; border-radius: 8px; overflow: hidden;
  opacity: .7; box-shadow: 0 0 0 2px transparent;
  background: transparent;
}
.bp-gallery button.is-on { opacity: 1; box-shadow: 0 0 0 2px var(--magenta); }
.bp-gallery img { width: 100%; height: 100%; object-fit: cover; }

.bp-stage {
  background: var(--night);
  color: #fff;
  padding: 7rem 0 2rem;
}
.bp-stage h1 {
  margin-top: .4rem;
  font-size: clamp(2.2rem, 6vw, 5rem);
  text-transform: uppercase;
  line-height: .9;
}
.bp-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bp-marquee__track, .bp-hero__slide img { animation: none !important; }
}
