/* ═══════════════════════════════════════════════════════════════
   Beauté Concept — Homepage
   Sections: hero (with video), concerns grid, treatments,
   editorial split, clinic parallax, products teaser, doctors,
   devices editorial, testimonial carousel, CTA band.
   Tokens live in header.scss (loaded earlier in the bundle).
   ═══════════════════════════════════════════════════════════════ */

/* Tweak envelope variables (populated by JS or static defaults) */
:root {
  --mood-hero-grad: linear-gradient(160deg, #4a5240, #2e3a2a 60%, #1a1815);
  --mood-portrait-grayscale: 0.35;
  --ed-display-scale: 1;
  --ed-italic-weight: 300;
  --ed-eyebrow-track: 0.22em;
  --ed-section-pad: 144px;
  --ed-line-height: 1.04;
  --mo-anim-mult: 1;
  --mo-reveal-stagger: 120ms;
}

body.bc-homepage {
  background: var(--ivory-50);
  color: var(--ink-900);
  font-family: var(--ff-sans);
  overflow-x: hidden;
}
body.bc-homepage img { max-width: 100%; display: block; }
body.bc-homepage * { box-sizing: border-box; }

/* Mood envelopes */
body.bc-homepage.mood-daylight { background: #fdfaf4; }
body.bc-homepage.mood-atelier  { background: var(--ivory-50); }
body.bc-homepage.mood-midnight { background: #14120f; color: #f0ece4; }
body.bc-homepage.mood-midnight .b-treatments,
body.bc-homepage.mood-midnight .b-concerns,
body.bc-homepage.mood-midnight .b-editorial { background: #1c1a16; color: #f0ece4; }
body.bc-homepage.mood-midnight .b-section-head h2,
body.bc-homepage.mood-midnight .b-treatment-card h4,
body.bc-homepage.mood-midnight .b-editorial-text h2 { color: #f0ece4; }
body.bc-homepage.mood-midnight .b-treatment-card { background: #25221d; border-color: #2e2a24; }
body.bc-homepage.mood-midnight .b-treatment-card p { color: rgba(240,236,228,0.6); }
body.bc-homepage.mood-midnight .b-treatment-card .meta { color: rgba(240,236,228,0.45); border-color: #2e2a24; }
body.bc-homepage.mood-midnight .b-editorial-text p { color: rgba(240,236,228,0.7); }

/* Editorial intensity scales — hero headline is intentionally smaller
   than the design system default so it doesn't dominate the video. */
body.bc-homepage .b-hero h1 { font-size: calc(clamp(40px, 5.6vw, 88px) * var(--ed-display-scale)); }
body.bc-homepage .b-section-head h2 { font-size: calc(clamp(40px, 5.2vw, 80px) * var(--ed-display-scale)); line-height: var(--ed-line-height); }
body.bc-homepage .b-eyebrow,
body.bc-homepage .b-hero-eyebrow,
body.bc-homepage .b-doctor .role,
body.bc-homepage .b-treatment-card .eb { letter-spacing: var(--ed-eyebrow-track); }
body.bc-homepage .b-hero h1 em,
body.bc-homepage .b-section-head h2 em,
body.bc-homepage .b-editorial-text h2 em { font-weight: var(--ed-italic-weight); }

/* Motion presets */
body.bc-homepage.motion-still .b-hero h1 span,
body.bc-homepage.motion-still .b-hero-eyebrow,
body.bc-homepage.motion-still .b-hero-meta,
body.bc-homepage.motion-still .b-hero-actions,
body.bc-homepage.motion-still .b-hero-stat .stat { animation: none !important; opacity: 1 !important; transform: none !important; }
body.bc-homepage.motion-still .b-hero-scroll::before { animation: none; }
body.bc-homepage.motion-still .b-cursor { display: none; }

/* Cursor follower */
.b-cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--gold-600);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease-soft), opacity 220ms;
  z-index: 9999;
  mix-blend-mode: multiply;
  opacity: 0.85;
}
@media (max-width: 900px) { .b-cursor { display: none; } }

/* Generic section base — note we use `.bc-page section` to avoid
   stomping on Odoo backend <section> elements. */
.bc-page section { padding: var(--ed-section-pad) 56px; position: relative; }
.bc-page .b-section-head {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 16px; margin-bottom: 80px; max-width: 700px;
}
.bc-page .b-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe-500);
}
.bc-page .b-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold-600); }
.bc-page .b-section-head h2 {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(40px, 5.2vw, 80px); line-height: 1.04;
  letter-spacing: -0.02em; color: var(--ink-900); margin: 0;
  text-wrap: pretty;
}
.bc-page .b-section-head h2 em { font-style: italic; color: var(--gold-600); font-weight: 300; }

