/** Shopify CDN: Minification failed

Line 2094:18 Expected identifier but found whitespace
Line 2094:19 Unexpected "var("

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:footer (INDEX:18) */
.oj-footer {
  background: var(--oj-slate);
  color: var(--text-on-dark);
  font-family: var(--font-sans);
}
.oj-footer__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 72px 32px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.oj-footer__logotype { height: 15px; width: auto; margin-bottom: 20px; }
.oj-footer__blurb {
  margin: 0;
  max-width: 300px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
}
.oj-footer__social { display: flex; gap: 14px; margin-top: 24px; }
.oj-footer__social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-pill);
  color: var(--text-on-dark);
  transition: border-color var(--dur-base) var(--ease-standard);
}
.oj-footer__social a:hover { border-color: var(--oj-creme); }
.oj-footer__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 18px;
}
.oj-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.oj-footer__links a {
  text-decoration: none;
  color: var(--oj-creme);
  font-size: 14.5px;
  transition: color var(--dur-base) var(--ease-standard);
}
.oj-footer__links a:hover { color: var(--oj-crimson-300); }
.oj-footer__cta-body {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
}
.oj-footer__legal { border-top: 1px solid var(--border-on-dark); }
.oj-footer__legal-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.oj-footer__crisis {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  max-width: 640px;
}
.oj-footer__crisis strong { color: var(--oj-creme); font-weight: var(--fw-semibold); }
.oj-footer__meta { margin: 0; font-size: 12.5px; color: var(--text-on-dark-muted); }
.oj-footer__meta a { color: var(--text-on-dark-muted); text-decoration: none; }
.oj-footer__meta a:hover { color: var(--oj-creme); }

@media (max-width: 760px) {
  .oj-footer__grid { padding: 52px 22px 36px; gap: 36px; }
  .oj-footer__legal-inner { padding: 20px 22px; }
}
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:19) */
.oj-header {
  position: sticky;
  top: 0;
  z-index: 50;
  font-family: var(--font-sans);
}
.oj-header__announcement {
  background: var(--oj-slate);
  color: var(--oj-creme);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
/* Constrain to the same container as the header so "Account" lines up with the CTA button */
.oj-header__announcement-inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 9px 32px;
  text-align: center;
}
.oj-header__login {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--oj-creme);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.85;
  transition: opacity var(--dur-base) var(--ease-standard);
}
.oj-header__login:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) {
  /* Announcement bar: shipping text flush-left, login flush-right */
  .oj-header__announcement-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    padding: 9px 18px;
  }
  .oj-header__login {
    position: static;
    transform: none;
    right: auto;
    top: auto;
    flex-shrink: 0;
    white-space: nowrap;
  }
}
/* Solid near-opaque creme. No backdrop-filter: it creates a containing
   block that clips the fixed mobile drawer. */
.oj-header__nav {
  background: rgba(255, 250, 245, 0.95);
  border-bottom: 1px solid var(--border-subtle);
}
.oj-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.oj-header__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.oj-header__crown { height: 17px; width: auto; }
.oj-header__logotype { height: 13px; width: auto; }
.oj-nav-links { display: flex; align-items: center; gap: 30px; white-space: nowrap; }
.oj-header__link {
  text-decoration: none;
  color: var(--text-strong);
  font-size: 14.5px;
  font-weight: var(--fw-medium);
  transition: color var(--dur-base) var(--ease-standard);
}
.oj-header__link:hover, .oj-header__link.is-current { color: var(--oj-crimson); }
.oj-header__right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.oj-header__cart {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--text-strong);
  font-size: 14px;
}
.oj-header__cart-count { font-variant-numeric: tabular-nums; }
.oj-header__icon-btn {
  cursor: pointer;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-strong);
  padding: 0;
}
.oj-nav-mobile { display: none; }

/* Drawer */
.oj-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 38, 44, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-standard);
  z-index: 60;
}
.oj-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: var(--oj-creme);
  box-shadow: -16px 0 44px rgba(15, 38, 44, 0.18);
  transform: translateX(100%);
  transition: transform 0.34s var(--ease-standard);
  z-index: 61;
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
  overflow-y: auto;
}
.oj-nav-drawer.is-open .oj-drawer-backdrop { opacity: 1; pointer-events: auto; }
.oj-nav-drawer.is-open .oj-drawer { transform: translateX(0); }
.oj-drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.oj-drawer__links { display: flex; flex-direction: column; border-top: 1px solid var(--border-subtle); }
.oj-drawer__links a {
  text-decoration: none;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 22px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border-subtle);
}
.oj-drawer__cta { margin-top: 22px; }
.oj-drawer__cta-secondary { margin-top: 10px; }

@media (max-width: 1024px) {
  .oj-nav-links { display: none; }
  /* !important beats .oj-btn{display:inline-flex} (equal specificity, loads later) */
  .oj-nav-cta-desktop { display: none !important; }
  .oj-nav-mobile { display: block; }
}
@media (max-width: 760px) {
  /* Tighter gutters + a smaller logo so the bar never overflows a phone */
  .oj-header__inner { padding: 0 18px; gap: 14px; }
  .oj-header__brand { gap: 9px; }
  .oj-header__crown { height: 15px; }
  .oj-header__logotype { height: 11px; }
  .oj-header__right { gap: 12px; }
}
/* END_SECTION:header */

/* START_SECTION:oj-agitate (INDEX:45) */
.oj-agitate { background: var(--surface-page); }
.oj-agitate__wrap { max-width: var(--container-max); margin: 0 auto; padding: 96px 32px 110px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.oj-agitate__statement { font-family: var(--font-serif); font-size: 40px; line-height: 1.3; color: var(--text-strong); margin: 0; }
.oj-agitate__statement p { margin: 0 0 1.1em; }
.oj-agitate__statement p:last-child { margin-bottom: 0; }
.oj-agitate__statement em { font-style: italic; color: var(--text-accent); }
.oj-agitate__cue { font-family: var(--font-sans); font-size: 20px; line-height: 1.65; color: var(--text-muted); margin: 24px 0 0; max-width: 400px; }
.oj-agitate__arrow { margin-top: 12px; display: block; width: 100%; max-width: 400px; height: 36px; color: var(--oj-crimson); }
.oj-agitate__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.oj-agitate__card { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); padding: 24px 22px; }
.oj-agitate__card:nth-child(2n) { transform: translateY(18px); }
.oj-agitate__card-title { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 21px; line-height: 1.25; color: var(--text-strong); margin: 0 0 8px; }
.oj-agitate__card-text { font-family: var(--font-sans); font-size: 20px; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* Reveal: JS sets the hidden opacity/transform inline (so the cascade can't
   defeat it, and content stays visible without JS). The easing lives here —
   var() inside an inline transition shorthand doesn't apply. */
.oj-agitate__card { transition: transform 1100ms var(--ease-out), opacity 1100ms var(--ease-standard); }

@media (max-width: 860px) {
  .oj-agitate__wrap { grid-template-columns: 1fr; gap: 34px; padding: 64px 22px 72px; }
  .oj-agitate__arrow { transform: rotate(90deg); transform-origin: 18px center; max-width: 64px; margin-top: 22px; }
  .oj-agitate__card:nth-child(2n) { transform: none; }
  .oj-agitate__statement { font-size: 30px; }
}
@media (max-width: 540px) { .oj-agitate__grid { grid-template-columns: 1fr; } }
/* END_SECTION:oj-agitate */

/* START_SECTION:oj-arrow-strip (INDEX:46) */
.oj-arrow-strip { padding: 80px 0; }
.oj-arrow-strip__eyebrow {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--oj-crimson);
  margin: 0 0 36px;
}
.oj-arrow-strip__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 8px;
}
.oj-arrow-strip__item {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 22px;
  color: var(--text-strong);
}
.oj-arrow-strip__item--accent { color: var(--oj-crimson); }
.oj-arrow-strip__arrow { color: var(--oj-crimson); font-size: 20px; }
@media (max-width: 760px) {
  .oj-arrow-strip { padding: 52px 0; }
}
/* END_SECTION:oj-arrow-strip */

/* START_SECTION:oj-audience-list (INDEX:47) */
.oj-audience__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.oj-audience__rail { position: sticky; top: 120px; }
.oj-audience__heading { font-size: 38px; line-height: 1.12; letter-spacing: var(--ls-snug); margin: 0; }
.oj-audience__rows { display: flex; flex-direction: column; }
.oj-audience__row {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.oj-audience__row:last-child { border-bottom: none; }
.oj-audience__icon { flex-shrink: 0; margin-top: 2px; color: var(--oj-crimson); }
.oj-audience__row p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
}
.oj-audience__row strong { color: var(--text-strong); font-weight: var(--fw-semibold); }
/* END_SECTION:oj-audience-list */

/* START_SECTION:oj-challenge (INDEX:48) */
.oj-challenge__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.oj-challenge__media { min-height: 420px; overflow: hidden; }
.oj-challenge__copy {
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.oj-challenge__crown { height: 30px; width: auto; opacity: 0.9; margin-bottom: 24px; }
.oj-challenge__heading {
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: var(--ls-snug);
  color: var(--oj-creme);
  margin: 0 0 16px;
}
.oj-challenge__body {
  font-size: 18px;
  line-height: var(--lh-body);
  color: var(--text-on-dark-muted);
  margin: 0 0 30px;
  max-width: 480px;
}
@media (max-width: 900px) {
  .oj-challenge__media { min-height: 300px; }
  .oj-challenge__copy { padding: 48px 24px; }
}
/* END_SECTION:oj-challenge */

/* START_SECTION:oj-close (INDEX:49) */
.oj-close { background: var(--surface-dark-deep); color: var(--text-on-dark); }
.oj-close__wrap { max-width: var(--container-max); margin: 0 auto; padding: 64px 32px 88px; }
.oj-close__trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-bottom: 64px; margin-bottom: 8px; }
.oj-close__prop-title { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 28px; color: var(--oj-crimson-300); margin-bottom: 10px; }
.oj-close__prop-text { font-family: var(--font-sans); font-size: 20px; line-height: 1.6; color: var(--text-on-dark-muted); margin: 0; }
.oj-close__cta { text-align: center; max-width: 620px; margin: 0 auto; }
.oj-close__crown { display: block; width: 56px; height: auto; margin: 0 auto 24px; opacity: 0.9; }
.oj-close__eyebrow { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--oj-crimson-300); margin-bottom: 18px; }
.oj-close__heading { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 44px; line-height: 1.08; letter-spacing: var(--ls-snug); color: var(--text-on-dark); margin: 0 0 18px; }
.oj-close__body { font-family: var(--font-sans); font-size: 20px; line-height: 1.6; color: var(--text-on-dark-muted); margin: 0 0 32px; }
.oj-close__form { margin: 0; }
.oj-close__add.is-added { background: var(--status-success); }
.oj-close__trust { display: flex; justify-content: center; margin-top: 18px; }
.oj-close__trust p { margin: 0; font-family: var(--font-sans); font-size: 13.5px; color: var(--text-on-dark-muted); }

