/* Renéra · Homepage redesign
   rn-* component layer. @import removed — design-system.css is globally enqueued at priority 5.
   --------------------------------------------------------------------------- */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* =========================================
   Footer links + meta + social (Discovery / Contact us / Follow us)
   ========================================= */
.rn-foot-link {
  font-size: 14px; color: rgba(246,238,232,0.85); line-height: 1.5;
  text-decoration: none; width: fit-content;
  border-bottom: 1px solid transparent;
  transition: color var(--renera-dur-fast) var(--renera-ease),
              border-color var(--renera-dur-fast) var(--renera-ease);
}
.rn-foot-link:hover {
  color: var(--renera-sand-100);
  border-bottom-color: rgba(246,238,232,0.4);
}
.rn-foot-meta {
  font-family: var(--renera-font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(246,238,232,0.5);
}
.rn-foot-social {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(246,238,232,0.85);
  text-decoration: none; line-height: 1.3;
  transition: color var(--renera-dur-fast) var(--renera-ease);
}
.rn-foot-social:hover { color: var(--renera-sand-100); }

/* =========================================
   Amazon button (header pill + footer outline badge)
   ========================================= */
.rn-amzn {
  display: inline-flex; align-items: center;
  padding: 11px 22px 13px; border-radius: 999px;
  background: var(--renera-olive-700);
  border: 1px solid var(--renera-olive-700);
  text-decoration: none; white-space: nowrap;
  transition: background var(--renera-dur-fast) var(--renera-ease);
}
.rn-amzn:hover { background: var(--renera-olive-800); }
.rn-amzn--sm { padding: 8px 16px 9px; }
.rn-amzn--sm .rn-amzn__word { font-size: 15px; }
.rn-amzn--sm .rn-amzn__smile { bottom: -4px; height: 7px; }
.rn-amzn--footer {
  margin-top: 4px;
  background: transparent;
  border-color: rgba(246,238,232,0.6);
  padding: 11px 22px 13px;
  transition: background var(--renera-dur-fast) var(--renera-ease),
              border-color var(--renera-dur-fast) var(--renera-ease);
}
.rn-amzn--footer .rn-amzn__word { color: var(--renera-sand-200); font-size: 18px; transition: color var(--renera-dur-fast) var(--renera-ease); }
.rn-amzn--footer:hover { background: var(--renera-sand-200); border-color: var(--renera-sand-200); }
.rn-amzn--footer:hover .rn-amzn__word { color: var(--renera-olive-800); }
.rn-amzn__mark { position: relative; display: inline-block; color: var(--renera-sand-200); }
.rn-amzn__word {
  font-family: var(--renera-font-serif); font-weight: 600;
  font-size: 18px; line-height: 1; letter-spacing: -0.01em;
  color: var(--renera-sand-200);
}
.rn-amzn__smile {
  position: absolute; left: 1px; right: 1px; bottom: -5px;
  width: calc(100% - 2px); height: 8px;
  color: var(--renera-amazon-smile);
}

/* =========================================
   Footer warnings block (elevated visibility)
   ========================================= */
.rn-warnings {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 26px; margin: 8px 0 40px;
  background: rgba(246,238,232,0.06);
  border: 1px solid rgba(246,238,232,0.16);
  border-left: 3px solid var(--renera-clay-500);
  border-radius: var(--renera-r-md);
}
.rn-warnings__label {
  flex: none;
  font-family: var(--renera-font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--renera-clay-500);
  padding-top: 2px;
}
.rn-warnings__body {
  margin: 0; font-size: 13.5px; line-height: 1.7;
  color: rgba(246,238,232,0.82); max-width: 920px;
}
.rn-warnings__body strong {
  color: var(--renera-sand-100);
  font-weight: 500; letter-spacing: 0.04em;
}

/* =========================================
   Containers
   ========================================= */
.container       { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-mid   { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
.container-narrow{ max-width: 760px;  margin: 0 auto; padding: 0 40px; }

/* Eyebrow (.rn-eyebrow*) moved to components.css (P2 #4). */

/* =========================================
   Display headline (Recoleta)
   ========================================= */
.rn-h-display {
  font-family: var(--renera-font-serif); font-weight: 400;
  letter-spacing: -0.015em; line-height: 1.04;
  color: var(--renera-ink); margin: 0;
  text-wrap: balance;
}
.rn-h-display em { color: var(--renera-olive-700); font-style: italic; }
.rn-h-display--invert       { color: var(--renera-sand-200); }
.rn-h-display--invert em    { color: var(--renera-olive-300); }

.rn-h-1 { font-size: 92px; line-height: 1.02; }
.rn-h-2 { font-size: 56px; line-height: 1.05; }
.rn-h-3 { font-size: 40px; line-height: 1.1; }
.rn-h-4 { font-size: 28px; line-height: 1.18; }

/* =========================================
   Lead
   ========================================= */
.rn-lead {
  font-family: var(--renera-font-sans);
  font-size: 16px; line-height: 1.75;
  color: var(--renera-mute);
  margin: 0;
}
.rn-lead--invert { color: rgba(246,238,232,0.75); }

.rn-lead-italic {
  font-family: var(--renera-font-serif); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.45; letter-spacing: -0.005em;
  color: var(--renera-olive-700); margin: 0;
  text-wrap: balance;
}

/* Wordmark */
.rn-wordmark {
  font-family: var(--renera-font-serif-alt); font-weight: 400;
  font-size: 30px; letter-spacing: -0.02em;
  color: var(--renera-olive-700);
  line-height: 1; text-decoration: none;
  display: inline-flex; align-items: center;
}
/* Inline brand logo (renera-primary.svg) — inherits currentColor, sized to the wordmark font */
.rn-wordmark__svg { height: 0.82em; width: auto; display: block; }

/* Buttons (.rn-btn*) and mono links (.rn-link-mono*) moved to components.css (P2 #4)
   — they're shared primitives, now defined once and enqueued globally. */

/* =========================================
   Confirm-note callout
   ========================================= */
.rn-confirm-note {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--renera-sand-200);
  border: 1px solid var(--renera-clay-200);
  border-left: 2px solid var(--renera-olive-500);
  border-radius: var(--renera-r-sm);
  font-family: var(--renera-font-sans);
  font-size: 13px; line-height: 1.55; color: var(--renera-ink);
}
.rn-confirm-dot {
  flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%;
  background: var(--renera-olive-500);
  box-shadow: 0 0 0 4px rgba(91,126,80,0.15);
}

/* Trust strip */
.rn-trust-row {
  display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center; margin-top: 36px;
}
.rn-trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--renera-font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--renera-mute);
}
.rn-trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--renera-olive-500);
  box-shadow: 0 0 0 4px rgba(91,126,80,0.15);
}

