/* RouxLub · interior.css — hand-built interior pages.
   Shared section components built for VARIANCE (each page composes them with its own
   accent, rhythm and motion — never a uniform template). Brand tokens from tokens.css.
   Loaded after pages.css; pages.css remains the minimal prose fallback for non-rebuilt pages.

   Per-page accent: set --acc on the page root (.rx-ip) to retint heros/rules/labels. */

.rx-ip { --acc: var(--rx-red); --acc-2: var(--rx-blue-500); }

/* ============================================================
   Shared atoms
   ============================================================ */
.rx-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold);
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--acc); margin: 0 0 1rem;
}
.rx-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--acc); display: inline-block; }
.rx-eyebrow--on-dark { color: var(--rx-navy); }
.rx-eyebrow--on-dark::before { background: var(--acc); }

.rx-kicker-num {
  font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold);
  line-height: .9; color: var(--rx-navy);
}

/* ============================================================
   Interior hero — full-bleed, image + navy wash + watermark numeral
   (replaces the generic .rx-pagehead for rebuilt pages)
   ============================================================ */
.rx-ihero {
  position: relative; overflow: hidden; isolation: isolate;
  background: #eef2f7;
  padding: clamp(3.2rem, 8vw, 6rem) 0 clamp(2.6rem, 5vw, 4rem);
  border-bottom: 4px solid var(--acc);
}
.rx-ihero__bg {
  position: absolute; inset: -8% 0 0; z-index: -2;
  background-size: cover; background-position: center;
  will-change: transform;
}
.rx-ihero::after { /* light diagonal wash for legibility over the plant image */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(108deg, rgba(244,247,251,.93) 38%, rgba(238,242,247,.82) 72%, rgba(238,242,247,.6) 100%);
}
.rx-ihero__watermark {
  position: absolute; right: clamp(-1rem, 1vw, 2rem); top: 50%; transform: translateY(-50%);
  font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold);
  font-size: clamp(9rem, 30vw, 26rem); line-height: .8; color: rgba(0,33,95,.06);
  z-index: 0; pointer-events: none; letter-spacing: -.04em; user-select: none;
}
.rx-ihero__inner { position: relative; z-index: 1; }
.rx-ihero .rx-breadcrumbs { color: var(--rx-ink-soft); margin-bottom: 1.1rem; }
.rx-ihero .rx-breadcrumbs a { color: var(--rx-ink-soft); }
.rx-ihero .rx-breadcrumbs a:hover { color: var(--rx-red); }
.rx-ihero .rx-breadcrumbs span[aria-current] { color: var(--rx-navy); }
.rx-ihero .rx-breadcrumbs__sep { color: var(--rx-ink-muted); }
.rx-ihero__title {
  color: var(--rx-navy); font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold);
  font-size: clamp(2.2rem, 5.6vw, 4.1rem); line-height: 1.04; letter-spacing: -.015em;
  margin: 0; max-width: 18ch; text-wrap: balance;
}
.rx-ihero__lead {
  color: var(--rx-ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.6;
  max-width: 56ch; margin: 1.3rem 0 0;
}

/* ============================================================
   Lead / editorial intro band
   ============================================================ */
.rx-lead-band { padding: clamp(3rem, 6vw, 5rem) 0; }
.rx-lead-band__inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(1.6rem, 4vw, 4rem); align-items: end; }
.rx-lead-band__big {
  font-family: var(--rx-font-head); font-weight: var(--rx-fw-semibold);
  font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.2; color: var(--rx-navy);
  letter-spacing: -.01em; margin: 0; text-wrap: balance;
}
.rx-lead-band__big b { color: var(--acc); font-weight: var(--rx-fw-bold); }
.rx-lead-band__note { color: var(--rx-ink-soft); font-size: 1.05rem; line-height: 1.7; border-left: 3px solid var(--acc); padding-left: 1.1rem; }

/* ============================================================
   Stat band — animated counters (the central stat is emphasized)
   ============================================================ */