@media (max-width: 860px) {
  .oj-close__wrap { padding: 56px 22px 72px; }
  .oj-close__trio { grid-template-columns: 1fr; gap: 28px; padding-bottom: 48px; }
  .oj-close__heading { font-size: 34px; }
}
/* END_SECTION:oj-close */

/* START_SECTION:oj-columns (INDEX:50) */
.oj-columns__header { text-align: center; margin-bottom: 52px; }
.oj-columns__heading { font-size: 40px; line-height: 1.1; letter-spacing: var(--ls-snug); margin: 0; }
.oj-columns__grid { display: grid; gap: 32px; }
.oj-columns__grid--2 { grid-template-columns: repeat(2, 1fr); }
.oj-columns__grid--3 { grid-template-columns: repeat(3, 1fr); }
.oj-columns__grid--4 { grid-template-columns: repeat(4, 1fr); }
.oj-columns__icon { display: block; margin-bottom: 16px; }
.oj-columns__icon img { width: 32px; height: 32px; object-fit: contain; }
/* Card style: white unit cards (curriculum) */
.oj-columns__grid--style-cards .oj-columns__item {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}
.oj-columns__grid--style-cards .oj-columns__kicker { color: var(--oj-crimson); font-size: 11.5px; margin-bottom: 14px; }
.oj-columns__grid--style-cards .oj-columns__title { font-size: 22px; }
.oj-columns__grid--style-cards .oj-columns__text { font-size: 15px; line-height: 1.6; }
/* Icon-circle style: centered columns with tinted icon discs */
.oj-columns__grid--style-icons .oj-columns__item { text-align: center; padding: 0 8px; }
.oj-columns__grid--style-icons .oj-columns__icon,
.oj-columns__grid--style-icons .oj-columns__icon--builtin {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--oj-crimson-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--oj-crimson);
}
.oj-columns__grid--style-icons .oj-columns__text { font-size: 16px; line-height: 1.55; color: var(--text-body); }
.oj-columns__footnote {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  margin: 36px 0 0;
}
.oj-columns__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.oj-columns__title {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: var(--fs-h2);
  line-height: 1.2;
  color: var(--text-strong);
  margin: 0 0 10px;
}
.oj-tone--slate .oj-columns__title,
.oj-tone--navy .oj-columns__title { color: var(--text-on-dark); }
.oj-columns__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.oj-tone--slate .oj-columns__text,
.oj-tone--navy .oj-columns__text { color: var(--text-on-dark-muted); }
@media (max-width: 900px) {
  .oj-columns__grid--4 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 620px) {
  .oj-columns__grid--4 { grid-template-columns: 1fr !important; }
}
/* END_SECTION:oj-columns */

/* START_SECTION:oj-contact (INDEX:51) */
.oj-contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.oj-contact__aside-heading { font-size: var(--fs-display-sm); line-height: 1.14; letter-spacing: var(--ls-snug); margin: 0 0 18px; }
.oj-contact__aside-body { font-size: var(--fs-body-lg); line-height: 1.65; color: var(--text-muted); margin: 0 0 32px; }
.oj-contact__info { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.oj-contact__info li { display: flex; flex-direction: column; gap: 4px; }
.oj-contact__info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.oj-contact__info-value { font-size: var(--fs-body); color: var(--text-strong); text-decoration: none; }
a.oj-contact__info-value:hover { color: var(--oj-crimson); }

.oj-contact__panel {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 40px;
}
.oj-contact__field { margin-bottom: 22px; }
.oj-contact__field label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.oj-contact__field label span { color: var(--oj-crimson); }
.oj-contact__field input,
.oj-contact__field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  color: var(--text-strong);
  background: var(--oj-creme);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}
.oj-contact__field textarea { resize: vertical; min-height: 140px; }
.oj-contact__field input:focus,
.oj-contact__field textarea:focus {
  outline: none;
  border-color: var(--oj-crimson);
  box-shadow: var(--shadow-focus);
}
.oj-contact__submit { width: 100%; margin-top: 4px; }
.oj-contact__success {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: var(--fs-h2);
  line-height: 1.35;
  color: var(--text-strong);
  margin: 0;
}
.oj-contact__errors {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--oj-crimson-tint);
  color: var(--oj-crimson-700);
  font-size: var(--fs-body-sm);
}
.oj-contact__errors ul { margin: 0; padding-left: 18px; }
@media (max-width: 900px) {
  .oj-contact__grid { gap: 36px; }
  .oj-contact__panel { padding: 28px; }
}
/* END_SECTION:oj-contact */

/* START_SECTION:oj-cta-band (INDEX:52) */
.oj-cta-band { padding: 80px 0; }
.oj-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.oj-cta-band__copy { max-width: 560px; }
.oj-cta-band__heading { font-size: 32px; line-height: 1.14; margin: 14px 0 10px; }
.oj-cta-band__body { font-size: 16px; line-height: var(--lh-body); color: var(--text-muted); margin: 0; }
.oj-tone--slate .oj-cta-band__body,
.oj-tone--navy .oj-cta-band__body { color: var(--text-on-dark-muted); }
@media (max-width: 760px) {
  .oj-cta-band { padding: 52px 0; }
}
/* END_SECTION:oj-cta-band */

/* START_SECTION:oj-endorsements (INDEX:53) */
.oj-endorse__header { text-align: center; margin-bottom: 52px; }
.oj-endorse__heading { font-size: 40px; line-height: 1.1; letter-spacing: var(--ls-snug); margin: 0; }
.oj-endorse__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.oj-endorse__card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Quotes intentionally render in the sans body face, not serif */
.oj-endorse__quote {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
  flex: 1;
  quotes: none;
}
.oj-endorse__person { display: flex; align-items: center; gap: 16px; }
.oj-endorse__avatar {
  width: 132px;
  height: 132px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
}
.oj-endorse__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.oj-endorse__avatar--monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--oj-crimson-tint);
  color: var(--oj-crimson-700);
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 46px;
  line-height: 1;
}
.oj-endorse__who { display: flex; flex-direction: column; gap: 4px; }
.oj-endorse__who strong {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 18px;
  color: var(--text-strong);
}
.oj-endorse__who span {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .oj-endorse__avatar { width: 96px; height: 96px; }
}
/* END_SECTION:oj-endorsements */

/* START_SECTION:oj-faq (INDEX:54) */
.oj-faq-section__inner {
  max-width: 760px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.oj-faq-section__header { text-align: center; margin-bottom: 48px; }
.oj-faq-section .oj-faq-section__heading { font-weight: var(--fw-light); font-size: 40px; line-height: 1.1; letter-spacing: var(--ls-snug); margin: 0; }
.oj-faq-section__list { display: flex; flex-direction: column; gap: 14px; }
.oj-faq-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 4px 24px;
}
.oj-faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  color: var(--text-strong);
}
.oj-faq-card summary::-webkit-details-marker { display: none; }
.oj-faq-card__plus {
  flex-shrink: 0;
  color: var(--oj-crimson);
  transition: transform var(--dur-base) var(--ease-standard);
  font-size: 24px;
  line-height: 1;
}
.oj-faq-card[open] .oj-faq-card__plus { transform: rotate(45deg); }
.oj-faq-card__answer { padding: 0 0 22px; }
.oj-faq-card__answer p {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-body);
}
.oj-faq-card__answer p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
  .oj-faq-section__inner { padding-left: 22px; padding-right: 22px; }
}
/* END_SECTION:oj-faq */

/* START_SECTION:oj-feature-split (INDEX:55) */
.oj-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.oj-feature__grid--flip .oj-feature__copy { order: 2; }
.oj-feature__grid--flip .oj-feature__media { order: 1; }
/* Full-bleed image: pinned to the section's top, bottom, and right edges */
.oj-feature--bleed { position: relative; overflow: hidden; }
.oj-feature__bleed-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 44%;
}
.oj-feature__grid--bleed { grid-template-columns: 1fr; }
.oj-feature__grid--bleed .oj-feature__copy { max-width: 50%; }
@media (max-width: 900px) {
  .oj-feature__bleed-media {
    position: static;
    width: auto;
    height: 340px;
    margin: 0 -22px 36px;
  }
  .oj-feature__grid--bleed .oj-feature__copy { max-width: none; }
}
.oj-feature__heading { font-size: 40px; line-height: 1.12; letter-spacing: var(--ls-snug); margin: 16px 0 8px; }
.oj-feature__heading + .oj-feature__body { margin-top: 14px; }
.oj-feature__subheading {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oj-crimson);
  margin: 0 0 18px;
}
.oj-feature__pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-strong);
  margin: 0 0 18px;
}
.oj-tone--slate .oj-feature__pullquote,
.oj-tone--navy .oj-feature__pullquote { color: var(--oj-creme); }
.oj-feature__body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.oj-feature__body p { margin: 0; }
.oj-tone--slate .oj-feature__body,
.oj-tone--navy .oj-feature__body { color: var(--text-on-dark-muted); }
.oj-feature__checklist {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.oj-feature__checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--text-body);
}
.oj-tone--slate .oj-feature__checklist li,
.oj-tone--navy .oj-feature__checklist li { color: var(--text-on-dark); }
.oj-feature__checklist svg { flex-shrink: 0; margin-top: 1px; color: var(--oj-crimson); }
.oj-feature__media { display: flex; align-items: center; justify-content: center; }
.oj-feature__media img { width: 100%; height: auto; display: block; }
.oj-feature__media:not(.oj-feature__media--contain) img {
  border-radius: var(--radius-xl);
}
.oj-feature__media--contain img { border-radius: 0; }
.oj-feature__media--framed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.oj-feature__media--framed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
@media (max-width: 900px) {
  .oj-feature__grid { gap: 36px; }
  .oj-feature__grid--flip .oj-feature__copy { order: 1; }
  .oj-feature__grid--flip .oj-feature__media { order: 2; }
}
/* END_SECTION:oj-feature-split */