/* Buttons */
.bc-page .b-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 2px; border: 0;
  background: var(--ink-900); color: var(--ivory-50);
  text-decoration: none; cursor: pointer;
  transition: all .28s var(--ease-soft);
}
.bc-page .b-btn:hover { background: var(--moss-700); color: var(--ivory-50); }
.bc-page .b-btn-ghost {
  background: transparent; border: 1px solid currentColor; color: var(--ink-900);
}
.bc-page .b-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-900); text-decoration: none;
  padding: 8px 0; position: relative;
}
.bc-page .b-link::before {
  content: ""; width: 32px; height: 1px;
  background: var(--gold-600);
  transition: width 320ms var(--ease-out-quart);
}
.bc-page .b-link:hover::before { width: 56px; }

/* HERO */
.b-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  /* Reduced bottom padding to drop the headline lower on screen */
  padding: 0 56px 48px !important;
  color: var(--ivory-50); overflow: hidden;
}
.b-hero-bg {
  position: absolute; inset: 0;
  background: var(--mood-hero-grad);
  z-index: 0;
  transition: background 800ms var(--ease-soft);
}
.b-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(217, 199, 160, 0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(46, 58, 42, 0.6), transparent 60%);
}
.b-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: brightness(0.78) saturate(0.92) contrast(1.02);
}
.b-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.0) 28%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.0) 100%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .b-hero-video { display: none; } }

.b-hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px; align-items: end;
}
.b-hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0; animation: bcrise 1600ms var(--ease-out-quart) forwards;
  animation-delay: 200ms;
}
.b-hero-eyebrow .line { width: 36px; height: 1px; background: var(--gold-300); }
.b-hero h1 {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(40px, 5.6vw, 88px); line-height: 1.04;
  letter-spacing: -0.02em; color: var(--ivory-50);
  margin: 0 0 24px; max-width: 14ch;
}
.b-hero h1 em { font-style: italic; color: var(--gold-300); font-weight: 300; }
.b-hero h1 span {
  display: block; opacity: 0; transform: translateY(24px);
  animation: bcrise 1600ms var(--ease-out-quart) forwards;
}
.b-hero h1 span:nth-child(1) { animation-delay: 320ms; }
.b-hero h1 span:nth-child(2) { animation-delay: 440ms; }
.b-hero h1 span:nth-child(3) { animation-delay: 560ms; }
.b-hero-meta {
  font-family: var(--ff-sans); font-weight: 300;
  font-size: 17px; line-height: 1.7;
  color: rgba(251, 248, 243, 0.85);
  max-width: 38ch; margin-bottom: 36px;
  opacity: 0; animation: bcrise 1600ms var(--ease-out-quart) forwards;
  animation-delay: 700ms;
}
.b-hero-actions {
  display: flex; gap: 16px;
  opacity: 0; animation: bcrise 1600ms var(--ease-out-quart) forwards;
  animation-delay: 820ms;
}
.b-hero-actions .b-btn { color: var(--ink-900); background: var(--ivory-50); }
.b-hero-actions .b-btn:hover { background: var(--gold-300); color: var(--ink-900); }
.b-hero-actions .b-btn-ghost {
  color: var(--ivory-50); background: transparent;
  border: 1px solid rgba(251,248,243,0.4);
}
.b-hero-actions .b-btn-ghost:hover {
  background: rgba(251,248,243,0.08);
  border-color: var(--ivory-50); color: var(--ivory-50);
}
.b-hero-stat {
  align-self: end; display: flex; flex-direction: column;
  gap: 24px; padding-bottom: 12px;
}
.b-hero-stat .stat {
  border-top: 1px solid rgba(251,248,243,0.2);
  padding-top: 18px;
  opacity: 0; animation: bcrise 1600ms var(--ease-out-quart) forwards;
}
.b-hero-stat .stat:nth-child(1) { animation-delay: 900ms; }
.b-hero-stat .stat:nth-child(2) { animation-delay: 1000ms; }
.b-hero-stat .stat:nth-child(3) { animation-delay: 1100ms; }
.b-hero-stat .num {
  font-family: var(--ff-display); font-weight: 300;
  font-size: 56px; letter-spacing: -0.02em; line-height: 1;
  color: var(--ivory-50);
}
.b-hero-stat .lbl {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(251, 248, 243, 0.7); margin-top: 8px;
}
.b-hero-scroll {
  position: absolute; bottom: 36px; left: 56px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(251, 248, 243, 0.7);
  display: flex; align-items: center; gap: 12px; z-index: 2;
}
.b-hero-scroll::before {
  content: ""; width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-300), transparent);
  display: block; animation: bc-scroll-pulse 2.4s infinite;
}
@keyframes bc-scroll-pulse {
  0%, 100% { opacity: 0.3; transform: translateY(-6px); }
  50% { opacity: 1; transform: translateY(6px); }
}
@keyframes bcrise { to { opacity: 1; transform: translateY(0); } }