.rx-stats { background: #eef2f7; color: var(--rx-ink-soft); position: relative; overflow: hidden; }
.rx-stats::before { /* faint technical grid */
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 16px);
}
.rx-stats__inner {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem); padding: clamp(2.6rem, 5vw, 4rem) 0;
}
.rx-stat { text-align: center; padding: .4rem; position: relative; }
.rx-stat + .rx-stat::before { content: ""; position: absolute; left: calc(-1 * clamp(.5rem, 1.5vw, 1.25rem)); top: 12%; bottom: 12%; width: 1px; background: rgba(0,33,95,.14); }
.rx-stat__num { display: block; font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1; color: var(--rx-navy); }
.rx-stat--accent .rx-stat__num { color: #ff5a5a; }
.rx-stat__label { display: block; margin-top: .6rem; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--rx-ink-muted); font-family: var(--rx-font-head); font-weight: var(--rx-fw-semibold); }

/* ============================================================
   Timeline — alternating milestones with a drawn spine
   ============================================================ */
.rx-timeline { position: relative; padding: clamp(2.5rem, 5vw, 4rem) 0; }
.rx-timeline__spine { position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(var(--acc), var(--rx-blue-700)); transform: translateX(-50%) scaleY(1); border-radius: 2px; }
.rx-tl-item { position: relative; width: 50%; padding: 0 clamp(1.4rem, 3vw, 3rem) clamp(2rem, 4vw, 3rem); box-sizing: border-box; }
.rx-tl-item:nth-child(odd) { left: 0; text-align: right; }
.rx-tl-item:nth-child(even) { left: 50%; }
.rx-tl-item__dot { position: absolute; top: .35rem; width: 18px; height: 18px; border-radius: 50%; background: var(--acc); border: 4px solid #fff; box-shadow: 0 0 0 2px var(--acc); }
.rx-tl-item:nth-child(odd) .rx-tl-item__dot { right: calc(clamp(1.4rem, 3vw, 3rem) * -1 + -9px); }
.rx-tl-item:nth-child(even) .rx-tl-item__dot { left: calc(clamp(1.4rem, 3vw, 3rem) * -1 + -9px); }
.rx-tl-item__year { font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--rx-navy); line-height: 1; }
.rx-tl-item__head { font-family: var(--rx-font-head); font-weight: var(--rx-fw-semibold); color: var(--acc); margin: .35rem 0 .5rem; font-size: 1.05rem; letter-spacing: .02em; }
.rx-tl-item__body { color: var(--rx-ink-soft); line-height: 1.7; font-size: .98rem; }

/* ============================================================
   Pillars — Misión / Visión / Política (asymmetric bento, each distinct)
   ============================================================ */