/* =========================================
   Pane editorial blocks
   ========================================= */
.rn-pane-quote {
  font-family: var(--renera-font-serif); font-style: italic; font-weight: 400;
  font-size: 44px; line-height: 1.08; letter-spacing: -0.012em;
  color: var(--renera-sand-200); margin: 0; text-wrap: balance; max-width: 480px;
}
.rn-pane-attribution {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--renera-font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(246,238,232,0.7);
}
.rn-pane-attribution::before {
  content: ""; width: 36px; height: 1px; background: currentColor; opacity: 0.5;
}

/* Numbered perks list */
.rn-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.rn-perks li { display: flex; align-items: flex-start; gap: 14px; font-family: var(--renera-font-sans); font-size: 14px; line-height: 1.6; }
.rn-perk-num { flex: 0 0 auto; font-family: var(--renera-font-mono); font-size: 10px; letter-spacing: 0.18em; margin-top: 4px; min-width: 24px; }
.rn-perks--invert li          { color: rgba(246,238,232,0.88); }
.rn-perks--invert .rn-perk-num { color: rgba(246,238,232,0.55); }

/* =========================================
   Botanical wash backgrounds
   Paths relative to assets/css/ → ../images/decor/
   ========================================= */
.rn-botanical-wash {
  position: absolute; inset: 0;
  background-image: url('../images/decor/botanical-set-2.svg');
  background-size: 120%; background-position: -60px -40px;
  background-repeat: no-repeat;
  opacity: 0.06; pointer-events: none;
}
.rn-botanical-wash--right { background-position: top right; background-size: 70%; }
.rn-botanical-wash--invert {
  background-image: url('../images/decor/botanical-set-1.svg');
  opacity: 0.12; filter: brightness(2.5) saturate(0.3);
}

/* Baroque corner ornament */
.rn-baroque-corner { position: absolute; top: 40px; right: 40px; width: 64px; height: 64px; opacity: 0.5; z-index: 2; }
.rn-baroque-corner--invert { filter: brightness(2.5) saturate(0.3); }

/* =========================================
   Hairline dividers
   ========================================= */
.rn-hair { display: block; height: 1px; background: var(--renera-clay-300); border: 0; width: 100%; }
.rn-hair--center { width: 56px; margin: 28px auto; }
.rn-hair--invert { background: rgba(246,238,232,0.2); }

/* Cards (.rn-card*) moved to components.css (P2 #4). */

/* =========================================
   Personality chips
   ========================================= */
