:root {
  --bhp-forest: #1f3a34;
  --bhp-forest-deep: #162c27;
  --bhp-gold: #b8975a;
  --bhp-gold-light: #e8d9aa;
  --bhp-cream: #f4f0e7;
  --bhp-cream-soft: #faf8f2;
  --bhp-ink: #17211e;
  --bhp-muted: #5f665f;
  --bhp-error: #9b342c;
  --bhp-success: #2f6d55;
  --bhp-border: rgba(31, 58, 52, 0.2);
  --bhp-shadow: 0 18px 46px rgba(22, 44, 39, 0.12);
  --bhp-radius: 6px;
  --bhp-serif: var(--font-cormorant), Georgia, serif;
  --bhp-sans: var(--font-inter), "Helvetica Neue", sans-serif;
}

.bhp-skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10000;
  transform: translateY(-180%);
  background: var(--bhp-gold);
  color: var(--bhp-forest-deep);
  padding: 0.75rem 1rem;
  font: 700 0.875rem/1 var(--bhp-sans);
  text-decoration: none;
}

.bhp-skip-link:focus {
  transform: translateY(0);
}

.bhp-conversion,
.bhp-article-module,
.bhp-page-section,
.bhp-cta-module,
.bhp-takeaways {
  box-sizing: border-box;
  font-family: var(--bhp-sans);
}

.bhp-conversion *,
.bhp-article-module *,
.bhp-page-section *,
.bhp-cta-module *,
.bhp-takeaways * {
  box-sizing: border-box;
}

.bhp-conversion {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem) 0;
}

.bhp-conversion__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--bhp-cream-soft);
  color: var(--bhp-ink);
  border: 1px solid var(--bhp-border);
  box-shadow: var(--bhp-shadow);
}