/* START_SECTION:oj-gallery-mosaic (INDEX:56) */
.oj-mosaic__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.oj-mosaic__heading { font-size: 42px; line-height: 1.1; letter-spacing: var(--ls-snug); margin: 0; }
.oj-mosaic__note {
  max-width: 360px;
  font-size: 16px;
  line-height: var(--lh-body);
  color: var(--text-muted);
  margin: 0;
}
.oj-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.oj-mosaic__cell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 0;
  aspect-ratio: 4 / 5;
}
/* Four images: tall sides, two stacked in a wider middle column */
.oj-mosaic__grid--4 { grid-template-columns: 1fr 1.3fr 1fr; grid-auto-rows: 260px; }
.oj-mosaic__grid--4 .oj-mosaic__cell { aspect-ratio: auto; }
.oj-mosaic__grid--4 .oj-mosaic__cell:nth-child(1) { grid-row: span 2; }
.oj-mosaic__grid--4 .oj-mosaic__cell:nth-child(4) { grid-column: 3; grid-row: 1 / span 2; }
.oj-mosaic__caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oj-creme);
  background: rgba(15, 38, 44, 0.55);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
@media (max-width: 900px) {
  .oj-mosaic__grid--4 .oj-mosaic__cell:nth-child(n) { grid-row: auto; grid-column: auto; }
  .oj-mosaic__grid { grid-auto-rows: 240px; }
}
/* END_SECTION:oj-gallery-mosaic */

/* START_SECTION:oj-hero (INDEX:57) */
.oj-hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--oj-pebble);
}
.oj-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
}
.oj-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 245, 0.95) 0%, rgba(255, 250, 245, 0.86) 32%, rgba(255, 250, 245, 0.35) 58%, rgba(255, 250, 245, 0) 76%);
}
.oj-hero__container {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 72px 32px;
  width: 100%;
}
.oj-hero__content { max-width: 566px; }
.oj-hero__heading {
  font-size: var(--fs-display-lg);
  line-height: 1.03;
  margin: 18px 0 0;
}
.oj-hero__body {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--text-body);
  max-width: 466px;
  margin: 22px 0 30px;
}
.oj-hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.oj-hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 14.5px;
  color: var(--text-muted);
}
@media (max-width: 760px) {
  .oj-hero { min-height: 0; }
  .oj-hero__container { padding: 56px 22px; }
  .oj-hero__scrim {
    background: linear-gradient(90deg, rgba(255, 250, 245, 0.95) 0%, rgba(255, 250, 245, 0.88) 55%, rgba(255, 250, 245, 0.55) 100%);
  }
}
/* END_SECTION:oj-hero */

/* START_SECTION:oj-image-feature (INDEX:58) */
.oj-image-feature { background: var(--oj-creme); padding: 0 0 8px; }
.oj-image-feature__frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
/* END_SECTION:oj-image-feature */

/* START_SECTION:oj-inside (INDEX:59) */
.oj-inside { background: var(--surface-sunken); }
.oj-inside__wrap { max-width: var(--container-max); margin: 0 auto; padding: 88px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.oj-inside__media { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-subtle); }
.oj-inside__cta { margin-top: 24px; }
.oj-inside__cta-btn { font-size: 24px; font-weight: var(--fw-medium); }
.oj-inside__eyebrow { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--oj-crimson); margin-bottom: 18px; }
.oj-inside__heading { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 40px; line-height: 1.1; letter-spacing: var(--ls-snug); color: var(--text-strong); margin: 0 0 26px; }
.oj-inside__checklist { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.oj-inside__check { display: flex; gap: 12px; align-items: flex-start; }
.oj-inside__check svg { margin-top: 4px; flex: none; }
.oj-inside__check span { font-family: var(--font-sans); font-size: 20px; line-height: 1.5; color: var(--text-body); }
.oj-inside__specs { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 22px; }
.oj-inside__specs-label { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-faint); margin-bottom: 14px; }
.oj-inside__specs-rows { display: flex; flex-direction: column; gap: 9px; }
.oj-inside__spec { display: flex; gap: 16px; font-family: var(--font-sans); font-size: 14.5px; }
.oj-inside__spec-k { width: 76px; flex: none; color: var(--text-faint); }
.oj-inside__spec-v { color: var(--text-body); }

@media (max-width: 860px) {
  .oj-inside__wrap { grid-template-columns: 1fr; gap: 36px; padding: 64px 22px; }
  .oj-inside__media-col { max-width: 460px; }
  .oj-inside__heading { font-size: 32px; }
}
/* END_SECTION:oj-inside */