.rn-chip {
  display: inline-flex; align-items: center; padding: 8px 16px;
  border-radius: var(--renera-r-pill);
  font-family: var(--renera-font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.rn-chip--olive   { background: var(--renera-olive-700); color: var(--renera-sand-200); }
.rn-chip--clay    { background: var(--renera-clay-500); color: var(--renera-olive-900); }
.rn-chip--sky     { background: var(--renera-sky-500); color: var(--renera-sky-700); }
.rn-chip--outline { background: transparent; color: var(--renera-olive-700); border: 1px solid var(--renera-clay-300); }

/* =========================================
   Form fields (hairline)
   ========================================= */
.rn-field { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.rn-field-label { font-family: var(--renera-font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--renera-mute); }
.rn-field-control { position: relative; display: flex; align-items: center; border-bottom: 1px solid var(--renera-clay-300); transition: border-color var(--renera-dur-fast) var(--renera-ease); }
.rn-field-control:focus-within { border-bottom-color: var(--renera-olive-700); }
.rn-field-control .rn-lead-icon { flex: 0 0 20px; width: 20px; height: 20px; margin-right: 14px; color: var(--renera-mute); pointer-events: none; }
.rn-field-control input { flex: 1; min-width: 0; padding: 14px 0; background: transparent; border: 0; outline: none; font-family: var(--renera-font-sans); font-size: 16px; color: var(--renera-ink); }
.rn-field-control input::placeholder { color: var(--renera-mute); opacity: 0.6; }
.rn-field--invert .rn-field-label    { color: rgba(246,238,232,0.65); }
.rn-field--invert .rn-field-control  { border-bottom-color: rgba(246,238,232,0.35); }
.rn-field--invert .rn-field-control:focus-within { border-bottom-color: var(--renera-olive-300); }
.rn-field--invert .rn-field-control input { color: var(--renera-sand-200); }
.rn-field--invert .rn-field-control input::placeholder { color: rgba(246,238,232,0.45); }

/* =========================================
   Announcement bar
   ========================================= */
.rn-announce {
  background: var(--renera-olive-700); color: var(--renera-sand-200);
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid var(--renera-olive-800);
  overflow: hidden;
}
.rn-announce + .rn-header { top: var(--rn-announce-h, 48px); }
.rn-announce__inner {
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(0, 1fr) minmax(0, max-content);
  align-items: center; gap: 28px; min-height: 48px; padding-top: 8px; padding-bottom: 8px;
}
.rn-announce__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--renera-font-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(246,238,232,0.65); white-space: nowrap;
}
.rn-announce__dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--renera-olive-300); box-shadow: 0 0 0 4px rgba(174,220,145,0.18);
}
.rn-announce__slot { min-height: 24px; display: flex; align-items: center; overflow: hidden; }
/* Message rotation (CMS slots 1–3): grid-stacks every message in one cell and
   cross-fades .is-on — the stack sizes to the widest message, so nothing
   shifts when the text changes (chrome-interactions.js, 20 s cadence). */
.rn-announce__msgs { display: grid; align-items: center; min-width: 0; }
.rn-announce__msg {
  grid-area: 1 / 1;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--renera-font-sans); font-size: 14px; line-height: 1.4; color: var(--renera-sand-200);
  white-space: nowrap;
  opacity: 0; transition: opacity 600ms var(--renera-ease);
}
.rn-announce__msg.is-on { opacity: 1; }
/* Tap-to-copy promo code chip — mirrors the mobile promo strip's .rnm-promo__code.
   Two-class selectors on purpose: brand-base.css's bare `[type="button"]` (equal
   specificity, loaded later on some pages) otherwise repaints the chip
   olive-on-olive — invisible on the bar. */
.rn-announce .rn-announce__code {
  margin-left: 14px; flex: none;
  font-family: var(--renera-font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; line-height: 1;
  border: 1px solid rgba(246,238,232,0.3); border-radius: 4px;
  padding: 4px 9px; background: transparent; color: var(--renera-sand-200);
  cursor: pointer;
  transition: background var(--renera-dur-fast) var(--renera-ease),
              border-color var(--renera-dur-fast) var(--renera-ease),
              opacity 600ms var(--renera-ease);
}
.rn-announce .rn-announce__code:hover {
  background: rgba(246,238,232,0.1); border-color: rgba(246,238,232,0.5);
  color: var(--renera-sand-200);
}
/* The chip belongs to the first (discount) message — rotation JS sets .is-off
   while any other message is showing; it fades with the message swap. */
.rn-announce .rn-announce__code.is-off { opacity: 0; pointer-events: none; }
.rn-announce__rail { display: inline-flex; align-items: center; gap: 18px; }
/* Prev/next message arrows (render only with 2+ messages). Two-class scope +
   pinned colors: brand-base.css's bare button selectors otherwise repaint
   them olive-on-olive (same story as the code chip). */
.rn-announce .rn-announce__nav {
  background: transparent; border: 0; width: 26px; height: 26px; border-radius: 50%;
  color: rgba(246,238,232,0.7); cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: -10px;
  transition: background var(--renera-dur-fast) var(--renera-ease),
              color var(--renera-dur-fast) var(--renera-ease);
}
.rn-announce .rn-announce__nav + .rn-announce__nav { margin-right: 0; }
.rn-announce .rn-announce__nav:hover { background: rgba(246,238,232,0.1); color: var(--renera-sand-200); }

@media (max-width: 880px) {
  .rn-announce__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "tag" "slot" "rail";
    gap: 8px 16px; padding: 10px 0 12px;
  }
  .rn-announce__tag   { grid-area: tag; }
  .rn-announce__slot  { grid-area: slot; min-height: 20px; }
  .rn-announce__rail  { grid-area: rail; justify-content: space-between; }
  .rn-announce__msg   { white-space: normal; }
}

