/* Living Manuscript — Open Sky Press */

:root {
  --osp-paper: #F3EBDD;
  --osp-ivory: #FBF8F1;
  --osp-cream: #F7F0E4;
  --osp-charcoal: #25221E;
  --osp-red: #8B2D22;
  --osp-red-dark: #6F211A;
  --osp-saffron: #C17A32;
  --osp-indigo: #25354A;
  --osp-indigo-dark: #192939;
  --osp-olive: #6A6B4A;
  --osp-bronze: #A58A63;
  --osp-border: #D9CCB8;
  --osp-muted: #756E63;
  --osp-sandalwood: #E8D6BB;

  --osp-font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --osp-font-body: Inter, Arial, system-ui, sans-serif;

  --osp-max: 1500px;
  --osp-content: 1320px;
  --osp-pad: 40px;
  --osp-section: clamp(3.25rem, 6vw, 7.5rem);
  --osp-radius: 6px;
  --osp-header-h: 4.5rem;
  --osp-announce-h: 32px;
  --osp-ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Back-compat aliases for shop templates */
  --ch-sky: var(--osp-cream);
  --ch-sand: var(--osp-paper);
  --ch-foam: var(--osp-ivory);
  --ch-sea: var(--osp-indigo);
  --ch-ink: var(--osp-charcoal);
  --ch-tide: var(--osp-red);
  --ch-mist: var(--osp-border);
  --ch-tide-soft: rgba(139, 45, 34, 0.08);
  --ch-font-display: var(--osp-font-display);
  --ch-font-body: var(--osp-font-body);
  --ch-radius: var(--osp-radius);
  --ch-space: var(--osp-pad);
  --ch-max: var(--osp-content);
  --ch-header-h: var(--osp-header-h);
  --ch-ease: var(--osp-ease);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.ch-body,
body.osp-body {
  margin: 0;
  color: var(--osp-charcoal);
  background:
    linear-gradient(180deg, rgba(243, 235, 221, 0.55), transparent 28rem),
    var(--osp-ivory);
  font-family: var(--osp-font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

a { color: var(--osp-red); text-underline-offset: 0.18em; }
a:hover { color: var(--osp-red-dark); }

h1, h2, h3, h4 {
  font-family: var(--osp-font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--osp-charcoal);
}

.osp-container,
.ch-container {
  width: min(100% - 2 * var(--osp-pad), var(--osp-content));
  margin-inline: auto;
}

.osp-label {
  margin: 0 0 0.85rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--osp-red);
}

.osp-section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 3.5vw, 4rem);
}

.osp-section-lede {
  margin: 0;
  max-width: 36rem;
  color: var(--osp-muted);
  font-size: 1.05rem;
}

.osp-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.osp-btn,
.ch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.7rem;
  border-radius: var(--osp-radius);
  border: 1px solid transparent;
  font-family: var(--osp-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--osp-ease), color 0.25s var(--osp-ease), border-color 0.25s var(--osp-ease), transform 0.25s var(--osp-ease);
}

.osp-btn:hover,
.ch-btn:hover { transform: translateY(-1px); }

.osp-btn--primary,
a.osp-btn--primary,
.ch-btn--primary,
a.ch-btn--primary,
.ch-btn--solid,
a.ch-btn--solid {
  background: var(--osp-red);
  color: var(--osp-ivory);
  border-color: var(--osp-red);
}
.osp-btn--primary:hover,
a.osp-btn--primary:hover,
.ch-btn--primary:hover,
a.ch-btn--primary:hover,
.ch-btn--solid:hover,
a.ch-btn--solid:hover {
  background: var(--osp-red-dark);
  border-color: var(--osp-red-dark);
  color: var(--osp-ivory);
}

.osp-btn--secondary,
.ch-btn--outline,
.ch-btn--ghost {
  background: transparent;
  color: var(--osp-charcoal);
  border-color: var(--osp-charcoal);
}
.osp-btn--secondary:hover,
.ch-btn--outline:hover,
.ch-btn--ghost:hover {
  color: var(--osp-red);
  border-color: var(--osp-red);
}

.osp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--osp-charcoal);
  font-family: var(--osp-font-display);
  font-size: 1.15rem;
  text-decoration: none;
  border-bottom: 1px solid var(--osp-bronze);
  transition: color 0.2s var(--osp-ease), border-color 0.2s var(--osp-ease), transform 0.2s var(--osp-ease);
}
.osp-text-link::after { content: "→"; font-size: 0.95rem; }
.osp-text-link:hover {
  color: var(--osp-red);
  border-color: var(--osp-red);
  transform: translateX(2px);
}
.osp-text-link--light {
  color: var(--osp-ivory);
  border-bottom-color: rgba(251, 248, 241, 0.4);
}
.osp-text-link--light:hover { color: var(--osp-sandalwood); border-bottom-color: var(--osp-sandalwood); }

/* Announcement */
.osp-announce {
  background: var(--osp-red);
  color: var(--osp-ivory);
  min-height: var(--osp-announce-h);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.osp-announce__inner {
  width: min(100% - 2 * var(--osp-pad), var(--osp-max));
  margin-inline: auto;
  min-height: var(--osp-announce-h);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  padding-block: 0.25rem;
}
.osp-announce__text {
  margin: 0;
  flex: 1 1 12rem;
  min-width: 0;
}
.osp-announce__dot { opacity: 0.7; margin: 0 0.35rem; }
.osp-announce__lang {
  flex: 0 0 auto;
}
.osp-lang-flags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.osp-lang-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 1.6rem;
  padding: 0.15rem 0.4rem;
  color: var(--osp-ivory);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 3px;
  opacity: 0.82;
  transition: opacity 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.osp-lang-flag img {
  display: block;
  width: 20px;
  height: 14px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.osp-lang-flag__code {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}
.osp-lang-flag:hover,
.osp-lang-flag:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}
.osp-lang-flag.is-current {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

/* Header */
.osp-header,
.ch-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.98), rgba(247, 240, 228, 0.96));
  border-bottom: 1px solid color-mix(in srgb, var(--osp-bronze) 45%, var(--osp-border));
  transition: background 0.3s var(--osp-ease), box-shadow 0.3s var(--osp-ease), border-color 0.3s var(--osp-ease);
}
.osp-header.is-scrolled,
.ch-header.is-scrolled {
  background: rgba(251, 248, 241, 0.98);
  border-bottom-color: var(--osp-border);
  box-shadow: 0 10px 28px rgba(37, 34, 30, 0.06);
}
.osp-header__bar {
  width: min(100% - 2 * var(--osp-pad), var(--osp-max));
  margin-inline: auto;
  min-height: var(--osp-header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}
.osp-logo img,
.ch-logo img {
  width: 3.1rem;
  height: auto;
  object-fit: contain;
}
.osp-nav,
.ch-nav {
  display: flex;
  justify-content: center;
}
.ch-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.05rem;
  margin: 0;
  padding: 0;
}
.ch-nav__item > a,
.ch-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.4rem 0.72rem;
  border: 0;
  background: transparent;
  color: var(--osp-charcoal);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 550;
  letter-spacing: 0.035em;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--osp-radius);
  transition: color 0.2s var(--osp-ease), background 0.2s var(--osp-ease);
}
.ch-nav__item > a::after,
.ch-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.45rem;
  height: 1px;
  background: var(--osp-bronze);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s var(--osp-ease), background 0.2s var(--osp-ease);
}
.ch-nav__item > a:hover,
.ch-dropdown-toggle:hover,
.ch-nav__item.is-current > a,
.ch-nav__item.is-current > .ch-dropdown-toggle,
.has-dropdown:hover > .ch-dropdown-toggle,
.has-dropdown:focus-within > .ch-dropdown-toggle {
  color: var(--osp-red);
  background: color-mix(in srgb, var(--osp-cream) 70%, transparent);
}
.ch-nav__item > a:hover::after,
.ch-dropdown-toggle:hover::after,
.ch-nav__item.is-current > a::after,
.ch-nav__item.is-current > .ch-dropdown-toggle::after,
.has-dropdown:hover > .ch-dropdown-toggle::after,
.has-dropdown:focus-within > .ch-dropdown-toggle::after {
  transform: scaleX(1);
  background: var(--osp-red);
}
.ch-nav__item > a:focus-visible,
.ch-dropdown-toggle:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--osp-red) 55%, transparent);
  outline-offset: 2px;
}
.ch-chevron {
  width: 0.38rem;
  height: 0.38rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.62;
  transition: transform 0.2s var(--osp-ease), opacity 0.2s var(--osp-ease);
}
.has-dropdown:hover > .ch-dropdown-toggle .ch-chevron,
.has-dropdown:focus-within > .ch-dropdown-toggle .ch-chevron,
.has-dropdown.is-open > .ch-dropdown-toggle .ch-chevron {
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}
.has-dropdown { position: relative; }
.ch-dropdown {
  position: absolute;
  top: calc(100% - 0.15rem);
  left: 0;
  min-width: 15.5rem;
  margin: 0;
  padding: 0.55rem;
  list-style: none;
  background:
    linear-gradient(180deg, var(--osp-ivory), var(--osp-cream));
  border: 1px solid var(--osp-border);
  border-top: 2px solid var(--osp-red);
  border-radius: 0 0 var(--osp-radius) var(--osp-radius);
  box-shadow:
    0 18px 40px rgba(37, 34, 30, 0.1),
    0 2px 0 color-mix(in srgb, var(--osp-sandalwood) 70%, transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s var(--osp-ease), transform 0.2s var(--osp-ease);
  z-index: 60;
}
.ch-dropdown--right { left: auto; right: 0; }
.ch-dropdown--shop {
  display: grid;
  grid-template-columns: repeat(3, minmax(10.5rem, 1fr));
  gap: 0.15rem 0.35rem;
  min-width: min(40rem, calc(100vw - 2 * var(--osp-pad)));
  padding: 0.85rem 0.75rem;
}
.ch-dropdown__col {
  list-style: none;
  margin: 0;
  padding: 0 0.55rem;
  border-right: 1px solid color-mix(in srgb, var(--osp-border) 85%, transparent);
}
.ch-dropdown__col:last-child {
  border-right: 0;
}
.ch-dropdown__col > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.1rem;
}
.ch-dropdown__heading {
  display: block;
  margin: 0.55rem 0.55rem 0.35rem;
  padding: 0 0 0.4rem;
  border-bottom: 1px solid color-mix(in srgb, var(--osp-bronze) 50%, var(--osp-border));
  color: var(--osp-red);
  font-family: var(--osp-font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.ch-dropdown__col > .ch-dropdown__heading {
  margin: 0.15rem 0 0.45rem;
}
.ch-dropdown > .ch-dropdown__heading:first-child {
  margin-top: 0.15rem;
}
.has-dropdown:hover > .ch-dropdown,
.has-dropdown:focus-within > .ch-dropdown,
.has-dropdown.is-open > .ch-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ch-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  color: var(--osp-charcoal);
  text-decoration: none;
  border-radius: calc(var(--osp-radius) - 1px);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
  transition: background 0.18s var(--osp-ease), color 0.18s var(--osp-ease), box-shadow 0.18s var(--osp-ease);
}
.ch-dropdown a:hover,
.ch-dropdown a:focus-visible {
  background: color-mix(in srgb, var(--osp-sandalwood) 55%, var(--osp-ivory));
  color: var(--osp-red-dark);
  box-shadow: inset 2px 0 0 var(--osp-red);
  outline: none;
}
.osp-header__utils {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.osp-icon-btn,
.ch-search-toggle,
.ch-cart-link,
.osp-account-link {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--osp-charcoal);
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: var(--osp-radius);
  text-decoration: none;
  position: relative;
  transition: color 0.18s var(--osp-ease), background 0.18s var(--osp-ease), border-color 0.18s var(--osp-ease);
}
.osp-icon-btn:hover,
.ch-search-toggle:hover,
.ch-cart-link:hover,
.osp-account-link:hover,
.osp-icon-btn:focus-visible,
.ch-search-toggle:focus-visible,
.ch-cart-link:focus-visible,
.osp-account-link:focus-visible {
  background: color-mix(in srgb, var(--osp-cream) 80%, white);
  border-color: color-mix(in srgb, var(--osp-bronze) 55%, var(--osp-border));
  color: var(--osp-red);
  outline: none;
}
.ch-cart-icon {
  width: 1.1rem;
  height: 1.1rem;
  border: 1.75px solid currentColor;
  border-radius: 2px 2px 3px 3px;
  position: relative;
}
.ch-cart-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.35rem;
  width: 0.55rem;
  height: 0.35rem;
  border: 1.75px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  transform: translateX(-50%);
}
.ch-cart-count {
  position: absolute;
  top: 0.2rem;
  right: 0.15rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: var(--osp-red);
  color: var(--osp-ivory);
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.ch-cart-count[data-empty="1"] { display: none; }

/* Cart flyout */
body.osp-cart-open { overflow: hidden; }
.osp-cart[hidden] { display: none !important; }
.osp-cart {
  position: fixed;
  inset: 0;
  z-index: 90;
}
.osp-cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 34, 30, 0.42);
  opacity: 0;
  transition: opacity 0.22s var(--osp-ease);
}
.osp-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(26rem, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--osp-ivory);
  border-left: 1px solid var(--osp-border);
  box-shadow: -18px 0 48px rgba(37, 34, 30, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s var(--osp-ease);
  will-change: transform;
}
.osp-cart.is-open .osp-cart__backdrop { opacity: 1; }
.osp-cart.is-open .osp-cart__panel { transform: none; }
.osp-cart--reduced .osp-cart__panel,
.osp-cart.osp-cart--reduced .osp-cart__panel { transition: none; }
@media (prefers-reduced-motion: reduce) {
  .osp-cart__backdrop,
  .osp-cart__panel { transition: opacity 0.15s linear; }
  .osp-cart__panel { transform: none; }
}
.osp-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--osp-border);
}
.osp-cart__title {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: 1.55rem;
  font-weight: 600;
}
.osp-cart__close {
  appearance: none;
  border: 0;
  background: transparent;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--osp-charcoal);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}
.osp-cart__close:hover { color: var(--osp-red); }
.osp-cart__body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 1rem 1.25rem 1.5rem;
}
.osp-cart__empty,
.osp-cart__loading {
  margin: 1.5rem 0;
  color: var(--osp-muted);
  text-align: center;
}
.osp-cart__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.osp-cart__item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--osp-border);
}
.osp-cart__thumb {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--osp-cream);
}
.osp-cart__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.osp-cart__meta { min-width: 0; }
.osp-cart__name {
  display: block;
  color: var(--osp-charcoal);
  text-decoration: none;
  font-family: var(--osp-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}
.osp-cart__name:hover { color: var(--osp-red); }
.osp-cart__price {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--osp-muted);
}
.osp-cart__qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  margin-top: 0.65rem;
}
.osp-cart__qty-btn {
  appearance: none;
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid var(--osp-border);
  background: var(--osp-cream);
  color: var(--osp-charcoal);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.osp-cart__qty-btn:hover {
  border-color: var(--osp-red);
  color: var(--osp-red);
}
.osp-cart__remove {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--osp-muted);
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
  padding: 0;
  margin-left: 0.15rem;
}
.osp-cart__remove:hover { color: var(--osp-red); }
.osp-cart__foot {
  padding: 1rem 1.25rem 1.35rem;
  border-top: 1px solid var(--osp-border);
  background:
    linear-gradient(180deg, rgba(243, 235, 221, 0.35), transparent 40%),
    var(--osp-paper, var(--osp-ivory));
}
.osp-cart__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}
.osp-cart__subtotal strong {
  font-size: 1.1rem;
  font-weight: 650;
}
.osp-cart__actions {
  display: grid;
  gap: 0.55rem;
}
.osp-cart__actions .osp-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.osp-nav-toggle,
.ch-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.osp-nav-toggle span,
.ch-nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: currentColor;
}
.osp-nav__mobile-only { display: none; }