/* CONCERNS */
.b-concerns { background: var(--ivory-50); }
.b-concerns-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ivory-300);
}
.b-concern {
  border-bottom: 1px solid var(--ivory-300);
  border-right: 1px solid var(--ivory-300);
  padding: 40px 32px 36px;
  display: flex; flex-direction: column; gap: 12px;
  cursor: pointer;
  transition: background .42s var(--ease-soft);
  position: relative; min-height: 240px;
  overflow: hidden;
}
.b-concern:nth-child(3n) { border-right: 0; }
.b-concern:hover { background: var(--ivory-100); }
.b-concern .num {
  font-family: var(--ff-display); font-weight: 300;
  font-size: 14px; letter-spacing: 0.06em; color: var(--gold-600);
}
.b-concern h3 {
  font-family: var(--ff-display); font-weight: 300;
  font-size: 36px; line-height: 1.08; letter-spacing: -0.01em;
  color: var(--ink-900); margin: 4px 0 6px;
}
.b-concern p { font-size: 13.5px; line-height: 1.6; color: var(--taupe-600); margin: 0; }
.b-concern .arrow {
  position: absolute; bottom: 32px; right: 32px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ivory-300); border-radius: 999px;
  transition: all .42s var(--ease-soft);
  color: var(--ink-900);
}
.b-concern:hover .arrow {
  background: var(--ink-900); color: var(--ivory-50);
  border-color: var(--ink-900); transform: rotate(-45deg);
}
.b-concern > * { position: relative; z-index: 1; }

/* TREATMENTS */
.b-treatments { background: var(--ivory-100); }
.b-treatments-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.b-treatment-card {
  background: var(--ivory-50); border: 1px solid var(--ivory-200);
  display: flex; flex-direction: column; cursor: pointer;
  transition: transform .6s var(--ease-out-quart), box-shadow .6s var(--ease-out-quart);
}
.b-treatment-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(26,24,21,0.08); }
.b-treatment-card .img {
  height: 320px; position: relative; overflow: hidden;
  background: var(--ivory-200);
}
.b-treatment-card .img > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  transition: transform 1.6s var(--ease-out-quart); z-index: 0;
}
.b-treatment-card:hover .img > img { transform: scale(1.05); }
.b-treatment-card .img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,24,21,0.30));
  z-index: 1;
}
.b-treatment-card .body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 10px; }
.b-treatment-card .eb { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-600); font-weight: 500; }
.b-treatment-card h4 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 26px; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--ink-900); margin: 4px 0 6px;
}
.b-treatment-card p { font-size: 13px; line-height: 1.55; color: var(--taupe-600); margin: 0; }
.b-treatment-card .meta {
  display: flex; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--ivory-200);
  margin-top: 16px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--taupe-500);
}