/* =========================================
   Toast
   ========================================= */
.rn-toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--renera-olive-700); color: var(--renera-sand-200);
  padding: 14px 22px; border-radius: var(--renera-r-sm);
  font-family: var(--renera-font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  z-index: 100; box-shadow: var(--renera-shadow-lift);
  animation: toastIn .24s var(--renera-ease);
}
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* Image placeholders */
.rn-ph {
  background: var(--renera-clay-100); border: 1px solid var(--renera-clay-300);
  display: flex; align-items: center; justify-content: center; color: var(--renera-mute);
  font-family: var(--renera-font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  overflow: hidden; position: relative;
}

/* Stat */
.rn-stat { font-family: var(--renera-font-serif); font-weight: 400; font-size: 48px; line-height: 1; letter-spacing: -0.02em; color: var(--renera-olive-700); }
.rn-stat-label { font-family: var(--renera-font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--renera-mute); margin-top: 8px; }

/* =========================================
   Section frames
   ========================================= */
.rn-section { padding: 84px 0; position: relative; }
.rn-section--cream     { background: var(--renera-sand-300); }
.rn-section--peach     { background: var(--renera-clay-100); border-top: 1px solid var(--renera-clay-300); border-bottom: 1px solid var(--renera-clay-300); }
.rn-section--olive     { background: var(--renera-olive-700); color: var(--renera-sand-200); }
.rn-section--olive-deep{ background: var(--renera-olive-800); color: var(--renera-sand-200); }

.rn-section-header { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; margin-bottom: 80px; }
.rn-section-header--left { align-items: flex-start; text-align: left; }

/* =========================================
   Sticky header
   ========================================= */
.rn-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 238, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--renera-clay-300);
}
.rn-header__row { display: flex; align-items: center; gap: 32px; height: 84px; }
.rn-nav { display: flex; gap: 28px; flex: 1; margin-left: 16px; }
.rn-nav a {
  font-family: var(--renera-font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--renera-mute); text-decoration: none; position: relative; padding: 4px 0;
}
.rn-nav a:hover { color: var(--renera-olive-700); }
.rn-icon-btn { position: relative; background: transparent; border: 0; cursor: pointer; padding: 8px; color: var(--renera-olive-700); }
.rn-cart-badge {
  position: absolute; top: 2px; right: -2px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--renera-olive-700); color: var(--renera-pure-white); border-radius: 999px;
  font-family: var(--renera-font-mono); font-size: 10px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--renera-sand-300);
}
.rn-cart-badge[data-zero="1"] { background: var(--renera-sand-300); color: var(--renera-olive-700); border-color: var(--renera-clay-300); }

/* =========================================
   Split Hero
   ========================================= */
.rn-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); min-height: 720px; }
.rn-split__form { position: relative; background: var(--renera-sand-300); padding: 96px 64px 96px 80px; display: flex; flex-direction: column; justify-content: center; }
.rn-split__pane { position: relative; overflow: hidden; background: var(--renera-olive-700); display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; min-height: 720px; }
.rn-pane-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0.92; mix-blend-mode: multiply; }
.rn-pane-product-floater { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -52%); max-width: 64%; z-index: 2; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25)); }
.rn-pane-content { position: relative; z-index: 2; padding: 56px 64px 60px; color: var(--renera-sand-200); display: flex; flex-direction: column; gap: 22px; }

/* =========================================
   Testimonials carousel
   ========================================= */
.rn-carousel-viewport { overflow: hidden; }
.rn-carousel-track { display: flex; gap: 24px; transition: transform 0.4s var(--renera-ease); will-change: transform; }
.rn-carousel-card { flex: 0 0 calc((100% - 48px) / 3); min-width: 0; transition: opacity 0.3s ease; }
.rn-carousel-card.is-offscreen { opacity: 0.45; }
.rn-carousel-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 48px; }
.rn-carousel-btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--renera-olive-700); background: transparent;
  color: var(--renera-olive-700); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--renera-dur-fast) var(--renera-ease), color var(--renera-dur-fast) var(--renera-ease), border-color var(--renera-dur-fast) var(--renera-ease);
}
/* Shared icon-button hover — see --renera-iconbtn-* in design-system.css.
   (hover: hover) keeps it off touch, where :hover sticks after a tap. */