/* Live search modal */
body.osp-search-open { overflow: hidden; }
.osp-search[hidden] { display: none !important; }
.osp-search {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: max(4.5rem, 8vh) var(--osp-pad) 2rem;
}
.osp-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 34, 30, 0.48);
  opacity: 0;
  transition: opacity 0.22s var(--osp-ease, ease);
}
.osp-search__panel {
  position: relative;
  width: min(40rem, 100%);
  max-height: min(78vh, 40rem);
  display: flex;
  flex-direction: column;
  background: var(--osp-ivory);
  border: 1px solid var(--osp-border);
  box-shadow: 0 28px 80px rgba(37, 34, 30, 0.18);
  transform: translateY(-0.75rem);
  opacity: 0;
  transition:
    transform 0.26s var(--osp-ease, ease),
    opacity 0.22s var(--osp-ease, ease);
  will-change: transform, opacity;
}
.osp-search.is-open .osp-search__backdrop { opacity: 1; }
.osp-search.is-open .osp-search__panel {
  transform: none;
  opacity: 1;
}
.osp-search--reduced .osp-search__panel,
.osp-search.osp-search--reduced .osp-search__panel {
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .osp-search__backdrop,
  .osp-search__panel { transition: opacity 0.15s linear; }
  .osp-search__panel { transform: none; }
}
.osp-search__head {
  border-bottom: 1px solid var(--osp-border);
  background:
    linear-gradient(180deg, rgba(243, 235, 221, 0.5), transparent 70%),
    var(--osp-ivory);
}
.osp-search__form {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 0.85rem 0.85rem 1rem;
}
.osp-search__icon {
  display: grid;
  place-items: center;
  color: var(--osp-muted);
}
.osp-search__input {
  width: 100%;
  min-height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--osp-charcoal);
  font-family: var(--osp-font-display);
  font-size: 1.35rem;
  font-weight: 550;
  line-height: 1.2;
  outline: none;
}
.osp-search__input::placeholder {
  color: color-mix(in srgb, var(--osp-muted) 85%, transparent);
  font-weight: 500;
}
.osp-search__input::-webkit-search-decoration,
.osp-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.osp-search__clear,
.osp-search__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--osp-muted);
  cursor: pointer;
  font: inherit;
}
.osp-search__clear {
  width: 2rem;
  height: 2rem;
  font-size: 1.45rem;
  line-height: 1;
  border-radius: 999px;
}
.osp-search__clear:hover,
.osp-search__close:hover { color: var(--osp-red); }
.osp-search__close {
  min-height: 2rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--osp-border);
  background: var(--osp-cream);
  color: var(--osp-charcoal);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.osp-search__body {
  overflow: auto;
  padding: 0.65rem 0.65rem 0.9rem;
}
.osp-search__hint,
.osp-search__status {
  margin: 0.85rem 1rem;
  color: var(--osp-muted);
  font-size: 0.95rem;
  text-align: center;
}
.osp-search__status.is-loading { font-style: italic; }
.osp-search__results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}
.osp-search__item {
  border: 1px solid transparent;
}
.osp-search__item.is-active {
  border-color: var(--osp-border);
  background: var(--osp-cream);
}
.osp-search__link {
  display: grid;
  grid-template-columns: 2.75rem 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  color: inherit;
  text-decoration: none;
}
.osp-search__thumb {
  display: block;
  width: 2.75rem;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: color-mix(in srgb, var(--osp-cream) 70%, #fff);
}
.osp-search__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.osp-search__meta { min-width: 0; }
.osp-search__name {
  display: block;
  font-family: var(--osp-font-display);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--osp-charcoal);
}
.osp-search__name mark {
  background: color-mix(in srgb, var(--osp-red) 16%, transparent);
  color: inherit;
  padding: 0 0.05em;
}
.osp-search__cats {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--osp-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.osp-search__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--osp-charcoal);
  white-space: nowrap;
}
.osp-search__all {
  display: block;
  margin: 0.55rem 0.65rem 0.15rem;
  padding: 0.75rem 0.85rem;
  text-align: center;
  text-decoration: none;
  color: var(--osp-red);
  border-top: 1px solid var(--osp-border);
  font-weight: 600;
  font-size: 0.92rem;
}
.osp-search__all:hover { color: var(--osp-charcoal); }
@media (max-width: 700px) {
  .osp-search {
    padding: 0;
    align-content: stretch;
  }
  .osp-search__panel {
    width: 100%;
    max-height: none;
    height: 100%;
    border: 0;
    transform: translateY(0.5rem);
  }
  .osp-search__form {
    grid-template-columns: auto 1fr auto;
  }
  .osp-search__close span { font-size: 0; }
  .osp-search__close::after {
    content: "×";
    font-size: 1.45rem;
    line-height: 1;
  }
  .osp-search__close {
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    border: 0;
    background: transparent;
  }
}

/* Hero */
.osp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 670px;
  background: var(--osp-ivory);
  border-bottom: 1px solid var(--osp-border);
}
.osp-hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  max-width: none;
  margin: 0;
  min-height: 670px;
}
.osp-hero__panel {
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--osp-ease);
}
.osp-hero__panel.is-active {
  opacity: 1;
  pointer-events: auto;
}
.osp-hero__panel[hidden] {
  display: none;
}
.osp-hero__panel.is-active[hidden] {
  display: block;
}
.osp-hero__title {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 600;
  line-height: 0.98;
  color: var(--osp-charcoal);
}
.osp-hero__lede {
  margin: 1.25rem 0 0;
  color: var(--osp-muted);
  max-width: 30rem;
  font-size: 1.08rem;
}
.osp-hero__media {
  position: relative;
  min-height: 100%;
  background: var(--osp-paper);
  overflow: hidden;
}
.osp-slider,
.osp-slider__track,
.osp-slider__slide {
  height: 100%;
  min-height: 670px;
}
.osp-slider__track { position: relative; }
.osp-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.1s var(--osp-ease);
}
.osp-slider__slide.is-active { opacity: 1; z-index: 1; }
.osp-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

/*
 * Collage slide (Aham banner): keep 50/50 split; crop the right column to landscape + books.
 */
.osp-hero.osp-hero--collage .osp-hero__media,
.osp-hero:has(.osp-slider__slide--collage.is-active) .osp-hero__media {
  background: #e8dcc8;
}
.osp-slider__slide--collage img {
  object-fit: cover;
  object-position: 72% center;
  background: #e8dcc8;
}

.osp-slider__controls {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.osp-slider__btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(37, 34, 30, 0.18);
  background: rgba(251, 248, 241, 0.78);
  color: var(--osp-charcoal);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}
.osp-slider__btn:hover { background: var(--osp-ivory); }
.osp-slider__dots {
  display: flex;
  gap: 0.45rem;
}
.osp-slider__dot {
  width: 0.45rem;
  height: 0.45rem;
  border: 0;
  border-radius: 50%;
  background: rgba(37, 34, 30, 0.25);
  cursor: pointer;
  padding: 0;
}
.osp-slider__dot.is-active { background: var(--osp-red); }

/* Pathways */
.osp-pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) var(--osp-pad);
  max-width: var(--osp-max);
  margin-inline: auto;
  border-bottom: 1px solid var(--osp-border);
  box-sizing: border-box;
}
.osp-pathway {
  display: grid;
  grid-template-rows: clamp(20rem, 28vw, 26rem) auto;
  text-decoration: none;
  color: inherit;
  background: var(--osp-ivory);
  border: 1px solid var(--osp-border);
  border-radius: calc(var(--osp-radius) + 6px);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(37, 34, 30, 0.06);
  transition: transform 0.3s var(--osp-ease), background 0.3s var(--osp-ease), box-shadow 0.3s var(--osp-ease);
}
.osp-pathway:hover {
  transform: translateY(-4px);
  background: var(--osp-cream);
  box-shadow: 0 16px 36px rgba(37, 34, 30, 0.1);
}
.osp-pathway__media { overflow: hidden; background: var(--osp-sandalwood); }
.osp-pathway__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.18) contrast(1.02);
  transition: transform 0.45s var(--osp-ease);
}
.osp-pathway:hover .osp-pathway__media img { transform: scale(1.02); }
.osp-pathway__body {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem 1.8rem;
}
.osp-pathway__title {
  font-family: var(--osp-font-display);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
}
.osp-pathway__text {
  margin-top: 0.7rem;
  color: var(--osp-muted);
  font-size: 0.98rem;
}

/* Collection — full-bleed trilogy banner */
.osp-collection {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(18rem, 30vw, 24rem);
  display: flex;
  align-items: center;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  background: var(--osp-paper);
}
.osp-collection__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 96% center;
  pointer-events: none;
  user-select: none;
}
.osp-collection__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2 * var(--osp-pad), var(--osp-content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.osp-collection__copy {
  max-width: 22rem;
  margin-right: auto;
}
.osp-collection__copy .osp-section-title {
  max-width: 11ch;
  text-wrap: pretty;
}
.osp-collection__copy .osp-section-lede {
  max-width: 26ch;
}
.osp-collection__copy .osp-text-link {
  margin-top: 1.1rem;
}
.osp-meta-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.25rem 0 0;
  padding: 0;
  color: var(--osp-muted);
  font-size: 0.92rem;
}
.osp-meta-list li::before {
  content: "•";
  color: var(--osp-bronze);
  margin-right: 0.45rem;
}

/* Quote rotator */
.osp-quote {
  background: var(--osp-indigo);
  color: var(--osp-ivory);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.osp-quote::before {
  content: "";
  position: absolute;
  right: -4%;
  bottom: -18%;
  width: min(46vw, 28rem);
  height: min(34vw, 20rem);
  background: url("../img/arunachala.png") center / contain no-repeat;
  opacity: 0.08;
  filter: grayscale(1) brightness(2);
  pointer-events: none;
}
.osp-quote__inner {
  width: min(100% - 2 * var(--osp-pad), var(--osp-content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.osp-quote__portrait {
  margin: 0;
  border: 1px solid rgba(251, 248, 241, 0.18);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
}
.osp-quote__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s var(--osp-ease), transform 1.1s var(--osp-ease);
  filter: sepia(0.18) contrast(1.04);
}
.osp-quote__photo.is-active {
  opacity: 1;
  transform: none;
  z-index: 1;
}
.osp-quote__stage { min-width: 0; }
.osp-quote__content { margin: 0; }
.osp-quote__text {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
  line-height: 1.28;
  font-weight: 500;
  min-height: 4.2em;
}
.osp-quote__word {
  display: inline-block;
  white-space: nowrap;
}
.osp-quote__char {
  display: inline-block;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(0.28em);
  will-change: opacity, transform, filter;
}
.osp-quote__text.is-revealing .osp-quote__char {
  animation: osp-quote-wash 0.7s var(--osp-ease) forwards;
  animation-delay: calc(var(--i) * 16ms);
}
.osp-quote__text.is-ready .osp-quote__char {
  opacity: 1;
  filter: none;
  transform: none;
  animation: none;
}
@keyframes osp-quote-wash {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(0.28em);
  }
  55% {
    opacity: 1;
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
.osp-quote__content footer {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  align-items: center;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 0.55s var(--osp-ease), transform 0.55s var(--osp-ease);
}
.osp-quote__content.is-settled footer {
  opacity: 1;
  transform: none;
}
.osp-quote__content cite {
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(251, 248, 241, 0.72);
}
.osp-quote__controls {
  margin-top: 1.35rem;
}
.osp-quote__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.osp-quote__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(251, 248, 241, 0.28);
  cursor: pointer;
  transition: background 0.25s var(--osp-ease), transform 0.25s var(--osp-ease);
}
.osp-quote__dot.is-active {
  background: var(--osp-ivory);
  transform: scaleX(1.65);
}
.osp-quote__dot:hover { background: rgba(251, 248, 241, 0.7); }
@media (prefers-reduced-motion: reduce) {
  .osp-quote__photo {
    transition: opacity 0.2s linear;
    transform: none;
  }
  .osp-quote__char {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none !important;
  }
  .osp-quote__content footer {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Video */
.osp-video {
  padding: var(--osp-section) 0;
  background: var(--osp-cream);
  border-top: 1px solid var(--osp-border);
  border-bottom: 1px solid var(--osp-border);
}
.osp-video__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.osp-video__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--osp-indigo-dark);
  border: 1px solid var(--osp-border);
  overflow: hidden;
}
.osp-video__facade {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: block;
  position: relative;
  background: var(--osp-indigo);
}
.osp-video__facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: opacity 0.3s var(--osp-ease), transform 0.45s var(--osp-ease);
}
.osp-video__facade:hover img { opacity: 1; transform: scale(1.02); }
.osp-video__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 4.25rem;
  height: 4.25rem;
  margin: -2.125rem 0 0 -2.125rem;
  border-radius: 50%;
  background: var(--osp-red);
  box-shadow: 0 8px 24px rgba(37, 34, 30, 0.22);
  transition: background 0.25s var(--osp-ease), transform 0.25s var(--osp-ease);
}
.osp-video__play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 0.7rem 0 0.7rem 1.15rem;
  border-color: transparent transparent transparent var(--osp-ivory);
}
.osp-video__facade:hover .osp-video__play {
  background: var(--osp-red-dark);
  transform: scale(1.04);
}
.osp-video__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.osp-video__player.is-playing .osp-video__facade { display: none; }

@media (max-width: 1024px) {
  .osp-video__inner { grid-template-columns: 1fr; }
}

/* Shelf */
.osp-shelf {
  padding: var(--osp-section) 0;
  background: var(--osp-ivory);
}
.osp-shelf__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.osp-shelf__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.osp-shelf__slider-nav {
  display: inline-flex;
  gap: 0.35rem;
}
.osp-shelf__nav-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--osp-charcoal);
  border-radius: var(--osp-radius);
  background: transparent;
  color: var(--osp-charcoal);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s var(--osp-ease), border-color 0.2s var(--osp-ease), background 0.2s var(--osp-ease);
}
.osp-shelf__nav-btn:hover:not(:disabled) {
  color: var(--osp-red);
  border-color: var(--osp-red);
}
.osp-shelf__nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.osp-shelf__controls .osp-btn--secondary {
  min-height: 44px;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
}
.osp-filter {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.osp-filter::after {
  content: "";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid var(--osp-charcoal);
  border-bottom: 1.5px solid var(--osp-charcoal);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.osp-filter:hover::after,
.osp-filter:focus-within::after {
  border-color: var(--osp-red);
}
.osp-filter select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 44px;
  min-width: 8.5rem;
  margin: 0;
  padding: 0.55rem 2.25rem 0.55rem 1.15rem;
  border: 1px solid var(--osp-charcoal);
  border-radius: var(--osp-radius);
  background: transparent;
  color: var(--osp-charcoal);
  font-family: var(--osp-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.25s var(--osp-ease), border-color 0.25s var(--osp-ease), background 0.25s var(--osp-ease);
}
.osp-filter select:hover,
.osp-filter select:focus {
  color: var(--osp-red);
  border-color: var(--osp-red);
  outline: none;
}
.osp-filter select:focus-visible {
  outline: 2px solid var(--osp-red);
  outline-offset: 3px;
}
.osp-filter select option {
  color: var(--osp-charcoal);
  background: var(--osp-ivory);
  font-weight: 500;
}
.osp-shelf__track {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 5 * 1.25rem) / 6);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 34, 30, 0.35) transparent;
}
.osp-shelf__track::-webkit-scrollbar {
  height: 6px;
}
.osp-shelf__track::-webkit-scrollbar-track {
  background: transparent;
}
.osp-shelf__track::-webkit-scrollbar-thumb {
  background: rgba(37, 34, 30, 0.35);
  border-radius: 999px;
}
.osp-shelf__track:focus-visible {
  outline: 2px solid var(--osp-red);
  outline-offset: 4px;
}
.osp-product {
  scroll-snap-align: start;
  background: var(--osp-ivory);
}
.osp-product__media {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--osp-cream);
  border: 1px solid transparent;
  transition: border-color 0.25s var(--osp-ease), transform 0.25s var(--osp-ease);
  appearance: none;
  padding: 0;
  width: 100%;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.osp-product__title-btn,
.ch-product__title-btn,
.osp-book-board__title-btn,
.osp-book-board__link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
}
.osp-product__title-btn:hover,
.ch-product__title-btn:hover,
.osp-book-board__title-btn:hover {
  color: var(--osp-red);
}
.osp-book-board__link {
  color: var(--osp-red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}
.ch-product__media,
.osp-book-board__cover {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.osp-product:hover .osp-product__media {
  border-color: var(--osp-bronze);
  transform: translateY(-3px);
}
.osp-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.osp-product__meta { padding: 0.95rem 0.15rem 0; }
.osp-product__teacher {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--osp-bronze);
}
.osp-product__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.osp-product__title a {
  color: inherit;
  text-decoration: none;
}
.osp-product__title a:hover { color: var(--osp-red); }
.osp-product__facts {
  margin: 0.4rem 0 0;
  color: var(--osp-muted);
  font-size: 0.86rem;
}
.osp-product__price {
  margin-top: 0.55rem;
  font-weight: 600;
  color: var(--osp-charcoal);
}

/* Features */
.osp-features {
  padding: 0 0 var(--osp-section);
  background: var(--osp-ivory);
}
.osp-features__grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--osp-border);
}
.osp-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--osp-border);
}
.osp-feature__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--osp-paper);
  border: 1px solid var(--osp-border);
}
.osp-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--osp-ease);
}
.osp-feature:hover .osp-feature__media img { transform: scale(1.02); }
.osp-feature__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}
.osp-feature__body p {
  margin: 0;
  color: var(--osp-muted);
  max-width: 36rem;
}