.bhp-eyebrow {
  margin: 0 0 0.9rem;
  color: var(--bhp-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.bhp-title {
  margin: 0;
  max-width: 18ch;
  color: inherit;
  font-family: var(--bhp-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.bhp-title--small {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.bhp-intro {
  margin: 1.25rem 0 0;
  max-width: 44rem;
  color: var(--bhp-muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.bhp-field {
  display: grid;
  gap: 0.45rem;
}

.bhp-field--full {
  grid-column: 1 / -1;
}

.bhp-field label {
  color: var(--bhp-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.bhp-field input,
.bhp-field select,
.bhp-field textarea {
  min-height: 3.25rem;
  width: 100%;
  border: 1px solid rgba(31, 58, 52, 0.28);
  border-radius: var(--bhp-radius);
  background: #fff;
  color: var(--bhp-ink);
  font: 400 1rem/1.4 var(--bhp-sans);
  padding: 0.8rem 0.9rem;
}

.bhp-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.bhp-field input:focus,
.bhp-field select:focus,
.bhp-field textarea:focus {
  border-color: var(--bhp-gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 90, 0.2);
  outline: 0;
}

.bhp-field [aria-invalid="true"] {
  border-color: var(--bhp-error);
}

.bhp-form__actions {
  display: flex;
  grid-column: 1 / -1;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.bhp-button,
.bhp-link-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bhp-gold);
  border-radius: var(--bhp-radius);
  background: var(--bhp-gold);
  color: var(--bhp-forest-deep);
  cursor: pointer;
  font: 700 0.9rem/1.2 var(--bhp-sans);
  padding: 0.85rem 1.35rem;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

a[class*="bg-gold"],
a[class*="border"][class*="px-"],
button[class*="bg-"],
.bhp-sticky-cta a {
  border-radius: var(--bhp-radius);
}

.bhp-service-section-media {
  position: relative;
  margin-top: clamp(1.75rem, 4vw, 3rem);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bhp-forest-deep);
  box-shadow: 0 16px 40px rgba(22, 44, 39, 0.12);
}

.bhp-service-section-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bhp-service-section-media + * {
  align-self: start;
}

.bhp-button:hover,
.bhp-link-button:hover {
  border-color: var(--bhp-forest);
  background: var(--bhp-forest);
  color: #fff;
}

.bhp-button:active,
.bhp-link-button:active {
  transform: translateY(1px);
}

.bhp-button:focus-visible,
.bhp-link-button:focus-visible,
.bhp-sticky-cta:focus-visible {
  outline: 3px solid var(--bhp-gold-light);
  outline-offset: 3px;
}

.bhp-button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.bhp-form__note,
.bhp-form__status {
  color: var(--bhp-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.bhp-form__status {
  min-height: 1.2rem;
  margin: 0;
}

.bhp-form__status[data-state="error"] {
  color: var(--bhp-error);
}

.bhp-form__status[data-state="success"] {
  color: var(--bhp-success);
}

.bhp-honeypot {
  position: absolute !important;
  left: -10000px !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

.bhp-article-module,
.bhp-cta-module,
.bhp-takeaways {
  width: min(980px, calc(100% - 2rem));
  margin-inline: auto;
}

.bhp-takeaways {
  margin-top: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--bhp-cream-soft);
  color: var(--bhp-ink);
  border: 1px solid var(--bhp-border);
}

.bhp-takeaways h2 {
  margin: 0 0 1rem;
  font-family: var(--bhp-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

.bhp-takeaways ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.25rem;
}

.bhp-takeaways li {
  max-width: 70ch;
  color: var(--bhp-muted);
  line-height: 1.65;
}

.bhp-article-module,
.bhp-cta-module {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-top: clamp(2.5rem, 6vw, 5.5rem);
  margin-bottom: clamp(2.5rem, 6vw, 5.5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--bhp-forest);
  color: #fff;
}

.bhp-article-module h2,
.bhp-cta-module h2 {
  margin: 0;
  max-width: 24ch;
  font-family: var(--bhp-serif);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.08;
}

.bhp-article-module p,
.bhp-cta-module p {
  margin: 0.75rem 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.bhp-article-module .bhp-link-button,
.bhp-cta-module .bhp-link-button {
  white-space: nowrap;
}

.bhp-page {
  min-height: 100vh;
  background: var(--bhp-cream);
  color: var(--bhp-ink);
  font-family: var(--bhp-sans);
}

.bhp-page__header {
  background: var(--bhp-forest);
  color: #fff;
}

.bhp-page__nav {
  display: flex;
  width: min(1600px, calc(100% - clamp(3rem, 7vw, 7rem)));
  min-height: 5rem;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.bhp-page__logo {
  display: inline-flex;
  width: clamp(9.5rem, 20vw, 13.75rem);
}

.bhp-page__logo img {
  display: block;
  height: auto;
  width: 100%;
}

.bhp-page__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.bhp-page__links a {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.bhp-page__links a:hover {
  color: var(--bhp-gold);
}

.bhp-page__hero {
  background: var(--bhp-forest);
  color: #fff;
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
}

.bhp-page__inner,
.bhp-page-section {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.bhp-page__hero h1 {
  margin: 0;
  max-width: 15ch;
  color: #fff;
  font-family: var(--bhp-serif);
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.bhp-page h1,
.bhp-page h2,
.bhp-page h3,
.bhp-profile-quote blockquote,
.bhp-home-refined h2 {
  font-family: var(--bhp-serif);
}

.bhp-team-index .bhp-page__hero h1 {
  max-width: 18ch;
}

.bhp-page__hero p {
  margin: 1.5rem 0 0;
  max-width: 49rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

.bhp-page-section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.bhp-page-section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.bhp-page-section h2 {
  margin: 0;
  max-width: 20ch;
  font-family: var(--bhp-serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.03;
}

.bhp-page-section h3 {
  margin: 0 0 0.5rem;
  font-family: var(--bhp-serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
}

.bhp-page-section p,
.bhp-page-section li {
  color: var(--bhp-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.bhp-rule-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--bhp-border);
}

.bhp-rule-list li {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--bhp-border);
}

.bhp-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.bhp-team-card {
  background: var(--bhp-cream-soft);
  border: 1px solid var(--bhp-border);
}

.bhp-team-card img {
  display: block;
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.bhp-team-card__body {
  padding: 1.4rem;
}

.bhp-team-card__body p {
  margin: 0.35rem 0 1.2rem;
}

.bhp-team-profile-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.bhp-team-profile-link img {
  transition: filter 240ms ease, transform 240ms ease;
}

.bhp-team-profile-link:hover img,
.bhp-team-profile-link:focus-visible img {
  filter: brightness(0.82);
  transform: translateY(-2px);
}

.bhp-team-profile-link__prompt {
  display: block;
  margin-top: 0.9rem;
  color: var(--bhp-gold-light);
  font-family: var(--bhp-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.bhp-bio {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.bhp-bio__portrait {
  position: sticky;
  top: 2rem;
  margin: 0;
  overflow: hidden;
  background: var(--bhp-forest-deep);
}

.bhp-bio img {
  display: block;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-height: 48rem;
  object-fit: cover;
}

.bhp-bio__copy h2 {
  margin-bottom: 0.75rem;
  max-width: 18ch;
}

.bhp-bio__copy > p:not(.bhp-eyebrow):not(.bhp-bio__role) {
  margin: 1.1rem 0 0;
  max-width: 58ch;
}

.bhp-bio__role {
  margin: 0 0 1.25rem !important;
  color: var(--bhp-gold) !important;
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bhp-profile-media {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(24rem, 1.3fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background: var(--bhp-forest);
  color: var(--bhp-cream);
  padding: clamp(2rem, 5vw, 4.5rem);
}

.bhp-profile-media h2,
.bhp-profile-media p {
  color: inherit;
}

.bhp-profile-media h2 {
  margin-bottom: 1.25rem;
}

.bhp-profile-media > div > p:last-child {
  margin: 0;
  max-width: 52ch;
}

.bhp-profile-media__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(199, 160, 85, 0.5);
  background: var(--bhp-forest-deep);
}

.bhp-profile-media__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.72) brightness(0.68);
  transform: scale(1.02);
}

.bhp-profile-media__label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(8, 31, 28, 0.82);
  color: var(--bhp-cream);
  font-family: var(--bhp-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.bhp-profile-quote {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(184, 151, 90, 0.12), transparent 52%),
    var(--bhp-forest);
  color: var(--bhp-cream);
  padding: clamp(4rem, 9vw, 8rem) 1rem;
}

.bhp-profile-quote::before {
  position: absolute;
  top: -0.5rem;
  left: clamp(1rem, 8vw, 8rem);
  color: rgba(232, 217, 170, 0.12);
  content: "“";
  font-family: var(--bhp-serif);
  font-size: clamp(11rem, 24vw, 22rem);
  line-height: 1;
}

.bhp-profile-quote__inner {
  position: relative;
  width: min(940px, 100%);
  margin-inline: auto;
}

.bhp-profile-quote blockquote {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.bhp-profile-quote cite {
  display: block;
  margin-top: 2rem;
  color: var(--bhp-gold-light);
  font-family: var(--bhp-sans);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bhp-home-photo-split {
  background: var(--bhp-cream-soft);
  color: var(--bhp-ink);
  padding: clamp(4rem, 9vw, 8rem) 1rem;
}

.bhp-home-photo-split__inner {
  display: grid;
  width: min(1180px, 100%);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.bhp-home-photo-split figure {
  margin: 0;
  overflow: hidden;
}

.bhp-home-photo-split img {
  display: block;
  aspect-ratio: 5 / 4;
  width: 100%;
  object-fit: cover;
}

.bhp-home-photo-split__copy h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--bhp-forest);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.bhp-home-photo-split__copy > p:not(.bhp-eyebrow) {
  max-width: 46ch;
  margin: 1.5rem 0 0;
  color: var(--bhp-muted);
  font: 400 1rem/1.75 var(--bhp-sans);
}

.bhp-home-photo-split__copy a,
.bhp-home-image-band__content a {
  display: inline-flex;
  margin-top: 1.8rem;
  color: var(--bhp-forest);
  font: 700 0.78rem/1.2 var(--bhp-sans);
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.bhp-home-image-band,
.bhp-home-office-band {
  position: relative;
  display: grid;
  min-height: clamp(34rem, 64vw, 52rem);
  overflow: hidden;
  color: #fff;
  place-items: center;
}

.bhp-home-image-band > img,
.bhp-home-office-band > img,
.bhp-home-image-band__overlay,
.bhp-home-office-band__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bhp-home-image-band > img,
.bhp-home-office-band > img {
  object-fit: cover;
}

.bhp-home-image-band > img {
  filter: grayscale(0.25) saturate(0.7);
}

.bhp-home-image-band__overlay {
  background: linear-gradient(90deg, rgba(15, 55, 48, 0.92) 0%, rgba(15, 55, 48, 0.72) 52%, rgba(15, 55, 48, 0.28) 100%);
}

.bhp-home-image-band__content,
.bhp-home-office-band__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.bhp-home-image-band__content h2,
.bhp-home-office-band__content h2 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.bhp-home-image-band__content > p:not(.bhp-eyebrow) {
  max-width: 44rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font: 400 1.05rem/1.7 var(--bhp-sans);
}

.bhp-home-image-band__content a {
  color: var(--bhp-gold-light);
}

.bhp-home-office-band {
  min-height: clamp(30rem, 56vw, 46rem);
  text-align: center;
}

.bhp-home-office-band__overlay {
  background: rgba(14, 38, 33, 0.72);
}

.bhp-home-office-band__content {
  display: grid;
  justify-items: center;
  padding-block: 4rem;
}

.bhp-home-office-band__content h2 {
  max-width: 15ch;
  font-size: clamp(2.7rem, 6vw, 6rem);
}

.bhp-home-office-band__content a {
  display: inline-flex;
  min-height: 3rem;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bhp-gold);
  border-radius: var(--bhp-radius);
  background: var(--bhp-gold);
  color: var(--bhp-forest-deep);
  font: 700 0.82rem/1.2 var(--bhp-sans);
  letter-spacing: 0.08em;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
}

.bhp-page__footer {
  background: var(--bhp-forest-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 2.2rem 0 calc(2.2rem + env(safe-area-inset-bottom));
}

.bhp-page__footer-inner {
  display: flex;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.bhp-page__footer a {
  color: var(--bhp-gold-light);
}

.bhp-site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 31, 28, 0.88), rgba(5, 31, 28, 0.93)),
    url("./images/home-office.webp") center 58% / cover no-repeat;
}

.bhp-site-footer > div {
  position: relative;
  z-index: 1;
}

.bhp-sticky-cta {
  display: none;
}

.bhp-form-noscript {
  width: min(760px, calc(100% - 2rem));
  margin: 1rem auto;
  background: #fff3cd;
  color: #4e3c00;
  padding: 1rem;
  font-family: var(--bhp-sans);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .bhp-conversion__panel,
  .bhp-page-section--split,
  .bhp-bio,
  .bhp-profile-media {
    grid-template-columns: 1fr;
  }

  .bhp-home-photo-split__inner {
    grid-template-columns: 1fr;
  }

  .bhp-bio__portrait {
    position: static;
  }

  .bhp-team-grid {
    grid-template-columns: 1fr;
  }

  .bhp-article-module,
  .bhp-cta-module {
    grid-template-columns: 1fr;
  }

  .bhp-article-module .bhp-link-button,
  .bhp-cta-module .bhp-link-button {
    justify-self: start;
    white-space: normal;
  }

  .bhp-page__links li:not(:last-child) {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(4.65rem + env(safe-area-inset-bottom));
  }

  body > header[style] > .max-w-content {
    gap: 0.75rem;
    padding: 1rem !important;
  }

  body > header[style] img {
    width: min(42vw, 150px);
    height: auto !important;
  }

  .article-nav {
    flex-shrink: 0;
    gap: 0 !important;
  }

  .article-nav a:not(:last-child) {
    display: none;
  }

  .article-nav a:last-child {
    margin-left: 0 !important;
    padding: 0.7rem 0.85rem !important;
    white-space: nowrap;
  }

  .bhp-form {
    grid-template-columns: 1fr;
  }

  .bhp-field {
    grid-column: 1;
  }

  .bhp-conversion {
    width: min(100% - 1rem, 1180px);
  }

  .bhp-conversion__panel {
    padding: 1.35rem;
  }

  .bhp-page__nav,
  .bhp-page__inner,
  .bhp-page-section,
  .bhp-page__footer-inner {
    width: min(100% - 2rem, 1180px);
  }

  .bhp-page__footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .bhp-sticky-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 9999;
    display: flex;
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    min-height: calc(4.65rem + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: center;
    background: var(--bhp-forest-deep);
    box-shadow: 0 -8px 26px rgba(22, 44, 39, 0.2);
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  }

  .bhp-sticky-cta a {
    display: flex;
    min-height: 3.1rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: var(--bhp-gold);
    color: var(--bhp-forest-deep);
    font: 700 0.92rem/1.1 var(--bhp-sans);
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bhp-button,
  .bhp-link-button,
  .bhp-skip-link {
    transition: none;
  }
}