@media (hover: hover) {
  .rn-carousel-btn:hover:not(:disabled) { background: var(--renera-iconbtn-bg-hover); color: var(--renera-iconbtn-fg-hover); }
}
.rn-carousel-btn:disabled,
.rn-carousel-btn:disabled:hover {
  background: transparent;
  border-color: var(--renera-clay-300);
  color: var(--renera-clay-300);
  cursor: default;
}
.rn-carousel-dots { display: inline-flex; align-items: center; gap: 6px; }
.rn-carousel-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--renera-clay-300); border: 0;
  cursor: pointer; padding: 0; transition: background var(--renera-dur-fast) var(--renera-ease), width var(--renera-dur-base) var(--renera-ease);
}
.rn-carousel-dot:hover { background: var(--renera-olive-500); }
.rn-carousel-dot.is-on,
.rn-carousel-dot.is-on:hover { background: var(--renera-olive-700); }

/* Header-row layout — title left, controls right (used by testimonials) */
.rn-carousel-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
}
.rn-carousel-controls--inline { margin-top: 0; gap: 16px; }
.rn-carousel-counter {
  font-family: var(--renera-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--renera-mute);
  font-variant-numeric: tabular-nums;
}
.rn-carousel-counter__sep { opacity: 0.4; margin: 0 8px; }

/* Pill-bar pagination variant — replaces dots when .--bars is applied */
.rn-carousel-dots--bars {
  margin-top: 44px;
  gap: 8px;
  display: flex;
  width: 100%;
  justify-content: center;
}
.rn-carousel-dots--bars .rn-carousel-dot {
  width: 18px; height: 2px; border-radius: 1px;
  background: var(--renera-clay-300);
  transition: width 0.3s var(--renera-ease), background 0.2s var(--renera-ease);
}
.rn-carousel-dots--bars .rn-carousel-dot.is-on {
  width: 36px;
  background: var(--renera-olive-700);
}

/* =========================================
   ProductStory — tabbed editorial feature (ported from HomePage-2 design)
   ========================================= */
/* Compact vertical rhythm — the whole section should fit a laptop
   viewport (~900px), so paddings/gaps run tighter than .rn-section. */
.rn-section.rn-story { padding: 36px 0; }

.rn-story__header {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px; margin-bottom: 32px;
}

.rn-story__tabs {
  display: flex; justify-content: center;
  border-bottom: 1px solid var(--renera-clay-300);
  margin-bottom: 28px;
  gap: 8px; flex-wrap: wrap;
}
.rn-story__tab {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: 0;
  padding: 12px 22px;
  cursor: pointer;
  color: var(--renera-mute);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--renera-dur-fast) var(--renera-ease),
              border-color var(--renera-dur-fast) var(--renera-ease);
}
.rn-story__tab:hover {
  color: var(--renera-olive-700);
  background: transparent;
}
.rn-story__tab.is-active {
  color: var(--renera-olive-700);
  border-bottom-color: var(--renera-olive-700);
}
.rn-story__tab-num {
  font-family: var(--renera-font-mono);
  font-size: 10px; letter-spacing: 0.22em;
  color: inherit; opacity: 0.65;
}
.rn-story__tab-label {
  font-family: var(--renera-font-mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
}

.rn-story__body {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 96px;
  align-items: center;
}
/* Tab 2 mirrors the layout: image column on the left (desktop only —
   mobile keeps copy-then-image stacking). Toggled by chrome-interactions.js. */
@media (min-width: 961px) {
  .rn-story__body.is-mirrored { grid-template-columns: 1fr 1.05fr; }
  .rn-story__body.is-mirrored .rn-story__image-stack { order: -1; }
}
.rn-story__copy {
  display: flex; flex-direction: column; gap: 14px;
  animation: rnStoryFade 0.5s var(--renera-ease);
}
.rn-story__copy:not(.is-active) { display: none; }
@keyframes rnStoryFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rn-story__title {
  color: var(--renera-ink); margin: 0;
  font-size: 36px; line-height: 1.1;
}
.rn-story__title em { color: var(--renera-olive-700); font-style: italic; }
.rn-story__lead {
  font-size: 17px; line-height: 1.7;
  color: var(--renera-ink); max-width: 520px; margin: 0;
}

.rn-story__perks {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--renera-clay-300);
}
.rn-story__perks > li {
  display: flex; gap: 18px; padding: 12px 0;
  border-bottom: 1px solid var(--renera-clay-300);
}
.rn-story__perks .rn-perk-num {
  font-family: var(--renera-font-mono);
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--renera-mute);
  margin-top: 4px; flex: 0 0 28px;
}
.rn-story__perks li strong {
  display: block;
  font-family: var(--renera-font-sans); font-weight: 500;
  font-size: 15px; color: var(--renera-ink); margin-bottom: 3px;
  letter-spacing: 0.005em;
}
.rn-story__perks li p {
  margin: 0; font-size: 14px; line-height: 1.6;
  color: var(--renera-mute);
}