/* John David — author + upcoming events */
.osp-jd {
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
  background: var(--osp-ivory);
  border-top: 1px solid var(--osp-border);
}
.osp-jd__intro {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.osp-jd__portrait {
  margin: 0;
  text-align: center;
}
.osp-jd__portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--osp-border);
}
.osp-jd__portrait figcaption {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--osp-charcoal);
}
.osp-jd__copy .osp-label { margin-bottom: 0.85rem; }
.osp-jd__copy p {
  margin: 0 0 0.85rem;
  color: var(--osp-muted);
  max-width: 58ch;
  line-height: 1.6;
}
.osp-jd__copy .osp-text-link { margin-top: 0.35rem; }
.osp-jd__events-title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}
.osp-jd__banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.osp-jd__banner {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  color: var(--osp-ivory);
  text-decoration: none;
  background: var(--osp-indigo);
}
.osp-jd__banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--osp-ease);
}
.osp-jd__banner:hover img { transform: scale(1.03); }
.osp-jd__banner:hover,
.osp-jd__banner:focus-visible,
.osp-jd__banner:hover .osp-jd__banner-copy,
.osp-jd__banner:hover .osp-jd__banner-cta {
  color: #fff;
}
.osp-jd__banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 41, 57, 0.15) 10%, rgba(25, 41, 57, 0.78) 100%);
}
.osp-jd__banner-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  padding: 1.15rem 1.2rem 1.2rem;
}
.osp-jd__banner-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 248, 241, 0.72);
}
.osp-jd__banner-name {
  font-family: var(--osp-font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
}
.osp-jd__banner-meta {
  font-size: 0.9rem;
  color: rgba(251, 248, 241, 0.82);
}
.osp-jd__banner-cta {
  margin-top: 0.55rem;
  justify-self: start;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(251, 248, 241, 0.45);
  background: rgba(251, 248, 241, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: font-size 0.2s var(--osp-ease), transform 0.2s var(--osp-ease);
}
.osp-jd__banner:hover .osp-jd__banner-cta,
.osp-jd__banner:focus-visible .osp-jd__banner-cta {
  color: #fff;
  background: rgba(251, 248, 241, 0.12);
  font-size: 0.88rem;
}
.osp-jd__meeting {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--osp-border);
  background: var(--osp-cream);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s var(--osp-ease), background 0.2s var(--osp-ease);
}
.osp-jd__meeting:hover {
  border-color: var(--osp-bronze);
  background: var(--osp-paper);
  color: inherit;
}
.osp-jd__meeting-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--osp-red);
}
.osp-jd__meeting-body {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}
.osp-jd__meeting-body strong {
  font-family: var(--osp-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--osp-charcoal);
}
.osp-jd__meeting-body span {
  color: var(--osp-muted);
  font-size: 0.92rem;
}
.osp-jd__meeting-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--osp-red);
  white-space: nowrap;
}
.osp-jd__meeting-cta::after { content: " →"; }

@media (prefers-reduced-motion: reduce) {
  .osp-jd__banner img { transition: none; }
  .osp-jd__banner:hover img { transform: none; }
}

/* Private customer signup (OSE → Mailchimp EN/DE) */
.osp-newsletter {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: var(--osp-cream);
  border-top: 1px solid var(--osp-border);
}
.osp-newsletter__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  align-items: end;
}
.osp-newsletter__form,
.osp-newsletter__fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.osp-newsletter__form input[type="email"],
.osp-newsletter__form input[type="text"],
.osp-private-customer__field input {
  min-height: 48px;
  min-width: min(100%, 12rem);
  border: 1px solid var(--osp-border);
  background: var(--osp-ivory);
  border-radius: var(--osp-radius);
  padding: 0.75rem 1rem;
  font: inherit;
  color: var(--osp-charcoal);
}
.osp-private-customer__field input:focus {
  outline: none;
  border-color: var(--osp-red);
  box-shadow: 0 0 0 2px rgba(139, 58, 43, 0.12);
}
.osp-private-customer__lang {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  min-height: 48px;
  font-weight: 600;
  color: var(--osp-charcoal);
}
.osp-private-customer__lang label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.osp-private-customer__lang input {
  accent-color: var(--osp-red);
}
.osp-private-customer__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.osp-private-customer__status {
  flex: 1 1 100%;
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  color: var(--osp-muted);
}
.osp-private-customer__status.is-ok { color: #3d6b4f; }
.osp-private-customer__status.is-err { color: var(--osp-red); }
.osp-newsletter__fallback p {
  margin: 0;
  color: var(--osp-muted);
}

/* Footer — parchment info band (live OSP footer content) */
.osp-footer {
  background:
    linear-gradient(180deg, rgba(243, 235, 221, 0.55), transparent 40%),
    var(--osp-paper);
  color: var(--osp-charcoal);
  padding: 3rem 0 1.75rem;
  border-top: 1px solid var(--osp-border);
  font-family: var(--osp-font-body);
}
.osp-footer a {
  color: var(--osp-charcoal);
  text-decoration: none;
}
.osp-footer a:hover { color: var(--osp-red); }
.osp-footer__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
}
.osp-footer__brand,
.osp-footer__block {
  padding: 0.5rem 1.5rem;
}
.osp-footer__block {
  border-left: 1px solid var(--osp-border);
}
.osp-footer__brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.osp-footer__enso {
  width: 4.5rem;
  height: auto;
  margin-bottom: 0.75rem;
  filter: grayscale(1) contrast(1.1);
}
.osp-footer__name {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--osp-charcoal);
  line-height: 1.15;
}
.osp-footer__tagline {
  margin: 0.55rem 0 0;
  max-width: 15rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--osp-muted);
  font-weight: 400;
}
.osp-footer__heading {
  margin: 0 0 0.95rem;
  font-family: var(--osp-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--osp-red);
}
.osp-footer__email {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--osp-font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--osp-charcoal);
}
.osp-footer__email:hover { color: var(--osp-red); }
.osp-footer__actions {
  display: grid;
  gap: 0.55rem;
  max-width: 12.5rem;
}
.osp-footer__btn.osp-btn {
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  width: 100%;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  border-radius: var(--osp-radius);
}
.osp-footer a.osp-btn--primary,
.osp-footer a.osp-btn--primary:hover,
.osp-footer__btn.osp-btn--primary,
.osp-footer__btn.osp-btn--primary:hover {
  color: var(--osp-ivory);
}
.osp-footer__btn.osp-btn--secondary:hover {
  color: var(--osp-red);
  border-color: var(--osp-red);
}
.osp-footer__payments {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.osp-footer__payments li {
  display: grid;
  place-items: center;
  min-height: 2.6rem;
  padding: 0.35rem 0.45rem;
  background: var(--osp-ivory);
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
}
.osp-footer__payments img {
  width: auto;
  max-width: 100%;
  height: 1.35rem;
  object-fit: contain;
}
.osp-footer__shipping {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--osp-muted);
  line-height: 1.4;
}
.osp-footer__shipping--delivery {
  margin-top: 1rem;
}
.osp-footer__shipping--delivery strong {
  font-weight: 600;
  color: var(--osp-charcoal);
}
.osp-footer__legal {
  margin-top: 2.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--osp-border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.osp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.84rem;
  color: var(--osp-muted);
}
.osp-footer__links a { color: var(--osp-muted); }
.osp-footer__links a:hover { color: var(--osp-red); }
.osp-footer__copy {
  margin: 0;
  font-size: 0.84rem;
  color: var(--osp-muted);
}

/* Page content */
.ch-page-hero {
  padding: 2rem 0 1rem;
}
.ch-page-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
}
.ch-prose {
  max-width: 42rem;
  padding-bottom: 3rem;
  color: var(--osp-charcoal);
  font-size: 1.02rem;
  line-height: 1.65;
}
.ch-prose p { margin: 0 0 1rem; }
.ch-prose a { color: var(--osp-red); }
.ch-prose h2 {
  margin: 2.25rem 0 0.75rem;
  font-family: var(--osp-font-display);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 600;
  color: var(--osp-ink, var(--osp-charcoal));
}
.ch-prose h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 650;
}
.ch-prose ul,
.ch-prose ol {
  margin: 0 0 1.1rem;
  padding-left: 1.25rem;
}
.ch-prose li { margin: 0 0 0.4rem; }
.ch-prose hr {
  border: 0;
  border-top: 1px solid var(--osp-border);
  margin: 2.5rem 0;
}

/* Cart / checkout — room for Woo sidebar layout */
.osp-wc-main { padding-top: 1.75rem; }
.osp-wc-container {
  width: min(100% - 2 * var(--osp-pad), 1180px);
}
.osp-wc-flow {
  max-width: none;
  padding-bottom: 3.5rem;
}
.osp-wc-flow__hero {
  margin: 0 0 1.5rem;
}
.osp-wc-flow__hero h1 {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 600;
}

/* Block checkout: left fields / payment, right products */
.woocommerce-checkout .wp-block-woocommerce-checkout.wc-block-checkout,
.woocommerce-checkout .wc-block-checkout {
  width: 100%;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2.5rem 3rem;
}
.woocommerce-checkout .wc-block-components-sidebar-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2.5rem 3rem;
  width: 100%;
  container-type: inline-size;
  container-name: osp-checkout;
}
.woocommerce-checkout .wc-block-components-main,
.woocommerce-checkout .wp-block-woocommerce-checkout-fields-block {
  flex: 1 1 28rem;
  min-width: min(100%, 22rem);
  order: 1;
}
.woocommerce-checkout .wc-block-components-sidebar,
.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
  flex: 0 1 22rem;
  width: min(100%, 22rem);
  order: 2;
  position: sticky;
  top: 1.25rem;
  align-self: flex-start;
  padding: 1.25rem 1.35rem 1.4rem;
  background:
    linear-gradient(180deg, rgba(243, 235, 221, 0.55), transparent 42%),
    var(--osp-cream);
  border: 1px solid var(--osp-border);
}
.woocommerce-checkout .wc-block-components-order-summary,
.woocommerce-checkout .wc-block-components-totals-wrapper {
  font-family: var(--osp-font-body);
}
/* Full book covers in order summary (not square-cropped) */
.woocommerce-checkout .wc-block-components-order-summary-item__image {
  width: 4.25rem !important;
  max-width: 4.25rem;
  margin-top: 0.35rem !important;
  padding-bottom: 0.75rem !important;
  flex: 0 0 4.25rem;
}
.woocommerce-checkout .wc-block-components-order-summary-item__image > img,
.woocommerce-checkout .wc-block-components-order-summary-item__image img {
  width: 4.25rem !important;
  max-width: 4.25rem !important;
  height: auto !important;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  background: transparent;
  display: block;
}
.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
  right: 0.15rem !important;
  top: 0.15rem !important;
  transform: none !important;
}
.woocommerce-checkout .wc-block-components-checkout-order-summary__title {
  align-items: baseline;
  gap: 0.75rem;
  padding-right: 0.5rem;
}
.woocommerce-checkout .osp-edit-cart {
  flex: 0 0 auto;
  margin: 0 0.75rem 0.35rem 0;
  font-family: var(--osp-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--osp-red);
  text-decoration: none;
  white-space: nowrap;
}
.woocommerce-checkout .osp-edit-cart:hover {
  color: var(--osp-red-dark);
  text-decoration: underline;
}
.woocommerce-checkout .wc-block-components-product-name,
.woocommerce-checkout .wc-block-components-checkout-step__title,
.woocommerce-checkout .wc-block-components-title {
  font-family: var(--osp-font-display);
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wc-block-components-button {
  border-radius: 0 !important;
  font-weight: 600;
}
.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-textarea textarea,
.woocommerce-checkout .wc-blocks-components-select .components-select-control__input,
.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input {
  border-radius: 0 !important;
  border-color: var(--osp-border) !important;
  background: var(--osp-ivory) !important;
}
@media (max-width: 900px) {
  .woocommerce-checkout .wc-block-components-sidebar,
  .woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
    position: static;
    width: 100%;
    flex-basis: 100%;
    order: 0;
  }
  .woocommerce-checkout .wc-block-components-main,
  .woocommerce-checkout .wp-block-woocommerce-checkout-fields-block {
    flex-basis: 100%;
  }
}

/* Classic checkout fallback split */
.osp-checkout__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.85fr);
  gap: 2.5rem 3rem;
  align-items: start;
}
.osp-checkout__summary {
  position: sticky;
  top: 1.25rem;
  padding: 1.25rem 1.35rem 1.4rem;
  background:
    linear-gradient(180deg, rgba(243, 235, 221, 0.55), transparent 42%),
    var(--osp-cream);
  border: 1px solid var(--osp-border);
}
.osp-checkout__summary h2,
.osp-checkout__summary #order_review_heading {
  margin: 0 0 1rem;
  font-family: var(--osp-font-display);
  font-size: 1.55rem;
  font-weight: 600;
}
.osp-checkout #customer_details.col2-set {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  float: none;
}
.osp-checkout #customer_details .col-1,
.osp-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
  max-width: none;
}
.osp-checkout .woocommerce-checkout-review-order-table {
  width: 100%;
  border: 0;
}
.osp-checkout .woocommerce-checkout-payment {
  margin-top: 1.75rem;
  background: transparent;
  border: 0;
}
@media (max-width: 900px) {
  .osp-checkout__layout {
    grid-template-columns: 1fr;
  }
  .osp-checkout__summary {
    position: static;
    order: -1;
  }
}

/* My Account */
.osp-account-main {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, color-mix(in srgb, var(--osp-sandalwood) 35%, transparent), transparent 70%),
    var(--osp-ivory);
}
.osp-account-container {
  width: min(100% - 2 * var(--osp-pad), 1080px);
}
.osp-account--guest .osp-account-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.osp-account__hero {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  width: 100%;
}
.osp-account--guest .osp-account__hero {
  margin-inline: auto;
  text-align: center;
  max-width: 28rem;
}
.osp-account__hero h1 {
  margin: 0.25rem 0 0;
  font-family: var(--osp-font-display);
  font-size: clamp(2.35rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--osp-charcoal);
}
.osp-account__lede {
  margin: 0.75rem 0 0;
  color: var(--osp-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}
.osp-account__body {
  padding-bottom: 3.5rem;
  width: 100%;
}
.osp-account--guest .osp-account__body,
.osp-account--guest .woocommerce {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
  float: none;
}
.osp-account-auth {
  width: min(100%, 26.5rem);
  margin-inline: auto;
  float: none;
}
.osp-account-auth .woocommerce-form-login,
.osp-account-auth .woocommerce-form-register,
.osp-account-auth .lost_reset_password {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  width: 100% !important;
}
.osp-account-auth--split {
  width: min(100%, 54rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.osp-account-auth__panel {
  padding: 1.6rem 1.5rem 1.7rem;
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.95), var(--osp-cream));
  border: 1px solid var(--osp-border);
  border-top: 2px solid var(--osp-red);
  border-radius: 0 0 var(--osp-radius) var(--osp-radius);
  box-shadow: 0 16px 40px rgba(37, 34, 30, 0.07);
}
.osp-account-auth__panel h2 {
  margin: 0.2rem 0 0;
  font-family: var(--osp-font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 600;
  color: var(--osp-charcoal);
}
.osp-account-auth__lede,
.osp-account-auth__hint {
  margin: 0.65rem 0 1.25rem;
  color: var(--osp-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.osp-account-auth__hint { margin-top: 0; }
.osp-account-auth .form-row {
  margin: 0 0 1rem;
}
.osp-account-auth label {
  display: block;
  margin: 0 0 0.4rem;
  color: var(--osp-charcoal);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.osp-account-auth .woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-weight: 500;
  cursor: pointer;
}
.osp-account-auth .input-text,
.osp-account-auth input[type="text"],
.osp-account-auth input[type="email"],
.osp-account-auth input[type="password"] {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid color-mix(in srgb, var(--osp-bronze) 45%, var(--osp-border));
  border-radius: var(--osp-radius);
  background: var(--osp-ivory);
  color: var(--osp-charcoal);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.18s var(--osp-ease), box-shadow 0.18s var(--osp-ease), background 0.18s var(--osp-ease);
}
.osp-account-auth .input-text:focus,
.osp-account-auth input[type="text"]:focus,
.osp-account-auth input[type="email"]:focus,
.osp-account-auth input[type="password"]:focus {
  outline: none;
  border-color: var(--osp-red);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--osp-red) 16%, transparent);
}
.osp-account-auth .password-input {
  display: block;
  position: relative;
}
.osp-account-auth .show-password-input {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--osp-muted);
  cursor: pointer;
}
.osp-account-auth__actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.15rem !important;
}
.osp-account-auth .button,
.osp-account-auth .woocommerce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.95rem;
  padding: 0.7rem 1.25rem;
  border: 0;
  border-radius: var(--osp-radius);
  background: var(--osp-red);
  color: var(--osp-ivory) !important;
  font: inherit;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s var(--osp-ease), transform 0.2s var(--osp-ease);
}
.osp-account-auth .button:hover,
.osp-account-auth .woocommerce-button:hover {
  background: var(--osp-red-dark);
}
.osp-account-auth .lost_password,
.osp-account-auth__back {
  margin: 1rem 0 0;
  text-align: center;
}
.osp-account-auth .lost_password a,
.osp-account-auth__back a {
  color: var(--osp-red);
  font-size: 0.95rem;
  font-weight: 550;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--osp-bronze) 55%, transparent);
}
.osp-account-auth .lost_password a:hover,
.osp-account-auth__back a:hover {
  color: var(--osp-red-dark);
  border-bottom-color: var(--osp-red);
}
.osp-account--guest .woocommerce-notices-wrapper {
  width: min(100%, 26.5rem);
  margin: 0 auto 1rem;
}
.osp-account--guest .woocommerce-notices-wrapper:has(+ .osp-account-auth--split),
.osp-account-auth--split ~ .woocommerce-notices-wrapper {
  width: min(100%, 54rem);
}
.osp-account-main .woocommerce-message,
.osp-account-main .woocommerce-info,
.osp-account-main .woocommerce-error {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--osp-border);
  border-left: 3px solid var(--osp-red);
  background: var(--osp-cream);
  color: var(--osp-charcoal);
  list-style: none;
}

