/* ===== DEEP FACE LAB — header ===== */
.dp-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px; background: rgba(243,241,235,0.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.dp-logo { font-size: 15px; font-weight: 800; letter-spacing: .08em; }
.dp-logo__part { display: inline-flex; align-items: center; padding: 0 8px; border-right: 1px solid var(--line-2); }
.dp-logo__part:first-child { padding-left: 0; }
.dp-logo__part:last-child { border-right: none; padding-right: 0; }
.dp-nav {
  display: flex; gap: 14px; font-size: 10px; letter-spacing: .03em; color: var(--ink-3);
  overflow-x: auto; white-space: nowrap; max-width: 68vw; scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, black calc(100% - 20px), transparent 100%);
  mask-image: linear-gradient(to right, black calc(100% - 20px), transparent 100%);
}
.dp-nav::-webkit-scrollbar { display: none; }
.dp-nav a { flex-shrink: 0; }
.dp-nav__row { display: contents; }

/* ===== shared primitives ===== */
.dp-kicker { font-size: 13px; letter-spacing: .12em; color: #8a6a4a; font-weight: 700; margin-bottom: 20px; }
.dp-h2 { font-size: 34px; font-weight: 800; line-height: 1.4; margin: 0 0 24px; }
.dp-h2--md { font-size: 30px; }
.dp-h2--sm { font-size: 30px; margin-bottom: 44px; }
.dp-subhead { font-size: 18px; font-weight: 700; margin-bottom: 36px; color: var(--ink-3); }
.dp-lead { font-size: 16px; color: var(--ink-3); line-height: 1.7; margin: 0 0 48px; }
.dp-body { font-size: 11px; color: var(--ink-3); line-height: 1.8; margin: 0 0 24px; }
.dp-rule { border-top: 1px solid var(--line-2); padding-top: 28px; margin-bottom: 0; }
.dp-tag { display: inline-block; background: #111110; color: #FFFFFF; padding: 3px 10px; }
.dp-tag--sm { padding: 3px 8px; }
.dp-accent-label { font-size: 13px; letter-spacing: .06em; color: #8a6a4a; font-weight: 700; margin-bottom: 10px; }
.dp-tagline { font-size: 15px; font-weight: 700; }
.dp-view-detail { display: inline-block; margin-top: 20px; font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.dp-product-name { font-size: 20px; letter-spacing: .04em; color: var(--ink); }
.dp-fact-box { padding: 20px 24px; margin-bottom: 24px; background: var(--bg-alt); border-radius: 8px; }
.dp-fact-box__title { font-size: 14px; font-weight: 800; margin-bottom: 10px; }
.dp-fact-box__body { font-size: 12px; color: var(--ink-3); line-height: 1.7; }

/* ===== generic 50/50-family split section ===== */
.dp-split { width: 100%; display: flex; flex-wrap: nowrap; min-height: 72vh; background: var(--bg); }
.dp-split--white { background: var(--white); }
.dp-split__text.dp-split__text--tan { background: #F3F1EB; }
.dp-split--dark, .dp-split--dark .dp-split__text { background: #123524; }
.dp-split--dark .dp-kicker, .dp-split--dark .dp-accent-label { color: #c9b896; }
.dp-split--dark .dp-h2, .dp-split--dark .dp-product-name,
.dp-split--dark .dp-fact-box__title, .dp-split--dark .dp-tagline { color: #F5F1E6; }
.dp-split--dark .dp-body, .dp-split--dark .dp-fact-box__body { color: #E4DECF; }
.dp-split--dark .dp-rule { border-top-color: rgba(245,241,230,.25); }
.dp-split--dark .dp-fact-box { background: rgba(255,255,255,.06); }

/* product-page ad-hoc dark accent panels: dark on desktop, flatten
   to the normal light card on mobile (unlike .dp-split--dark/--ink,
   which are landing-page sections confirmed to stay dark everywhere) */
.dp-split__text.dp-split__text--dark-green { background: #123524; }
.dp-split__text--dark-green .dp-kicker, .dp-split__text--dark-green .dp-accent-label { color: #c9b896; }
.dp-split__text--dark-green .dp-h2, .dp-split__text--dark-green .dp-tagline,
.dp-split__text--dark-green .dp-fact-box__title { color: #F5F1E6; }
.dp-split__text--dark-green .dp-body, .dp-split__text--dark-green .dp-fact-box__body { color: #E4DECF; }
.dp-split__text--dark-green .dp-rule { border-top-color: rgba(245,241,230,.25); }
.dp-split__text--dark-green .dp-fact-box { background: rgba(255,255,255,.06); }
.dp-split__text--dark-green .dp-numbered-line { border-top-color: rgba(245,241,230,.25); }
.dp-split__text--dark-green .dp-numbered-line__text { color: #E4DECF; }
.dp-split__text.dp-split__text--dark-ink { background: var(--ink); }
.dp-split__text--dark-ink .dp-kicker, .dp-split__text--dark-ink .dp-accent-label { color: #c9b896; }
.dp-split__text--dark-ink .dp-h2, .dp-split__text--dark-ink .dp-tagline { color: var(--white); }
.dp-split__text--dark-ink .dp-body { color: #F3E9E4; }
.dp-split__text--dark-ink .dp-rule { border-top-color: rgba(255,255,255,.25); }
.dp-split--ink, .dp-split--ink .dp-split__text { background: var(--ink); }
.dp-split--ink .dp-h2, .dp-split--ink .dp-subhead, .dp-split--ink .dp-kicker,
.dp-split--ink .dp-accent-label, .dp-split--ink .dp-tagline { color: var(--white); }
.dp-split--ink .dp-rule { border-top-color: rgba(255,255,255,.25); }
.dp-split__media { position: relative; flex: 0 0 50%; min-width: 0; overflow: hidden; background: var(--bg-alt); }
.dp-split__media--mint { background: #EFF3EB; }
.dp-split__media img, .dp-split__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.dp-split__text { flex: 0 0 50%; min-width: 0; padding: 100px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.dp-split--60-40 .dp-split__text { flex: 0 0 60%; }
.dp-split--60-40 .dp-split__media { flex: 0 0 40%; }
.dp-split--40-60 .dp-split__media { flex: 0 0 40%; }
.dp-split--40-60 .dp-split__text { flex: 0 0 60%; }
.dp-split--65-35 .dp-split__text { flex: 0 0 65%; }
.dp-split--65-35 .dp-split__media { flex: 0 0 35%; }
.dp-split--35-65 .dp-split__media { flex: 0 0 35%; }
.dp-split--35-65 .dp-split__text { flex: 0 0 65%; }
.dp-split--70-30 .dp-split__text { flex: 0 0 70%; }
.dp-split--70-30 .dp-split__media { flex: 0 0 30%; }

.dp-stat-row { display: flex; gap: 40px; border-top: 1px solid var(--line-2); padding-top: 28px; }
.dp-stat__value { font-size: 26px; font-weight: 800; }
.dp-stat__label { font-size: 12px; color: var(--ink-3); margin-top: 6px; }

/* ===== hero full-frame image ===== */
/* desktop: original full-frame image at its natural aspect ratio, no crop/overlay */
.dp-hero { position: relative; width: 100%; overflow: hidden; }
.dp-hero__img--desktop { width: 100%; height: auto; display: block; }

/* mobile: swipeable 5-image carousel, hidden on desktop */
.dp-hero__carousel { display: none; }
.dp-hero__slide { flex: 0 0 100%; position: relative; scroll-snap-align: center; scroll-snap-stop: always; }
.dp-hero__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== hero follow-up (full frame video + wordmark) ===== */
.dp-hero-followup { position: relative; min-height: 80vh; width: 100%; background: var(--ink); overflow: hidden; }
.dp-hero-followup video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dp-hero-followup__content {
  position: relative; z-index: 1; min-height: 80vh; padding: 60px 51px;
  display: flex; flex-direction: column; color: var(--white);
}
.dp-hero-followup__title { font-size: 95px; font-weight: 300; letter-spacing: .06em; line-height: 1; }
.dp-hero-followup__title span { display: inline-block; background: #111110; padding: 4px 12px; }
.dp-hero-followup__tagline { margin-top: 36px; max-width: 480px; }
.dp-hero-followup__tagline p { display: inline-block; font-size: 6px; line-height: 1.7; margin: 0 0 14px; background: #111110; padding: 8px 10px; }
.dp-hero-followup__badge { display: inline-block; font-size: 16px; letter-spacing: .04em; font-weight: 700; margin-bottom: 8px; background: #111110; padding: 3px 8px; }
.dp-hero-followup__badge--sm { font-size: 12px; font-weight: 400; }
.dp-hero-followup__features { margin-top: auto; display: flex; gap: 32px; flex-wrap: wrap; padding-top: 32px; }
.dp-hero-followup__features > div { flex: 1; min-width: 200px; }
.dp-hero-followup__feature-title { display: inline-block; font-size: 12px; font-weight: 800; margin-bottom: 6px; background: #111110; padding: 3px 8px; }
.dp-hero-followup__feature-title span { font-weight: 400; }
.dp-hero-followup__feature-desc { display: inline-block; font-size: 6px; line-height: 1.6; color: var(--white); background: #111110; padding: 4px 8px; }

/* ===== how to use ritual table ===== */
.dp-ritual { width: 100%; background: var(--white); padding: 100px 64px; }
.dp-ritual__inner { max-width: 1300px; margin: 0 auto; }
.dp-ritual__head {
  display: grid; grid-template-columns: 0.4fr 0.5fr 1.2fr 1.1fr 2fr;
  padding: 0 0 16px; border-bottom: 1px solid #8a6a4a; margin-bottom: 8px;
  font-size: 12px; letter-spacing: .08em; color: #8a6a4a; font-weight: 700;
}
.dp-ritual-row {
  display: grid; grid-template-columns: 0.4fr 0.5fr 1.2fr 1.1fr 2fr; align-items: center;
  border-top: 1px solid var(--line-2); padding: 22px 0;
}
.dp-ritual-row__n { font-size: 22px; font-weight: 800; color: #8a6a4a; }
.dp-ritual-row__icon { width: 40px; height: 40px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; }
.dp-ritual-row__name { font-size: 15px; font-weight: 700; }
.dp-ritual-row__system { font-size: 13px; font-weight: 700; color: #8a6a4a; }
.dp-ritual-row__desc { font-size: 11px; color: var(--ink-3); line-height: 1.6; }

/* ===== full-bg ingredient frame (Azulene & Marine) ===== */
.dp-ingredient-frame {
  position: relative; width: 100%; min-height: 60vh; overflow: hidden;
}
.dp-ingredient-frame__media {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.dp-ingredient-frame__media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.dp-ingredient-frame__panel { position: absolute; left: 0; bottom: 0; padding: 64px; max-width: 640px; z-index: 1; }

/* ===== routine by goal grid ===== */
.dp-routines { width: 100%; background: var(--white); padding: 100px 64px; }
.dp-routines__inner { max-width: 1300px; margin: 0 auto; }
.dp-routines__grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 64px; }
.dp-routine { display: flex; gap: 28px; align-items: flex-start; border-top: 1px solid var(--line-2); padding: 36px 0; }
.dp-routine__icon { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; }
.dp-routine__concern { font-size: 14px; color: var(--ink-3); margin-bottom: 8px; }
.dp-routine__title { font-size: 22px; font-weight: 800; margin-bottom: 18px; }
.dp-routine__steps { font-size: 14px; font-weight: 700; color: #8a6a4a; margin-bottom: 14px; }
.dp-routine__keywords { font-size: 13px; letter-spacing: .06em; color: var(--ink-3); }
.dp-routine__tagline { font-size: 14px; font-weight: 700; margin-top: 10px; }

/* ===== comparison table ===== */
.dp-comparison { width: 100%; padding: 60px 64px; background: var(--bg); }
.dp-comparison__inner { max-width: 1300px; margin: 0 auto; }
.dp-comparison__head { display: grid; grid-template-columns: 1fr 1.3fr 1fr 1fr; padding: 0 32px; margin-bottom: 16px; }
.dp-comparison__head-deep { text-align: center; font-size: 16px; font-weight: 800; }
.dp-comparison__head-other { text-align: center; font-size: 14px; font-weight: 700; color: var(--ink-3); }
.dp-comparison__rows { display: flex; flex-direction: column; gap: 16px; }
.dp-comparison-row { display: grid; grid-template-columns: 1fr 1.3fr 1fr 1fr; align-items: center; padding: 22px 32px; background: #D2DBD1; border-radius: 8px; }
.dp-comparison-row__label { font-size: 14px; color: var(--ink-3); }
.dp-comparison-row__deep { text-align: center; font-size: 14px; font-weight: 700; white-space: pre-line; }
.dp-comparison-row__other { text-align: center; font-size: 13px; color: var(--ink-3); white-space: pre-line; }

/* ===== ingredient map table ===== */
.dp-ingredient-table { width: 100%; padding: 60px 64px; background: var(--bg); }
.dp-ingredient-table__inner { max-width: 1300px; margin: 0 auto; }
.dp-ingredient-table__rows { display: flex; flex-direction: column; gap: 14px; }
.dp-ingredient-row { display: flex; align-items: center; gap: 32px; padding: 24px 32px; background: rgba(232,226,211,0.24); border-radius: 8px; }
.dp-ingredient-row__product { flex: 0 0 220px; font-size: 15px; font-weight: 800; }
.dp-ingredient-row__key { flex: 0 0 220px; font-size: 13px; font-weight: 700; color: #8a6a4a; white-space: pre-line; }
.dp-ingredient-row__role { flex: 1; font-size: 14px; color: var(--ink-3); }

/* ===== full page autoplay video (light) ===== */
.dp-full-video { position: relative; width: 100%; height: 70vh; overflow: hidden; background: var(--bg); }
.dp-full-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.dp-full-video__heading { position: absolute; left: 23px; top: 25px; font-size: clamp(22px,3vw,36px); font-weight: 800; z-index: 2; width: 280px; }
.dp-full-video__eyebrow-top { position: absolute; left: 22px; top: 421px; font-size: 16px; z-index: 2; }
.dp-full-video__body { position: absolute; left: 19px; top: 459px; width: 260px; font-size: 13px; line-height: 1.6; z-index: 2; }

/* ===== safety & sourcing ===== */
.dp-safety { width: 100%; padding: 100px 64px; background: var(--white); }
.dp-safety__inner { max-width: 1300px; margin: 0 auto; }
.dp-safety__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dp-safety-item { padding: 32px; background: var(--bg); border-radius: 8px; }
.dp-safety-item__title { font-size: 15px; font-weight: 800; margin-bottom: 14px; }
.dp-safety-item__desc { font-size: 13px; color: var(--ink-3); line-height: 1.8; white-space: pre-line; }

/* ===== section D — full frame video (dark) ===== */
.dp-section-d {
  position: relative; height: 690px; width: 100%; overflow: hidden;
  background: var(--ink); color: var(--white);
}
.dp-section-d video { position: absolute !important; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.dp-section-d__heading { position: absolute; left: 23px; top: 25px; width: 260px; z-index: 2; font-size: clamp(22px, 3vw, 36px); font-weight: 800; display: inline-block; background: #111110; padding: 6px 10px; }
.dp-section-d__eyebrow-top { position: absolute; left: 22px; top: 474px; width: 240px; font-size: 16px; z-index: 2; display: inline-block; background: #111110; padding: 3px 8px; }
.dp-section-d__eyebrow-bottom { position: absolute; left: 22px; top: 502px; width: 240px; font-size: 16px; z-index: 2; display: inline-block; background: #111110; padding: 3px 8px; }
.dp-section-d__body { position: absolute; left: 19px; top: 540px; width: 260px; font-size: 13px; line-height: 1.6; z-index: 2; }

/* ===== reviews ===== */
.dp-reviews { background: var(--white); padding: 100px 64px; }
.dp-reviews__inner { max-width: 1200px; margin: 0 auto; }
.dp-reviews__head { display: flex; align-items: baseline; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 28px; margin-bottom: 40px; flex-wrap: wrap; }
.dp-reviews__stars { font-size: 20px; }
.dp-reviews__title { font-size: 32px; font-weight: 800; }
.dp-reviews__count { font-size: 14px; color: var(--ink-5); }
.dp-reviews__tools { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.dp-reviews__search { flex: 1 1 240px; padding: 14px 18px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg-soft); font-size: 14px; font-family: inherit; outline: none; }
.dp-reviews__chip { padding: 14px 18px; border-radius: 10px; background: var(--bg-soft); font-size: 14px; color: var(--ink-3); }
.dp-review-list { display: flex; flex-direction: column; }
.dp-review { border-top: 1px solid var(--line); padding: 28px 0; }
.dp-review__top { display: flex; justify-content: space-between; margin-bottom: 10px; }
.dp-review__stars { font-size: 14px; }
.dp-review__date { font-size: 13px; color: var(--ink-5); }
.dp-review__name { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.dp-review__text { font-size: 11px; color: var(--ink-2); line-height: 1.6; max-width: 760px; }

/* ===== FAQ ===== */
.dp-faq { background: var(--white); padding: 100px 64px; border-top: 1px solid var(--line); }
.dp-faq__inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 64px; flex-wrap: wrap; }
.dp-faq__left { flex: 1 1 240px; }
.dp-faq__title { font-size: 28px; font-weight: 800; }
.dp-faq__right { flex: 2 1 480px; }
.dp-accordion__item { border-top: 1px solid var(--line); padding: 22px 0; }
.dp-accordion__head { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 14px; font-weight: 700; letter-spacing: .02em; background: none; border: none; width: 100%; text-align: left; font-family: inherit; color: inherit; padding: 0; }
.dp-accordion__body { font-size: 11px; color: var(--ink-3); line-height: 1.7; margin-top: 14px; max-width: 640px; display: none; }
.dp-accordion__item.is-open .dp-accordion__body { display: block; }

/* ===== footer ===== */
.dp-footer { background: var(--bg-alt); padding: 100px 48px 40px; }
.dp-footer__banner { text-align: center; margin-bottom: 80px; font-size: clamp(22px, 3vw, 34px); line-height: 1.4; }
.dp-footer__banner span { font-style: italic; }
.dp-footer__grid { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; border-top: 1px solid var(--line-2); padding-top: 56px; }
.dp-footer-col { flex: 1 1 160px; display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--ink-4); }
.dp-footer-col__title { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.dp-footer-col__body { line-height: 1.7; }
.dp-footer__copyright { max-width: 1300px; margin: 60px auto 0; font-size: 12px; color: var(--ink-5); }

/* ===== mobile ===== */
@media (max-width: 860px) {
  body { font-weight: 500; }
  .dp-header { padding: 10px 20px; }
  .dp-logo { white-space: normal; flex-shrink: 1; max-width: 100%; font-size: 10px; line-height: 1.5; }
  .dp-header { flex-wrap: wrap; row-gap: 5px; }
  .dp-nav {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 5px; font-size: 7px; max-width: 100%; width: 100%; margin-left: 0;
    overflow: visible; white-space: normal;
    -webkit-mask-image: none; mask-image: none;
  }
  .dp-nav__row {
    display: flex; flex-wrap: nowrap; justify-content: flex-start;
    gap: 8px 0; width: 100%;
  }
  .dp-nav__row a {
    display: inline-flex; align-items: center; height: 14px;
    padding: 0 6px; border-right: 1px solid var(--line-2); white-space: nowrap;
  }
  .dp-nav__row a:first-child { padding-left: 0; }
  .dp-nav__row a:last-child { border-right: none; padding-right: 0; }
  .dp-hero { height: 100vh; aspect-ratio: auto; background: var(--white); padding-bottom: 7mm; }
  .dp-hero__img--desktop { display: none; }
  /* Hero Followup: same stacked-video-then-text pattern used for
     Azulene & Marine — too much text to safely overlay on the video */
  .dp-hero-followup { display: flex; flex-direction: column; min-height: auto; background: var(--white); }
  .dp-hero-followup video { position: relative; inset: auto; width: 100%; aspect-ratio: 1 / 1; }
  .dp-hero-followup__content {
    position: static; min-height: auto; z-index: auto; color: var(--ink);
    padding: 5mm 24px 32px;
  }
  .dp-hero-followup__title { font-size: 32px; }
  .dp-hero-followup__title span,
  .dp-hero-followup__tagline p,
  .dp-hero-followup__badge,
  .dp-hero-followup__feature-title,
  .dp-hero-followup__feature-desc {
    background: transparent; padding: 0;
  }
  .dp-hero-followup__tagline p { font-size: 13px; }
  .dp-hero-followup__badge { font-size: 12px; }
  .dp-hero-followup__badge--sm { font-size: 11px; }
  .dp-hero-followup__feature-desc { font-size: 12px; }
  .dp-hero-followup__features { margin-top: 24px; flex-direction: column; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line-2); }
  .dp-hero-followup__feature-desc { opacity: 1; color: var(--ink-3); }
  .dp-hero__carousel {
    display: flex; width: 100%; height: 100%;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .dp-hero__carousel::-webkit-scrollbar { display: none; }
  .dp-hero__slide { aspect-ratio: auto; height: 100%; background: var(--bg); box-sizing: border-box; }
  .dp-split, .dp-split--60-40, .dp-split--40-60, .dp-split--65-35, .dp-split--35-65, .dp-split--70-30 {
    flex-direction: column; min-height: auto; height: auto;
  }
  .dp-split:not(.dp-split--dark):not(.dp-split--ink) { background: var(--white); }
  .dp-split__media:not(.dp-split--dark .dp-split__media):not(.dp-split--ink .dp-split__media) { background: var(--white); }
  .dp-split--dark .dp-split__media { background: #123524; }
  .dp-split--ink .dp-split__media { background: var(--ink); }
  .dp-fact-box { background: var(--white); }
  .dp-split__text.dp-split__text--tan { background: var(--white); }
  .dp-comparison, .dp-ingredient-table, .dp-safety-item, .dp-footer, .dp-full-video {
    background: var(--white);
  }
  .dp-ingredient-row { background: var(--white); }
  .dp-split__text.dp-split__text--dark-green, .dp-split__text.dp-split__text--dark-ink { background: var(--white); }
  .dp-split__text--dark-green .dp-kicker, .dp-split__text--dark-green .dp-accent-label,
  .dp-split__text--dark-ink .dp-kicker, .dp-split__text--dark-ink .dp-accent-label { color: #8a6a4a; }
  .dp-split__text--dark-green .dp-h2, .dp-split__text--dark-green .dp-tagline, .dp-split__text--dark-green .dp-fact-box__title,
  .dp-split__text--dark-ink .dp-h2, .dp-split__text--dark-ink .dp-tagline { color: var(--ink); }
  .dp-split__text--dark-green .dp-body, .dp-split__text--dark-green .dp-fact-box__body,
  .dp-split__text--dark-ink .dp-body { color: var(--ink-3); }
  .dp-split__text--dark-green .dp-rule, .dp-split__text--dark-ink .dp-rule { border-top-color: var(--line-2); }
  .dp-split__text--dark-green .dp-fact-box { background: var(--bg-alt); }
  .dp-split__text--dark-green .dp-numbered-line__text { color: var(--ink-3); }
  .dp-split__text--dark-green .dp-numbered-line { border-top-color: var(--line-2); }
  .dp-split__text--dark-green .dp-numbered-line__n { background: #3b2e26; color: var(--bg); }
  /* DEEP HAND CRÈME: red bg/white text on desktop, white/black on mobile
     (per explicit request) — !important needed since the red styling
     is inline on the element */
  .dp-split__text--red { background: var(--white) !important; color: var(--ink) !important; }
  .dp-split__text--red .dp-kicker { color: #8a6a4a !important; }
  .dp-split__text--red .dp-h2, .dp-split__text--red .dp-tagline { color: var(--ink) !important; }
  .dp-split__text--red .dp-body { color: var(--ink-3) !important; }
  .dp-split__media { order: -1; aspect-ratio: 1 / 1; min-height: auto; }
  .dp-split__media,
  .dp-split--60-40 .dp-split__media, .dp-split--40-60 .dp-split__media,
  .dp-split--65-35 .dp-split__media, .dp-split--35-65 .dp-split__media,
  .dp-split--70-30 .dp-split__media { flex: 1 1 auto; }
  /* these are position:absolute+inset:0 replaced elements — the
     containing block for that is the padding EDGE (same size as the
     border box), so parent padding alone doesn't inset them. Set the
     gutter directly on the media element instead. */
  .dp-split__media img, .dp-split__media video {
    left: 5mm; right: 5mm; width: calc(100% - 10mm);
    top: 7.5%; height: 85%;
  }
  /* colored sections (dark green / near-black): media fills the box
     edge-to-edge instead of the inset white-frame look used on plain
     white sections */
  .dp-split--dark .dp-split__media img, .dp-split--dark .dp-split__media video,
  .dp-split--ink .dp-split__media img, .dp-split--ink .dp-split__media video {
    left: 0; right: 0; width: 100%; top: 0; height: 100%;
  }
  .dp-hero__slide img { position: absolute; top: 0; height: 100%; left: 0; width: 100%; }
  /* Azulene & Marine: 5:5 image on top, text stacked below (no
     overlay) instead of the desktop full-bg-with-caption layout */
  .dp-ingredient-frame { display: flex; flex-direction: column; min-height: auto; }
  .dp-ingredient-frame__media { position: relative; inset: auto; width: 100%; aspect-ratio: 1 / 1; }
  .dp-ingredient-frame__panel {
    position: static; max-width: 100%; width: 100%;
    padding: 5mm 24px 32px; background: var(--white); box-sizing: border-box;
  }
  .dp-ingredient-frame__panel,
  .dp-ingredient-frame__panel .dp-kicker,
  .dp-ingredient-frame__panel .dp-h2,
  .dp-ingredient-frame__panel .dp-body,
  .dp-ingredient-frame__panel .dp-fact-box__title,
  .dp-ingredient-frame__panel .dp-fact-box__body {
    color: var(--ink) !important;
  }
  .dp-ingredient-frame__panel .dp-fact-box { border-top-color: var(--line-2) !important; }
  .dp-split__text,
  .dp-split--60-40 .dp-split__text, .dp-split--40-60 .dp-split__text,
  .dp-split--65-35 .dp-split__text, .dp-split--35-65 .dp-split__text,
  .dp-split--70-30 .dp-split__text {
    flex: 1 1 auto; padding: 56px 24px 32px;
    justify-content: flex-start; padding-top: 32px;
  }
  .dp-h2 { font-size: 26px; }
  .dp-stat-row { flex-wrap: wrap; gap: 24px; }
  .dp-ritual, .dp-routines, .dp-comparison, .dp-ingredient-table, .dp-safety { padding: 56px 24px; }
  .dp-ritual__head { display: none; }
  .dp-ritual-row { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .dp-ritual-row__icon { display: none; }
  .dp-routines__grid { grid-template-columns: 1fr; column-gap: 0; }
  .dp-comparison__head, .dp-comparison-row { grid-template-columns: 1fr; text-align: left; gap: 6px; padding: 22px 0; }
  .dp-comparison__head { padding: 0; }
  .dp-comparison__head-deep, .dp-comparison__head-other, .dp-comparison-row__deep, .dp-comparison-row__other { text-align: left; }
  .dp-safety__grid { grid-template-columns: 1fr; gap: 8px; }
  .dp-safety-item { padding: 12px 0; }
  .dp-ingredient-row { flex-direction: column; align-items: flex-start; gap: 10px; padding-left: 16px; padding-right: 16px; }
  .dp-ingredient-row__product, .dp-ingredient-row__key { flex: 1 1 auto; }
  /* .dp-section-d: match the 5:5 box used everywhere else, fill the
     video edge-to-edge (no gutter — the black section background was
     showing through as bars around it), and use % text offsets sized
     for the shorter square box instead of the old 690px-tall layout */
  .dp-section-d { height: auto; aspect-ratio: 1 / 1; }
  .dp-section-d video { left: 0; right: 0; width: 100%; top: 0; height: 100%; }
  .dp-section-d__heading { top: 5%; left: 20px; width: calc(100% - 40px); font-size: 20px; }
  .dp-section-d__eyebrow-top { top: 66%; left: 20px; width: calc(100% - 40px); font-size: 13px; }
  .dp-section-d__eyebrow-bottom { top: 71%; left: 20px; width: calc(100% - 40px); font-size: 13px; }
  .dp-section-d__body { top: 80%; left: 20px; width: calc(100% - 40px); font-size: 11px; line-height: 1.5; }
  /* .dp-full-video: match the 5:5 box used everywhere else, fill the
     video edge-to-edge (no gutter), and use % text offsets sized for
     the square box */
  .dp-full-video { height: auto; aspect-ratio: 1 / 1; }
  .dp-full-video video { left: 0; right: 0; width: 100%; top: 0; height: 100%; }
  .dp-full-video__heading { top: 5%; left: 20px; width: calc(100% - 40px); font-size: 17px; }
  .dp-full-video__eyebrow-top { top: 66%; left: 20px; font-size: 13px; }
  .dp-full-video__body { top: 72%; left: 20px; width: calc(100% - 40px); font-size: 11px; }
  .dp-reviews, .dp-faq { padding: 56px 24px; }
  .dp-footer { padding: 60px 20px 30px; }

  /* mobile-only: flatten sections that are always white/photo-backed
     regardless of viewport (dp-section-d is video-backed and
     dp-ingredient-frame is a photo background, so both are left alone).
     .dp-split/.dp-split__text keep their real per-section color
     (white/tan/dark-green/red) to match desktop — see .dp-split--dark
     and the inline colors on the red Hand Crème panel. */
  .dp-header,
  .dp-hero, .dp-hero__slide,
  .dp-ritual, .dp-routines,
  .dp-full-video, .dp-safety, .dp-safety-item,
  .dp-reviews, .dp-faq, .dp-footer {
    background: var(--white) !important;
  }
  .dp-fact-box--card { padding-left: 0; padding-right: 0; }
}