.rn-story__quote {
  margin: 8px 0 0; padding: 16px 22px;
  border-left: 2px solid var(--renera-olive-700);
  background: var(--renera-sand-200);
  font-family: var(--renera-font-serif); font-style: italic;
  font-size: 22px; line-height: 1.42;
  color: var(--renera-olive-700);
  text-wrap: balance;
}

.rn-story__tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}

.rn-story__cta { margin-top: 12px; }

.rn-story__image-stack {
  position: relative; aspect-ratio: 1 / 1;
  border-radius: var(--renera-r-lg); overflow: hidden;
  background: var(--renera-clay-100);
  border: 1px solid var(--renera-clay-300);
}
.rn-story__image {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s var(--renera-ease);
}
.rn-story__image.is-on { opacity: 1; }

.rn-story__baroque {
  position: absolute; top: 22px; right: 22px;
  width: 72px; height: 72px; opacity: 0.55;
  filter: brightness(2.5) saturate(0.3);
  z-index: 2; pointer-events: none;
}
@media (max-width: 960px) {
  .rn-story__body { grid-template-columns: 1fr; gap: 48px; }
  .rn-story__tab  { padding: 14px 18px; }
  .rn-story__tab-label { font-size: 11px; }
  .rn-story__title { font-size: 32px; }
  .rn-story__image-stack { aspect-ratio: 4 / 3; max-width: 600px; margin: 0 auto; }
}

/* =========================================
   Ingredient card rail — swipeable, scroll-snap
   From design components.jsx <Pillars/> (2026-08 revision)
   ========================================= */
/* Compact fit — the whole What's-inside section should sit in a laptop
   viewport, so the section runs tighter and the prev/next arrows flank
   the card row inline instead of a head row above it. */
#ingredients.rn-section { padding: 36px 0; }
#ingredients .rn-section-header { margin-bottom: 28px; gap: 14px; }
#ingredients .rn-lead-italic { font-size: 18px; line-height: 1.5; }

.rn-ing-rail {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 14px;
}
.rn-ing-rail__btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--renera-clay-300);
  color: var(--renera-olive-700); cursor: pointer;
  transition: background var(--renera-dur-fast) var(--renera-ease),
              border-color var(--renera-dur-fast) var(--renera-ease),
              color var(--renera-dur-fast) var(--renera-ease);
}
/* !important beats brand-base.css `button:hover`. The `:focus` half of this rule
   was dropped 2026-08-11 along with style.min.css's `button:focus{background:#c36}`
   — buttons carry a hover state only, so a tap no longer sticks. */