/* Logged-in dashboard */
.osp-account-dashboard {
  display: grid;
  grid-template-columns: minmax(12.5rem, 15rem) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}
.woocommerce-MyAccount-navigation {
  position: sticky;
  top: calc(var(--osp-announce-h) + var(--osp-header-h) + 1rem);
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  border: 1px solid var(--osp-border);
  border-top: 2px solid var(--osp-red);
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.9), var(--osp-cream));
  box-shadow: 0 10px 28px rgba(37, 34, 30, 0.05);
}
.woocommerce-MyAccount-navigation li {
  margin: 0;
}
.woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 0.75rem 0.85rem;
  color: var(--osp-charcoal);
  text-decoration: none;
  border-radius: calc(var(--osp-radius) - 1px);
  font-size: 0.95rem;
  font-weight: 550;
  letter-spacing: 0.01em;
  transition: background 0.18s var(--osp-ease), color 0.18s var(--osp-ease);
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li a[aria-current="page"] {
  color: var(--osp-red);
  background: color-mix(in srgb, var(--osp-sandalwood) 45%, var(--osp-ivory));
  box-shadow: inset 2px 0 0 var(--osp-red);
}
.woocommerce-MyAccount-content {
  min-width: 0;
  padding: 1.45rem 1.5rem 1.65rem;
  border: 1px solid var(--osp-border);
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.92), var(--osp-ivory));
  box-shadow: 0 12px 32px rgba(37, 34, 30, 0.05);
}
.woocommerce-MyAccount-content > h2,
.woocommerce-MyAccount-content > h3,
.woocommerce-MyAccount-content .woocommerce-order-details__title,
.woocommerce-MyAccount-content .woocommerce-Address-title title,
.woocommerce-MyAccount-content .woocommerce-column__title {
  margin: 0 0 0.85rem;
  font-family: var(--osp-font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 600;
  color: var(--osp-charcoal);
}
.woocommerce-MyAccount-content p {
  color: var(--osp-charcoal);
  line-height: 1.6;
}
.woocommerce-MyAccount-content a {
  color: var(--osp-red);
}
.woocommerce-MyAccount-content .button,
.woocommerce-account .button,
.woocommerce-orders-table .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--osp-red);
  color: var(--osp-ivory) !important;
  border: 0;
  border-radius: var(--osp-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s var(--osp-ease);
}
.woocommerce-MyAccount-content .button:hover,
.woocommerce-account .button:hover,
.woocommerce-orders-table .button:hover {
  background: var(--osp-red-dark);
}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row,
.woocommerce-MyAccount-content .woocommerce-address-fields .form-row {
  margin: 0 0 1rem;
}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm label,
.woocommerce-MyAccount-content .woocommerce-address-fields label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.woocommerce-MyAccount-content .input-text,
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea {
  width: 100%;
  min-height: 2.7rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid color-mix(in srgb, var(--osp-bronze) 40%, var(--osp-border));
  border-radius: var(--osp-radius);
  background: var(--osp-ivory);
  color: var(--osp-charcoal);
  font: inherit;
}
.woocommerce-MyAccount-content .input-text:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus {
  outline: none;
  border-color: var(--osp-red);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--osp-red) 14%, transparent);
}
.woocommerce-orders-table,
.woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.woocommerce-orders-table th,
.woocommerce-orders-table td,
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
  padding: 0.85rem 0.65rem;
  border-bottom: 1px solid var(--osp-border);
  text-align: left;
  vertical-align: middle;
}
.woocommerce-orders-table thead th,
.woocommerce-table--order-details thead th {
  color: var(--osp-muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom-color: color-mix(in srgb, var(--osp-bronze) 55%, var(--osp-border));
}
.woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.woocommerce-Address {
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--osp-border);
  background: color-mix(in srgb, var(--osp-cream) 70%, white);
}
.woocommerce-Address-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.woocommerce-Address-title h3 {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: 1.35rem;
}
.woocommerce-Address address {
  font-style: normal;
  line-height: 1.55;
  color: var(--osp-charcoal);
}

@media (max-width: 800px) {
  .osp-account-auth--split {
    grid-template-columns: 1fr;
  }
  .osp-account-dashboard {
    grid-template-columns: 1fr;
  }
  .woocommerce-MyAccount-navigation {
    position: static;
  }
  .woocommerce-MyAccount-navigation ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem;
  }
  .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }
  .woocommerce-orders-table {
    display: block;
    overflow-x: auto;
  }
}

/* Shop compatibility / cover-first catalogue */
.ch-main { padding: 2.5rem 0 4rem; }
.ch-section { padding: var(--osp-section) 0; }
.ch-section--sand { background: var(--osp-paper); }
.ch-section__title { font-size: clamp(2rem, 3vw, 3rem); margin: 0 0 0.5rem; }
.ch-section__lede { color: var(--osp-muted); }
.ch-section__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.75rem;
}

.osp-shop { padding-top: 2rem; }
.osp-shop__layout,
.ch-shop-layout {
  display: grid;
  grid-template-columns: 13.5rem minmax(0, 1fr);
  gap: 2.75rem;
  align-items: start;
}
.osp-shop__sidebar {
  position: sticky;
  top: calc(var(--osp-announce-h) + var(--osp-header-h) + 1rem);
}
.osp-shop__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.osp-shop__title {
  margin: 0;
  font-size: clamp(1.85rem, 2.6vw, 2.6rem);
  font-weight: 600;
}
.osp-shop__lede {
  margin: 0.35rem 0 0;
  color: var(--osp-muted);
  font-size: 0.95rem;
  max-width: 36ch;
}
.osp-shop__tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  color: var(--osp-muted);
  font-size: 0.85rem;
}
.osp-shop__tools .woocommerce-result-count { margin: 0; }
.osp-shop__tools .woocommerce-ordering,
.osp-shop__order {
  margin: 0;
}
/* Match homepage .osp-filter selects (no native OS chrome) */
.osp-shop__tools .osp-filter select,
.osp-shop__tools .woocommerce-ordering select,
.woocommerce .woocommerce-ordering select.orderby {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 44px;
  min-width: 10.5rem;
  margin: 0;
  padding: 0.55rem 2.25rem 0.55rem 1.15rem;
  border: 1px solid var(--osp-charcoal);
  border-radius: var(--osp-radius);
  background: transparent;
  color: var(--osp-charcoal);
  font-family: var(--osp-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.25s var(--osp-ease), border-color 0.25s var(--osp-ease), background 0.25s var(--osp-ease);
}
.osp-shop__tools .osp-filter select:hover,
.osp-shop__tools .osp-filter select:focus,
.osp-shop__tools .woocommerce-ordering select:hover,
.osp-shop__tools .woocommerce-ordering select:focus,
.woocommerce .woocommerce-ordering select.orderby:hover,
.woocommerce .woocommerce-ordering select.orderby:focus {
  color: var(--osp-red);
  border-color: var(--osp-red);
  outline: none;
}
.osp-shop__tools .osp-filter select:focus-visible,
.woocommerce .woocommerce-ordering select.orderby:focus-visible {
  outline: 2px solid var(--osp-red);
  outline-offset: 3px;
}
.osp-shop__tools .osp-filter select option,
.woocommerce .woocommerce-ordering select.orderby option {
  color: var(--osp-charcoal);
  background: var(--osp-ivory);
  font-weight: 500;
}

/* Soft category rail */
.osp-cat-nav__title,
.ch-cat-nav__title {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--osp-muted);
  font-weight: 600;
  font-family: var(--osp-font-body);
}
.osp-cat-nav__list,
.osp-cat-nav__children,
.ch-cat-nav__list,
.ch-cat-nav__children {
  list-style: none;
  margin: 0;
  padding: 0;
}
.osp-cat-nav__item > a,
.ch-cat-nav__item > a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.4rem 0 0.4rem 0.7rem;
  color: var(--osp-muted);
  text-decoration: none;
  border: 0;
  border-left: 2px solid transparent;
  font-size: 0.92rem;
  line-height: 1.35;
  transition: color 0.2s var(--osp-ease), border-color 0.2s var(--osp-ease);
}
.osp-cat-nav__count,
.ch-cat-count {
  font-size: 0.75rem;
  color: var(--osp-bronze);
  font-variant-numeric: tabular-nums;
}
.osp-cat-nav__item.is-active > a,
.ch-cat-nav__item.is-active > a {
  color: var(--osp-charcoal);
  font-weight: 600;
  border-left-color: var(--osp-red);
}
.osp-cat-nav__item > a:hover,
.ch-cat-nav__item > a:hover {
  color: var(--osp-red);
}
.osp-cat-nav__children,
.ch-cat-nav__children {
  margin: 0.15rem 0 0.55rem;
  padding-left: 0.85rem;
}
.osp-cat-nav__children a,
.ch-cat-nav__children a {
  font-size: 0.86rem;
  padding-block: 0.28rem;
}

/* Cover grid */
.osp-shop .products,
.ch-products,
.products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
}
/* Woo clearfix pseudos become empty grid cells — kill them. */
.osp-shop .products::before,
.osp-shop .products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  content: none !important;
  display: none !important;
}
@media (min-width: 1400px) {
  .osp-shop .products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.osp-cover-card,
.osp-shop .products .product,
.ch-product,
.products .product {
  background: transparent;
  margin: 0;
  padding: 0;
  width: auto !important;
  float: none !important;
  clear: none !important;
}
.osp-cover-card__hit {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.osp-cover-card__media {
  display: block;
  aspect-ratio: 2 / 3;
  background: var(--osp-cream);
  overflow: hidden;
}
.osp-cover-card__media img,
.ch-product__media,
.products .product a img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: var(--osp-cream);
  transition: transform 0.45s var(--osp-ease);
}
.osp-cover-card__hit:hover .osp-cover-card__media img,
.osp-cover-card__hit:focus-visible .osp-cover-card__media img {
  transform: scale(1.02);
}
@media (prefers-reduced-motion: reduce) {
  .osp-cover-card__media img { transition: none; }
  .osp-cover-card__hit:hover .osp-cover-card__media img,
  .osp-cover-card__hit:focus-visible .osp-cover-card__media img {
    transform: none;
  }
}
.osp-cover-card__caption {
  display: grid;
  gap: 0.2rem;
}
.osp-cover-card__teacher {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--osp-muted);
  font-weight: 600;
}
.osp-cover-card__title,
.ch-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--osp-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--osp-charcoal);
  margin: 0;
}
.osp-cover-card__price {
  font-size: 0.9rem;
  color: var(--osp-muted);
}
.osp-cover-card__price .amount { color: var(--osp-charcoal); }
.osp-shop .products .button,
.osp-shop .products .add_to_cart_button,
.osp-shop .woocommerce-LoopProduct-link {
  display: none !important;
}

/* Category intro tile (Ramana / Papaji / John David) */
.osp-ramana-intro,
.osp-papaji-intro,
.osp-teacher-intro {
  list-style: none;
}
.osp-ramana-intro__card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.9rem;
  height: 100%;
  padding: 0.85rem 0.85rem 1.15rem;
  background:
    linear-gradient(165deg, #EFE4D0 0%, var(--osp-cream) 42%, #F8F2E6 100%);
  border: 1.5px solid color-mix(in srgb, var(--osp-bronze) 55%, var(--osp-border));
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 10px 28px rgba(37, 34, 30, 0.1),
    0 0 36px rgba(193, 122, 50, 0.14);
  box-sizing: border-box;
}
.osp-ramana-intro__media {
  margin: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: color-mix(in srgb, var(--osp-cream) 70%, #fff);
  border: 1px solid color-mix(in srgb, var(--osp-bronze) 35%, var(--osp-border));
  box-shadow: 0 4px 14px rgba(37, 34, 30, 0.08);
}
.osp-ramana-intro__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.osp-ramana-intro__copy {
  display: grid;
  gap: 0.3rem;
  padding: 0 0.15rem;
  align-content: start;
}
.osp-ramana-intro__name {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--osp-charcoal);
}
.osp-ramana-intro__line {
  margin: 0;
  font-family: var(--osp-font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--osp-charcoal);
}
.osp-ramana-intro__sub {
  margin: 0.15rem 0 0;
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--osp-muted);
}
.osp-ramana-intro__btn {
  margin-top: 0.65rem;
  width: 100%;
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  white-space: normal;
  line-height: 1.25;
  text-align: center;
}

/* Teacher info modal — same shell as product quickview */
.osp-teacher-modal .osp-modal__dialog {
  width: min(1080px, 100%);
}
.osp-teacher-modal__tagline {
  margin: 0 0 0.85rem;
  font-family: var(--osp-font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--osp-muted);
}
.osp-teacher-modal__lede {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.osp-teacher-modal__lede p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--osp-charcoal);
}
.osp-teacher-modal__tabs {
  margin-top: 0.25rem;
}
.osp-teacher-modal .osp-modal__tabpanel {
  display: grid;
  gap: 0.85rem;
}
.osp-teacher-modal .osp-modal__tabpanel[hidden] {
  display: none !important;
}
.osp-teacher-modal__about {
  display: grid;
  gap: 0.75rem;
  max-width: 62ch;
}
.osp-teacher-modal__about p {
  margin: 0;
  line-height: 1.65;
  color: var(--osp-charcoal);
}
.osp-teacher-modal__section {
  display: grid;
  gap: 0.85rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--osp-border);
}
.osp-teacher-modal__section-title {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: 1.55rem;
  font-weight: 600;
}
.osp-teacher-modal__section-lede {
  margin: 0;
  color: var(--osp-muted);
  font-size: 0.98rem;
}
.osp-teacher-modal__books {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 0.85rem;
}
.osp-teacher-modal__books--films {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 28rem;
}
.osp-teacher-modal__book {
  display: grid;
  gap: 0.35rem;
}
.osp-teacher-modal__book-hit {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  display: grid;
  gap: 0.45rem;
}
.osp-teacher-modal__book-media {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--osp-cream);
  border: 1px solid var(--osp-border);
}
.osp-teacher-modal__book-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s var(--osp-ease);
}
.osp-teacher-modal__book-hit:hover .osp-teacher-modal__book-media img {
  transform: scale(1.03);
}
.osp-teacher-modal__book-name {
  font-family: var(--osp-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}
.osp-teacher-modal__book-price {
  font-size: 0.92rem;
  color: var(--osp-muted);
}
.osp-teacher-modal__book-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--osp-red);
  text-decoration: none;
}
.osp-teacher-modal__book-link:hover { text-decoration: underline; }
.osp-teacher-modal__video-block {
  display: grid;
  gap: 0.55rem;
}
.osp-teacher-modal__video-title {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.osp-teacher-modal__player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--osp-border);
}
.osp-teacher-modal__player iframe,
.osp-teacher-modal__player .osp-video__facade,
.osp-teacher-modal__player .osp-video__facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.osp-teacher-modal__player .osp-video__facade {
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  background: #111;
}
.osp-teacher-modal__player .osp-video__facade img {
  object-fit: cover;
  opacity: 0.88;
}
.osp-teacher-modal__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.osp-teacher-modal__shot {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--osp-border);
  background: var(--osp-cream);
}
.osp-teacher-modal__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 900px) {
  .osp-teacher-modal__books { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .osp-teacher-modal__gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .osp-teacher-modal .osp-modal__hero {
    grid-template-columns: 1fr;
  }
  .osp-teacher-modal .osp-modal__cover { max-width: 14rem; }
}

.osp-ramana-seo {
  margin-top: 3.5rem;
  padding: 2.5rem 0 1rem;
  border-top: 1px solid var(--osp-border);
  max-width: 52rem;
}
.osp-ramana-seo__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--osp-muted);
  font-weight: 600;
}
.osp-ramana-seo h2 {
  margin: 0 0 1rem;
  font-family: var(--osp-font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  font-weight: 600;
  line-height: 1.2;
}
.osp-ramana-seo h3 {
  margin: 1.75rem 0 0.65rem;
  font-family: var(--osp-font-display);
  font-size: 1.35rem;
  font-weight: 600;
}
.osp-ramana-seo p {
  margin: 0 0 1rem;
  color: var(--osp-charcoal);
  line-height: 1.65;
}
.osp-ramana-seo__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.75rem 0 0.5rem;
}
.osp-ramana-seo__shot {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--osp-cream);
}
.osp-ramana-seo__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.osp-ramana-seo__faq {
  margin-top: 1.5rem;
}
.osp-papaji-seo__subtitle {
  margin: -0.35rem 0 0.75rem;
  font-family: var(--osp-font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--osp-muted);
}
.osp-ramana-seo__item {
  border-top: 1px solid var(--osp-border);
  padding: 0.85rem 0;
}
.osp-ramana-seo__item:last-child {
  border-bottom: 1px solid var(--osp-border);
}
.osp-ramana-seo__item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--osp-charcoal);
  list-style: none;
}
.osp-ramana-seo__item summary::-webkit-details-marker { display: none; }
.osp-ramana-seo__item summary::after {
  content: "+";
  float: right;
  color: var(--osp-muted);
  font-weight: 500;
}
.osp-ramana-seo__item[open] summary::after { content: "–"; }
.osp-ramana-seo__item p {
  margin: 0.65rem 0 0.15rem;
  color: var(--osp-muted);
  max-width: 40rem;
}
@media (max-width: 900px) {
  .osp-ramana-seo__gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .osp-ramana-seo__gallery { grid-template-columns: 1fr 1fr; gap: 0.55rem; }
}