/* EDITORIAL */
.b-editorial { background: var(--ivory-50); }
.b-editorial-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.b-editorial-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #d4c8b0, #5c513f);
  position: relative; overflow: hidden;
}
.b-editorial-img .editorial-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-position: center 25%; object-fit: cover;
  filter: saturate(0.92) contrast(1.03); z-index: 0;
}
.b-editorial-img .seal {
  position: absolute; bottom: 32px; right: 32px;
  width: 88px; height: 88px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.b-editorial-img .seal img { width: 88px; height: 88px; }
.b-editorial-text { padding: 32px 0; max-width: 520px; }
.b-editorial-text h2 {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(36px, 4vw, 60px); line-height: 1.06;
  letter-spacing: -0.02em; margin: 0 0 28px;
}
.b-editorial-text h2 em { font-style: italic; font-weight: 300; color: var(--gold-600); }
.b-editorial-text p { font-size: 16px; line-height: 1.75; color: var(--taupe-600); font-weight: 300; margin-bottom: 20px; }

/* PARALLAX — clinic interior */
.b-parallax {
  position: relative;
  min-height: 78vh;
  padding: 0 !important;
  display: flex; align-items: flex-end;
  color: var(--ivory-50);
  overflow: hidden; isolation: isolate;
}
.b-parallax-image {
  position: absolute; inset: 0;
  background-image: url("/bc_website_theme/static/src/img/clinic-treatment-room.png");
  background-size: cover; background-position: center 40%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
}
.b-parallax-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.45) 100%);
  z-index: -1;
}
.b-parallax-inner { width: 100%; padding: 168px 56px 112px; }
.b-parallax-inner .b-eyebrow { color: var(--gold-300); margin-bottom: 28px; }
.b-parallax-inner .b-eyebrow::before { background: var(--gold-300); }
.b-parallax-inner h2 {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(40px, 5vw, 76px); line-height: 1.04;
  letter-spacing: -0.02em; color: var(--ivory-50);
  max-width: 22ch; margin: 0 0 28px; text-wrap: pretty;
}
.b-parallax-inner h2 em { font-style: italic; color: var(--gold-300); font-weight: 300; }
.b-parallax-inner p {
  font-size: 17px; line-height: 1.7;
  color: rgba(252, 249, 242, 0.86);
  max-width: 56ch; font-weight: 300; margin: 0 0 32px;
}
.b-parallax-meta {
  display: flex; align-items: center; gap: 18px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(252, 249, 242, 0.78);
}
.b-parallax-meta .sep { width: 28px; height: 1px; background: var(--gold-300); opacity: 0.7; }
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  .b-parallax-image { background-attachment: scroll; }
  .b-parallax { min-height: 62vh; }
  .b-parallax-inner { padding: 96px 24px 64px; }
  .b-parallax-meta { flex-wrap: wrap; gap: 10px 14px; }
}

/* PRODUCTS */
.b-products { background: var(--ivory-50); }
.b-products-grid {
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: 32px; align-items: stretch;
}
.b-products-feature {
  position: relative; display: block; text-decoration: none;
  background: var(--ink-900); color: var(--ivory-50);
  overflow: hidden; isolation: isolate;
  min-height: 640px;
  transition: transform .6s var(--ease-soft);
}
.b-products-feature:hover { transform: translateY(-4px); }
.b-products-feature-art { position: absolute; inset: 0; z-index: 0; }
.b-products-feature-art img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  transition: transform 1.4s var(--ease-out-quart);
}
.b-products-feature:hover .b-products-feature-art img { transform: scale(1.04); }
.b-products-feature::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.10) 35%, rgba(0,0,0,0.78) 100%);
}
.b-products-feature-body {
  position: relative; z-index: 2; padding: 56px;
  display: flex; flex-direction: column; gap: 18px;
  margin-top: auto; height: 100%; justify-content: flex-end;
}
.b-products-feature-body .eb {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-300);
}
.b-products-feature-body h3 {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(32px, 3.4vw, 48px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 0;
  color: var(--ivory-50);
}
.b-products-feature-body p {
  font-size: 15px; line-height: 1.65; font-weight: 300;
  color: rgba(252, 249, 242, 0.82); max-width: 52ch; margin: 0;
}
.b-products-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 14px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ivory-50);
}
.b-products-link .arr { transition: transform .4s var(--ease-soft); }
.b-products-feature:hover .b-products-link .arr { transform: translateX(6px); }