@media (hover: hover) {
  .rn-ing-rail__btn:hover {
    background: var(--renera-iconbtn-bg-hover) !important; border-color: var(--renera-iconbtn-bg-hover) !important;
    color: var(--renera-iconbtn-fg-hover) !important;
  }
}
.rn-ing-rail__btn:focus-visible { outline: 2px solid var(--renera-olive-500); outline-offset: 2px; }
.rn-ing-rail__btn[data-rail-prev] svg { transform: rotate(180deg); }
.rn-ing-track {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 4px 4px 14px; margin: 0;
  scroll-padding-inline-start: 4px; scrollbar-width: none;
}
.rn-ing-track::-webkit-scrollbar { display: none; }
.rn-ing-card {
  flex: 0 0 246px; scroll-snap-align: start;
  background: var(--renera-sand-100); border: 1px solid var(--renera-clay-300);
  border-radius: var(--renera-r-md, 18px); overflow: hidden;
  text-decoration: none; color: inherit; display: block;
  transition: transform var(--renera-dur-base) var(--renera-ease),
              box-shadow var(--renera-dur-base) var(--renera-ease);
}
.rn-ing-card:hover { transform: translateY(-4px); box-shadow: 0 26px 48px -34px rgba(47,54,38,0.45); }
.rn-ing-card__media {
  height: 168px; background-color: var(--renera-sand-200);
  background-size: cover; background-position: center;
  position: relative; border-bottom: 1px solid var(--renera-clay-300);
}
.rn-ing-card__media--contain { background-size: contain; background-repeat: no-repeat; background-color: var(--renera-paper); }
.rn-ing-card__num {
  position: absolute; top: 12px; left: 14px;
  font-family: var(--renera-font-mono); font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--renera-sand-100); text-shadow: 0 1px 6px rgba(27,27,27,0.5);
}
.rn-ing-card__chip {
  position: absolute; left: 16px; bottom: -20px;
  width: 44px; height: 44px; border-radius: 22%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(27,27,27,0.16);
}
.rn-ing-card__body { padding: 32px 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.rn-ing-card__name {
  font-family: var(--renera-font-serif); font-weight: 500; font-size: 19px;
  line-height: 1.2; letter-spacing: -0.01em; color: var(--renera-olive-900); margin: 0;
}
.rn-ing-card__essence { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--renera-mute); }
.rn-ing-card__dose {
  align-self: flex-start; margin-top: 4px;
  font-family: var(--renera-font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  color: var(--renera-olive-700); background: rgba(95,107,74,0.08);
  padding: 6px 11px; border-radius: var(--renera-r-pill, 999px); white-space: nowrap;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 980px) {
  .rn-split { grid-template-columns: 1fr; }
  .rn-split__form { padding: 64px 28px; }
  .rn-split__pane { min-height: 520px; }
  .container, .container-mid, .container-narrow { padding: 0 24px; }
  .rn-h-1 { font-size: 64px; }
  .rn-h-2 { font-size: 40px; }
  .rn-section { padding: 56px 0; }
  .rn-carousel-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
  .rn-carousel-card { flex: 0 0 85%; }
}

/* =========================================
   Trust badges section — quiet band on cream with hairline rails
   Ported from design components.jsx <TrustBadges/>
   ========================================= */
.rn-trust-section {
  /* Same cream ground as the brand-philosophy section (sand-400 parchment
     read too yellow); hairline rails carry the separation instead. */
  background: var(--renera-sand-300);
  border-top: 1px solid var(--renera-clay-300);
  border-bottom: 1px solid var(--renera-clay-300);
  padding: 36px 0;
}
.rn-trust-section__inner {
  display: flex; flex-direction: column; gap: 36px; align-items: center;
  max-width: 980px; margin: 0 auto;
}

/* Headline composition — monogram + eyebrow + italic caption stacked */
.rn-trust-section__head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0;
}
.rn-trust-section__monogram {
  width: 72px; height: 72px;
  display: block;
  /* Drop color and bring the mark to olive ink */
  filter: saturate(0) brightness(0.55);
  opacity: 0.85;
}
.rn-trust-section__caption {
  margin: 14px 0 0; max-width: 640px;
  font-family: var(--renera-font-serif); font-style: italic; font-weight: 400;
  font-size: 24px; line-height: 1.35; letter-spacing: -0.012em;
  color: var(--renera-olive-700);
  text-wrap: balance;
}
.rn-trust-section__caption-sep {
  display: inline-block; margin: 0 6px;
  color: var(--renera-clay-300);
  font-style: normal;
}

/* Official marks — full color on transparent, optically balanced, no chips */
.rn-trust-marks {
  list-style: none; margin: 0; padding: 0;
  width: 100%; max-width: 920px;
  display: flex; align-items: center; justify-content: center;
  gap: 50px;
}
.rn-trust-mark {
  display: flex; align-items: center; justify-content: center;
}
.rn-trust-mark__img {
  width: auto;
  object-fit: contain;
  /* full color, transparent background — height set per-mark inline */
}

@media (max-width: 880px) {
  .rn-trust-section { padding: 36px 0; }
  .rn-trust-section__inner { gap: 32px; }
  .rn-trust-section__caption { font-size: 20px; }
  /* Marks are 30% smaller, so the row now fits on one line — max-width raised to suit. */
  .rn-trust-marks { flex-wrap: wrap; gap: 28px 34px; max-width: 480px; }
  /* scale all marks down on mobile; GMP (last, round badge) stays a touch larger */
  .rn-trust-mark__img { height: auto; max-height: 45px; }
  .rn-trust-mark:last-child .rn-trust-mark__img { max-height: 73px; }
}

/* =========================================================
   HOME HERO — full-bleed product banner
   The artwork (1916×821) bakes in its own warm-sand ground and parks
   the product cluster in its right ~47%; the left half is deliberate
   negative space for the copy.

   The section is set SHORTER than the art's own ratio, so `contain`
   scales the image down and anchors it right — that frees real width
   on the left for the headline. Whatever the image then leaves bare
   is painted --rn-hero-ground, sampled from the artwork itself, so
   the letterbox is invisible at every viewport width.
   ========================================================= */