/* Product modal */
body.osp-modal-open { overflow: hidden; }
.osp-modal[hidden],
.osp-modal [hidden] { display: none !important; }
.osp-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.osp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 34, 30, 0.42);
  opacity: 0;
  transition: opacity 0.22s var(--osp-ease);
}
.osp-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(96vh, 980px);
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--osp-ivory);
  border: 1px solid var(--osp-border);
  box-shadow: 0 18px 48px rgba(37, 34, 30, 0.12);
  border-radius: 2px;
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  transition: opacity 0.24s var(--osp-ease), transform 0.28s var(--osp-ease);
  will-change: opacity, transform;
}
.osp-modal.is-open .osp-modal__backdrop { opacity: 1; }
.osp-modal.is-open .osp-modal__dialog {
  opacity: 1;
  transform: none;
}
.osp-modal.is-open .osp-modal__panel {
  animation: ospModalReveal 0.34s var(--osp-ease) both;
}
@keyframes ospModalReveal {
  from { opacity: 0.72; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.osp-modal--reduced .osp-modal__dialog,
.osp-modal.osp-modal--reduced .osp-modal__dialog {
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .osp-modal__backdrop,
  .osp-modal__dialog { transition: opacity 0.15s linear; }
  .osp-modal__dialog { transform: none; }
  .osp-modal.is-open .osp-modal__panel { animation: none; }
}
.osp-modal__toolbar {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  margin: 0.35rem 0.4rem 0 0;
  padding: 0.15rem 0 0.15rem 0.5rem;
  background: linear-gradient(to bottom, var(--osp-ivory) 70%, transparent);
}
.osp-modal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.25rem;
  margin: 0;
  padding: 0.25rem 0.55rem 0.25rem 0.4rem;
  border: 0;
  border-radius: var(--osp-radius);
  background: transparent;
  color: var(--osp-charcoal);
  font-family: var(--osp-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s var(--osp-ease);
}
.osp-modal__back:hover {
  color: var(--osp-red);
}
.osp-modal__back-icon {
  font-size: 1.15rem;
  line-height: 1;
}
.osp-modal__close {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--osp-charcoal);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}
.osp-modal__close:hover { color: var(--osp-red); }
.osp-modal__body {
  padding: 0.75rem 1.75rem 1.75rem;
  clear: both;
}
.osp-modal__panel { display: grid; gap: 1.75rem; }
.osp-modal__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  gap: 1.5rem 2rem;
  align-items: start;
}
.osp-modal__cover {
  background: var(--osp-cream);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  max-width: 20rem;
}
.osp-modal__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.osp-modal__details .osp-label { margin-bottom: 0.45rem; }
.osp-modal__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
}
.osp-modal__price {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: var(--osp-charcoal);
}
.osp-modal__desc {
  color: var(--osp-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.15rem;
}
.osp-modal__desc--short {
  max-height: 7.5rem;
  overflow: hidden;
}
.osp-modal__desc--short p { margin: 0; }
.osp-modal__desc p:first-child { margin-top: 0; }
.osp-modal__desc p:last-child { margin-bottom: 0; }
.osp-modal__longdesc {
  color: var(--osp-charcoal);
  font-size: 0.98rem;
  line-height: 1.65;
}
.osp-modal__longdesc p:first-child { margin-top: 0; }
.osp-modal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.75rem;
}
.osp-modal__ebook {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.15rem;
  color: var(--osp-red);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.osp-modal__ebook:hover { color: var(--osp-charcoal); }
.osp-modal__status {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--osp-olive);
}
.osp-modal__status.is-error { color: var(--osp-red); }
.osp-modal__muted { color: var(--osp-muted); margin: 0; }

/* Modal tabs */
.osp-modal__tabs {
  border-top: 1px solid var(--osp-border);
  padding-top: 1.25rem;
}
.osp-modal__tablist {
  display: flex;
  gap: 0.25rem 1.5rem;
  border-bottom: 1px solid var(--osp-border);
  margin-bottom: 1.1rem;
}
.osp-modal__tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.4rem 0 0.7rem;
  margin: 0;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--osp-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.osp-modal__tab.is-active,
.osp-modal__tab[aria-selected="true"] {
  color: var(--osp-charcoal);
  border-bottom-color: var(--osp-red);
}
.osp-modal__tab:hover { color: var(--osp-red); }
.osp-modal__tabpanel { min-height: 3rem; }
.osp-modal__review-summary {
  margin: 0 0 1rem;
  color: var(--osp-charcoal);
  font-size: 0.95rem;
}
.osp-modal__stars {
  color: var(--osp-saffron);
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}
.osp-modal__review-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.osp-modal__review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}
.osp-modal__review-body {
  color: var(--osp-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.osp-modal__review-body p:first-child { margin-top: 0; }
.osp-modal__meta {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.osp-modal__meta-row {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 0.75rem;
  font-size: 0.92rem;
}
.osp-modal__meta-row dt {
  margin: 0;
  color: var(--osp-muted);
  font-weight: 600;
}
.osp-modal__meta-row dd {
  margin: 0;
  color: var(--osp-charcoal);
}

/* Related in modal */
.osp-modal__related {
  border-top: 1px solid var(--osp-border);
  padding-top: 1.35rem;
}
.osp-modal__related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.osp-modal__related-title {
  margin: 0;
  font-size: 1.35rem;
}
.osp-modal__related-controls {
  display: inline-flex;
  gap: 0.35rem;
  flex-shrink: 0;
}
.osp-modal__related-btn {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
  background: transparent;
  color: var(--osp-charcoal);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s var(--osp-ease), border-color 0.2s var(--osp-ease), background 0.2s var(--osp-ease);
}
.osp-modal__related-btn:hover:not(:disabled) {
  color: var(--osp-red);
  border-color: var(--osp-red);
}
.osp-modal__related-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.osp-modal__related-track {
  list-style: none;
  margin: 0;
  padding: 0 0 0.35rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 1rem) / 4);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.osp-modal__related-item {
  scroll-snap-align: start;
  min-width: 0;
}
.osp-modal__related-hit {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.osp-modal__related-media {
  display: block;
  aspect-ratio: 2 / 3;
  background: var(--osp-cream);
  overflow: hidden;
}
.osp-modal__related-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.osp-modal__related-name {
  font-family: var(--osp-font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--osp-charcoal);
}
.osp-modal__related-price {
  font-size: 0.85rem;
  color: var(--osp-muted);
}

.ch-footer { display: none; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--osp-red);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1200px) {
  .osp-shelf__track {
    grid-auto-columns: calc((100% - 2 * 1.1rem) / 3);
  }
  .ch-dropdown--shop {
    grid-template-columns: 1fr;
    min-width: 16.5rem;
    padding: 0.65rem 0.55rem;
  }
  .ch-dropdown__col {
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--osp-border) 80%, transparent);
    padding: 0 0.25rem 0.55rem;
    margin-bottom: 0.35rem;
  }
  .ch-dropdown__col:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 1024px) {
  :root {
    --osp-pad: 28px;
    --osp-section: 4.5rem;
  }
  .osp-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .osp-hero__copy {
    margin: 0;
    max-width: none;
    min-height: 0;
    padding-block: 2.5rem;
  }
  .osp-slider,
  .osp-slider__track,
  .osp-slider__slide {
    min-height: min(52vw, 360px);
  }
  .osp-pathways {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-block: 1.5rem;
  }
  .osp-pathway {
    grid-template-columns: 1fr;
    grid-template-rows: 18rem auto;
  }
  .osp-collection {
    min-height: 0;
    padding-bottom: clamp(12rem, 42vw, 18rem);
    align-items: start;
  }
  .osp-collection__bg {
    object-position: 78% 42%;
  }
  .osp-collection__inner {
    grid-template-columns: 1fr;
  }
  .osp-collection__copy {
    max-width: 34rem;
    padding: 0.35rem 0 0.75rem;
  }
  .osp-quote__inner {
    grid-template-columns: 9.5rem minmax(0, 1fr);
    gap: 1.25rem;
  }
  .osp-quote__text { min-height: 3.4em; }
  .osp-jd__banners { grid-template-columns: 1fr; }
  .osp-jd__meeting {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .osp-feature {
    grid-template-columns: 1fr;
  }
  .osp-footer__info {
    grid-template-columns: 1fr 1fr;
  }
  .osp-footer__brand,
  .osp-footer__block {
    padding: 1.25rem 1rem;
  }
  .osp-footer__block:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--osp-charcoal);
  }
  .osp-footer__block:nth-child(2),
  .osp-footer__block:nth-child(4) {
    border-top: 1px solid var(--osp-charcoal);
  }
  .osp-shop__layout,
  .ch-shop-layout { grid-template-columns: 1fr; }
  .osp-shop__sidebar { position: static; }
  .osp-cat-nav__list,
  .ch-cat-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem 0.75rem;
  }
  .osp-cat-nav__item > a,
  .ch-cat-nav__item > a {
    padding-left: 0.5rem;
  }
  .osp-cat-nav__children,
  .ch-cat-nav__children {
    display: contents;
  }
  .osp-shop .products,
  .ch-products,
  .products { grid-template-columns: repeat(2, 1fr); }
  .osp-modal__hero { grid-template-columns: 1fr; gap: 1.1rem; }
  .osp-modal__dialog {
    width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
    border: 0;
  }
  .osp-modal { padding: 0; place-items: stretch; }
  .osp-modal__body { padding: 0.5rem 1.15rem 1.5rem; }
  .osp-modal__cover {
    max-width: 14rem;
    margin-inline: auto;
  }
  .osp-modal__related-track { grid-auto-columns: calc((100% - 2 * 0.85rem) / 3); gap: 0.85rem; }
  .osp-modal__meta-row { grid-template-columns: 6.5rem minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .osp-design-switch { display: none !important; }
  .osp-nav-toggle,
  .ch-nav-toggle {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid color-mix(in srgb, var(--osp-bronze) 50%, var(--osp-border));
    background: color-mix(in srgb, var(--osp-cream) 65%, white);
    color: var(--osp-charcoal);
    place-items: center;
    border-radius: var(--osp-radius);
  }
  .osp-nav-toggle:hover,
  .ch-nav-toggle:hover,
  .osp-nav-toggle[aria-expanded="true"],
  .ch-nav-toggle[aria-expanded="true"] {
    color: var(--osp-red);
    border-color: color-mix(in srgb, var(--osp-red) 35%, var(--osp-border));
    background: var(--osp-ivory);
  }
  .osp-icon-btn,
  .ch-search-toggle,
  .ch-cart-link,
  .osp-account-link {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 44px;
    min-height: 44px;
  }
  .osp-nav,
  .ch-nav {
    position: fixed;
    top: var(--osp-nav-top, var(--osp-header-h));
    right: 0;
    bottom: 0;
    left: 0;
    background:
      linear-gradient(180deg, var(--osp-ivory) 0%, var(--osp-cream) 100%);
    padding: 1rem var(--osp-pad) 2.5rem;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--osp-ease), opacity 0.3s var(--osp-ease);
    z-index: 40;
    overflow: auto;
    justify-content: flex-start;
    align-items: stretch;
    border-top: 1px solid var(--osp-border);
  }
  .osp-nav.is-open,
  .ch-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .ch-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    width: 100%;
  }
  .ch-nav__item {
    border-bottom: 1px solid color-mix(in srgb, var(--osp-border) 80%, transparent);
  }
  .ch-nav__item > a,
  .ch-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 52px;
    padding-inline: 0.15rem;
    font-size: 1.18rem;
    letter-spacing: 0.02em;
    background: transparent;
    border-radius: 0;
  }
  .ch-nav__item > a::after,
  .ch-dropdown-toggle::after {
    display: none;
  }
  .ch-nav__item > a:hover,
  .ch-dropdown-toggle:hover,
  .ch-nav__item.is-current > a,
  .ch-nav__item.is-current > .ch-dropdown-toggle,
  .has-dropdown:hover > .ch-dropdown-toggle,
  .has-dropdown:focus-within > .ch-dropdown-toggle {
    background: transparent;
  }
  .ch-dropdown {
    position: static;
    opacity: 1;
    pointer-events: none;
    transform: none;
    display: none;
    box-shadow: none;
    border: 0;
    border-top: 0;
    background: color-mix(in srgb, var(--osp-paper) 55%, transparent);
    padding: 0.15rem 0 0.85rem 0.35rem;
    min-width: 0;
    border-radius: 0;
  }
  .ch-dropdown--shop {
    display: none;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    min-width: 0;
    padding: 0.15rem 0 0.85rem 0.35rem;
  }
  .has-dropdown.is-open > .ch-dropdown,
  .has-dropdown.is-open > .ch-dropdown--shop {
    display: grid;
    pointer-events: auto;
  }
  .ch-dropdown__col {
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--osp-border) 70%, transparent);
    padding-bottom: 0.55rem;
  }
  .ch-dropdown__col:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .ch-dropdown__heading,
  .ch-dropdown__col > .ch-dropdown__heading {
    margin: 0.55rem 0 0.35rem;
    padding-bottom: 0.3rem;
  }
  .ch-dropdown a {
    padding: 0.7rem 0.45rem;
    font-size: 1.02rem;
  }
  .osp-nav__mobile-only { display: list-item; }
  .osp-announce__text { font-size: 0.7rem; }
  .osp-header__bar { grid-template-columns: auto 1fr; }
  .osp-nav { grid-column: 1 / -1; }
  .osp-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .osp-cta-group .osp-btn,
  .osp-cta-group .ch-btn {
    width: 100%;
  }
  .osp-pathway {
    grid-template-columns: 1fr;
    grid-template-rows: 17rem auto;
  }
  .osp-cat-nav__list,
  .ch-cat-nav__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.15rem;
    gap: 0.35rem 0.85rem;
  }
  .osp-cat-nav__list::-webkit-scrollbar,
  .ch-cat-nav__list::-webkit-scrollbar { display: none; }
  .osp-cat-nav__item,
  .ch-cat-nav__item {
    flex: 0 0 auto;
  }
  .osp-cat-nav__item > a,
  .ch-cat-nav__item > a {
    white-space: nowrap;
    min-height: 44px;
    align-items: center;
  }
  .osp-cat-nav__children,
  .ch-cat-nav__children {
    display: contents;
  }
}

@media (max-width: 700px) {
  :root {
    --osp-pad: 18px;
    --osp-section: 3.25rem;
  }
  .osp-hero__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .osp-quote__inner {
    grid-template-columns: 1fr;
  }
  .osp-quote__portrait {
    width: min(11rem, 42vw);
  }
  .osp-quote__text { min-height: 0; }
  .osp-jd__intro {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .osp-jd__portrait { width: min(10rem, 46vw); }
  .osp-jd__copy p { margin-inline: auto; }
  .osp-jd__events-title { text-align: center; }
  .osp-pathway {
    grid-template-columns: 1fr;
    grid-template-rows: 16rem auto;
  }
  .osp-shelf__track {
    grid-auto-columns: 72%;
  }
  .osp-feature {
    padding: 1.5rem 0;
  }
  .osp-footer__info {
    grid-template-columns: 1fr;
  }
  .osp-footer__brand,
  .osp-footer__block {
    border-left: 0 !important;
    border-top: 1px solid var(--osp-border);
    padding: 1.35rem 0;
  }
  .osp-footer__brand { border-top: 0; }
  .osp-footer__actions { max-width: none; }
  .osp-footer__btn { width: 100%; min-height: 44px; }
  .osp-footer__payments { grid-template-columns: repeat(3, 1fr); }
  .osp-shop .products,
  .ch-products,
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 0.85rem; }
  .osp-cover-card__title { font-size: 1.02rem; }
  .osp-modal__actions .osp-btn,
  .osp-modal__actions .ch-btn { width: 100%; }
  .osp-modal__related-track { grid-auto-columns: calc((100% - 1 * 0.75rem) / 2); gap: 0.75rem; }
  .osp-cta-group .osp-btn,
  .osp-cta-group .ch-btn { width: 100%; }
  .osp-slider,
  .osp-slider__track,
  .osp-slider__slide {
    min-height: min(58vw, 280px);
  }
}