/* START_SECTION:oj-landing-hero (INDEX:60) */
.oj-lhero__h1 { font-family: var(--font-display); font-weight: var(--fw-light, 300); line-height: 1.06; letter-spacing: var(--ls-snug, -0.01em); margin: 0; }
.oj-lhero__h1 p { margin: 0; }
.oj-lhero__h1 em { font-style: italic; color: var(--oj-crimson, #dd4630); }
.oj-lhero__sub { font-size: var(--fs-body-lg, 18px); line-height: 1.6; margin: 18px 0 0; max-width: 46ch; }
.oj-lhero__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin: 28px 0 22px; }
.oj-lhero__ctas--center { justify-content: center; }
.oj-lhero__ctas .oj-btn { display: inline-flex; align-items: center; gap: 8px; }
.oj-eyebrow--on-dark { color: var(--oj-crimson-300, #f0a08f); }

.oj-lhero__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.oj-badge { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 13px; border-radius: var(--radius-pill, 40px); }
.oj-badge--soft { background: var(--oj-crimson-tint, rgba(221,70,48,.1)); color: var(--oj-crimson, #dd4630); }
.oj-badge--neutral { background: var(--oj-pebble, #efeeec); color: var(--text-muted, #5c6b6f); }
.oj-btn--outline-slate { background: transparent; color: var(--text-strong, #0f262c); border: 1px solid var(--border-strong, #cdb9a6); }
.oj-btn--outline-slate:hover { background: var(--oj-slate, #0f262c); color: var(--oj-creme, #fffaf5); border-color: var(--oj-slate, #0f262c); }

.oj-stars-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.oj-stars-row--center { justify-content: center; }
.oj-stars-row__stars { display: inline-flex; gap: 2px; }
.oj-stars-row__label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted, #5c6b6f); }
.oj-stars-row--dark .oj-stars-row__label { color: var(--text-on-dark-muted, rgba(255,250,245,.72)); }

/* 1a — Cinematic: full-bleed photo, slate protection gradient, copy left */
.oj-lhero-cinematic { position: relative; min-height: min(86vh, 720px); display: flex; align-items: center; overflow: hidden; }
.oj-lhero-cinematic__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.oj-lhero-cinematic__scrim { position: absolute; inset: 0; background: linear-gradient(92deg, rgba(10,26,31,.92) 0%, rgba(10,26,31,.72) 42%, rgba(10,26,31,0) 82%); }
.oj-lhero-cinematic__inner { position: relative; max-width: var(--container-max, 1200px); margin: 0 auto; padding: 0 32px; width: 100%; }
.oj-lhero-cinematic__copy { max-width: 560px; color: var(--oj-creme, #fffaf5); }
.oj-lhero-cinematic .oj-lhero__h1 { color: var(--oj-creme, #fffaf5); font-size: clamp(38px, 5vw, 62px); }
.oj-lhero-cinematic .oj-lhero__sub { color: rgba(255,250,245,.86); }

/* 1b — Editorial: centered creme headline, photo full-width below */
.oj-lhero-editorial { text-align: center; }
.oj-lhero-editorial__head { max-width: 820px; margin: 0 auto; padding: 72px 32px 52px; }
.oj-lhero-editorial .oj-lhero__h1--dark-text { color: var(--text-strong, #0f262c); font-size: clamp(34px, 4.4vw, 56px); }
.oj-lhero-editorial .oj-lhero__sub--muted { color: var(--text-muted, #5c6b6f); margin-left: auto; margin-right: auto; }
.oj-lhero-editorial__band { width: 100%; height: 380px; overflow: hidden; }
.oj-lhero-editorial__band img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 1c — Split: copy left on creme, photo right edge-to-edge, 6px crimson rule */
.oj-lhero-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: min(84vh, 680px); }
.oj-lhero-split__copy { display: flex; flex-direction: column; justify-content: center; padding: 64px clamp(32px, 5vw, 72px); max-width: 620px; margin-left: auto; }
.oj-lhero-split .oj-lhero__h1--dark-text { color: var(--text-strong, #0f262c); font-size: clamp(34px, 4vw, 54px); }
.oj-lhero-split .oj-lhero__sub--body { color: var(--text-body, #24313a); }
.oj-lhero-split__media { position: relative; min-height: 320px; }
.oj-lhero-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.oj-lhero-split__rule { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--oj-crimson, #dd4630); z-index: 1; }

@media (max-width: 860px) {
  .oj-lhero-cinematic { min-height: 78vh; }
  .oj-lhero-cinematic__scrim { background: linear-gradient(0deg, rgba(10,26,31,.94) 8%, rgba(10,26,31,.6) 60%, rgba(10,26,31,.35) 100%); }
  .oj-lhero-split { grid-template-columns: 1fr; }
  .oj-lhero-split__copy { max-width: none; margin: 0; padding: 48px 22px; order: 2; }
  .oj-lhero-split__media { order: 1; height: 300px; }
  .oj-lhero-editorial__head { padding: 48px 22px 36px; }
  .oj-lhero-editorial__band { height: 260px; }
}

/* darksplit — LandingHook: dark, copy left, framed photo right */
.oj-lhero-darksplit { background: var(--surface-dark); color: var(--text-on-dark); overflow: hidden; }
.oj-lhero-darksplit__inner { max-width: var(--container-max); margin: 0 auto; padding: 96px 32px 88px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.oj-lhero-darksplit__eyebrow { color: #fff; font-size: 14px; letter-spacing: 0.16em; }
.oj-lhero-darksplit__h1 { color: var(--text-on-dark); font-size: clamp(38px, 4.6vw, 60px); font-weight: var(--fw-light); line-height: 1.05; letter-spacing: var(--ls-tight); margin: 20px 0 22px; }
.oj-lhero-darksplit__h1 p { margin: 0; }
.oj-lhero-darksplit__h1 em, .oj-lhero-darksplit__h1 i { font-style: italic; color: var(--oj-crimson-300); }
.oj-lhero-darksplit__sub { color: #fff; font-size: 22px; line-height: 1.65; max-width: 500px; margin: 0 0 34px; }
@keyframes oj-hero-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(221, 70, 48, 0.45); }
  55% { box-shadow: 0 0 0 12px rgba(221, 70, 48, 0); }
}
.oj-lhero-darksplit .oj-lhero-darksplit__btn { color: var(--text-on-dark); border: 1px solid var(--oj-crimson); background: transparent; font-weight: var(--fw-regular); font-size: 20px; padding: 18px 34px; animation: oj-hero-pulse 2.6s var(--ease-standard) infinite; }
.oj-lhero-darksplit .oj-lhero-darksplit__btn:hover { background: var(--oj-crimson); color: var(--oj-creme); border-color: var(--oj-crimson); }
@media (prefers-reduced-motion: reduce) { .oj-lhero-darksplit .oj-lhero-darksplit__btn { animation: none; } }
.oj-lhero-darksplit__media { aspect-ratio: 4 / 5; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-on-dark); }
@media (max-width: 860px) {
  .oj-lhero-darksplit__inner { grid-template-columns: 1fr; gap: 34px; padding: 64px 22px; }
  .oj-lhero-darksplit__h1 { font-size: 36px; }
  .oj-lhero-darksplit__sub { font-size: 18px; }
  /* Copy first on mobile (DOM order), photo below it. */
  .oj-lhero-darksplit__media { max-width: 420px; margin: 0 auto; }
}
/* END_SECTION:oj-landing-hero */

/* START_SECTION:oj-main-article (INDEX:61) */
.oj-article__header {
  background: var(--oj-creme);
  padding: 56px 0 0;
  text-align: center;
}
.oj-article__breadcrumb {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 22px;
}
.oj-article__breadcrumb a { color: var(--text-faint); text-decoration: none; }
.oj-article__breadcrumb span { color: var(--oj-crimson); }
.oj-article__title { font-size: 46px; line-height: 1.08; margin: 0 0 22px; }
.oj-article__standfirst {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.oj-article__byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 40px;
}
.oj-article__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--oj-crimson-tint);
  color: var(--oj-crimson-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 18px;
}
.oj-article__byline-text { text-align: left; display: flex; flex-direction: column; }
.oj-article__author { font-weight: var(--fw-semibold); font-size: 14.5px; color: var(--text-strong); }
.oj-article__meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.oj-article__hero { padding: 0 32px; }
.oj-article__hero-frame {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.oj-article__content {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: 56px 32px 24px;
}
.oj-article__content p {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  color: var(--text-body);
  margin: 0 0 26px;
}
.oj-article__content h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: var(--fs-h1);
  line-height: 1.2;
  letter-spacing: var(--ls-snug);
  color: var(--text-strong);
  margin: 44px 0 18px;
}
.oj-article__content h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: var(--fs-h2);
  color: var(--text-strong);
  margin: 36px 0 14px;
}
.oj-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.oj-article__content a { color: var(--oj-crimson); }
/* Blockquotes render as the centered scripture pull-quote pattern */
.oj-article__content blockquote {
  margin: 44px 0;
  padding: 36px 16px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}
.oj-article__content blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-light);
  font-size: 26px;
  line-height: 1.3;
  color: var(--text-strong);
  margin: 0;
}
.oj-article__content blockquote cite,
.oj-article__content blockquote em:last-child {
  display: block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oj-crimson);
}
.oj-article__cta-wrap {
  max-width: var(--container-text);
  margin: 24px auto 0;
  padding: 0 32px;
}
.oj-article__cta {
  background: var(--oj-slate);
  color: var(--text-on-dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}
.oj-article__cta h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 26px;
  line-height: 1.16;
  color: var(--oj-creme);
  margin: 0 0 10px;
}
.oj-article__cta p {
  font-size: 16px;
  line-height: var(--lh-body);
  color: var(--text-on-dark-muted);
  margin: 0 auto 22px;
  max-width: 420px;
}
.oj-article__related { background: var(--oj-creme); padding: 88px 0 96px; }
.oj-article__related-heading {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: var(--fs-h1);
  line-height: 1.1;
  color: var(--text-strong);
  margin: 0 0 32px;
  text-align: center;
}
.oj-article__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 620px) {
  .oj-article__title { font-size: 32px; }
  .oj-article__hero { padding: 0 22px; }
  .oj-article__content { padding: 40px 22px 16px; }
}
/* END_SECTION:oj-main-article */

/* START_SECTION:oj-main-blog (INDEX:62) */
.oj-blog-header {
  background: var(--oj-creme);
  padding: 64px 32px 36px;
  text-align: center;
}
.oj-blog-header .oj-container--text { padding: 0; }
.oj-blog-header__title { font-size: 48px; line-height: 1.08; margin: 16px 0 14px; }
.oj-blog-header__subtext { font-size: 18px; line-height: var(--lh-body); color: var(--text-muted); margin: 0; }
.oj-blog-pills {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px 36px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.oj-blog-featured-wrap { background: var(--oj-creme); padding: 8px 32px 64px; }
.oj-blog-featured {
  text-decoration: none;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.oj-blog-featured__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 11;
}
.oj-blog-featured__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oj-crimson);
}
.oj-blog-featured__title {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: var(--fs-display-sm);
  line-height: 1.12;
  letter-spacing: var(--ls-snug);
  color: var(--text-strong);
  margin: 14px 0;
}
.oj-blog-featured__excerpt {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-muted);
  margin: 0 0 18px;
}
.oj-blog-featured__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}
.oj-blog-grid-wrap { background: var(--oj-creme); padding: 0 32px 96px; }
.oj-blog-grid-wrap--empty { padding-bottom: 32px; }
.oj-blog-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.oj-blog-empty { grid-column: 1 / -1; text-align: center; color: var(--text-muted); }

.oj-post-card { text-decoration: none; display: flex; flex-direction: column; }
.oj-post-card__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 2;
  margin-bottom: 16px;
  background: var(--oj-pebble);
}
.oj-post-card__kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oj-crimson);
}
.oj-post-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 21px;
  line-height: 1.18;
  color: var(--text-strong);
  margin: 8px 0;
}
.oj-post-card__excerpt {
  font-size: var(--fs-body-sm);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 12px;
  flex: 1;
}
.oj-post-card__meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
}
@media (max-width: 900px) {
  .oj-blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 620px) {
  .oj-blog-grid { grid-template-columns: 1fr !important; }
  .oj-blog-header { padding: 44px 22px 28px; }
  .oj-blog-featured-wrap { padding: 8px 22px 44px; }
  .oj-blog-grid-wrap { padding: 0 22px 56px; }
}
/* END_SECTION:oj-main-blog */

/* START_SECTION:oj-main-collection (INDEX:63) */
.oj-collection-header {
  background: var(--oj-creme);
  padding: 64px 32px 40px;
  text-align: center;
}
/* Wider than the reading measure so long titles ("Mental Health Courses
   for Believers") stay on one line; the description is re-narrowed below. */
.oj-collection-header__inner { max-width: 960px; margin: 0 auto; padding: 0; }
.oj-collection-header__title {
  font-size: 48px;
  line-height: 1.08;
  margin: 16px 0 14px;
}
.oj-collection-header__subhead,
.oj-collection-header__subhead p {
  font-size: 18px;
  line-height: var(--lh-body);
  color: var(--text-muted);
  margin: 0;
}
.oj-collection-header__subhead {
  max-width: var(--container-text);
  margin-left: auto;
  margin-right: auto;
}
.oj-collection-header__desc.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.oj-collection-header__readmore {
  margin-top: 10px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oj-crimson);
}
.oj-collection-header__readmore:hover { text-decoration: underline; text-underline-offset: 3px; }
.oj-collection-toolbar { padding: 0 32px; }
.oj-collection-toolbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}
.oj-collection-toolbar__pills { display: flex; gap: 10px; flex-wrap: wrap; }
.oj-collection-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.oj-collection-toolbar__sort select {
  border: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
}
.oj-collection-grid-wrap { background: var(--oj-creme); padding: 28px 32px 96px; }
.oj-collection-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.oj-collection-empty { grid-column: 1 / -1; text-align: center; color: var(--text-muted); }

.oj-card { text-decoration: none; display: flex; flex-direction: column; }
.oj-card__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  background: var(--oj-pebble);
}
.oj-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--oj-crimson);
  color: var(--oj-creme);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.oj-card__badge--slate { background: var(--oj-slate); }
.oj-card__kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.oj-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 22px;
  color: var(--text-strong);
  margin: 6px 0 4px;
}
.oj-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-faint);
}
.oj-card__rating .oj-stars svg { width: 13px; height: 13px; }
.oj-card__price {
  font-weight: var(--fw-semibold);
  font-size: 17px;
  color: var(--text-strong);
}
.oj-card__price s {
  font-weight: var(--fw-regular);
  font-size: 14px;
  color: var(--text-faint);
  margin-left: 6px;
}
.oj-card__unit { font-weight: var(--fw-regular); font-size: 14px; color: var(--text-faint); }

@media (max-width: 900px) {
  .oj-collection-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 620px) {
  .oj-collection-grid { grid-template-columns: 1fr !important; }
  .oj-collection-header { padding: 44px 22px 32px; }
  .oj-collection-header__title { font-size: 34px; }
  .oj-collection-toolbar { padding: 0 22px; }
  .oj-collection-grid-wrap { padding: 24px 22px 56px; }
}
/* END_SECTION:oj-main-collection */

/* START_SECTION:oj-main-product (INDEX:64) */
/* The product page's main block renders on white, not the creme page tone */
.section-oj-main-product { background: var(--oj-white); }
.oj-breadcrumb {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 24px 32px 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.oj-breadcrumb a { color: var(--text-faint); text-decoration: none; }
.oj-breadcrumb a:hover { color: var(--text-muted); }
.oj-breadcrumb span { color: var(--text-muted); }

.oj-product__hero { padding: 32px 32px 96px; }
.oj-product__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.oj-product__gallery { position: sticky; top: 120px; }
.oj-product__main-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
  background: var(--oj-pebble);
}
.oj-product__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.oj-product__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: none;
}
.oj-product__thumb.is-active { border-color: var(--oj-crimson); }

.oj-product__eyebrow { margin-bottom: 0; }
.oj-product__title { font-size: 42px; line-height: 1.08; letter-spacing: -0.015em; margin: 12px 0 14px; }
.oj-product__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.oj-product__rating-text { font-size: 14px; color: var(--text-muted); }
.oj-product__rating-text a { color: var(--text-muted); }
.oj-product__price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.oj-product__price {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 34px;
  color: var(--text-strong);
}
/* On sale (compare price visible): current price in brand red, original price smaller & navy */
.oj-product__compare { font-size: 15px; color: var(--oj-navy); text-decoration: line-through; opacity: 0.85; }
.oj-product__price-row:has(.oj-product__compare:not([hidden])) .oj-product__price { color: var(--oj-crimson); }
.oj-product__description { font-size: var(--fs-body); line-height: var(--lh-body); color: var(--text-body); margin: 14px 0 26px; }
.oj-product__description p { margin: 0 0 12px; }

.oj-product__picker-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
}
.oj-product__variants { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.oj-variant-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  padding: 16px 18px;
  border: 1.5px solid var(--border-subtle);
  background: var(--surface-card);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard);
}
.oj-variant-card.is-active {
  border-color: var(--oj-crimson);
  background: var(--oj-crimson-tint);
}
.oj-variant-card__name { display: block; font-weight: var(--fw-semibold); font-size: 15.5px; color: var(--text-strong); }
.oj-variant-card__badge {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--oj-crimson);
  color: var(--oj-creme);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  margin-left: 4px;
}
.oj-variant-card__sub { font-size: 13px; color: var(--text-muted); }
.oj-variant-card__price { font-weight: var(--fw-semibold); font-size: 16px; color: var(--text-strong); }