.b-products-side { display: grid; grid-template-rows: 1fr auto; gap: 32px; }
.b-products-side-art {
  display: block; overflow: hidden; min-height: 320px;
  background: var(--ivory-200);
}
.b-products-side-art img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  transition: transform 1.4s var(--ease-out-quart);
}
.b-products-side-art:hover img { transform: scale(1.04); }

.b-products-brands {
  background: var(--ivory-100);
  padding: 40px 40px 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.b-products-brands .eb {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe-500);
}
.b-products-brands ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.b-products-brands li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--ivory-300);
  font-family: var(--ff-display); font-weight: 300;
  font-size: 22px; letter-spacing: -0.005em;
  color: var(--ink-900);
}
.b-products-brands li:last-child { border-bottom: 0; }
.b-products-brands li .name { letter-spacing: 0.04em; }
.b-products-brands li .cat {
  font-family: var(--ff-sans); font-weight: 500;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe-500);
}
.b-products-brands .b-btn-ghost { align-self: flex-start; margin-top: 10px; }

@media (max-width: 1080px) {
  .b-products-grid { grid-template-columns: 1fr; }
  .b-products-feature { min-height: 520px; }
  .b-products-feature-body { padding: 36px; }
}

/* DOCTORS */
.b-doctors { background: var(--moss-700); color: var(--ink-900); }
.b-doctors .b-section-head { max-width: none; }
.b-doctors .b-section-head h2 { color: var(--ink-900); max-width: 22ch; }
.b-doctors .b-eyebrow { color: var(--ink-900); }
.b-doctors .b-eyebrow::before { background: var(--ink-900); }
.b-doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.b-doctor { display: flex; flex-direction: column; gap: 20px; cursor: pointer; }
.b-doctor .portrait {
  aspect-ratio: 4 / 5;
  background: var(--ivory-100);
  position: relative; overflow: hidden;
}
.b-doctor .portrait img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 22%; display: block;
}
.b-doctor .portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(46, 58, 42, 0.35));
  pointer-events: none;
}
.b-doctor .name {
  font-family: var(--ff-display); font-weight: 300;
  font-size: 28px; letter-spacing: -0.01em;
  color: var(--ink-900);
}
.b-doctor .role {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-900); margin-top: -10px; opacity: 0.78;
}
.b-doctor .bio { font-size: 14px; line-height: 1.6; color: rgba(26,24,21,0.72); font-weight: 300; }

/* DEVICES */
.b-devices { background: var(--ivory-50); padding: 144px 56px; }
.b-devices-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end;
  margin-bottom: 72px;
}
.b-devices-title {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(36px, 4vw, 60px); line-height: 1.04; letter-spacing: -0.02em;
  margin: 12px 0 0; max-width: 14ch; text-wrap: pretty;
}
.b-devices-title em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.b-devices-lede {
  font-size: 16px; line-height: 1.7; color: var(--taupe-600);
  max-width: 48ch; font-weight: 300; margin: 0;
}
.b-devices-editorial { display: grid; grid-template-columns: 1.15fr 1fr; gap: 32px; }
.b-devices-shot { position: relative; overflow: hidden; background: var(--ivory-100); margin: 0; }
.b-devices-shot.tall { aspect-ratio: 4/5; }
.b-devices-shot.wide { aspect-ratio: 4/3.2; }
.b-devices-shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.02); transition: transform 1.6s var(--ease-out-quart);
}
.b-devices-shot:hover img { transform: scale(1.07); }
.b-devices-shot figcaption {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 6px;
  color: var(--ivory-50);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.b-devices-shot figcaption .eb {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-300);
}
.b-devices-shot figcaption .caption {
  font-family: var(--ff-display); font-weight: 300; font-style: italic;
  font-size: 18px; line-height: 1.3; letter-spacing: -0.005em;
  max-width: 28ch;
}
.b-devices-aside { display: flex; flex-direction: column; gap: 28px; }
.b-devices-more {
  display: inline-flex; align-items: center; gap: 14px;
  align-self: flex-start; padding: 14px 0;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-900); text-decoration: none;
  border-bottom: 1px solid var(--ink-900);
  transition: gap .4s var(--ease-soft), color .3s;
}
.b-devices-more:hover { gap: 22px; color: var(--gold-600); }
.b-devices-more .arr { font-size: 14px; }
.b-devices-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ivory-300);
}
.b-devices-list li {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ivory-300);
}
.b-devices-list li:nth-child(odd) { padding-right: 16px; }
.b-devices-list li:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--ivory-300); }
.b-devices-list .name {
  font-family: var(--ff-display); font-weight: 300;
  font-size: 19px; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink-900);
}
.b-devices-list .cat {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe-500);
}