@media (max-width: 600px) {
  .osp-shop .products,
  .ch-products,
  .products { grid-template-columns: 1fr; }
  .osp-modal__related-track { grid-auto-columns: minmax(9.5rem, 72%); }
}

/* ─── Design switch ─── */
.osp-design-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--osp-border);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
  margin-right: 0.35rem;
}
.osp-design-switch__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--osp-muted);
  font-family: var(--osp-font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  line-height: 1;
}
.osp-design-switch__btn.is-active,
.osp-design-switch__btn[aria-pressed="true"] {
  background: var(--osp-charcoal);
  color: var(--osp-ivory);
}
.osp-design-switch__btn:focus-visible {
  outline: 2px solid var(--osp-red);
  outline-offset: 2px;
  z-index: 1;
}

.osp-layout--d2 { display: none; }
body.osp-design-2 .osp-layout--d1,
html.osp-design-2-html .osp-layout--d1 { display: none; }
body.osp-design-2 .osp-layout--d2,
html.osp-design-2-html .osp-layout--d2 { display: block; }

/* ─── Design 2 colour board: Aegean Mist ───
   Coastal teal + warm stone (from JD / Papaji banners).
   Not Design 1 parchment-red; not purple-gradient AI default. */
html.osp-design-2-html,
body.osp-design-2 {
  --osp-paper: #E4E0D6;
  --osp-ivory: #F4F2EC;
  --osp-cream: #EBE7DE;
  --osp-charcoal: #1A242B;
  --osp-red: #1F6B66;
  --osp-red-dark: #155550;
  --osp-saffron: #C4A35A;
  --osp-indigo: #243B48;
  --osp-indigo-dark: #152832;
  --osp-olive: #5A6A58;
  --osp-bronze: #8A7B5E;
  --osp-border: #CFC9BC;
  --osp-muted: #5C666E;
  --osp-sandalwood: #D8D1C3;
  --osp-font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --osp-font-body: "Source Sans 3", "Source Sans Pro", "Segoe UI", sans-serif;
  --osp-section: clamp(4.75rem, 10vw, 9.5rem);
  --osp-radius: 2px;
  background:
    radial-gradient(120% 80% at 10% -10%, rgba(31, 107, 102, 0.08), transparent 50%),
    linear-gradient(180deg, #EBE7DE 0%, var(--osp-ivory) 32%, var(--osp-ivory) 100%);
}

body.osp-design-2 .osp-announce {
  background: var(--osp-indigo);
  color: #F2EFE8;
}
body.osp-design-2 .osp-header {
  background: rgba(244, 242, 236, 0.92);
  backdrop-filter: blur(10px);
}
body.osp-design-2 .osp-btn--primary {
  background: var(--osp-red);
  border-color: var(--osp-red);
  color: #F7F5F0;
}
body.osp-design-2 .osp-btn--secondary {
  border-color: var(--osp-indigo);
  color: var(--osp-indigo);
  background: transparent;
}
body.osp-design-2 .osp-btn--secondary:hover {
  border-color: var(--osp-red);
  color: var(--osp-red);
}
body.osp-design-2 .osp-design-switch {
  background: rgba(255, 255, 255, 0.55);
}
body.osp-design-2 .osp-design-switch__btn.is-active,
body.osp-design-2 .osp-design-switch__btn[aria-pressed="true"] {
  background: var(--osp-indigo);
  color: #F4F2EC;
}

/* Design 2 homepage — full-bleed fade hero */
.osp-d2-hero {
  position: relative;
  width: 100%;
  min-height: min(86vh, 820px);
  overflow: hidden;
  background: var(--osp-indigo-dark);
}
.osp-d2-hero__track {
  position: absolute;
  inset: 0;
}
.osp-d2-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.15s var(--osp-ease);
  pointer-events: none;
}
.osp-d2-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.osp-d2-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.osp-d2-hero__caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.85rem;
  padding:
    calc(var(--osp-header-h) + var(--osp-announce-h) + 2rem)
    max(var(--osp-pad), calc((100vw - var(--osp-content)) / 2))
    clamp(3.5rem, 8vw, 5.5rem);
  max-width: min(36rem, 100%);
  color: #F7F4EE;
  background: linear-gradient(
    105deg,
    rgba(21, 40, 50, 0.72) 0%,
    rgba(21, 40, 50, 0.38) 48%,
    transparent 78%
  );
}
.osp-d2-hero__brand {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: #F7F4EE;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.25);
}
.osp-d2-hero__title {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
  max-width: 18ch;
}
.osp-d2-hero__lede {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 32ch;
  color: rgba(247, 244, 238, 0.9);
}
.osp-d2-hero__ghost {
  border-color: rgba(247, 244, 238, 0.65) !important;
  color: #F7F4EE !important;
  background: transparent !important;
}
.osp-d2-hero__ghost:hover {
  border-color: #F7F4EE !important;
  background: rgba(247, 244, 238, 0.1) !important;
}
.osp-d2-hero__controls {
  position: absolute;
  right: max(var(--osp-pad), calc((100vw - var(--osp-content)) / 2));
  bottom: 1.75rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.osp-d2-hero__btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 244, 238, 0.45);
  background: rgba(21, 40, 50, 0.35);
  color: #F7F4EE;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}
.osp-d2-hero__btn:hover {
  background: rgba(21, 40, 50, 0.55);
}
.osp-d2-hero__dots .osp-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  background: rgba(247, 244, 238, 0.35);
  cursor: pointer;
  padding: 0;
}
.osp-d2-hero__dots .osp-slider__dot.is-active {
  background: #F7F4EE;
  transform: scale(1.15);
}

.osp-d2-wrap {
  width: min(100% - 2 * var(--osp-pad), 1100px);
  margin-inline: auto;
}

.osp-d2-intro {
  padding: var(--osp-section) 0 calc(var(--osp-section) * 0.65);
  text-align: center;
}
.osp-d2-intro__title {
  margin: 0.75rem auto 1.1rem;
  max-width: 18ch;
  font-family: var(--osp-font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--osp-charcoal);
}
.osp-d2-intro__text {
  margin: 0 auto;
  max-width: 38ch;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--osp-muted);
}

.osp-d2-paths {
  display: grid;
  gap: clamp(3.5rem, 8vw, 6.5rem);
  padding: 0 0 var(--osp-section);
}
.osp-d2-path {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: center;
  width: min(100% - 2 * var(--osp-pad), 1180px);
  margin-inline: auto;
  text-decoration: none;
  color: inherit;
}
.osp-d2-path--flip {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}
.osp-d2-path--flip .osp-d2-path__media { order: 2; }
.osp-d2-path--flip .osp-d2-path__body { order: 1; }
.osp-d2-path__media {
  display: block;
  overflow: hidden;
  border-radius: var(--osp-radius);
  aspect-ratio: 4 / 5;
  background: var(--osp-cream);
}
.osp-d2-path__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--osp-ease);
}
.osp-d2-path:hover .osp-d2-path__media img {
  transform: scale(1.03);
}
.osp-d2-path__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 28rem;
}
.osp-d2-path__title {
  font-family: var(--osp-font-display);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.15;
}
.osp-d2-path__text {
  color: var(--osp-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.osp-d2-collection {
  padding: var(--osp-section) 0;
  background:
    linear-gradient(180deg, rgba(36, 59, 72, 0.04), transparent 40%),
    var(--osp-cream);
  border-block: 1px solid var(--osp-border);
}
.osp-d2-collection__inner {
  max-width: 36rem;
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.osp-d2-collection .osp-section-title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
}

.osp-d2-quote {
  padding: var(--osp-section) 0;
  background: transparent;
}
.osp-d2-quote__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
.osp-d2-quote__portrait {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--osp-radius);
  position: relative;
}
.osp-d2-quote__portrait .osp-quote__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s var(--osp-ease);
}
.osp-d2-quote__portrait .osp-quote__photo.is-active { opacity: 1; }
.osp-d2-quote__stage .osp-quote__text {
  font-family: var(--osp-font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1.35;
  color: var(--osp-charcoal);
}
.osp-d2-quote .osp-text-link--light,
.osp-d2-quote .osp-text-link {
  color: var(--osp-red);
}

.osp-d2-video {
  padding: 0 0 var(--osp-section);
}
.osp-d2-video__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.osp-d2-video__player {
  border-radius: var(--osp-radius);
  overflow: hidden;
}

.osp-d2-shelf {
  padding: var(--osp-section) 0;
}
.osp-d2-shelf__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.osp-d2-shelf__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}
.osp-d2-shelf__grid {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 1.5rem) / 4);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 34, 30, 0.35) transparent;
}
.osp-d2-shelf__grid .osp-product {
  scroll-snap-align: start;
  min-width: 0;
}
.osp-d2-product .osp-product__facts { display: none; }

.osp-d2-jd {
  padding: var(--osp-section) 0 calc(var(--osp-section) * 0.75);
  background: linear-gradient(180deg, transparent, rgba(36, 59, 72, 0.05));
}
.osp-d2-jd__inner {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.osp-d2-jd__portrait {
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
}
.osp-d2-jd__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.osp-d2-jd__copy .osp-section-title { margin: 0.35rem 0 0.85rem; }
.osp-d2-jd__when {
  margin: 0.85rem 0 0;
  color: var(--osp-muted);
  font-size: 0.95rem;
}
.osp-d2-jd__events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.osp-d2-jd__banner {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}
.osp-d2-jd__banner img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--osp-radius);
}
.osp-d2-jd__banner span {
  display: grid;
  gap: 0.25rem;
}
.osp-d2-jd__banner strong {
  font-family: var(--osp-font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

body.osp-design-2 .osp-newsletter {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  background: var(--osp-cream);
  border-top: 1px solid var(--osp-border);
}

@media (max-width: 900px) {
  .osp-d2-hero { min-height: min(62vh, 520px); }
  .osp-d2-hero__caption {
    max-width: 100%;
    background: linear-gradient(180deg, transparent 20%, rgba(21, 40, 50, 0.82) 70%);
    padding-bottom: 4.5rem;
  }
  .osp-d2-path,
  .osp-d2-path--flip {
    grid-template-columns: 1fr;
  }
  .osp-d2-path--flip .osp-d2-path__media,
  .osp-d2-path--flip .osp-d2-path__body { order: initial; }
  .osp-d2-quote__inner,
  .osp-d2-video__inner,
  .osp-d2-jd__inner,
  .osp-d2-jd__events {
    grid-template-columns: 1fr;
  }
  .osp-d2-shelf__grid {
    grid-auto-columns: calc((100% - 1 * 1rem) / 2);
    gap: 1rem;
  }
  .osp-d2-shelf__head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .osp-d2-hero { min-height: min(56vh, 420px); }
  .osp-d2-shelf__grid { grid-auto-columns: minmax(9.5rem, 72%); }
}

/* —— Cinema page —— */
.osp-cinema-page {
  background: var(--osp-ivory);
}
.osp-cinema-page__banner {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: clamp(20rem, 42vw, 30rem);
  color: var(--osp-ivory);
  background: var(--osp-cinema-wash, #2a241c);
}
.osp-cinema-page__banner-layers,
.osp-cinema-page__banner-layer,
.osp-cinema-page__banner-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.osp-cinema-page__banner-layer {
  background-image: var(--osp-cinema-banner);
  background-position: var(--osp-cinema-banner-pos, right center);
  background-size: var(--osp-cinema-banner-size, 46% auto);
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.1s var(--osp-ease);
}
.osp-cinema-page__banner-layer.is-on { opacity: 1; }
.osp-cinema-page__banner-layer.has-bg {
  background-image: var(--osp-cinema-banner), var(--osp-cinema-banner-bg);
  background-size: var(--osp-cinema-banner-size, 42% auto), cover;
  background-position: var(--osp-cinema-banner-pos, right 22%), center;
}
.osp-cinema-page__banner-layer.is-scene {
  background-size: cover;
  background-position: var(--osp-cinema-banner-pos, center);
}
.osp-cinema-page__banner-shade {
  background:
    linear-gradient(90deg, rgba(20, 16, 12, 0.9) 0%, rgba(20, 16, 12, 0.68) 34%, rgba(20, 16, 12, 0.24) 62%, rgba(20, 16, 12, 0.1) 100%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.12) 0%, rgba(20, 16, 12, 0.28) 60%, rgba(20, 16, 12, 0.5) 100%);
  z-index: 1;
}
.osp-cinema-page__banner--soft .osp-cinema-page__banner-shade {
  background:
    linear-gradient(90deg, rgba(243, 235, 221, 0.96) 0%, rgba(243, 235, 221, 0.7) 42%, rgba(243, 235, 221, 0.18) 100%),
    linear-gradient(180deg, rgba(243, 235, 221, 0.2) 0%, rgba(243, 235, 221, 0.55) 100%);
}
.osp-cinema-page__banner--soft {
  color: var(--osp-charcoal);
}
.osp-cinema-page__banner--fade-more .osp-cinema-page__banner-shade {
  background:
    linear-gradient(90deg, rgba(20, 16, 12, 0.94) 0%, rgba(20, 16, 12, 0.7) 48%, rgba(20, 16, 12, 0.28) 100%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.2) 0%, rgba(20, 16, 12, 0.7) 100%);
}
.osp-cinema-page__head-inner {
  position: relative;
  z-index: 2;
  width: min(34rem, calc(100% - 2 * var(--osp-pad)));
  margin: 0 auto 0 var(--osp-pad);
  padding: clamp(2rem, 4.5vw, 3.25rem) 0 1rem;
}
.osp-cinema-page__banner .osp-label {
  color: inherit;
  opacity: 0.78;
}
.osp-cinema-page__banner h1 {
  margin: 0.35rem 0 0.85rem;
  color: var(--osp-ivory);
  font-family: var(--osp-font-display);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  text-wrap: balance;
}
.osp-cinema-page__banner--soft h1 {
  color: var(--osp-charcoal);
}
.osp-cinema-page__lede {
  margin: 0;
  max-width: 32rem;
  color: rgba(251, 248, 241, 0.92);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.55;
}
.osp-cinema-page__banner--soft .osp-cinema-page__lede {
  color: var(--osp-charcoal);
}
.osp-cinema-page__cats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  margin: 0;
  padding: 0.85rem var(--osp-pad) 1.15rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 16, 12, 0.22) 100%);
}
.osp-cinema-page__cats::-webkit-scrollbar { display: none; }
.osp-cinema-page__banner--soft .osp-cinema-page__cats {
  background: linear-gradient(180deg, transparent 0%, rgba(243, 235, 221, 0.55) 100%);
}
.osp-cinema-page__cat {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(251, 248, 241, 0.45);
  border-radius: 999px;
  color: var(--osp-ivory);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  background: rgba(20, 16, 12, 0.35);
  transition: background 0.2s var(--osp-ease), border-color 0.2s var(--osp-ease);
  white-space: nowrap;
}
.osp-cinema-page__banner--soft .osp-cinema-page__cat {
  border-color: rgba(37, 34, 30, 0.25);
  color: var(--osp-charcoal);
  background: rgba(255, 255, 255, 0.55);
}
.osp-cinema-page__cat:hover,
.osp-cinema-page__cat:focus-visible {
  background: rgba(251, 248, 241, 0.22);
  outline: none;
}
.osp-cinema-page__cat.is-current,
.osp-cinema-page__cat[aria-current="page"] {
  background: var(--osp-red);
  border-color: var(--osp-red);
  color: var(--osp-ivory);
}
.osp-cinema-page__cat--shop {
  border-color: var(--osp-sandalwood);
  background: rgba(193, 122, 50, 0.4);
}
.osp-cinema-page__frame-wrap {
  width: min(100% - 2 * var(--osp-pad), var(--osp-max));
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}
.osp-cinema-page__frame {
  display: block;
  width: 100%;
  min-height: 480px;
  height: 720px;
  border: 0;
  background: var(--osp-cream);
  border-radius: var(--osp-radius);
}