.oj-product__buy-row { display: flex; gap: 12px; margin-bottom: 14px; }
.oj-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.oj-qty button {
  width: 44px;
  height: 50px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-strong);
}
.oj-qty input {
  width: 36px;
  border: none;
  background: none;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 16px;
  color: var(--text-strong);
  -moz-appearance: textfield;
  appearance: textfield;
}
.oj-qty input::-webkit-outer-spin-button,
.oj-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.oj-product__atc { flex: 1; height: 52px; font-size: 17px; }
.oj-product__form .shopify-payment-button__button--unbranded {
  width: 100%;
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 16px;
  height: 50px;
  border-radius: var(--radius-pill);
  background: var(--oj-slate);
  color: var(--oj-creme);
}
.oj-product__form .shopify-payment-button__button--unbranded:hover { background: var(--oj-navy); }

.oj-product__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 18px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin: 24px 0 8px;
}
.oj-product__trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.oj-product__trust svg { color: var(--oj-crimson); flex-shrink: 0; }

.oj-product-acc { border-bottom: 1px solid var(--border-subtle); padding: 4px 0; }
.oj-product-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--text-strong);
}
.oj-product-acc summary::-webkit-details-marker { display: none; }
.oj-product-acc__plus {
  color: var(--oj-crimson);
  transition: transform var(--dur-base) var(--ease-standard);
  font-size: 22px;
  line-height: 1;
}
.oj-product-acc[open] .oj-product-acc__plus { transform: rotate(45deg); }
.oj-product-acc__body { padding: 0 0 20px; font-size: 15.5px; line-height: 1.65; color: var(--text-body); }
.oj-product-acc__body p { margin: 0 0 10px; }
.oj-product-acc__body p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .oj-product__hero { padding: 24px 22px 56px; }
  /* Mobile: eyebrow + title + rating rise above the image; price and everything
     below it stay under the image. display:contents lets the buy-box items
     reorder around the gallery. */
  .oj-product__grid { display: flex; flex-direction: column; gap: 0; }
  .oj-product__buybox { display: contents; }
  .oj-product__buybox > * { order: 3; }
  .oj-product__gallery { order: 2; margin-bottom: 26px; }
  .oj-product__eyebrow,
  .oj-product__title,
  .oj-product__rating { order: 1; }
  .oj-breadcrumb { padding: 18px 22px 0; }
}
/* END_SECTION:oj-main-product */

/* START_SECTION:oj-offer (INDEX:65) */
.oj-offer { background: var(--surface-page); }
.oj-offer__wrap { max-width: var(--container-max); margin: 0 auto; padding: 96px 32px; }
.oj-offer__head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.oj-offer__eyebrow { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--oj-crimson); margin-bottom: 18px; }
.oj-offer__heading { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 44px; line-height: 1.08; letter-spacing: var(--ls-snug); color: var(--text-strong); margin: 0; }
.oj-offer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.oj-offer__gallery { display: flex; flex-direction: column; gap: 14px; }
.oj-offer__main { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-sunken); border: 1px solid var(--border-subtle); }
.oj-offer__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.oj-offer__thumb { padding: 0; aspect-ratio: 1; overflow: hidden; cursor: pointer; border-radius: var(--radius-sm); background: var(--surface-sunken); border: 1px solid var(--border-subtle); }
.oj-offer__thumb.is-active { border-color: var(--oj-crimson); }
.oj-offer__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.oj-offer__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.oj-offer__stars { display: inline-flex; gap: 2px; }
.oj-offer__meta-rating { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); white-space: nowrap; }
.oj-offer__badge { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 11px; border-radius: var(--radius-pill); background: var(--oj-crimson-tint); color: var(--oj-crimson); }
.oj-offer__desc { font-family: var(--font-sans); font-size: 20px; line-height: 1.6; color: var(--text-body); margin: 0 0 24px; }
.oj-offer__desc p { margin: 0; }
.oj-offer__checklist { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.oj-offer__checklist li { display: flex; gap: 12px; align-items: flex-start; }
.oj-offer__checklist svg { margin-top: 4px; flex: none; }
.oj-offer__checklist span { font-family: var(--font-sans); font-size: 20px; line-height: 1.5; color: var(--text-body); }
.oj-offer__card { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 24px; }
.oj-offer__price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.oj-offer__price { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: 34px; color: var(--text-strong); }
.oj-offer__price-note { font-family: var(--font-sans); font-size: 13.5px; color: var(--text-muted); }
.oj-offer__form { margin: 0; }
.oj-offer__variant { width: 100%; margin-bottom: 12px; height: 46px; border: 1px solid var(--border-strong); border-radius: var(--radius-pill); padding: 0 16px; font-family: var(--font-sans); font-size: 15px; background: var(--surface-card); }
.oj-offer__actions { display: flex; gap: 12px; align-items: center; }
.oj-qty { display: inline-flex; align-items: center; border: 1px solid var(--border-strong); border-radius: var(--radius-pill); flex: none; }
.oj-qty__btn { width: 40px; height: 44px; border: none; background: transparent; cursor: pointer; font-size: 19px; color: var(--text-strong); display: flex; align-items: center; justify-content: center; }
.oj-qty__val { width: 40px; height: 44px; border: none; background: transparent; text-align: center; font-family: var(--font-sans); font-weight: var(--fw-semibold); font-size: 16px; color: var(--text-strong); -moz-appearance: textfield; }
.oj-qty__val::-webkit-outer-spin-button, .oj-qty__val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.oj-offer__add { flex: 1; }
.oj-offer__add.is-added { background: var(--status-success); }
.oj-offer__trust { margin-top: 18px; }
.oj-offer__trust p { margin: 0; font-family: var(--font-sans); font-size: 13.5px; color: var(--text-muted); }
.oj-offer__no-product { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); }

@media (max-width: 860px) {
  .oj-offer__wrap { padding: 72px 22px; }
  .oj-offer__heading { font-size: 32px; }
  .oj-offer__grid { grid-template-columns: 1fr; gap: 36px; }
}
/* END_SECTION:oj-offer */

/* START_SECTION:oj-page-hero (INDEX:66) */
.oj-page-hero { padding: 96px 0 72px; text-align: center; }
/* Wider than the reading measure so long titles stay to two balanced lines;
   the lead paragraph is re-narrowed below for readability. */
.oj-page-hero__inner { max-width: 940px; margin: 0 auto; }
.oj-page-hero__heading {
  font-size: 52px;
  line-height: 1.07;
  margin: 18px 0 22px;
  text-wrap: balance;
}
.oj-page-hero__lead,
.oj-page-hero__lead p {
  font-size: var(--fs-body-lg);
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}
.oj-page-hero__lead {
  max-width: var(--container-text);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 760px) {
  .oj-page-hero { padding: 56px 0 44px; }
}
@media (max-width: 620px) {
  .oj-page-hero__heading { font-size: 36px; }
}
/* END_SECTION:oj-page-hero */

/* START_SECTION:oj-popup (INDEX:67) */
:root { --oj-popup-z: 200; }
html.oj-popup-lock { overflow: hidden; }

.oj-popup { position: fixed; z-index: var(--oj-popup-z); pointer-events: none; }
.oj-popup[hidden] { display: none; }
.oj-popup.is-open { pointer-events: auto; }