.rn-hero-banner {
  --rn-hero-ground: #f5e6d5;   /* mean tone of the artwork's own left edge */
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--rn-hero-ground);
  /* width must stay definite: with only min-height binding, aspect-ratio
     would resolve the *width* from the height (560 × 2.9 = 1626px) and
     overflow the page on every viewport narrower than that. */
  width: 100%;
  aspect-ratio: 1916 / 660;
  min-height: 560px;
  max-height: 760px;
}
.rn-hero-banner__art {
  position: absolute; z-index: 0;
  /* The art bakes ~18% of empty ground above its topmost box, which read as
     a "spacing gap" under the nav. Oversize the img box upward so overflow:
     hidden crops that band (top 12% — well clear of the box edge at 17.6%);
     bottom-anchoring keeps the plinth/powder-dish content pinned to the
     hero's bottom edge and sends any contain letterbox to the clipped top. */
  top: -12%; left: 0; right: 0;
  width: 100%; height: 112%;
  object-fit: contain;
  object-position: right bottom;
  /* The art's ground is not flat — it carries a soft table line and light
     falloff — so its left edge would otherwise step against the solid
     colour above. Dissolve that edge instead of trying to match it. The
     art's own content starts at 48% of its width, so the fade only ever
     eats empty ground, at every viewport width the geometry produces. */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 38%);
          mask-image: linear-gradient(to right, transparent 0, #000 38%);
}
.rn-hero-banner__inner { position: relative; z-index: 1; width: 100%; }
.rn-hero-banner__copy  { max-width: 660px; }
.rn-hero-banner .rn-hero-title { font-size: clamp(52px, 3.9vw, 72px); }

/* Narrow desktop windows: the negative space is no longer wide enough to
   hold the copy beside the product, so stack the banner above the words —
   the same order homepage-mobile.php uses for its own hero. */
@media (max-width: 980px) {
  .rn-hero-banner {
    display: block;
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
    padding-bottom: 64px;
  }
  .rn-hero-banner__art {
    position: static;
    width: 100%; height: auto;
    /* Same 12% top-band crop as the absolute desktop art: a box ratio
       shorter than the source (821 → 722 tall) with bottom anchoring makes
       cover shave only the baked-in empty ground off the top — the product
       cluster (starting 17.6% down) stays fully visible. */
    aspect-ratio: 1916 / 722;
    object-fit: cover;
    object-position: right bottom;
    margin-bottom: 48px;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .rn-hero-banner__copy { max-width: 100%; }
}

/* =========================================================
   RESPONSIVE LAYOUT UTILITIES
   Collapse the template section grids on tablet/mobile. Desktop
   values intentionally mirror the original inline styles, so the
   large-screen layout is unchanged; only narrow screens adapt.
   Shared by homepage.php and our-story.php (replaces inline grids
   that an external stylesheet could not otherwise override).
   ========================================================= */
.rn-grid-split   { display: grid; grid-template-columns: 1.15fr 1fr;    gap: 96px; align-items: center; }
.rn-grid-2       { display: grid; grid-template-columns: 1fr 1fr;       gap: 96px; align-items: center; }
.rn-grid-mission { display: grid; grid-template-columns: 1fr 1.15fr;    gap: 96px; align-items: center; }
.rn-grid-aside   { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 96px; align-items: flex-start; }
.rn-grid-3       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rn-stat-grid    { display: grid; grid-template-columns: repeat(4, 1fr); }
.rn-footer-grid  { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 56px; }

@media (max-width: 980px) {
  .rn-grid-split,
  .rn-grid-2,
  .rn-grid-mission,
  .rn-grid-aside        { grid-template-columns: 1fr; gap: 48px; }
  .rn-grid-aside > aside { position: static !important; top: auto !important; }
  .rn-grid-3            { grid-template-columns: 1fr 1fr; }
  .rn-footer-grid       { grid-template-columns: 1fr 1fr; gap: 48px; }
  .rn-hero-title        { font-size: 64px !important; line-height: 1.04 !important; }
  .rn-quote-lg          { font-size: 40px !important; }
  /* Hide the inline nav on small screens (no hamburger yet) so the
     header row doesn't overflow; logo + login + cart + amazon remain. */
  .rn-nav               { display: none !important; }
  .rn-header__row       { gap: 16px; height: 72px; }
}

@media (max-width: 600px) {
  .rn-grid-3,
  .rn-footer-grid       { grid-template-columns: 1fr; }
  .rn-stat-grid         { grid-template-columns: 1fr 1fr; }
  .rn-stat-grid > div   { border-right: none !important; }
  .rn-hero-title        { font-size: 44px !important; }
  .rn-quote-lg          { font-size: 30px !important; }
  .rn-frame-pad         { padding-left: 28px !important; padding-right: 28px !important; }
}

/* =========================================
   WPFront Scroll-Top button ("Component 186" custom image) — off-brand floating
   icon in the corner of every page. Hidden on all bespoke registry pages; the
   PDP/cart hide the same container in product.css.
   ========================================= */
#wpfront-scroll-top-container { display: none !important; }