@media (max-width: 900px) {
  .osp-cinema-page__banner {
    min-height: 0;
  }
  .osp-cinema-page__banner--split-right .osp-cinema-page__banner-layer,
  .osp-cinema-page__banner-layer {
    background-size: cover;
    background-position: center 28%;
  }
  .osp-cinema-page__banner-shade {
    background:
      linear-gradient(180deg, rgba(20, 16, 12, 0.55) 0%, rgba(20, 16, 12, 0.88) 48%, rgba(20, 16, 12, 0.96) 100%);
  }
  .osp-cinema-page__banner--soft .osp-cinema-page__banner-shade {
    background:
      linear-gradient(180deg, rgba(243, 235, 221, 0.72) 0%, rgba(243, 235, 221, 0.94) 55%, rgba(243, 235, 221, 0.98) 100%);
  }
  .osp-cinema-page__banner h1 {
    text-shadow: 0 1px 12px rgba(20, 16, 12, 0.35);
  }
  .osp-cinema-page__banner--soft h1 {
    text-shadow: none;
  }
  .osp-cinema-page__head-inner {
    width: calc(100% - 2 * var(--osp-pad));
    margin-left: var(--osp-pad);
    padding-top: clamp(1.75rem, 6vw, 2.5rem);
    padding-bottom: 0.75rem;
  }
  .osp-cinema-page__cats {
    padding: 0.65rem var(--osp-pad) 1rem;
  }
  .osp-cinema-page__cat {
    min-height: 44px;
  }
  .osp-cinema-page__frame-wrap {
    width: 100%;
    padding: 0.75rem 0 2rem;
  }
  .osp-cinema-page__frame {
    min-height: 480px;
    height: 560px;
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  .osp-cinema-page__banner h1 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }
  .osp-cinema-page__lede {
    font-size: 0.95rem;
  }
}

/* Cart table — readable stack on phones */
@media (max-width: 768px) {
  .woocommerce table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid var(--osp-border);
    border-radius: var(--osp-radius);
    background: var(--osp-ivory);
    padding: 0.85rem 1rem;
  }
  .woocommerce table.shop_table_responsive thead,
  .woocommerce-page table.shop_table_responsive thead {
    display: none;
  }
  .woocommerce table.shop_table_responsive td,
  .woocommerce-page table.shop_table_responsive td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    border: 0 !important;
    padding: 0.45rem 0 !important;
    text-align: right;
  }
  .woocommerce table.shop_table_responsive td::before,
  .woocommerce-page table.shop_table_responsive td::before {
    content: attr(data-title);
    font-weight: 650;
    text-align: left;
    color: var(--osp-muted);
    flex: 0 0 auto;
  }
  .woocommerce table.shop_table_responsive td.product-remove,
  .woocommerce-page table.shop_table_responsive td.product-remove {
    justify-content: flex-end;
  }
  .woocommerce table.shop_table_responsive td.product-remove::before,
  .woocommerce-page table.shop_table_responsive td.product-remove::before {
    content: none;
  }
  .woocommerce table.shop_table_responsive .product-thumbnail img,
  .woocommerce-page table.shop_table_responsive .product-thumbnail img {
    width: 4.5rem;
    height: auto;
  }
  .woocommerce .quantity .qty {
    min-height: 44px;
    min-width: 3.25rem;
  }
}

/* —— Journal essays —— */
/* Collection landing pages (Ramana / Interviews template) */
.osp-collection__hero {
  margin-bottom: 2.25rem;
  max-width: 52rem;
}
.osp-collection__hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--osp-font-display, Georgia, serif);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
}
.osp-collection__subtitle {
  margin: 0;
  max-width: 46rem;
  color: var(--osp-charcoal, #2c2620);
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}
.osp-collection__section-head {
  margin: 0 0 1.5rem;
  max-width: 44rem;
}
.osp-collection__section-head h2 {
  margin: 0 0 0.45rem;
  font-family: var(--osp-font-display, Georgia, serif);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}
.osp-collection__section-head p {
  margin: 0;
  color: var(--osp-muted, #5c5348);
  line-height: 1.55;
}
.osp-collection__about {
  margin-bottom: 3.25rem;
}
.ch-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.osp-collection__about.ch-split {
  margin-top: 0.5rem;
}
.ch-portrait,
.osp-collection__portrait {
  margin: 0;
}
.osp-collection__portrait img,
.ch-portrait img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(40, 30, 20, 0.16);
}
@media (max-width: 760px) {
  .ch-split {
    grid-template-columns: 1fr;
  }
  .osp-collection__portrait,
  .ch-portrait {
    max-width: 22rem;
  }
}
.osp-collection__block {
  margin-bottom: 3.5rem;
}
.osp-collection__more-link {
  margin: 1.25rem 0 0;
}
/* Collection book boards — one-row bordered cards */
.osp-book-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.osp-book-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.osp-book-row--one {
  grid-template-columns: minmax(0, 28rem);
}
.osp-book-board {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid rgba(70, 55, 40, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(247, 239, 226, 0.78));
  box-shadow: 0 10px 28px rgba(45, 32, 18, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.osp-book-board:hover {
  border-color: rgba(120, 55, 40, 0.28);
  box-shadow: 0 16px 34px rgba(45, 32, 18, 0.1);
  transform: translateY(-2px);
}
.osp-book-board__cover {
  display: block;
  margin: 0 auto 1rem;
  width: min(100%, 10.5rem);
}
.osp-book-board__cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(40, 28, 16, 0.16);
}
.osp-book-board__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
  text-align: center;
}
.osp-book-board__title {
  margin: 0;
  font-family: var(--osp-font-display, Georgia, serif);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 550;
  line-height: 1.25;
}
.osp-book-board__title a {
  color: inherit;
  text-decoration: none;
}
.osp-book-board__title a:hover {
  color: var(--osp-red, #8b2d22);
}
.osp-book-board__text {
  margin: 0;
  color: var(--osp-muted, #5c5348);
  font-size: 0.94rem;
  line-height: 1.5;
}
.osp-book-board__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-top: auto;
  padding-top: 0.55rem;
}
.osp-book-board__price {
  font-weight: 650;
  color: var(--osp-charcoal, #2c2620);
}
.osp-book-board__price del {
  opacity: 0.55;
}
.osp-book-board__link {
  color: var(--osp-red, #8b2d22);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
.osp-book-board__link:hover {
  text-decoration: underline;
}
.osp-book-row--one .osp-book-board {
  flex-direction: row;
  align-items: center;
  gap: 1.35rem;
  text-align: left;
  padding: 1.25rem 1.4rem;
}
.osp-book-row--one .osp-book-board__cover {
  margin: 0;
  width: 8.5rem;
  flex: 0 0 auto;
}
.osp-book-row--one .osp-book-board__body {
  text-align: left;
}
.osp-book-row--one .osp-book-board__meta {
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .osp-book-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .osp-book-row--two,
  .osp-book-row--one {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .osp-book-row {
    grid-template-columns: 1fr;
  }
  .osp-book-row--one .osp-book-board {
    flex-direction: column;
    text-align: center;
  }
  .osp-book-row--one .osp-book-board__cover {
    margin: 0 auto;
  }
  .osp-book-row--one .osp-book-board__body,
  .osp-book-row--one .osp-book-board__meta {
    text-align: center;
    justify-content: center;
  }
}

.osp-journal {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.osp-journal__hero {
  max-width: 44rem;
  padding-bottom: 2rem;
}

.osp-journal__lede {
  margin: 0.85rem 0 0;
  max-width: 38rem;
  color: var(--osp-muted);
  font-size: 1.12rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.osp-journal__hero,
.osp-journal-aham__dialog-copy {
  min-width: 0;
}

.osp-journal__hero .osp-cta-group {
  margin-top: 1.5rem;
}

.osp-journal__hero .osp-label a {
  color: inherit;
  text-decoration: none;
}

.osp-journal__hero .osp-label a:hover {
  color: var(--osp-red-dark);
  text-decoration: underline;
}

.osp-journal-cards {
  list-style: none;
  margin: 0;
  padding: 0 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.osp-journal-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  color: inherit;
  text-decoration: none;
  background: var(--osp-cream);
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
  overflow: hidden;
  transition: transform 0.35s var(--osp-ease), border-color 0.35s var(--osp-ease);
}

.osp-journal-card:hover {
  transform: translateY(-3px);
  border-color: var(--osp-bronze);
  color: inherit;
}

.osp-journal-card__media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--osp-sandalwood);
}

.osp-journal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--osp-ease);
}

.osp-journal-card:hover .osp-journal-card__media img {
  transform: scale(1.03);
}

.osp-journal-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.4rem 1.5rem;
}

.osp-journal-card__body h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
}

.osp-journal-card__body p {
  margin: 0.35rem 0 0;
  color: var(--osp-muted);
  font-size: 0.98rem;
}

.osp-journal-card__more {
  margin-top: auto;
  padding-top: 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--osp-red);
}

.osp-journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 18rem);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(2.75rem, 5.5vw, 4.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.1rem, 2.5vw, 1.75rem);
  background: color-mix(in srgb, var(--osp-ivory) 88%, #fff);
  border: 1px solid color-mix(in srgb, var(--osp-border) 55%, transparent);
  border-radius: var(--osp-radius);
}

.osp-journal-prose {
  max-width: none;
  padding-bottom: 0;
}

.osp-journal-figure {
  margin: 0 0 1.75rem;
  border-radius: var(--osp-radius);
  overflow: hidden;
  background: var(--osp-sandalwood);
}

.osp-journal-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.osp-journal-attribution {
  color: var(--osp-muted);
  font-style: italic;
}

.osp-journal-pull {
  margin: 1.75rem 0;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--osp-red);
  background: rgba(139, 45, 34, 0.05);
}

.osp-journal-pull p {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.35;
}

.osp-journal-pull footer {
  margin-top: 0.75rem;
  color: var(--osp-muted);
  font-size: 0.92rem;
}

.osp-journal-volumes,
.osp-journal-interview-list {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.osp-journal-volumes li,
.osp-journal-interview-list li {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  background: var(--osp-cream);
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
}

.osp-journal-volumes li span,
.osp-journal-interview-list li span {
  color: var(--osp-muted);
  font-size: 0.95rem;
}

.osp-journal-volumes li a {
  font-size: 0.9rem;
  font-weight: 600;
}

.osp-journal-volumes--covers {
  gap: 1.15rem;
}

.osp-journal-volume {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
}

.osp-journal-volume__preview {
  display: grid;
  grid-template-columns: 6.75rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.osp-journal-volume__preview:focus-visible {
  outline: 2px solid var(--osp-red);
  outline-offset: 3px;
  border-radius: 4px;
}

.osp-journal-volume__cover {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--osp-sandalwood);
  box-shadow: 0 8px 22px rgba(37, 34, 30, 0.14);
}

.osp-journal-volume__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s var(--osp-ease);
}

.osp-journal-volume__preview:hover .osp-journal-volume__cover img {
  transform: scale(1.03);
}

.osp-journal-volume__body {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.osp-journal-volume__body strong {
  font-family: var(--osp-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--osp-charcoal);
}

.osp-journal-volume__hint {
  color: var(--osp-red) !important;
  font-size: 0.86rem !important;
  font-weight: 600;
}

.osp-journal-volume__shop {
  justify-self: start;
  margin-left: calc(5.75rem + 1rem);
}

body.osp-book-preview-open {
  overflow: hidden;
}

.osp-book-preview {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: stretch;
  padding: 0;
  background: rgba(20, 16, 12, 0.72);
}

.osp-book-preview[hidden] {
  display: none !important;
}

.osp-book-preview__panel {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  background: #111;
}

.osp-book-preview__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  min-height: 44px;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(251, 248, 241, 0.35);
  border-radius: 999px;
  background: rgba(20, 16, 12, 0.72);
  color: var(--osp-ivory);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.osp-book-preview__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111;
}

@media (max-width: 600px) {
  .osp-journal-volume__preview {
    grid-template-columns: 5.75rem minmax(0, 1fr);
    gap: 0.85rem;
  }
  .osp-journal-volume__shop {
    margin-left: 0;
  }
}

.osp-journal-aside__card {
  position: sticky;
  top: calc(var(--osp-header-h) + var(--osp-announce-h) + 1rem);
  padding: 1.35rem 1.4rem;
  background: var(--osp-cream);
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
}

.osp-journal-aside__card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
}

.osp-journal-aside__card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.osp-journal-aside__card li {
  margin: 0 0 0.4rem;
}

.osp-journal-aside__card hr {
  border: 0;
  border-top: 1px solid var(--osp-border);
  margin: 1.25rem 0;
}

.osp-journal-aside__card .ch-btn {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  font-size: 0.88rem;
}

.osp-journal-reviews {
  margin-top: clamp(2.75rem, 5.5vw, 4.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.2rem, 2.8vw, 2rem);
  background: color-mix(in srgb, var(--osp-cream) 65%, #fff);
  border: 1px solid color-mix(in srgb, var(--osp-border) 70%, transparent);
  border-radius: var(--osp-radius);
  border-top: 1px solid color-mix(in srgb, var(--osp-border) 70%, transparent);
}

.osp-journal-reviews__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.osp-journal-review {
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: var(--osp-ivory);
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
}

.osp-journal-review blockquote {
  margin: 0;
}

.osp-journal-review p {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: 1.12rem;
  line-height: 1.4;
}

.osp-journal-review footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.osp-journal-review__portrait {
  flex: 0 0 auto;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--osp-cream);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 2px 10px rgba(37, 34, 30, 0.12);
}

.osp-journal-review__byline {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.osp-journal-review cite {
  font-style: normal;
  font-weight: 650;
  font-size: 0.95rem;
}

.osp-journal-review footer span {
  color: var(--osp-muted);
  font-size: 0.85rem;
}

.osp-journal-footer-cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, var(--osp-cream), var(--osp-sandalwood));
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
}

.osp-journal-footer-cta h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
}

.osp-journal-footer-cta p {
  margin: 0;
  max-width: 36rem;
  color: var(--osp-muted);
}

@media (max-width: 900px) {
  .osp-journal-cards,
  .osp-journal-layout,
  .osp-journal-reviews__grid {
    grid-template-columns: 1fr;
  }

  .osp-journal-aside__card {
    position: static;
  }
}

@media (max-width: 600px) {
  .osp-journal-card__body {
    padding: 1.15rem 1.15rem 1.25rem;
  }
}

/* —— Aham Sphurana dialog page —— */
.osp-journal-aham__hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(18rem, 32vw, 26rem);
  display: flex;
  align-items: center;
  margin: 0 0 2rem;
  padding: clamp(2.75rem, 5.5vw, 4.25rem) 0;
  background: var(--osp-paper, var(--osp-ivory));
}
.osp-journal-aham__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 100% center;
  pointer-events: none;
  user-select: none;
}
.osp-journal-aham__hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2 * var(--osp-pad), var(--osp-content));
  margin-inline: auto;
  padding-inline: var(--osp-pad);
  min-width: 0;
}
.osp-journal-aham__hero-copy {
  max-width: 28rem;
  margin-right: auto;
}
.osp-journal-aham__hero-copy h1 {
  margin: 0.35rem 0 0;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.75rem, 5.5vw, 4.15rem);
  line-height: 1.05;
  text-wrap: balance;
}
.osp-journal-aham__hero-copy .osp-journal__lede {
  margin-top: 0.85rem;
  max-width: 34ch;
}
.osp-journal-aham__hero-copy .osp-cta-group {
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.osp-journal-aham__hero-copy .osp-label a {
  color: inherit;
  text-decoration: none;
}
.osp-journal-aham__hero-copy .osp-label a:hover {
  color: var(--osp-red-dark);
  text-decoration: underline;
}

.osp-journal-aham__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  align-items: center;
  margin: 0 0 1.5rem;
  padding: 0.15rem 0 0.85rem;
  border-bottom: 1px solid var(--osp-border);
  font-size: 0.92rem;
}

