:root {
  --bc-ink: #171515;
  --bc-muted: #68605d;
  --bc-cream: #f6f1e8;
  --bc-paper: #fffaf4;
  --bc-blush: #f5c4c0;
  --bc-blush-deep: #ed9fa0;
  --bc-line: rgba(23, 21, 21, 0.12);
  --bc-shadow: 0 28px 80px rgba(74, 47, 44, 0.14);
  --bc-radius: 36px;
  --bc-gutter: clamp(20px, 5vw, 64px);
  --bc-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body.bc-page {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--bc-cream);
  color: var(--bc-ink);
  font-family: var(--bc-font);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.bc-page *,
.bc-page *::before,
.bc-page *::after { box-sizing: border-box; }

.bc-page a { color: inherit; }
.bc-page img { display: block; max-width: 100%; height: auto; }

.bc-shell {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: var(--bc-gutter);
}

.bc-shell-narrow {
  width: min(100%, 860px);
  margin-inline: auto;
  padding-inline: var(--bc-gutter);
}

.bc-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--bc-line);
  background: rgba(246, 241, 232, 0.9);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
}

.bc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.bc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bc-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(83, 42, 42, 0.15);
}

.bc-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}

.bc-nav a {
  color: var(--bc-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.bc-nav a:hover,
.bc-nav a:focus-visible,
.bc-nav a[aria-current="page"] { color: var(--bc-ink); }

.bc-product-nav-shell {
  position: fixed;
  inset: auto 0 max(18px, env(safe-area-inset-bottom, 0px)) 0;
  z-index: 60;
  pointer-events: none;
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.45s ease;
}

.bc-product-nav-shell.is-visible {
  transform: none;
  opacity: 1;
}

.bc-product-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 40px), 720px);
  height: 58px;
  margin-inline: auto;
  padding: 0 9px 0 24px;
  border: 1px solid rgba(23, 21, 21, 0.11);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.8);
  box-shadow: 0 16px 40px rgba(74, 47, 44, 0.14);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  pointer-events: auto;
}

.bc-product-name {
  color: var(--bc-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.bc-product-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bc-product-links > a:not(.bc-button) {
  color: var(--bc-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease;
}

.bc-product-links > a:not(.bc-button):hover,
.bc-product-links > a:not(.bc-button):focus-visible { color: var(--bc-ink); }

.bc-product-nav .bc-button {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 12px;
}

.bc-hero {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
  min-height: min(970px, calc(100vh - 76px));
  padding-block: clamp(72px, 9vw, 128px) 0;
}

.bc-hero::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -12vw;
  width: min(70vw, 920px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bc-blush);
  content: "";
  opacity: 0.72;
}

.bc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 9vw, 120px);
}

.bc-hero-copy { padding-bottom: clamp(44px, 9vw, 120px); }

.bc-product-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.bc-product-lockup img {
  width: clamp(72px, 8vw, 100px);
  border-radius: 25%;
  box-shadow: 0 16px 38px rgba(97, 49, 49, 0.18);
}