.oj-popup__card {
  position: relative;
  background: var(--surface-card, #fff);
  color: var(--text-body, #24313a);
  border-radius: var(--radius-lg, 18px);
  box-shadow: 0 24px 70px rgba(15, 38, 44, 0.28);
  overflow: hidden;
  display: flex;
  width: 100%;
}
.oj-tone--creme .oj-popup__card { background: var(--oj-creme, #fffaf5); }
.oj-tone--white .oj-popup__card { background: #fff; }
.oj-tone--slate .oj-popup__card { background: var(--oj-slate, #0f262c); color: var(--text-on-dark, #fffaf5); }
.oj-tone--navy .oj-popup__card { background: var(--oj-navy, #263b40); color: var(--text-on-dark, #fffaf5); }

.oj-popup__media { flex: 0 0 40%; min-height: 100%; }
.oj-popup__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.oj-popup__content { padding: 34px 32px 30px; flex: 1; --oj-px: 32px; --oj-pb: 30px; }

.oj-popup__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 50%; cursor: pointer;
  background: rgba(15, 38, 44, 0.06); color: inherit; padding: 0;
  transition: background 0.2s ease;
}
.oj-popup__close:hover { background: rgba(15, 38, 44, 0.12); }
.oj-tone--slate .oj-popup__close, .oj-tone--navy .oj-popup__close { background: rgba(255, 250, 245, 0.14); }

.oj-popup__eyebrow {
  display: block; font-family: var(--font-mono, monospace);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--oj-crimson, #c8452f); margin-bottom: 12px;
}
.oj-tone--slate .oj-popup__eyebrow, .oj-tone--navy .oj-popup__eyebrow { color: var(--oj-crimson-300, #f0a08f); }
.oj-popup__headline {
  font-family: var(--font-display, Georgia, serif);
  font-weight: var(--fw-light, 300); font-size: 27px; line-height: 1.12;
  letter-spacing: -0.01em; margin: 0 0 12px;
}
.oj-popup__body p { font-size: 15px; line-height: 1.6; margin: 0 0 12px; color: inherit; opacity: 0.9; }
.oj-popup__body p:last-child { margin-bottom: 0; }

.oj-popup__field { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.oj-popup__field input[type="email"] {
  flex: 1 1 160px; min-width: 0; height: 46px; padding: 0 16px;
  border: 1px solid var(--border-strong, #cdb9a6); border-radius: var(--radius-pill, 40px);
  background: #fff; color: #24313a; font-family: var(--font-sans, sans-serif); font-size: 15px;
}
.oj-popup__field .oj-btn { height: 46px; flex: 0 0 auto; }
.oj-popup__button { margin-top: 18px; }
.oj-popup__sr, .oj-popup__field label.oj-popup__sr {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}
.oj-popup__error { color: var(--oj-crimson, #c8452f); font-size: 13px; margin: 10px 0 0; }
.oj-popup__foot { font-size: 12px; opacity: 0.62; margin: 14px 0 0; }
.oj-popup__foot--above { margin: 4px 0 0; }
/* Custom embeds bleed to the card's left/right/bottom edges and size to the
   form's own height (the provider script sets it), so no empty gap. */
.oj-popup__embed {
  margin: 16px calc(-1 * var(--oj-px, 32px)) calc(-1 * var(--oj-pb, 30px));
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg, 18px) var(--radius-lg, 18px);
}
.oj-popup__embed iframe { width: 100%; min-height: 120px; border: 0; display: block; }
/* embed_height > 0 → crop the embed to an exact height (trims a form's own bottom whitespace) */
.oj-popup__embed--fixed { height: var(--oj-embed-h); }
.oj-popup__embed--fixed iframe { height: 100% !important; min-height: 0 !important; }

.oj-popup__code {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 12px;
  border: 1.5px dashed var(--oj-crimson, #c8452f); border-radius: 12px;
  padding: 12px 18px; cursor: pointer; user-select: all;
}
.oj-popup__code-value { font-family: var(--font-mono, monospace); font-weight: 700; font-size: 18px; letter-spacing: 0.08em; }
.oj-popup__code-hint { font-family: var(--font-mono, monospace); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; }
.oj-popup__code.is-copied .oj-popup__code-hint::after { content: ' — copied'; }

/* ---- Modal (center + dimmed backdrop) ---- */
/* overflow-y here (not on the card) lets the whole popup scroll when it's taller
   than the screen, so the card grows to fit the full form without an inner scroll. */
.oj-popup--modal { inset: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; display: flex; padding: 24px 20px; }
.oj-popup--modal .oj-popup__backdrop {
  /* display:block overrides Dawn base.css `div:empty { display:none }`, which
     otherwise hides this (childless) backdrop div entirely. fixed so it keeps
     covering the viewport while the card scrolls. */
  display: block;
  position: fixed; inset: 0; background: rgba(15, 38, 44, 0.55);
  opacity: 0; transition: opacity 0.3s ease;
}
.oj-popup--modal .oj-popup__card {
  /* margin:auto centers it, and stays scroll-reachable when taller than the screen */
  margin: auto; z-index: 1;
  max-width: 560px; opacity: 0; transform: translateY(14px) scale(0.98);
  transition: opacity 0.34s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.oj-popup--modal.is-open .oj-popup__backdrop { opacity: 1; }
.oj-popup--modal.is-open .oj-popup__card { opacity: 1; transform: none; }

/* ---- Slide-in & Sticky (corner card, no backdrop) ---- */
.oj-popup--slide, .oj-popup--sticky { width: min(92vw, 380px); }
.oj-popup--slide .oj-popup__card, .oj-popup--sticky .oj-popup__card { flex-direction: column; }
.oj-popup--slide .oj-popup__media, .oj-popup--sticky .oj-popup__media { flex-basis: auto; height: 150px; }
.oj-popup--pos-br { right: 24px; bottom: 24px; }
.oj-popup--pos-bl { left: 24px; bottom: 24px; }
.oj-popup--pos-tr { right: 24px; top: 24px; }
.oj-popup--pos-tl { left: 24px; top: 24px; }

.oj-popup--slide .oj-popup__card, .oj-popup--sticky .oj-popup__card { opacity: 0; transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.oj-popup--slide.oj-popup--pos-br .oj-popup__card, .oj-popup--slide.oj-popup--pos-tr .oj-popup__card { transform: translateX(30px); }
.oj-popup--slide.oj-popup--pos-bl .oj-popup__card, .oj-popup--slide.oj-popup--pos-tl .oj-popup__card { transform: translateX(-30px); }
.oj-popup--sticky .oj-popup__card { transform: translateY(20px); }
.oj-popup.is-open .oj-popup__card { opacity: 1; transform: none; }

@media (max-width: 620px) {
  .oj-popup--modal { padding: 14px; }
  .oj-popup--modal .oj-popup__card { max-width: none; }
  .oj-popup__card { flex-direction: column; }
  .oj-popup__media { flex-basis: auto; height: 150px; }
  .oj-popup__content { padding: 28px 22px 24px; --oj-px: 22px; --oj-pb: 24px; }
  .oj-popup__headline { font-size: 23px; }
  .oj-popup--slide, .oj-popup--sticky { width: auto; left: 12px; right: 12px; bottom: 12px; top: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .oj-popup__card, .oj-popup__backdrop { transition: opacity 0.01ms !important; transform: none !important; }
}
/* END_SECTION:oj-popup */

/* START_SECTION:oj-pricing (INDEX:68) */
.oj-pricing__header { text-align: center; margin-bottom: 52px; }
.oj-pricing__heading { font-size: 42px; line-height: 1.1; letter-spacing: var(--ls-snug); margin: 0 0 12px; }
.oj-pricing__subtext { font-size: var(--fs-body); color: var(--text-muted); margin: 0; }
.oj-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.oj-pricing__card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.oj-pricing__card--featured {
  border: 1.5px solid var(--oj-crimson);
  box-shadow: var(--shadow-md);
}
.oj-pricing__badge {
  position: absolute;
  top: -12px;
  left: 30px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  font-weight: var(--fw-medium);
}
.oj-pricing__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.oj-pricing__price {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 38px;
  color: var(--text-strong);
  margin: 14px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.oj-pricing__compare {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-faint);
  text-decoration: line-through;
}
.oj-pricing__desc {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  color: var(--text-muted);
  margin: 0 0 24px;
  flex: 1;
}
.oj-pricing__form,
.oj-pricing__form form { display: block; }
.oj-pricing__card .oj-btn { width: 100%; }
.oj-pricing__form .loading__spinner:not(.hidden) { margin-left: 8px; }
.oj-pricing__form .loading__spinner svg { width: 16px; height: 16px; }
/* END_SECTION:oj-pricing */

/* START_SECTION:oj-process-steps (INDEX:69) */
.oj-process__header { text-align: center; margin-bottom: 56px; }
/* Full-bleed image: pinned to the section's top, bottom, and right edges */
.oj-process--bleed { position: relative; overflow: hidden; }
.oj-process__bleed-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 44%;
}
.oj-process--bleed .oj-process__header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 50%;
}
.oj-process--bleed .oj-process__grid--no-image {
  max-width: 50%;
  margin: 0;
}
@media (max-width: 900px) {
  .oj-process__bleed-media {
    position: static;
    width: auto;
    height: 340px;
    margin: 0 22px 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .oj-process--bleed .oj-process__header,
  .oj-process--bleed .oj-process__grid--no-image { max-width: none; }
}
.oj-process__heading { font-size: 42px; line-height: 1.1; letter-spacing: var(--ls-snug); margin: 0; }
.oj-process__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.oj-process__grid--no-image { grid-template-columns: 1fr; max-width: var(--container-text); margin: 0 auto; }
.oj-process__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.oj-process__steps { display: flex; flex-direction: column; gap: 30px; }
.oj-process__grid--columns { grid-template-columns: 1fr; max-width: none; }
.oj-process__steps--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.oj-process__steps--columns .oj-process__step { flex-direction: column; gap: 10px; }
/* Rows layout: oversized display numerals with hairline dividers */
.oj-process__grid--rows { max-width: none; }
.oj-process__steps--rows { gap: 0; }
.oj-process__steps--rows .oj-process__step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--border-subtle);
}
.oj-process__steps--rows .oj-process__step:last-child { border-bottom: 1px solid var(--border-subtle); }
.oj-process__steps--rows .oj-process__index {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: var(--ls-tight);
  padding-top: 0;
}
.oj-process__steps--rows .oj-process__title { font-size: 28px; line-height: 1.15; margin-bottom: 10px; }
.oj-process__steps--rows .oj-process__text { font-size: 20px; color: var(--text-body); max-width: 640px; }
@media (max-width: 620px) {
  .oj-process__steps--rows .oj-process__step { grid-template-columns: 56px 1fr; gap: 18px; }
  .oj-process__steps--rows .oj-process__index { font-size: 40px; }
}
.oj-process__step { display: flex; gap: 20px; align-items: flex-start; }
.oj-process__index {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--oj-crimson);
  padding-top: 4px;
  flex-shrink: 0;
}
.oj-process__index--dark { color: var(--oj-crimson-300); }
.oj-process__title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: var(--fs-h3);
  color: var(--text-strong);
  margin: 0 0 6px;
}
.oj-tone--slate .oj-process__title,
.oj-tone--navy .oj-process__title { color: var(--text-on-dark); }
[NOPE]  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  color: var(--text-muted);
  margin: 0;
}
.oj-tone--slate .oj-process__text,
.oj-tone--navy .oj-process__text { color: var(--text-on-dark-muted); }
@media (max-width: 900px) {
  .oj-process__grid { gap: 32px; }
  .oj-process__media { max-width: 480px; }
}
/* END_SECTION:oj-process-steps */

/* START_SECTION:oj-process (INDEX:70) */
.oj-lprocess { background: var(--surface-page); }
.oj-lprocess__wrap { max-width: var(--container-max); margin: 0 auto; padding: 96px 32px; }
.oj-lprocess__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.oj-lprocess__eyebrow { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--oj-crimson); margin-bottom: 18px; }
.oj-lprocess__heading { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 44px; line-height: 1.1; letter-spacing: var(--ls-snug); color: var(--text-strong); margin: 0 0 16px; }
.oj-lprocess__heading i, .oj-lprocess__heading em { font-style: italic; color: var(--oj-crimson); }
.oj-lprocess__intro { font-family: var(--font-sans); font-size: 20px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.oj-lprocess__cta { margin-top: 28px; }
.oj-lprocess__cta-btn { font-size: 24px; font-weight: var(--fw-medium); }
.oj-lprocess__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.oj-lprocess__steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.oj-lprocess__step { border-top: 1px solid var(--border-subtle); padding: 22px 4px; display: flex; gap: 20px; align-items: flex-start; transition: transform 900ms var(--ease-out), opacity 900ms var(--ease-standard); }
/* Rules divide the steps, but don't cap the list top or bottom. */
.oj-lprocess__step:first-child { border-top: none; padding-top: 0; }
.oj-lprocess__num { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--text-accent); padding-top: 5px; flex: none; }
.oj-lprocess__step-copy { flex: 1; }
.oj-lprocess__step-title { display: block; font-family: var(--font-display); font-weight: var(--fw-light); font-size: 23px; line-height: 1.2; color: var(--text-strong); }
.oj-lprocess__step-text { display: block; padding-top: 8px; font-family: var(--font-sans); font-size: 20px; line-height: 1.55; color: var(--text-muted); }
.oj-lprocess__media { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-subtle); background: var(--surface-sunken); }
.oj-img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.oj-lprocess__scripture { margin-top: 80px; background: var(--surface-dark-alt); border-radius: var(--radius-lg); padding: 56px 32px; display: flex; justify-content: center; }
.oj-lprocess__verse { margin: 0; max-width: 760px; text-align: center; border-left: none; padding-left: 0; font-family: var(--font-serif); font-weight: var(--fw-light); font-style: normal; font-size: 27px; line-height: 1.4; letter-spacing: var(--ls-snug); color: var(--text-on-dark); }
.oj-lprocess__verse i, .oj-lprocess__verse em { font-style: italic; color: var(--oj-crimson-300); }
.oj-lprocess__verse-ref { display: block; margin-top: 22px; font-family: var(--font-mono); font-style: normal; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-on-dark-muted); }

@media (max-width: 860px) {
  .oj-lprocess__wrap { padding: 72px 22px; }
  .oj-lprocess__heading { font-size: 34px; }
  .oj-lprocess__grid { grid-template-columns: 1fr; gap: 36px; }
  .oj-lprocess__media { order: -1; max-width: 460px; margin: 0 auto; }
  .oj-lprocess__scripture { margin-top: 56px; padding: 44px 24px; }
  .oj-lprocess__verse { font-size: 22px; }
}
/* END_SECTION:oj-process */

/* START_SECTION:oj-proof (INDEX:71) */
.oj-proof { background: var(--surface-page); }
.oj-proof__wrap { max-width: var(--container-max); margin: 0 auto; padding: 96px 32px; }
.oj-proof__head { text-align: center; margin-bottom: 48px; }
.oj-proof__eyebrow { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--oj-crimson); margin-bottom: 16px; }
.oj-proof__heading { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 40px; line-height: 1.1; letter-spacing: var(--ls-snug); color: var(--text-strong); margin: 0; }
.oj-proof__endorsements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.oj-proof__endorse { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); padding: 28px 26px; margin: 0; display: flex; flex-direction: column; }
.oj-proof__endorse-quote { margin: 0 0 22px; font-family: var(--font-serif); font-style: normal; font-size: 18px; line-height: 1.5; color: var(--text-body); }
.oj-proof__endorse-by { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.oj-proof__avatar { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; flex: none; }
.oj-proof__endorse-name { display: block; font-family: var(--font-display); font-weight: var(--fw-light); font-size: 16px; color: var(--text-strong); }
.oj-proof__endorse-role { display: block; font-family: var(--font-sans); font-size: 13px; color: var(--text-muted); }
.oj-proof__rating { display: flex; align-items: center; justify-content: center; gap: 14px; padding-bottom: 32px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 32px; }
.oj-proof__stars { display: inline-flex; gap: 2px; }
.oj-proof__rating-num { font-family: var(--font-display); font-size: 26px; font-weight: var(--fw-medium); color: var(--text-strong); }
.oj-proof__rating-count { font-family: var(--font-sans); font-size: 15px; color: var(--text-muted); }
.oj-proof__reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.oj-proof__review { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); padding: 24px; }
.oj-proof__review-stars { display: inline-flex; gap: 2px; }
.oj-proof__review-text { font-family: var(--font-sans); font-size: 20px; line-height: 1.6; color: var(--text-body); margin: 14px 0 16px; }
.oj-proof__review-by { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-faint); }

@media (max-width: 860px) {
  .oj-proof__wrap { padding: 72px 22px; }
  .oj-proof__heading { font-size: 30px; }
  .oj-proof__endorsements, .oj-proof__reviews { grid-template-columns: 1fr; }
  .oj-proof__rating { flex-wrap: wrap; }
}
/* END_SECTION:oj-proof */

/* START_SECTION:oj-rich-text (INDEX:72) */
.oj-rich-text__inner { text-align: center; }
.oj-rich-text .oj-eyebrow { margin-bottom: 12px; }
.oj-rich-text__heading { margin: 0 0 26px; line-height: 1.1; letter-spacing: var(--ls-snug); }
.oj-rich-text__heading--md { font-size: var(--fs-display-md); }
.oj-rich-text__heading--sm { font-size: var(--fs-display-sm); }
.oj-rich-text__heading--lg { font-size: var(--fs-display-lg); }
.oj-rich-text__body p {
  font-size: var(--fs-body-lg);
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 16px;
}
.oj-rich-text__body p:last-child { margin-bottom: 0; }
.oj-tone--slate .oj-rich-text__body p,
.oj-tone--navy .oj-rich-text__body p { color: var(--text-on-dark-muted); }
.oj-rich-text__actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
/* END_SECTION:oj-rich-text */

/* START_SECTION:oj-science (INDEX:73) */
.oj-science { background: var(--surface-dark); color: var(--text-on-dark); }
.oj-science__wrap { max-width: var(--container-max); margin: 0 auto; padding: 96px 32px; }
.oj-science__head { max-width: 680px; margin-bottom: 56px; }
.oj-science__eyebrow { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--oj-crimson-300); margin-bottom: 18px; }
.oj-science__heading { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 46px; line-height: 1.08; letter-spacing: var(--ls-snug); color: var(--text-on-dark); margin: 0; }
.oj-science__heading em, .oj-science__heading i { font-style: italic; color: var(--oj-crimson-300); }
.oj-science__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.oj-science__col { padding-top: 22px; border-top: 2px solid var(--oj-crimson); }
.oj-science__col-title { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 24px; line-height: 1.2; color: var(--text-on-dark); margin: 0 0 12px; }
.oj-science__col-text { font-family: var(--font-sans); font-size: 20px; line-height: 1.65; color: var(--text-on-dark-muted); margin: 0; }

.oj-science.oj-reveal .oj-science__head, .oj-science.oj-reveal .oj-science__col { opacity: 0; transform: translateY(28px); transition: transform 1100ms var(--ease-out), opacity 1100ms var(--ease-standard); }
.oj-science.oj-reveal.is-visible .oj-science__head { opacity: 1; transform: none; }
.oj-science.oj-reveal.is-visible .oj-science__col { opacity: 1; transform: none; }
.oj-science.oj-reveal.is-visible .oj-science__col:nth-child(1) { transition-delay: 200ms; }
.oj-science.oj-reveal.is-visible .oj-science__col:nth-child(2) { transition-delay: 400ms; }
.oj-science.oj-reveal.is-visible .oj-science__col:nth-child(3) { transition-delay: 600ms; }

@media (max-width: 860px) {
  .oj-science__wrap { padding: 72px 22px; }
  .oj-science__heading { font-size: 34px; }
  .oj-science__head { margin-bottom: 40px; }
  .oj-science__grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .oj-science.oj-reveal .oj-science__head, .oj-science.oj-reveal .oj-science__col { opacity: 1 !important; transform: none !important; transition: none !important; }
}
/* END_SECTION:oj-science */

/* START_SECTION:oj-scripture (INDEX:74) */
.oj-scripture { padding: 84px 32px; }
.oj-scripture__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* With a photo: image left and bleeding to the band's top/bottom edges
   (left gutter preserved), verse beside it, left-aligned */
.oj-scripture--has-image { padding-top: 0; padding-bottom: 0; }
.oj-scripture__split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: stretch;
}
.oj-scripture__media { min-height: 480px; }
.oj-scripture__inner--beside {
  align-items: flex-start;
  text-align: left;
  justify-content: center;
  padding: 84px 0;
}
@media (max-width: 900px) {
  .oj-scripture__split { gap: 0; }
  .oj-scripture__media { min-height: 320px; margin: 0 -22px; }
  .oj-scripture__inner--beside {
    align-items: center;
    text-align: center;
    padding: 48px 0 56px;
  }
}
.oj-scripture__crown { height: 30px; width: auto; margin-bottom: 28px; opacity: 0.9; }
.oj-scripture__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--oj-crimson-300);
  margin-bottom: 22px;
}
.oj-scripture__verse {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  font-style: italic;
  color: var(--text-on-dark);
  line-height: 1.3;
  letter-spacing: var(--ls-snug);
  margin: 0;
  quotes: none;
}
.oj-scripture__verse--upright { font-style: normal; }
.oj-scripture__verse--lg { font-size: var(--fs-display-sm); }
.oj-scripture__verse--md { font-size: 26px; }
.oj-scripture__reference {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oj-crimson-300);
}
@media (max-width: 760px) {
  .oj-scripture { padding: 56px 22px; }
}
/* END_SECTION:oj-scripture */