@media (max-width: 1100px) {
  .b-devices-head { grid-template-columns: 1fr; gap: 24px; }
  .b-devices-editorial { grid-template-columns: 1fr; }
  .b-devices-shot.tall { aspect-ratio: 16/11; }
}
@media (max-width: 720px) {
  .b-devices { padding: 96px 24px; }
  .b-devices-list { grid-template-columns: 1fr; }
  .b-devices-list li:nth-child(even) { padding-left: 0; border-left: 0; }
}

/* TESTIMONIAL */
.b-testimonial { background: var(--ink-900); color: var(--ivory-50); padding: 160px 56px; }
.b-testimonial .inner { max-width: 980px; margin: 0 auto; text-align: center; }
.b-testimonial .hr { width: 36px; height: 1px; background: var(--gold-300); margin: 0 auto 32px; }
.b-testimonial blockquote {
  font-family: var(--ff-display); font-weight: 300; font-style: italic;
  font-size: clamp(28px, 3.4vw, 48px); line-height: 1.18;
  letter-spacing: -0.01em; color: var(--ivory-50);
  margin: 0; text-wrap: balance;
  transition: opacity 480ms var(--ease-soft);
}
.b-testimonial .who {
  margin-top: 40px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-300);
  transition: opacity 280ms var(--ease-soft);
}
.b-testimonial .nav { margin-top: 56px; display: flex; gap: 14px; justify-content: center; }
.b-testimonial .nav button {
  background: transparent;
  border: 1px solid rgba(251,248,243,0.3);
  color: var(--ivory-50);
  width: 48px; height: 48px; border-radius: 999px; cursor: pointer;
  transition: all .28s; font-size: 16px;
}
.b-testimonial .nav button:hover { background: var(--ivory-50); color: var(--ink-900); }
.b-testimonial .dots { display: flex; gap: 6px; align-items: center; }
.b-testimonial .dots span { width: 24px; height: 1px; background: rgba(251,248,243,0.3); }
.b-testimonial .dots span.active { background: var(--gold-300); }

/* CTA strip */
.b-cta-band { background: var(--ivory-100); padding: 144px 56px; text-align: center; }
.b-cta-band h2 {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(40px, 5vw, 76px); line-height: 1.04;
  letter-spacing: -0.02em; margin: 0 auto 24px; max-width: 18ch;
}
.b-cta-band h2 em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.b-cta-band p {
  font-size: 17px; line-height: 1.7; color: var(--taupe-600);
  max-width: 50ch; margin: 0 auto 40px; font-weight: 300;
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1200ms var(--ease-out-quart), transform 1200ms var(--ease-out-quart);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 1100px) {
  .b-hero-inner { grid-template-columns: 1fr; }
  .b-hero-stat { flex-direction: row; gap: 32px; }
  .b-treatments-grid { grid-template-columns: 1fr 1fr; }
  .b-doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .b-editorial-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  .bc-page section, .b-hero, .b-cta-band, .b-testimonial { padding-left: 24px; padding-right: 24px; }
  .b-concerns-grid { grid-template-columns: 1fr; }
  .b-concern, .b-concern:nth-child(3n) { border-right: 0; }
  .b-treatments-grid, .b-doctors-grid { grid-template-columns: 1fr; }
}

/* Push first section below fixed BC header (~88px depending on padding) */
body.bc-homepage #wrapwrap > main { padding-top: 0; }