.bc-product-lockup span {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bc-eyebrow {
  margin: 0 0 16px;
  color: #9c595d;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bc-title,
.bc-section-title,
.bc-resource-title {
  margin: 0;
  color: var(--bc-ink);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.bc-title { max-width: 780px; font-size: clamp(3.35rem, 7vw, 6.7rem); }
.bc-section-title { max-width: 880px; font-size: clamp(2.6rem, 5.4vw, 5.1rem); }
.bc-resource-title { max-width: 850px; font-size: clamp(3rem, 6vw, 5.9rem); }

.bc-lead,
.bc-section-copy,
.bc-resource-lead {
  margin: 0;
  color: var(--bc-muted);
  letter-spacing: -0.025em;
}

.bc-lead {
  max-width: 640px;
  padding-top: 28px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.bc-section-copy,
.bc-resource-lead { max-width: 690px; font-size: clamp(1.05rem, 1.8vw, 1.3rem); }

.bc-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.bc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding-inline: 23px;
  border: 1px solid var(--bc-line);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.72);
  color: var(--bc-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.bc-button:hover,
.bc-button:focus-visible { transform: translateY(-2px); background: var(--bc-paper); }
.bc-page .bc-button-primary { border-color: var(--bc-ink); background: var(--bc-ink); color: #fff; }
.bc-button-primary:hover,
.bc-button-primary:focus-visible { background: #312b2a; }

.bc-availability {
  margin: 18px 0 0;
  color: #8c7f7a;
  font-size: 13px;
  font-weight: 600;
}

.bc-hero-media {
  position: relative;
  align-self: end;
  width: min(100%, 530px);
  margin-inline: auto;
}

.bc-hero-media img {
  width: 100%;
}

.bc-mantra {
  padding-block: clamp(28px, 5vw, 52px);
  border-block: 1px solid var(--bc-line);
  background: var(--bc-paper);
  text-align: center;
}

.bc-mantra p {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  font-weight: 660;
  letter-spacing: -0.04em;
}

.bc-section { padding-block: clamp(90px, 12vw, 170px); }
.bc-section-blush { background: var(--bc-blush); }
.bc-section-dark { background: var(--bc-ink); color: #fff; }
.bc-section-dark .bc-eyebrow { color: #f3aeb0; }
.bc-section-dark .bc-section-title { color: #fff; }
.bc-section-dark .bc-section-copy { color: rgba(255, 255, 255, 0.64); }

.bc-section-heading {
  display: grid;
  gap: 26px;
  margin-bottom: clamp(52px, 8vw, 96px);
}

.bc-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bc-step {
  min-height: 310px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(23, 21, 21, 0.09);
  border-radius: var(--bc-radius);
  background: rgba(255, 250, 244, 0.66);
}

.bc-step-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--bc-ink);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

.bc-step h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.bc-step p { margin: 0; color: var(--bc-muted); }

.bc-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(14px, 2.6vw, 30px);
}

.bc-shot {
  margin: 0;
}

.bc-shot img {
  width: 100%;
  height: auto;
}
.bc-shot:nth-child(2) { margin-top: clamp(34px, 7vw, 90px); }

.bc-promise {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 64px;
}

.bc-promise-card {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--bc-radius);
  background: rgba(255, 255, 255, 0.055);
}

.bc-promise-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.03em;
}

.bc-final {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 15vw, 210px);
  background: var(--bc-paper);
  text-align: center;
}

.bc-final .bc-section-title,
.bc-final .bc-section-copy { margin-inline: auto; }
.bc-final .bc-section-copy { margin-top: 24px; }
.bc-final .bc-actions { justify-content: center; }

.bc-footer {
  padding-block: 70px 34px;
  border-top: 1px solid var(--bc-line);
  background: var(--bc-cream);
}

.bc-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 40px;
}

.bc-footer h2 { margin: 0 0 14px; font-size: 14px; }
.bc-footer p,
.bc-footer a { display: block; margin: 0 0 9px; color: var(--bc-muted); text-decoration: none; font-size: 14px; }
.bc-footer a:hover,
.bc-footer a:focus-visible { color: var(--bc-ink); }

.bc-footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--bc-line);
  color: #8f8580;
  font-size: 12px;
}

.bc-resource-main { padding-bottom: clamp(90px, 12vw, 160px); }

.bc-resource-hero {
  padding-block: clamp(90px, 12vw, 160px) clamp(70px, 10vw, 120px);
  border-bottom: 1px solid var(--bc-line);
}

.bc-resource-hero .bc-resource-lead { margin-top: 28px; }

.bc-resource-content {
  display: grid;
  gap: 1px;
  padding-top: clamp(48px, 8vw, 90px);
}

.bc-resource-block {
  padding-block: clamp(32px, 5vw, 54px);
  border-bottom: 1px solid var(--bc-line);
}

.bc-resource-block:first-child { padding-top: 0; }
.bc-resource-block h2,
.bc-resource-block h3 {
  margin: 0 0 16px;
  color: var(--bc-ink);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.bc-resource-block h2 { font-size: clamp(1.85rem, 3.5vw, 2.8rem); }
.bc-resource-block h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.bc-resource-block p,
.bc-resource-block li { color: var(--bc-muted); }
.bc-resource-block p { margin: 0 0 16px; }
.bc-resource-block p:last-child { margin-bottom: 0; }
.bc-resource-block ol,
.bc-resource-block ul { margin: 18px 0 0; padding-left: 1.25em; }
.bc-resource-block li { margin-bottom: 10px; padding-left: 6px; }

.bc-contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: clamp(50px, 8vw, 90px);
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--bc-radius);
  background: var(--bc-blush);
}

.bc-contact-card h2 { margin: 0 0 8px; font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -0.04em; }
.bc-contact-card p { margin: 0; color: var(--bc-muted); }

.bc-faq { border-top: 1px solid var(--bc-line); }

.bc-faq details { border-bottom: 1px solid var(--bc-line); }

.bc-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 680;
  letter-spacing: -0.025em;
}

.bc-faq summary::-webkit-details-marker { display: none; }
.bc-faq summary::after { content: "+"; color: var(--bc-muted); font-size: 1.5rem; font-weight: 400; }
.bc-faq details[open] summary::after { content: "−"; }
.bc-faq details p { max-width: 710px; margin: -4px 0 28px; color: var(--bc-muted); }

@media (max-width: 900px) {
  .bc-hero { padding-top: 70px; }
  .bc-hero-grid { grid-template-columns: 1fr; }
  .bc-hero-copy { padding-bottom: 0; }
  .bc-hero-media { width: min(82vw, 510px); }
  .bc-steps { grid-template-columns: 1fr; }
  .bc-step { min-height: 0; }
  .bc-step-number { margin-bottom: 48px; }
  .bc-promise { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 680px) {
  .bc-header-inner { min-height: 68px; }
  .bc-brand span { display: none; }
  .bc-brand img { width: 36px; height: 36px; }
  .bc-nav { gap: 18px; }
  .bc-nav a { font-size: 13px; }
  .bc-nav a:first-child { display: none; }
  .bc-product-nav-shell { bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
  .bc-product-nav {
    width: min(calc(100% - 20px), 620px);
    height: 58px;
    padding: 0 8px 0 18px;
  }
  .bc-product-links { gap: 8px; }
  .bc-product-links > a:not(.bc-button) { display: none; }
  .bc-hero { min-height: auto; }
  .bc-hero::before { top: 28%; right: -50vw; width: 130vw; }
  .bc-title { font-size: clamp(3.15rem, 16vw, 5rem); }
  .bc-product-lockup { margin-bottom: 26px; }
  .bc-shot-grid { grid-template-columns: 1fr; gap: 26px; }
  .bc-shot { width: min(100%, 430px); margin-inline: auto; }
  .bc-shot:nth-child(2) { margin-top: 0; }
  .bc-footer-grid { grid-template-columns: 1fr; }
  .bc-footer-meta { flex-direction: column; }
  .bc-contact-card { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bc-button,
  .bc-product-nav-shell { transition: none; }
}