.osp-journal-aham__lang {
  color: var(--osp-muted, #6a635c);
  text-decoration: none;
  font-weight: 500;
}

.osp-journal-aham__lang:hover {
  color: var(--osp-charcoal);
  text-decoration: underline;
}

.osp-journal-aham__lang.is-current {
  color: var(--osp-charcoal);
  font-weight: 700;
  text-decoration: none;
  pointer-events: none;
}

.osp-journal-aham__translate-note {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1.05rem;
  background: color-mix(in srgb, var(--osp-cream) 70%, white);
  border-left: 3px solid var(--osp-red);
  color: var(--osp-charcoal);
  font-size: 0.98rem;
  line-height: 1.55;
}

.osp-journal-volume__preview--static {
  display: grid;
  grid-template-columns: 5.75rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
}

.osp-journal-volume__shop--soon {
  color: var(--osp-muted, #6a635c);
  font-size: 0.92rem;
  font-weight: 600;
  pointer-events: none;
}

.osp-journal-volume.is-unavailable .osp-journal-volume__cover {
  opacity: 0.72;
}

.osp-journal-aham__opener {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
  margin: 0 0 clamp(2.25rem, 5vw, 3.5rem);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  background: var(--osp-cream);
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
}

.osp-journal-aham__opener-media {
  margin: 0;
  border-radius: calc(var(--osp-radius) - 2px);
  overflow: hidden;
  background: var(--osp-sandalwood);
  min-height: 100%;
}

.osp-journal-aham__opener-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  object-position: 28% center;
}

.osp-journal-aham__opener-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.osp-journal-aham__opener-copy h2 {
  margin: 0 0 1.15rem;
  color: var(--osp-red);
  font-family: var(--osp-font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: left;
  line-height: 1.25;
}

.osp-journal-aham__opener-copy blockquote {
  margin: 0;
}

.osp-journal-aham__opener-copy blockquote p {
  margin: 0 0 0.85rem;
  color: var(--osp-charcoal);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  font-style: italic;
  line-height: 1.55;
}

.osp-journal-aham__opener-copy blockquote p:last-of-type {
  margin-bottom: 1.1rem;
}

.osp-journal-aham__opener-copy footer {
  margin: 0;
  color: var(--osp-charcoal);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

.osp-journal-aham__dialog {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--osp-cream);
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
}

.osp-journal-aham__dialog-copy h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
}

.osp-journal-aham__dialog-copy p {
  margin: 0;
  color: var(--osp-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
}

.osp-journal-aham__player {
  width: 100%;
  border-radius: calc(var(--osp-radius) - 2px);
}

.osp-journal-aham__player .osp-video__play {
  inset: auto auto 0.9rem 0.9rem;
  margin: 0;
}

.osp-journal-aham__player .osp-video__facade:hover .osp-video__play {
  transform: scale(1.04);
}

.osp-journal-aham__beats {
  margin: 0 0 clamp(2.75rem, 5.5vw, 4.5rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.2rem, 2.8vw, 2rem);
  background: color-mix(in srgb, var(--osp-cream) 78%, #fff);
  border: 1px solid color-mix(in srgb, var(--osp-border) 70%, transparent);
  border-radius: var(--osp-radius);
}

.osp-journal-aham__beats-head {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.osp-journal-aham__beats-head h2 {
  margin: 0.35rem 0 0.65rem;
}

.osp-journal-aham__beats-head p {
  margin: 0;
  color: var(--osp-muted);
}

.osp-journal-aham__beat-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.osp-journal-aham__beat {
  margin: 0;
  padding: 1.35rem 1.4rem 1.45rem;
  background: var(--osp-ivory);
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
  border-top: 3px solid var(--osp-sandalwood);
  transition: border-color 0.35s var(--osp-ease), transform 0.35s var(--osp-ease);
}

.osp-journal-aham__beat:hover {
  border-top-color: var(--osp-red);
  transform: translateY(-2px);
}

.osp-journal-aham__beat h3 {
  margin: 0 0 0.55rem;
  font-family: var(--osp-font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--osp-charcoal);
}

.osp-journal-aham__beat p {
  margin: 0;
  color: var(--osp-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.osp-journal-aham__beat--with-media {
  display: grid;
  grid-template-columns: minmax(5.5rem, 32%) minmax(0, 1fr);
  gap: 0.95rem 1.1rem;
  align-items: start;
}

.osp-journal-aham__beat-media {
  margin: 0;
  border-radius: calc(var(--osp-radius) - 2px);
  overflow: hidden;
  background: var(--osp-sand);
  aspect-ratio: 1;
}

.osp-journal-aham__beat-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.osp-journal-aham__beat-body {
  min-width: 0;
}

.osp-journal-aham__beat-body h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

.osp-journal-aham__beat-body p {
  font-size: 0.92rem;
  line-height: 1.5;
}

.osp-journal-aham__pull {
  margin: 0 0 clamp(2.75rem, 5.5vw, 4.5rem);
}

.osp-journal-aham__author {
  margin-top: clamp(2.75rem, 5.5vw, 4.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.2rem, 2.8vw, 2rem);
  background: color-mix(in srgb, var(--osp-cream) 78%, #fff);
  border: 1px solid color-mix(in srgb, var(--osp-border) 70%, transparent);
  border-radius: var(--osp-radius);
}

.osp-journal-aham__author-role {
  margin: -0.35rem 0 1.25rem;
  color: var(--osp-muted);
  font-size: 1.05rem;
  font-style: italic;
}

.osp-journal-aham__gajapathi-photo {
  background: #1a1612;
}

.osp-journal-aham__gajapathi-photo img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.osp-journal-aham__gajapathi-photo figcaption {
  margin: 0;
  padding: 0.95rem 1.05rem 1.1rem;
  background: var(--osp-ivory, #fbf8f1);
  color: var(--osp-muted);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.5;
}

.osp-journal-aham__retreat {
  margin: clamp(2.75rem, 5.5vw, 4.5rem) 0;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.2rem, 2.8vw, 2rem);
  background: color-mix(in srgb, var(--osp-cream) 78%, #fff);
  border: 1px solid color-mix(in srgb, var(--osp-border) 70%, transparent);
  border-radius: var(--osp-radius);
}

.osp-journal-aham__retreat-intro {
  margin: 0 0 1.35rem;
  max-width: 40rem;
}

.osp-journal-aham__retreat-intro h2 {
  margin: 0 0 0.65rem;
  font-family: var(--osp-font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  font-weight: 600;
  color: var(--osp-charcoal);
}

.osp-journal-aham__retreat-intro p:last-child {
  margin: 0;
  color: var(--osp-muted);
  line-height: 1.6;
}

.osp-journal-aham__retreat-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 0;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  background: var(--osp-ivory);
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
  overflow: hidden;
  transition: border-color 0.35s var(--osp-ease), transform 0.35s var(--osp-ease);
}

.osp-journal-aham__retreat-card:hover,
.osp-journal-aham__retreat-card:focus-visible {
  border-color: var(--osp-sandalwood);
  transform: translateY(-2px);
}

.osp-journal-aham__retreat-media {
  margin: 0;
  min-height: 100%;
  background: var(--osp-sand);
}

.osp-journal-aham__retreat-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.osp-journal-aham__retreat-body {
  padding: clamp(1.25rem, 2.5vw, 1.85rem) clamp(1.2rem, 2.4vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.osp-journal-aham__retreat-body h3 {
  margin: 0;
  font-family: var(--osp-font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: var(--osp-charcoal);
}

.osp-journal-aham__retreat-meta {
  margin: 0 0 0.35rem;
  color: var(--osp-charcoal);
  font-size: 0.98rem;
}

.osp-journal-aham__retreat-body > p:not(.osp-label):not(.osp-journal-aham__retreat-meta) {
  margin: 0 0 0.55rem;
  color: var(--osp-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.osp-journal-aham__retreat-body .osp-text-link {
  margin-top: 0.15rem;
}

@media (max-width: 720px) {
  .osp-journal-aham__retreat-card {
    grid-template-columns: 1fr;
  }

  .osp-journal-aham__retreat-media img {
    aspect-ratio: 16 / 10;
  }
}

.osp-journal-aham__author h3 {
  margin: 2rem 0 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

.osp-journal-aham__excerpt {
  margin: 1.25rem 0 1.5rem;
  padding: 1.15rem 1.25rem;
  border-left: 3px solid var(--osp-sandalwood);
  background: rgba(193, 122, 50, 0.08);
}

.osp-journal-aham__excerpt p {
  margin: 0 0 0.75rem;
  font-family: var(--osp-font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.4;
}

.osp-journal-aham__excerpt-reply {
  font-family: var(--osp-font-body) !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
  color: var(--osp-charcoal);
}

.osp-journal-aham__excerpt footer {
  margin: 0;
  color: var(--osp-muted);
  font-size: 0.88rem;
  font-style: normal;
}

/* Only hide for reveal when JS is active — never leave content blank. */
html.osp-js .osp-journal-aham [data-osp-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s var(--osp-ease),
    transform 0.7s var(--osp-ease);
  transition-delay: var(--osp-reveal-delay, 0ms);
}

html.osp-js .osp-journal-aham [data-osp-reveal].is-inview {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .osp-journal-aham__hero {
    min-height: clamp(16rem, 58vw, 22rem);
    margin-bottom: 1.25rem;
    padding: 1.75rem 0 2rem;
  }

  .osp-journal-aham__hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
      105deg,
      rgba(243, 235, 221, 0.96) 0%,
      rgba(243, 235, 221, 0.88) 38%,
      rgba(243, 235, 221, 0.45) 62%,
      rgba(243, 235, 221, 0.12) 100%
    );
  }

  .osp-journal-aham__hero-bg {
    object-fit: cover;
    object-position: 78% center;
  }

  .osp-journal-aham__hero-inner {
    width: min(100% - 2 * var(--osp-pad), var(--osp-content));
    padding-inline: 0;
  }

  .osp-journal-aham__hero-copy {
    max-width: none;
    position: relative;
    z-index: 1;
  }

  .osp-journal-aham__hero-copy h1 {
    white-space: normal;
    font-size: clamp(2.2rem, 9.5vw, 3.15rem);
    line-height: 1.08;
  }

  .osp-journal-aham__hero-copy .osp-journal__lede {
    max-width: none;
    font-size: 1.02rem;
  }

  .osp-journal-aham__hero-copy .osp-cta-group {
    margin-top: 1.15rem;
    gap: 0.65rem;
  }

  .osp-journal-aham__opener {
    grid-template-columns: 1fr;
    padding: 0.85rem;
    margin-bottom: 1.5rem;
    gap: 0.95rem;
  }

  .osp-journal-aham__opener-media img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .osp-journal-aham__opener-copy h2 {
    font-size: clamp(1.2rem, 4.8vw, 1.45rem);
    letter-spacing: 0.01em;
    margin-bottom: 0.85rem;
  }

  .osp-journal-aham__dialog {
    grid-template-columns: 1fr;
    padding: 1.1rem;
    margin-bottom: 1.5rem;
    gap: 1.1rem;
  }

  .osp-journal-aham__beats {
    padding: 1.15rem 0.95rem 1.25rem;
    margin-bottom: 1.5rem;
  }

  .osp-journal-aham__beats-head {
    margin-bottom: 1.1rem;
  }

  .osp-journal-aham__beat-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .osp-journal-aham__beat {
    padding: 0.95rem 1rem 1.05rem;
  }

  .osp-journal-aham__beat--with-media {
    grid-template-columns: 4.75rem minmax(0, 1fr);
    gap: 0.75rem 0.85rem;
    align-items: start;
  }

  .osp-journal-aham__beat-media {
    max-width: none;
  }

  .osp-journal-aham__beat-body h3 {
    font-size: 1.15rem;
  }

  .osp-journal-aham__beat-body p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .osp-journal-aham__pull {
    margin-bottom: 1.5rem;
    padding: 1rem 1.05rem;
  }

  .osp-journal-layout {
    margin-bottom: 1.5rem;
    padding: 1.1rem 0.95rem;
    gap: 1.25rem;
  }

  .osp-journal-aham__author {
    margin-top: 1.75rem;
    margin-bottom: 1.15rem;
    padding: 1.15rem 0.95rem 1.25rem;
  }

  .osp-journal-aham__excerpt {
    margin: 1rem 0 1.15rem;
    padding: 0.95rem 1rem;
  }

  .osp-journal-reviews {
    margin-top: 1.5rem;
    margin-bottom: 1.15rem;
    padding: 1.15rem 0.95rem 1.25rem;
  }

  .osp-journal-reviews__grid {
    gap: 0.85rem;
  }

  .osp-journal-review {
    padding: 1.05rem 1.1rem;
  }

  .osp-journal-aham__retreat {
    margin: 1.5rem 0;
    padding: 1.15rem 0.95rem 1.25rem;
  }

  .osp-journal-aham__retreat-intro {
    margin-bottom: 1rem;
  }

  .osp-journal-aham__retreat-card {
    grid-template-columns: 1fr;
  }

  .osp-journal-aham__retreat-media img {
    aspect-ratio: 16 / 10;
  }

  .osp-journal-aham__retreat-body {
    padding: 1.1rem 1.05rem 1.2rem;
  }

  .osp-journal-footer-cta {
    margin-top: 1.5rem;
    padding: 1.25rem 1.1rem 1.4rem;
  }

  .osp-journal-volume__shop {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .osp-journal-aham__beat--with-media {
    grid-template-columns: 4.25rem minmax(0, 1fr);
    gap: 0.7rem 0.75rem;
  }

  .osp-journal-aham__hero-copy h1 {
    font-size: clamp(2.05rem, 10vw, 2.65rem);
  }

  .osp-journal-aham__gajapathi-photo figcaption {
    font-size: 0.86rem;
    padding: 0.8rem 0.9rem 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.osp-js .osp-journal-aham [data-osp-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .osp-journal-aham__beat:hover {
    transform: none;
  }
}

/* —— Clean single product (PDP fallback) —— */
.osp-pdp {
  max-width: 58rem;
  margin: 0 auto;
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
}
.osp-pdp__crumb {
  margin: 0 0 1.5rem;
  color: var(--osp-muted);
  font-size: 0.9rem;
}
.osp-pdp__crumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}
.osp-pdp__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.osp-pdp__cover {
  margin: 0;
  background: var(--osp-cream);
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
  overflow: hidden;
}
.osp-pdp__cover img {
  display: block;
  width: 100%;
  height: auto;
}
.osp-pdp__title {
  margin: 0 0 0.65rem;
  font-family: var(--osp-font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  font-weight: 500;
  line-height: 1.15;
}
.osp-pdp__price {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 650;
  color: var(--osp-red);
}
.osp-pdp__blurb {
  margin: 0 0 1.25rem;
  color: var(--osp-charcoal);
  line-height: 1.55;
}
.osp-pdp__blurb p { margin: 0 0 0.75rem; }
.osp-pdp__blurb p:last-child { margin-bottom: 0; }
.osp-pdp__actions {
  display: grid;
  gap: 0.85rem;
}
.osp-pdp__actions .cart,
.osp-pdp__actions form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
}
.osp-pdp__actions .single_add_to_cart_button,
.osp-pdp__actions .button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--osp-red);
  color: #fff;
  font: inherit;
  font-weight: 650;
  min-height: 2.75rem;
  padding: 0.65rem 1.25rem;
  cursor: pointer;
}
.osp-pdp__actions .single_add_to_cart_button:hover {
  background: var(--osp-red-dark, #6f211a);
}
.osp-pdp__ebook {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: var(--osp-red);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  cursor: pointer;
  text-align: left;
}
.osp-pdp__section {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
  padding-top: clamp(1.35rem, 3vw, 1.85rem);
  border-top: 1px solid var(--osp-border);
}
.osp-pdp__section h2 {
  margin: 0 0 1rem;
  font-family: var(--osp-font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 500;
}
.osp-pdp__prose {
  color: var(--osp-charcoal);
  line-height: 1.65;
  max-width: 42rem;
}
.osp-pdp__prose p:first-child { margin-top: 0; }
.osp-pdp__muted { color: var(--osp-muted); margin: 0; }
.osp-pdp__review-summary {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.osp-pdp__stars {
  color: var(--osp-saffron);
  letter-spacing: 0.04em;
}
.osp-pdp__review-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.osp-pdp__review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  margin-bottom: 0.35rem;
}
.osp-pdp__review-body {
  color: var(--osp-charcoal);
  line-height: 1.55;
}
.osp-pdp__meta {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.osp-pdp__meta-row {
  display: grid;
  grid-template-columns: minmax(7rem, 11rem) minmax(0, 1fr);
  gap: 0.75rem 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(217, 204, 184, 0.55);
}
.osp-pdp__meta-row dt {
  margin: 0;
  color: var(--osp-muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.osp-pdp__meta-row dd {
  margin: 0;
  color: var(--osp-charcoal);
}
.osp-pdp__related {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.osp-pdp__related-hit {
  appearance: none;
  border: 1px solid var(--osp-border);
  border-radius: var(--osp-radius);
  background: var(--osp-ivory);
  padding: 0.75rem;
  width: 100%;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  display: grid;
  gap: 0.45rem;
  transition: border-color 0.2s var(--osp-ease), transform 0.2s var(--osp-ease);
}
.osp-pdp__related-hit:hover {
  border-color: rgba(139, 45, 34, 0.35);
  transform: translateY(-2px);
}
.osp-pdp__related-media {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--osp-cream);
  border-radius: calc(var(--osp-radius) - 2px);
}
.osp-pdp__related-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.osp-pdp__related-name {
  font-family: var(--osp-font-display);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.25;
}
.osp-pdp__related-price {
  color: var(--osp-red);
  font-size: 0.92rem;
  font-weight: 650;
}
@media (max-width: 900px) {
  .osp-pdp__hero {
    grid-template-columns: 1fr;
  }
  .osp-pdp__cover { max-width: 18rem; }
  .osp-pdp__related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .osp-pdp__meta-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .osp-pdp__related {
    grid-template-columns: 1fr 1fr;
  }
}

.osp-collection__feature-media,
.osp-collection__feature-title-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
}
.osp-collection__feature-title-btn:hover { color: var(--osp-red); }
button.ch-btn { font: inherit; }