.rx-pillars { display: grid; grid-template-columns: 1.4fr 1fr; grid-auto-rows: 1fr; gap: clamp(1rem, 2.4vw, 1.6rem); }
.rx-pillar { position: relative; border-radius: var(--rx-radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); overflow: hidden; display: flex; flex-direction: column; }
.rx-pillar__icon { width: 46px; height: 46px; margin-bottom: 1.1rem; }
.rx-pillar__icon svg { width: 100%; height: 100%; display: block; }
.rx-pillar h3 { font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: 1.4rem; margin: 0 0 .7rem; }
.rx-pillar p { line-height: 1.7; margin: 0; }
/* Misión — large, navy, fills left column across both rows */
.rx-pillar--mission { grid-row: span 2; background: #eef2f7; border: 1px solid var(--rx-border); border-top: 4px solid var(--rx-navy); color: var(--rx-ink-soft); }
.rx-pillar--mission h3 { color: var(--rx-navy); font-size: clamp(1.5rem, 2.6vw, 2rem); }
.rx-pillar--mission .rx-pillar__icon { color: var(--rx-red); }
.rx-pillar--mission::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 180px; height: 180px; border: 2px solid rgba(0,33,95,.06); border-radius: 50%; }
/* Visión — light, blue accent */
.rx-pillar--vision { background: #f4f6f9; border: 1px solid var(--rx-border); border-top: 4px solid var(--rx-blue-700); color: var(--rx-ink-soft); }
.rx-pillar--vision h3 { color: var(--rx-navy); }
.rx-pillar--vision .rx-pillar__icon { color: var(--rx-blue-700); }
/* Política — paper with red frame */
.rx-pillar--policy { background: var(--rx-white); border: 1px solid var(--rx-border); border-top: 4px solid var(--rx-red); color: var(--rx-ink-soft); }
.rx-pillar--policy h3 { color: var(--rx-navy); }
.rx-pillar--policy .rx-pillar__icon { color: var(--rx-red); }

/* ============================================================
   Split-media — text + image with parallax (capacity / infrastructure)
   ============================================================ */
.rx-split { position: relative; overflow: hidden; }
.rx-split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 4rem); align-items: center; }
.rx-split--flip .rx-split__media { order: -1; }
.rx-split__media { position: relative; border-radius: var(--rx-radius-lg); overflow: hidden; box-shadow: var(--rx-shadow-md); aspect-ratio: 5 / 4; }
.rx-split__media img { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; }
.rx-split__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,33,95,.25), transparent 55%); }
.rx-feats { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1.1rem; }
.rx-feat { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.rx-feat__n { font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: 1rem; color: #fff; background: var(--acc); width: 2.1rem; height: 2.1rem; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.rx-feat h4 { font-family: var(--rx-font-head); font-weight: var(--rx-fw-semibold); color: var(--rx-navy); margin: .15rem 0 .3rem; font-size: 1.1rem; }
.rx-feat p { color: var(--rx-ink-soft); line-height: 1.65; margin: 0; font-size: .98rem; }

/* ============================================================
   CTA band
   ============================================================ */
.rx-cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--rx-red), var(--rx-red-dark)); color: #fff; }
.rx-cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding: clamp(2.2rem, 4vw, 3.4rem) 0; }
.rx-cta-band__title { font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; margin: 0; max-width: 22ch; }
.rx-cta-band__actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.rx-btn--on-red { background: #fff; color: var(--rx-red); border-color: #fff; }
.rx-btn--on-red:hover { background: var(--rx-navy); color: #fff; border-color: var(--rx-navy); }
.rx-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.rx-btn--ghost-light:hover { background: #fff; color: var(--rx-red); border-color: #fff; }

/* ============================================================
   Section heading (reused, with accent rule)
   ============================================================ */
.rx-shead { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.rx-shead--center { text-align: center; }
.rx-shead__title { font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: var(--rx-navy); line-height: 1.1; margin: 0; }
.rx-shead__title::after { content: ""; display: block; width: 56px; height: 4px; background: var(--acc); border-radius: 2px; margin-top: .9rem; }
.rx-shead--center .rx-shead__title::after { margin-left: auto; margin-right: auto; }

/* tighter section rhythm helpers (avoid two adjacent identical gaps) */
.rx-sec      { padding-block: clamp(3rem, 6vw, 5.5rem); }
.rx-sec--tight { padding-block: clamp(2rem, 4vw, 3.2rem); }
.rx-sec--wide  { padding-block: clamp(4rem, 8vw, 7rem); }
.rx-sec--paper { background: var(--rx-bg-alt); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .rx-lead-band__inner { grid-template-columns: 1fr; gap: 1.4rem; }
  .rx-pillars { grid-template-columns: 1fr; }
  .rx-pillar--mission { grid-row: auto; }
  .rx-split__inner { grid-template-columns: 1fr; }
  .rx-split--flip .rx-split__media { order: 0; }
  .rx-split__media { aspect-ratio: 16 / 10; }
  .rx-stats__inner { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .rx-stat:nth-child(odd)::before { display: none; }
  /* timeline: single column, all to the right of a left spine */
  .rx-timeline__spine { left: 18px; }
  .rx-tl-item, .rx-tl-item:nth-child(odd), .rx-tl-item:nth-child(even) { width: 100%; left: 0; text-align: left; padding-left: 3rem; padding-right: 0; }
  .rx-tl-item__dot, .rx-tl-item:nth-child(odd) .rx-tl-item__dot, .rx-tl-item:nth-child(even) .rx-tl-item__dot { left: 10px; right: auto; }
}
@media (max-width: 560px) {
  .rx-stats__inner { grid-template-columns: 1fr 1fr; }
  .rx-ihero__title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .rx-cta-band__inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Reduced motion — neutralize transforms/parallax
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .rx-ihero__bg, .rx-split__media img { transform: none !important; }
  .rx-timeline__spine { transform: translateX(-50%) scaleY(1) !important; }
}

/* ============================================================
   MISSION — editorial manifesto (each principle a full-width band,
   giant ghost word behind, distinct color). Page accent = bright blue.
   ============================================================ */
.rx-manifesto__item { position: relative; overflow: hidden; padding: clamp(2.6rem, 6vw, 4.8rem) 0; }
.rx-manifesto__item + .rx-manifesto__item { border-top: 1px solid var(--rx-border); }
.rx-manifesto__ghost {
  position: absolute; left: -.04em; bottom: -.18em; z-index: 0; pointer-events: none; user-select: none;
  font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: clamp(5rem, 18vw, 15rem);
  line-height: .8; letter-spacing: -.04em; color: var(--rx-grey-100);
}
.rx-manifesto__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 0.4fr 1fr; gap: clamp(1rem, 3vw, 3rem); align-items: start; }
.rx-manifesto__n { font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: clamp(1.1rem, 1.6vw, 1.3rem); letter-spacing: .14em; text-transform: uppercase; }
.rx-manifesto__h { font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; margin: 0 0 1rem; color: var(--rx-navy); }
.rx-manifesto__p { font-size: clamp(1.05rem, 1.8vw, 1.4rem); line-height: 1.55; color: var(--rx-ink-soft); max-width: 46ch; margin: 0; }
.rx-manifesto__item--a { } .rx-manifesto__item--a .rx-manifesto__n, .rx-manifesto__item--a .rx-manifesto__h { color: var(--rx-navy); }
.rx-manifesto__item--b .rx-manifesto__n { color: var(--rx-blue-500); } .rx-manifesto__item--b .rx-manifesto__h { color: var(--rx-blue-700); } .rx-manifesto__item--b .rx-manifesto__ghost { color: #eaf1ff; }
.rx-manifesto__item--c .rx-manifesto__n, .rx-manifesto__item--c .rx-manifesto__h { color: var(--rx-red); } .rx-manifesto__item--c .rx-manifesto__ghost { color: #fdeaea; }
.rx-manifesto__icon { display: block; width: 42px; height: 42px; margin-bottom: .8rem; }
.rx-manifesto__icon svg { width: 100%; height: 100%; }
.rx-manifesto__item--a .rx-manifesto__icon { color: var(--rx-navy); }
.rx-manifesto__item--b .rx-manifesto__icon { color: var(--rx-blue-500); }
.rx-manifesto__item--c .rx-manifesto__icon { color: var(--rx-red); }

/* ============================================================
   FAQ — accordion (premium, animated)
   ============================================================ */
.rx-acc { max-width: 860px; margin-inline: auto; }
.rx-acc__item { border-bottom: 1px solid var(--rx-border); }
.rx-acc__item:first-child { border-top: 1px solid var(--rx-border); }
.rx-acc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: none; border: 0; cursor: pointer; text-align: left; padding: 1.4rem .25rem;
  font-family: var(--rx-font-head); font-weight: var(--rx-fw-semibold); font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--rx-navy); transition: color .2s var(--rx-ease);
}
.rx-acc__head:hover { color: var(--acc); }
.rx-acc__icon { position: relative; flex-shrink: 0; width: 26px; height: 26px; }
.rx-acc__icon::before, .rx-acc__icon::after { content: ""; position: absolute; background: var(--acc); border-radius: 2px; transition: transform .3s var(--rx-ease), opacity .3s var(--rx-ease); }
.rx-acc__icon::before { left: 0; right: 0; top: 12px; height: 2px; }
.rx-acc__icon::after { top: 0; bottom: 0; left: 12px; width: 2px; }
.rx-acc__item.is-open .rx-acc__icon::after { transform: rotate(90deg); opacity: 0; }
.rx-acc__item.is-open .rx-acc__head { color: var(--acc); }
.rx-acc__panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--rx-ease); }
.rx-acc__panel-inner { padding: 0 .25rem 1.5rem; color: var(--rx-ink-soft); line-height: 1.75; font-size: 1.05rem; max-width: 68ch; }

/* ============================================================
   REVIEWS — real testimonials + objective trust (certs / track record)
   ============================================================ */
.rx-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.rx-quote { position: relative; background: var(--rx-white); border: 1px solid var(--rx-border); border-radius: var(--rx-radius-lg); padding: clamp(1.6rem, 2.6vw, 2.4rem) clamp(1.4rem, 2.4vw, 2rem) clamp(1.4rem, 2.4vw, 1.8rem); display: flex; flex-direction: column; }
.rx-quote:nth-child(2) { background: #eef2f7; border-color: var(--rx-border); }
.rx-quote:nth-child(2) .rx-quote__text { color: var(--rx-ink); } .rx-quote:nth-child(2) .rx-quote__author { color: var(--rx-navy); } .rx-quote:nth-child(2) .rx-quote__mark { color: var(--rx-red); }
.rx-quote__mark { font-family: Georgia, serif; font-size: 4rem; line-height: .6; color: var(--rx-red); height: 2rem; }
.rx-quote__stars { color: #f5a623; letter-spacing: .15em; margin: .2rem 0 .8rem; font-size: 1rem; }
.rx-quote__text { font-size: 1.08rem; line-height: 1.6; color: var(--rx-ink); margin: 0 0 1.2rem; }
.rx-quote__author { margin-top: auto; font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); color: var(--rx-navy); font-size: .98rem; }
.rx-quote__role { display: block; font-weight: var(--rx-fw-regular); color: var(--rx-ink-muted); font-size: .85rem; margin-top: .15rem; }
.rx-trust-band { background: var(--rx-bg-alt); }
.rx-trust-band__inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
.rx-trust-band__certs img { height: clamp(70px, 9vw, 104px); width: auto; }
.rx-trust-band__txt h3 { font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); color: var(--rx-navy); font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 0 0 .6rem; }
.rx-trust-band__txt p { color: var(--rx-ink-soft); line-height: 1.7; margin: 0; max-width: 60ch; }

/* ============================================================
   TRANSPORT — fleet grid (each capability a card with own icon)
   ============================================================ */
.rx-fleet { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 1.5rem); }
.rx-fleet__card { background: var(--rx-white); border: 1px solid var(--rx-border); border-left: 4px solid var(--acc); border-radius: var(--rx-radius); padding: clamp(1.3rem, 2.4vw, 1.8rem); }
.rx-fleet__icon { width: 40px; height: 40px; color: var(--acc); margin-bottom: .9rem; }
.rx-fleet__icon svg { width: 100%; height: 100%; }
.rx-fleet__card h3 { font-family: var(--rx-font-head); font-weight: var(--rx-fw-semibold); color: var(--rx-navy); font-size: 1.15rem; margin: 0 0 .4rem; }
.rx-fleet__card p { color: var(--rx-ink-soft); line-height: 1.6; margin: 0; font-size: .98rem; }
.rx-transport-logo { background: #fff; border-radius: var(--rx-radius-lg); padding: clamp(1.4rem, 3vw, 2.4rem); display: inline-flex; box-shadow: var(--rx-shadow-md); }
.rx-transport-logo img { height: clamp(60px, 10vw, 96px); width: auto; }

/* ============================================================
   PRIVACY — legal document with sticky table of contents
   ============================================================ */
.rx-legal { display: grid; grid-template-columns: 250px 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.rx-toc { position: sticky; top: calc(var(--rx-header-h) + 1.5rem); }
.rx-toc__label { font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rx-ink-muted); margin: 0 0 1rem; }
.rx-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; border-left: 2px solid var(--rx-border); }
.rx-toc li { counter-increment: toc; }
.rx-toc a { display: block; padding: .5rem 0 .5rem 1rem; margin-left: -2px; border-left: 2px solid transparent; color: var(--rx-ink-soft); font-size: .92rem; line-height: 1.35; transition: color .2s var(--rx-ease), border-color .2s var(--rx-ease); }
.rx-toc a:hover { color: var(--rx-navy); }
.rx-toc a.is-active { color: var(--rx-red); border-left-color: var(--rx-red); font-weight: var(--rx-fw-semibold); }
.rx-legal__intro { color: var(--rx-ink-soft); line-height: 1.8; font-size: 1.05rem; padding: 1.2rem 1.4rem; background: var(--rx-bg-alt); border-radius: var(--rx-radius); border-left: 4px solid var(--rx-navy); margin-bottom: 2.5rem; }
.rx-legal__sec { padding-top: 1.5rem; margin-bottom: 2.2rem; scroll-margin-top: calc(var(--rx-header-h) + 1rem); }
.rx-legal__sec h2 { display: flex; gap: .8rem; align-items: baseline; font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: clamp(1.2rem, 2.4vw, 1.6rem); color: var(--rx-navy); margin: 0 0 .9rem; }
.rx-legal__num { color: var(--rx-red); font-size: .9em; }
.rx-legal__sec p { color: var(--rx-ink-soft); line-height: 1.8; margin: 0 0 1rem; }
.rx-legal__updated { font-size: .85rem; color: var(--rx-ink-muted); font-family: var(--rx-font-head); letter-spacing: .04em; }

/* ============================================================
   Responsive — institutional components
   ============================================================ */
@media (max-width: 900px) {
  .rx-manifesto__inner { grid-template-columns: 1fr; gap: .5rem; }
  .rx-quotes { grid-template-columns: 1fr; }
  .rx-fleet { grid-template-columns: 1fr 1fr; }
  .rx-trust-band__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .rx-legal { grid-template-columns: 1fr; }
  .rx-toc { position: static; top: auto; margin-bottom: 2rem; }
  .rx-toc ol { columns: 2; column-gap: 1.5rem; }
}
@media (max-width: 560px) {
  .rx-fleet { grid-template-columns: 1fr; }
  .rx-toc ol { columns: 1; }
}

/* ============================================================
   CONTACT — split: navy info panel + light form panel
   ============================================================ */
.rx-contact { display: grid; grid-template-columns: 0.85fr 1.15fr; border-radius: var(--rx-radius-lg); overflow: hidden; box-shadow: var(--rx-shadow-md); border: 1px solid var(--rx-border); }
.rx-contact__info { background: #eef2f7; color: var(--rx-ink-soft); padding: clamp(1.8rem, 3.5vw, 3rem); display: flex; flex-direction: column; }
.rx-contact__info h2 { color: var(--rx-navy); font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 0 0 1.6rem; }
.rx-contact__list { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: 1.3rem; }
.rx-contact__list li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.rx-contact__ic { color: #ff5a5a; width: 26px; height: 26px; flex-shrink: 0; }
.rx-contact__ic svg { width: 100%; height: 100%; }
.rx-contact__k { display: block; font-family: var(--rx-font-head); font-weight: var(--rx-fw-semibold); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rx-ink-muted); margin-bottom: .2rem; }
.rx-contact__list a { color: var(--rx-navy); border-bottom: 1px solid rgba(0,33,95,.25); }
.rx-contact__list a:hover { color: #ff5a5a; border-color: #ff5a5a; }
.rx-contact__social { margin-bottom: 1.8rem; }
.rx-contact__social-row { display: flex; gap: .7rem; margin-top: .6rem; }
.rx-contact__social-row a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(0,33,95,.25); color: var(--rx-navy); transition: background .2s var(--rx-ease), border-color .2s var(--rx-ease), transform .2s var(--rx-ease); }
.rx-contact__social-row a:hover { background: var(--rx-red); border-color: var(--rx-red); transform: translateY(-2px); }
.rx-contact__social-row svg { width: 20px; height: 20px; }
.rx-contact__backing { margin-top: auto; padding-top: 1.4rem; border-top: 1px solid rgba(0,33,95,.14); color: var(--rx-ink-muted); font-size: .95rem; line-height: 1.6; }
.rx-contact__form-panel { background: var(--rx-white); padding: clamp(1.8rem, 3.5vw, 3rem); }
.rx-contact__form-panel h2 { color: var(--rx-navy); font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold); font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 0 0 1.4rem; }
.rx-contact__form-panel .rx-form { text-align: left; }
@media (max-width: 820px) {
  .rx-contact { grid-template-columns: 1fr; }
}

/* ============================================================
   "UN PRODUCTO DE" — corporate attribution (Roux Corporation).
   Reusable pattern across brand sites (rouxlub → straton). Light band
   so the dark "CORPORATION" wordmark stays legible.
   ============================================================ */
.rx-producto-de { background: var(--rx-bg-alt); border-top: 1px solid var(--rx-border); text-align: center; }
.rx-producto-de__inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.rx-producto-de .rx-eyebrow { margin: 0; }
.rx-producto-de__logo { display: inline-block; }
.rx-producto-de__logo img { width: clamp(220px, 34vw, 320px); height: auto; display: block; transition: transform .3s var(--rx-ease); }
.rx-producto-de__logo:hover img { transform: translateY(-3px); }
.rx-producto-de__text { margin: 0; max-width: 52ch; color: var(--rx-ink-soft); font-size: var(--rx-text-md); line-height: 1.6; }
.rx-producto-de__text a { color: var(--rx-red); font-weight: var(--rx-fw-semibold); border-bottom: 1px solid currentColor; white-space: nowrap; }
.rx-producto-de__text a:hover { color: var(--rx-red-dark); }