/* START_SECTION:oj-seo-text (INDEX:75) */
.oj-seo__image { width: 100%; overflow: hidden; }
.oj-seo__body-wrap { padding-top: 88px; padding-bottom: 96px; }
.oj-seo__heading {
  font-size: var(--fs-display-md);
  line-height: 1.12;
  letter-spacing: var(--ls-snug);
  max-width: 780px;
  margin: 0 0 44px;
}
.oj-seo__body {
  column-count: 2;
  column-gap: 72px;
}
.oj-seo__body p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  margin: 0 0 22px;
  break-inside: avoid;
}
@media (max-width: 900px) {
  .oj-seo__body { column-count: 1; }
  .oj-seo__body-wrap { padding-top: 56px; padding-bottom: 56px; }
  .oj-seo__heading { margin-bottom: 28px; }
}
/* END_SECTION:oj-seo-text */

/* START_SECTION:oj-stat-split (INDEX:76) */
.oj-stat-split__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.oj-stat-split__eyebrow { color: var(--oj-crimson-300); }
.oj-stat-split__stat {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 120px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--oj-creme);
  margin: 18px 0 8px;
}
.oj-stat-split__caption {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-style: italic;
  font-size: 26px;
  line-height: 1.2;
  color: var(--oj-crimson-300);
  margin: 0;
}
.oj-stat-split__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
}
.oj-stat-split__body p { margin: 0; }
.oj-stat-split__body strong { color: var(--oj-creme); font-weight: var(--fw-regular); }
@media (max-width: 900px) {
  .oj-stat-split__grid { gap: 32px; }
}
@media (max-width: 620px) {
  .oj-stat-split__stat { font-size: 68px; }
}
/* END_SECTION:oj-stat-split */

/* START_SECTION:oj-sticky-buy (INDEX:77) */
.oj-sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255, 250, 245, 0.94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-subtle); box-shadow: 0 -6px 24px rgba(15, 38, 44, 0.08);
  transform: translateY(100%); transition: transform var(--dur-slow, 360ms) var(--ease-out);
}
.oj-sticky-buy.is-visible { transform: translateY(0); }
.oj-sticky-buy__inner { max-width: var(--container-max); margin: 0 auto; padding: 12px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.oj-sticky-buy__product { display: flex; align-items: center; gap: 14px; min-width: 0; }
.oj-sticky-buy__thumb { width: 46px; height: 46px; object-fit: cover; border-radius: var(--radius-sm); flex: none; }
.oj-sticky-buy__title { font-family: var(--font-sans); font-weight: var(--fw-semibold); font-size: 15px; color: var(--text-strong); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.oj-sticky-buy__meta { display: flex; align-items: center; gap: 8px; }
.oj-sticky-buy__price { font-family: var(--font-sans); font-size: 13.5px; color: var(--text-muted); }
.oj-sticky-buy__ship { font-family: var(--font-sans); font-size: 13px; color: var(--text-faint); }
.oj-sticky-buy__actions { display: flex; align-items: center; gap: 14px; flex: none; }
.oj-sticky-buy__form { margin: 0; display: flex; align-items: center; gap: 12px; }
.oj-qty--compact .oj-qty__btn { width: 32px; height: 32px; font-size: 16px; }
.oj-qty--compact .oj-qty__val { width: 30px; height: 32px; font-size: 14px; }
.oj-qty { display: inline-flex; align-items: center; border: 1px solid var(--border-strong); border-radius: var(--radius-pill); }
.oj-qty__btn { width: 40px; height: 44px; border: none; background: transparent; cursor: pointer; font-size: 19px; color: var(--text-strong); display: flex; align-items: center; justify-content: center; }
.oj-qty__val { width: 40px; height: 44px; border: none; background: transparent; text-align: center; font-family: var(--font-sans); font-weight: var(--fw-semibold); font-size: 16px; color: var(--text-strong); -moz-appearance: textfield; }
.oj-qty__val::-webkit-outer-spin-button, .oj-qty__val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.oj-sticky-buy__add.is-added { background: var(--status-success); }
@media (max-width: 700px) {
  .oj-sticky-buy__inner { padding: 10px 16px; gap: 12px; }
  .oj-sticky-buy__ship { display: none; }
  .oj-sticky-buy__thumb { display: none; }
  .oj-qty--compact { display: none; }
}
/* END_SECTION:oj-sticky-buy */

/* START_SECTION:oj-story (INDEX:78) */
.oj-story__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.oj-story__heading {
  font-size: var(--fs-display-sm);
  line-height: 1.16;
  letter-spacing: var(--ls-snug);
  margin: 0;
  position: sticky;
  top: 120px;
}
.oj-story__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
}
.oj-story__body p { margin: 0; }
@media (max-width: 900px) {
  .oj-story__grid { gap: 28px; }
}
/* END_SECTION:oj-story */

/* START_SECTION:oj-testimonial-callout (INDEX:79) */
.oj-callout__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.oj-callout__stars { color: var(--oj-crimson); margin-bottom: 22px; }
.oj-tone--slate .oj-callout__stars,
.oj-tone--navy .oj-callout__stars { color: var(--oj-crimson-300); }
/* Sans face for testimonials (brand rule), scaled up for a single callout.
   Reset Dawn's default blockquote border + italics. */
.oj-callout__quote {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-style: normal;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: var(--ls-snug);
  color: var(--text-strong);
  margin: 0;
  border-left: 0;
  padding-left: 0;
  quotes: none;
}
.oj-tone--slate .oj-callout__quote,
.oj-tone--navy .oj-callout__quote { color: var(--text-on-dark); }
.oj-callout__person { margin-top: 28px; }
.oj-callout__name {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 19px;
  color: var(--text-strong);
}
.oj-tone--slate .oj-callout__name,
.oj-tone--navy .oj-callout__name { color: var(--text-on-dark); }
.oj-callout__cred {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.oj-tone--slate .oj-callout__cred,
.oj-tone--navy .oj-callout__cred { color: var(--text-on-dark-muted); }
@media (max-width: 620px) {
  .oj-callout__quote { font-size: 23px; }
}
/* END_SECTION:oj-testimonial-callout */

/* START_SECTION:oj-trust-strip (INDEX:80) */
.oj-trust-strip__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 40px;
  text-align: center;
}
.oj-trust-strip__inner span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.oj-trust-strip.oj-tone--white span,
.oj-trust-strip.oj-tone--creme span,
.oj-trust-strip.oj-tone--pebble span { color: var(--text-muted); }
/* END_SECTION:oj-trust-strip */

/* START_SECTION:oj-value-banner (INDEX:81) */
.oj-value-banner { background: var(--surface-sunken); border-bottom: 1px solid var(--border-subtle); }
.oj-value-banner__inner {
  max-width: var(--container-max); margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 18px;
}
.oj-value-banner__item { font-family: var(--font-sans); font-size: 14.5px; font-weight: var(--fw-medium); color: var(--text-strong); white-space: nowrap; }
.oj-value-banner__dot { color: var(--oj-crimson); font-size: 12px; }
@media (max-width: 620px) { .oj-value-banner__inner { padding: 16px 22px; } }
/* END_SECTION:oj-value-banner */

/* START_SECTION:oj-value-props (INDEX:82) */
.oj-value-props { background: var(--surface-dark-deep); color: var(--text-on-dark); }
.oj-value-props__wrap { max-width: var(--container-max); margin: 0 auto; padding: 64px 32px; }
.oj-value-props__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.oj-value-props__title { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 28px; color: var(--oj-crimson-300); margin-bottom: 10px; line-height: 1.15; }
.oj-value-props__text { font-family: var(--font-sans); font-size: 20px; line-height: 1.6; color: var(--text-on-dark-muted); margin: 0; }
@media (max-width: 860px) {
  .oj-value-props__wrap { padding: 48px 22px; }
  .oj-value-props__grid { grid-template-columns: 1fr; gap: 28px; }
}
/* END_SECTION:oj-value-props */

/* START_SECTION:oj-verse-banner (INDEX:83) */
.oj-verse-banner { background: var(--surface-accent); }
.oj-verse-banner__inner { max-width: 840px; margin: 0 auto; padding: 72px 32px; text-align: center; }
.oj-verse-banner__quote { margin: 0; font-family: var(--font-serif); font-weight: var(--fw-light); font-style: normal; font-size: 34px; line-height: 1.35; letter-spacing: var(--ls-snug); color: var(--text-on-accent); }
.oj-verse-banner__intro { display: block; }
.oj-verse-banner__verse { display: block; margin: 1.15em 0; font-style: normal; }
.oj-verse-banner__tag { display: block; }
.oj-verse-banner__tag em, .oj-verse-banner__tag i { font-style: italic; font-weight: var(--fw-semibold); }

.oj-verse-banner.oj-reveal .oj-verse-banner__tag { opacity: 0; transform: translateY(24px); transition: transform 1100ms var(--ease-out) 250ms, opacity 1100ms var(--ease-standard) 250ms; }
.oj-verse-banner.oj-reveal.is-visible .oj-verse-banner__tag { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .oj-verse-banner__inner { padding: 56px 22px; }
  .oj-verse-banner__quote { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .oj-verse-banner.oj-reveal .oj-verse-banner__tag { opacity: 1 !important; transform: none !important; transition: none !important; }
}
/* END_SECTION:oj-verse-banner */

/* START_SECTION:oj-video-band (INDEX:84) */
.oj-video-band__header { text-align: center; margin-bottom: 40px; }
.oj-video-band__heading { font-size: 38px; line-height: 1.12; letter-spacing: var(--ls-snug); margin: 0; }
.oj-video-band__frame {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--oj-slate-900);
}
.oj-video-band__player,
.oj-video-band__frame iframe,
.oj-video-band__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.oj-video-band__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.oj-video-band__caption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-muted);
  margin: 24px 0 0;
}
/* END_SECTION:oj-video-band */

/* START_SECTION:oj-video-hero (INDEX:85) */
.oj-video-hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: flex;
  align-items: center;
}
.oj-video-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.oj-video-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 38, 44, 0.94) 0%, rgba(15, 38, 44, 0.88) 34%, rgba(15, 38, 44, 0.55) 60%, rgba(15, 38, 44, 0.2) 82%);
}
.oj-video-hero__play {
  position: absolute;
  top: 50%;
  left: min(72%, calc(var(--container-max) / 2 + 46%));
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 245, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--oj-crimson);
  transition: transform var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard);
}
.oj-video-hero__play svg { margin-left: 4px; }
.oj-video-hero__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--oj-creme);
}
.oj-video-hero__container {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
}
.oj-video-hero__content { max-width: 600px; }
.oj-video-hero__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--oj-crimson-300);
}
.oj-video-hero__heading {
  font-size: 54px;
  line-height: 1.04;
  color: var(--oj-creme);
  margin: 18px 0 20px;
}
.oj-video-hero__heading em,
.oj-video-hero__heading .oj-accent-word { color: var(--oj-crimson-300); }
.oj-video-hero__body {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--text-on-dark-muted);
  margin: 0 0 28px;
  max-width: 520px;
}
.oj-video-hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.oj-video-hero__form,
.oj-video-hero__form form { display: inline-block; }
.oj-video-hero__form .loading__spinner svg { width: 16px; height: 16px; }
.oj-video-hero__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-muted);
  margin: 0;
}
@media (max-width: 760px) {
  .oj-video-hero { min-height: 0; }
  .oj-video-hero__container { padding: 56px 22px; }
  .oj-video-hero__play { display: none; }
  .oj-video-hero__heading { font-size: 38px; }
  .oj-video-hero__scrim {
    background: linear-gradient(90deg, rgba(15, 38, 44, 0.94) 0%, rgba(15, 38, 44, 0.85) 60%, rgba(15, 38, 44, 0.6) 100%);
  }
}
/* END_SECTION:oj-video-hero */