/* ============================================================
   REFALCO GROUP — Homepage 2026
   Scoped redesign. Does not override global style.css.
   Brand palette: gold #cbb682, dark #0a0a0a, cream #f5efe6
   ============================================================ */

:root {
  --rf-gold: #cbb682;
  --rf-gold-bright: #e0c98c;
  --rf-gold-deep: #a8945e;
  --rf-amber: #ffab02;
  --rf-ink: #0a0a0a;
  --rf-ink-soft: #15151a;
  --rf-ink-mid: #2d2d2d;
  --rf-cream: #f5efe6;
  --rf-cream-soft: #faf6ef;
  --rf-line: rgba(203, 182, 130, 0.22);
  --rf-line-strong: rgba(203, 182, 130, 0.55);
  --rf-text-muted: rgba(255, 255, 255, 0.62);
  --rf-text-muted-dark: rgba(10, 10, 10, 0.62);

  --rf-font-display: 'Montserrat', sans-serif;
  --rf-font-body: 'Open Sans', sans-serif;

  --rf-container: 1320px;
  --rf-section-pad: clamp(96px, 12vw, 168px);
  --rf-radius: 2px;

  --rf-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / scope ---------- */
.rf-page * { box-sizing: border-box; }
.rf-page {
  background: var(--rf-ink);
  color: #fff;
  font-family: var(--rf-font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.rf-container {
  max-width: var(--rf-container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  width: 100%;
}

/* ---------- Section primitives ---------- */
.rf-section {
  padding-top: var(--rf-section-pad);
  padding-bottom: var(--rf-section-pad);
  position: relative;
}

.rf-section--dark    { background: var(--rf-ink);       color: #fff; }
.rf-section--darker  { background: #050505;             color: #fff; }
.rf-section--cream   { background: var(--rf-cream);     color: var(--rf-ink); }
.rf-section--soft    { background: var(--rf-ink-soft);  color: #fff; }

.rf-section__label {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rf-gold);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.rf-section__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--rf-gold);
  display: inline-block;
}

.rf-section__title {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(34px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
  max-width: 18ch;
}
.rf-section__title strong { font-weight: 500; color: var(--rf-gold); }

.rf-section__lead {
  font-family: var(--rf-font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
  font-weight: 400;
  max-width: 62ch;
  margin: 0 0 24px;
}
.rf-section__body {
  font-size: 15.5px;
  line-height: 1.85;
  font-weight: 400;
  max-width: 60ch;
  margin: 0 0 16px;
  color: var(--rf-text-muted);
}
.rf-section--cream .rf-section__body { color: var(--rf-text-muted-dark); }

/* Divider rule between sections */
.rf-rule {
  width: 100%;
  height: 1px;
  background: var(--rf-line);
  margin: 0;
}

/* ============================================================
   1. HERO — Full-bleed video
   ============================================================ */
.rf-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 0;
}

.rf-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.rf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 35%, rgba(10,10,10,0.78) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.15) 100%);
}

.rf-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--rf-container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  color: #fff;
}

.rf-hero__eyebrow {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rf-gold);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.rf-hero__eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--rf-gold);
}

.rf-hero__title {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 36px;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.rf-hero__title em {
  font-style: normal;
  font-weight: 400;
  color: var(--rf-gold);
}

.rf-hero__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  font-weight: 300;
  max-width: 58ch;
  color: rgba(255,255,255,0.88);
  margin: 0 0 14px;
}
.rf-hero__lead--accent {
  color: var(--rf-gold-bright);
  font-weight: 400;
}

/* Hero stat panel */
.rf-hero__stat {
  display: inline-flex;
  flex-direction: column;
  margin-top: 56px;
  padding: 28px 36px 28px 32px;
  border-left: 1px solid var(--rf-gold);
  background: linear-gradient(90deg, rgba(203,182,130,0.08) 0%, rgba(203,182,130,0) 100%);
}
.rf-hero__stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rf-gold);
  margin-bottom: 12px;
}
.rf-hero__stat-value {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.rf-hero__stat-sub {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}

/* CTAs */
.rf-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 56px;
}

.rf-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--rf-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--rf-radius);
  transition: all 0.4s var(--rf-ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  white-space: nowrap;
}
.rf-btn::after {
  content: '→';
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 0.4s var(--rf-ease);
}
.rf-btn:hover::after { transform: translateX(6px); }

.rf-btn--gold {
  background: var(--rf-gold);
  color: var(--rf-ink);
  border-color: var(--rf-gold);
}
.rf-btn--gold:hover {
  background: var(--rf-gold-bright);
  border-color: var(--rf-gold-bright);
  color: var(--rf-ink);
}

.rf-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.rf-btn--ghost:hover {
  border-color: var(--rf-gold);
  color: var(--rf-gold);
}

.rf-btn--ghost-dark {
  background: transparent;
  color: var(--rf-ink);
  border-color: rgba(10,10,10,0.25);
}
.rf-btn--ghost-dark:hover {
  border-color: var(--rf-ink);
  color: var(--rf-ink);
  background: var(--rf-ink);
  color: #fff;
}

/* Scroll cue */
.rf-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.rf-scroll-cue::after {
  content: '';
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, var(--rf-gold), transparent);
  animation: rfScroll 2.2s ease-in-out infinite;
}
@keyframes rfScroll {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   2-column generic
   ============================================================ */
.rf-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.rf-grid-2--narrow { grid-template-columns: 0.9fr 1.1fr; }

@media (max-width: 900px) {
  .rf-grid-2, .rf-grid-2--narrow { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   3. STRATEGY — Compact growth-model timeline (modern, animated)
   ============================================================ */
.rf-strategy {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.rf-strategy__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 15% 10%, rgba(203,182,130,0.06), transparent 70%),
    radial-gradient(40% 40% at 90% 85%, rgba(203,182,130,0.05), transparent 70%);
}
.rf-strategy .rf-container { position: relative; z-index: 1; }

.rf-strategy__label-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rf-gold);
  margin-right: 12px;
  box-shadow: 0 0 0 3px rgba(203,182,130,0.18);
  animation: rf-strat-dot 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes rf-strat-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(203,182,130,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(203,182,130,0.05); }
}

/* Compact 2-col header */
.rf-strategy__head {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.rf-strategy__title {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
  color: #fff;
  max-width: 14ch;
}
.rf-strategy__title em {
  font-style: italic;
  color: var(--rf-gold);
  font-weight: 300;
}
.rf-strategy__title strong { font-weight: 500; }

.rf-strategy__head-right {
  padding-bottom: 6px;
  max-width: 52ch;
}
.rf-strategy__lead {
  font-family: var(--rf-font-body);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0 0 12px;
}
.rf-strategy__body {
  font-family: var(--rf-font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--rf-text-muted);
  margin: 0 0 18px;
}
.rf-strategy__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(203,182,130,0.55);
  transition: color 0.4s var(--rf-ease), gap 0.4s var(--rf-ease), border-color 0.4s var(--rf-ease);
}
.rf-strategy__cta svg { width: 14px; height: 14px; transition: transform 0.4s var(--rf-ease); }
.rf-strategy__cta:hover { color: var(--rf-gold); gap: 14px; border-color: var(--rf-gold); }
.rf-strategy__cta:hover svg { transform: translateX(3px); }

/* Editorial scaling-list — each row's bar grows wider, embodying "scale strategically" */
.rf-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  border-top: 1px solid rgba(203,182,130,0.18);
}

/* A single phase row */
.rf-flow__row {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 26px 12px 30px;
  border-bottom: 1px solid rgba(203,182,130,0.18);
  isolation: isolate;
  opacity: 0;
  transform: translateY(18px);
  transition:
    background 0.5s var(--rf-ease),
    transform 0.7s var(--rf-ease),
    opacity 0.7s var(--rf-ease);
}
.rf-flow.is-visible .rf-flow__row {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s var(--rf-ease) calc(0.15s + var(--rf-flow-i, 0) * 0.12s),
    transform 0.7s var(--rf-ease) calc(0.15s + var(--rf-flow-i, 0) * 0.12s),
    background 0.5s var(--rf-ease);
}

/* Gold side rail that grows on hover */
.rf-flow__row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: var(--rf-gold);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.5s var(--rf-ease);
  border-radius: 1px;
}
.rf-flow__row:hover {
  background: linear-gradient(90deg, rgba(203,182,130,0.04), transparent 70%);
}
.rf-flow__row:hover::before { transform: scaleY(1); }

/* Giant outlined step index on the left */
.rf-flow__index {
  font-family: var(--rf-font-display);
  font-weight: 700;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(203,182,130,0.22);
  user-select: none;
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.5s var(--rf-ease),
              color 0.5s var(--rf-ease),
              transform 0.5s var(--rf-ease);
}
.rf-flow__row:hover .rf-flow__index {
  color: var(--rf-gold);
  -webkit-text-stroke-color: var(--rf-gold);
  transform: translateX(2px);
}

/* Body */
.rf-flow__body { min-width: 0; }
.rf-flow__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-family: var(--rf-font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rf-gold);
}
.rf-flow__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(203,182,130,0.45);
}
.rf-flow__horizon {
  color: var(--rf-text-muted);
  letter-spacing: 0.22em;
  font-weight: 500;
}
.rf-flow__name {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: #fff;
  transition: color 0.4s var(--rf-ease), transform 0.4s var(--rf-ease);
}
.rf-flow__row:hover .rf-flow__name { color: var(--rf-gold); transform: translateX(3px); }
.rf-flow__desc {
  font-family: var(--rf-font-body);
  font-size: clamp(13px, 0.95vw, 14.5px);
  line-height: 1.6;
  color: var(--rf-text-muted);
  margin: 0;
  max-width: 60ch;
}

/* Scale tag pill (S / M / L / XL) */
.rf-flow__tag {
  font-family: var(--rf-font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--rf-gold);
  border: 1px solid rgba(203,182,130,0.35);
  border-radius: 999px;
  padding: 6px 14px;
  background: rgba(203,182,130,0.04);
  transition: background 0.4s var(--rf-ease), color 0.4s var(--rf-ease), border-color 0.4s var(--rf-ease);
  white-space: nowrap;
}
.rf-flow__row:hover .rf-flow__tag {
  background: var(--rf-gold);
  color: var(--rf-ink);
  border-color: var(--rf-gold);
}

/* The growth bar — width animates from 0 to var(--rf-flow-w) on reveal */
.rf-flow__bar {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--rf-gold), var(--rf-gold-bright));
  box-shadow: 0 0 12px rgba(203,182,130,0.45);
  border-radius: 1px;
  transition: width 1.2s var(--rf-ease) calc(0.45s + var(--rf-flow-i, 0) * 0.18s);
  z-index: 1;
}
.rf-flow.is-visible .rf-flow__bar { width: var(--rf-flow-w, 25%); }

/* Tablet & mobile */
@media (max-width: 1024px) {
  .rf-strategy__head { grid-template-columns: 1fr; gap: 24px; align-items: start; margin-bottom: 36px; }
  .rf-strategy__head-right { padding-bottom: 0; max-width: 60ch; }
  .rf-flow__row { grid-template-columns: 72px 1fr auto; gap: 20px; padding: 22px 10px 26px; }
}
@media (max-width: 640px) {
  .rf-flow__row {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 20px 8px 24px;
  }
  .rf-flow__tag {
    grid-column: 2 / 3;
    justify-self: start;
    margin-top: 6px;
    padding: 4px 10px;
    font-size: 11px;
  }
  .rf-flow__index { font-size: 42px; }
  .rf-flow__name { font-size: 19px; }
}

/* Honor reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .rf-flow__row { opacity: 1; transform: none; transition: none; }
  .rf-flow.is-visible .rf-flow__bar { transition: none; }
  .rf-strategy__label-dot { animation: none; }
}

/* ============================================================
   3b. INVESTMENT CRITERIA — Underwriting checklist (Portfolio page)
   ============================================================ */
.rf-criteria {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.rf-criteria__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 40% at 80% 10%, rgba(203,182,130,0.06), transparent 70%),
    radial-gradient(40% 40% at 10% 90%, rgba(203,182,130,0.04), transparent 70%);
}
.rf-criteria .rf-container { position: relative; z-index: 1; }

.rf-criteria__label-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rf-gold);
  margin-right: 12px;
  box-shadow: 0 0 0 3px rgba(203,182,130,0.18);
  animation: rf-criteria-dot 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes rf-criteria-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(203,182,130,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(203,182,130,0.05); }
}

.rf-criteria__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 1100px;
}
.rf-criteria__title {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
  color: #fff;
  max-width: 14ch;
}
.rf-criteria__title em {
  font-style: italic;
  color: var(--rf-gold);
  font-weight: 300;
}
.rf-criteria__lead {
  font-family: var(--rf-font-body);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  color: var(--rf-text-muted);
  margin: 0;
  padding-bottom: 6px;
  max-width: 44ch;
}

/* List */
.rf-criteria__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: rf-criteria;
}

.rf-criteria__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 22px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--rf-line);
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(20px);
  transition:
    background 0.5s var(--rf-ease),
    border-color 0.5s var(--rf-ease),
    box-shadow 0.5s var(--rf-ease),
    transform 0.7s var(--rf-ease),
    opacity 0.7s var(--rf-ease);
}
.rf-criteria__list.is-visible .rf-criteria__item {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s var(--rf-ease) calc(0.15s + var(--rf-criteria-i, 0) * 0.10s),
    transform 0.7s var(--rf-ease) calc(0.15s + var(--rf-criteria-i, 0) * 0.10s),
    background 0.4s var(--rf-ease),
    border-color 0.4s var(--rf-ease),
    box-shadow 0.4s var(--rf-ease);
}

/* Top accent that draws in on hover */
.rf-criteria__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--rf-gold), var(--rf-gold-bright));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s var(--rf-ease);
  z-index: 2;
}
.rf-criteria__item:hover {
  background: linear-gradient(180deg, rgba(203,182,130,0.06), rgba(203,182,130,0.01));
  border-color: var(--rf-line-strong);
  box-shadow: 0 20px 40px -22px rgba(0,0,0,0.6), 0 0 0 1px rgba(203,182,130,0.18);
}
.rf-criteria__item:hover::before { transform: scaleX(1); }

/* Check icon — animated stroke draw */
.rf-criteria__check {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rf-gold);
  border: 1px solid rgba(203,182,130,0.35);
  background: rgba(203,182,130,0.05);
  transition: background 0.4s var(--rf-ease), color 0.4s var(--rf-ease), border-color 0.4s var(--rf-ease), transform 0.5s var(--rf-ease);
}
.rf-criteria__check svg {
  width: 20px;
  height: 20px;
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  transition: stroke-dashoffset 0.9s var(--rf-ease) calc(0.55s + var(--rf-criteria-i, 0) * 0.10s);
}
.rf-criteria__list.is-visible .rf-criteria__check svg { stroke-dashoffset: 0; }
.rf-criteria__item:hover .rf-criteria__check {
  background: var(--rf-gold);
  border-color: var(--rf-gold);
  color: var(--rf-ink);
  transform: scale(1.06) rotate(-3deg);
}

/* Step label (small uppercase) */
.rf-criteria__num {
  position: relative;
  z-index: 2;
  font-family: var(--rf-font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rf-gold);
}
.rf-criteria__num::before { content: 'Criterion '; }

.rf-criteria__body { position: relative; z-index: 2; }
.rf-criteria__name {
  font-family: var(--rf-font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.22;
  letter-spacing: -0.008em;
  margin: 0 0 8px;
  color: #fff;
  transition: color 0.4s var(--rf-ease);
}
.rf-criteria__item:hover .rf-criteria__name { color: var(--rf-gold); }

.rf-criteria__desc {
  font-family: var(--rf-font-body);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--rf-text-muted);
  margin: 0;
}

/* Giant outlined index watermark — bottom-right corner */
.rf-criteria__index {
  position: absolute;
  right: -8px;
  bottom: -22px;
  font-family: var(--rf-font-display);
  font-weight: 700;
  font-size: clamp(80px, 9vw, 124px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(203,182,130,0.12);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  transition: -webkit-text-stroke-color 0.5s var(--rf-ease), transform 0.6s var(--rf-ease);
}
.rf-criteria__item:hover .rf-criteria__index {
  -webkit-text-stroke-color: rgba(203,182,130,0.32);
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 1100px) {
  .rf-criteria__list { grid-template-columns: repeat(3, 1fr); }
  .rf-criteria__item:nth-child(4) { grid-column: 1 / 2; }
  .rf-criteria__item:nth-child(5) { grid-column: 2 / 4; }
}
@media (max-width: 760px) {
  .rf-criteria__head { grid-template-columns: 1fr; gap: 18px; align-items: start; margin-bottom: 32px; }
  .rf-criteria__list { grid-template-columns: repeat(2, 1fr); }
  .rf-criteria__item:nth-child(4),
  .rf-criteria__item:nth-child(5) { grid-column: auto; }
  .rf-criteria__item:nth-child(5) { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .rf-criteria__list { grid-template-columns: 1fr; }
  .rf-criteria__item:nth-child(5) { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .rf-criteria__item { opacity: 1; transform: none; transition: none; }
  .rf-criteria__check svg { stroke-dashoffset: 0; transition: none; }
  .rf-criteria__label-dot { animation: none; }
}

/* ============================================================
   4. ECOSYSTEM — Modern animated bento (2026)
   ============================================================ */
.rf-eco { position: relative; overflow: hidden; isolation: isolate; }
.rf-eco__ambient {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 70%;
  height: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%,
              rgba(203, 182, 130, 0.10),
              rgba(203, 182, 130, 0.03) 35%,
              transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: rfEcoAmbient 14s ease-in-out infinite alternate;
}
@keyframes rfEcoAmbient {
  from { transform: translateX(-50%) scale(1); opacity: 0.7; }
  to   { transform: translateX(-50%) scale(1.12); opacity: 1; }
}
.rf-eco .rf-container { position: relative; z-index: 1; }

.rf-eco__label-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--rf-gold);
  box-shadow: 0 0 0 4px rgba(203, 182, 130, 0.18);
  animation: rfEcoLabelDot 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes rfEcoLabelDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(203, 182, 130, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(203, 182, 130, 0.05); }
}

.rf-eco__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(203, 182, 130, 0.55);
  transition: color 0.4s var(--rf-ease), gap 0.4s var(--rf-ease),
              border-color 0.4s var(--rf-ease);
}
.rf-eco__cta svg { width: 16px; height: 16px; transition: transform 0.4s var(--rf-ease); }
.rf-eco__cta:hover { color: var(--rf-gold); gap: 18px; border-color: var(--rf-gold); }
.rf-eco__cta:hover svg { transform: translateX(4px); }

.rf-bento {
  margin-top: clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 14px;
}

.rf-bento__cell {
  position: relative;
  background: linear-gradient(165deg,
              rgba(255, 255, 255, 0.025) 0%,
              rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(203, 182, 130, 0.14);
  border-radius: 8px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  overflow: hidden;
  transition: transform 0.55s var(--rf-ease),
              background 0.55s var(--rf-ease),
              border-color 0.55s var(--rf-ease),
              box-shadow 0.55s var(--rf-ease);
}

/* Shimmer sweep on hover */
.rf-bento__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
              transparent 40%,
              rgba(203, 182, 130, 0.08) 50%,
              transparent 60%);
  transform: translateX(-100%);
  transition: transform 1s var(--rf-ease);
  pointer-events: none;
}

.rf-bento__cell:hover {
  transform: translateY(-6px);
  background: linear-gradient(165deg,
              rgba(203, 182, 130, 0.08) 0%,
              rgba(255, 255, 255, 0.01) 100%);
  border-color: rgba(203, 182, 130, 0.42);
  box-shadow: 0 22px 48px -22px rgba(203, 182, 130, 0.28),
              inset 0 1px 0 rgba(203, 182, 130, 0.18);
}
.rf-bento__cell:hover::after { transform: translateX(100%); }
.rf-bento__cell:hover .rf-bento__name { color: var(--rf-gold); }
.rf-bento__cell:hover .rf-bento__icon {
  color: var(--rf-gold);
  border-color: rgba(203, 182, 130, 0.45);
  transform: translate(2px, -2px) rotate(-3deg);
}

.rf-bento__icon {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203, 182, 130, 0.22);
  border-radius: 10px;
  color: rgba(203, 182, 130, 0.65);
  transition: color 0.45s var(--rf-ease),
              transform 0.45s var(--rf-ease),
              border-color 0.45s var(--rf-ease);
  z-index: 2;
}
.rf-bento__icon svg { width: 22px; height: 22px; }

.rf-bento__num {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--rf-gold);
  position: relative;
  z-index: 1;
}
.rf-bento__body {
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.rf-bento__name {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -0.012em;
  transition: color 0.45s var(--rf-ease);
}
.rf-bento__desc {
  font-family: var(--rf-font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--rf-text-muted);
  margin: 0;
  font-weight: 400;
}

/* ── Hero cell ─────────────────────────────────────────────── */
.rf-bento__cell--hero {
  grid-column: span 6;
  background: linear-gradient(135deg, #0a0a0a 0%, #15151a 50%, #1a1812 100%);
  padding: clamp(40px, 5vw, 64px) clamp(36px, 5vw, 56px);
  min-height: 280px;
  border-color: rgba(203, 182, 130, 0.22);
}
.rf-bento__hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(203, 182, 130, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 182, 130, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 50%, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
  animation: rfEcoGridDrift 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes rfEcoGridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 56px 56px, 56px 56px; }
}
.rf-bento__hero-orb {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 280px;
  height: 280px;
  transform: translateY(-50%);
  background: radial-gradient(circle,
              rgba(203, 182, 130, 0.28) 0%,
              rgba(203, 182, 130, 0.06) 35%,
              transparent 70%);
  border-radius: 50%;
  filter: blur(2px);
  animation: rfEcoOrb 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes rfEcoOrb {
  from { transform: translateY(-50%) scale(1); opacity: 0.75; }
  to   { transform: translateY(-50%) scale(1.15); opacity: 1; }
}
.rf-bento__cell--hero .rf-bento__name {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 200;
  max-width: 22ch;
  margin-bottom: 32px;
}
.rf-bento__hero-stats {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}
.rf-bento__hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.rf-bento__hero-stats strong {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.rf-bento__hero-stats span {
  font-family: var(--rf-font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold);
}

.rf-bento__cell--wide  { grid-column: span 3; }
.rf-bento__cell--third { grid-column: span 2; }
.rf-bento__cell--half  { grid-column: span 3; }
.rf-bento__cell--full  { grid-column: span 6; min-height: 280px; }

/* ── JAHO featured ─────────────────────────────────────────── */
.rf-bento__cell--jaho {
  grid-column: span 4;
  background: linear-gradient(135deg,
              rgba(203, 182, 130, 0.16) 0%,
              rgba(203, 182, 130, 0.04) 50%,
              rgba(10, 10, 10, 0.5) 100%);
  border-color: rgba(203, 182, 130, 0.4);
  padding: 36px 32px;
}
.rf-bento__jaho-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle,
              rgba(203, 182, 130, 0.35) 0%,
              rgba(203, 182, 130, 0.08) 35%,
              transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  animation: rfJahoGlow 5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes rfJahoGlow {
  from { transform: scale(1) translate(0, 0); opacity: 0.7; }
  to   { transform: scale(1.18) translate(-12px, 10px); opacity: 1; }
}
.rf-bento__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  font-family: var(--rf-font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rf-gold);
  background: rgba(203, 182, 130, 0.08);
  border: 1px solid rgba(203, 182, 130, 0.35);
  border-radius: 40px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}
.rf-bento__badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rf-gold);
  position: relative;
}
.rf-bento__badge-pulse::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid var(--rf-gold);
  animation: rfBadgePulse 1.8s ease-out infinite;
}
@keyframes rfBadgePulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
.rf-bento__cell--jaho .rf-bento__name {
  color: var(--rf-gold);
  font-weight: 400;
  font-size: clamp(24px, 2.3vw, 34px);
}
.rf-bento__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.4s var(--rf-ease), gap 0.4s var(--rf-ease);
}
.rf-bento__more svg { width: 14px; height: 14px; transition: transform 0.4s var(--rf-ease); }
.rf-bento__cell--jaho:hover .rf-bento__more { color: var(--rf-gold); gap: 16px; }
.rf-bento__cell--jaho:hover .rf-bento__more svg { transform: translateX(4px); }

/* ── Future Cities banner ──────────────────────────────────── */
.rf-bento__cell--full {
  background: linear-gradient(135deg,
              rgba(10, 10, 10, 0.95) 0%,
              rgba(21, 21, 26, 0.95) 100%);
  padding: 44px clamp(32px, 5vw, 56px);
}
.rf-bento__horizon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.rf-bento__horizon span {
  flex: 1;
  background: linear-gradient(180deg,
              transparent 40%,
              rgba(203, 182, 130, 0.10) 80%,
              rgba(203, 182, 130, 0.20) 100%);
  border-right: 1px solid rgba(203, 182, 130, 0.10);
  transform-origin: bottom;
  animation: rfHorizonRise 4s ease-in-out infinite alternate;
}
.rf-bento__horizon span:nth-child(1) { height: 70%; animation-delay: 0s; }
.rf-bento__horizon span:nth-child(2) { height: 92%; animation-delay: 0.4s; }
.rf-bento__horizon span:nth-child(3) { height: 78%; animation-delay: 0.8s; }
.rf-bento__horizon span:nth-child(4) { height: 100%; animation-delay: 1.2s; }
@keyframes rfHorizonRise {
  from { transform: scaleY(0.92); opacity: 0.4; }
  to   { transform: scaleY(1.02); opacity: 0.75; }
}
.rf-bento__year {
  position: absolute;
  top: 50%;
  right: clamp(32px, 5vw, 56px);
  transform: translateY(-50%);
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(64px, 8vw, 120px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(203, 182, 130, 0.85);
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  z-index: 1;
}
.rf-bento__year span {
  font-size: 0.42em;
  color: var(--rf-gold);
  font-weight: 300;
  transition: transform 0.5s var(--rf-ease);
}
.rf-bento__cell--full:hover .rf-bento__year span { transform: translateX(8px); }

/* ── Reduce motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .rf-eco__ambient,
  .rf-eco__label-dot,
  .rf-bento__hero-grid,
  .rf-bento__hero-orb,
  .rf-bento__jaho-glow,
  .rf-bento__badge-pulse::after,
  .rf-bento__horizon span { animation: none; }
}

/* ── Reveal stagger extension ──────────────────────────────── */
html.rf-anim .rf-reveal--d5 { transition-delay: 0.55s; }
html.rf-anim .rf-reveal--d6 { transition-delay: 0.66s; }
html.rf-anim .rf-reveal--d7 { transition-delay: 0.78s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .rf-bento { grid-template-columns: repeat(4, 1fr); }
  .rf-bento__cell--hero,
  .rf-bento__cell--jaho,
  .rf-bento__cell--full { grid-column: span 4; }
  .rf-bento__cell--third { grid-column: span 2; }
}
@media (max-width: 720px) {
  .rf-bento { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .rf-bento__cell--hero,
  .rf-bento__cell--wide,
  .rf-bento__cell--third,
  .rf-bento__cell--half,
  .rf-bento__cell--full,
  .rf-bento__cell--jaho { grid-column: span 2; }
  .rf-bento__cell { min-height: 200px; padding: 24px 22px; }
  .rf-bento__icon { width: 36px; height: 36px; top: 20px; right: 20px; }
  .rf-bento__icon svg { width: 18px; height: 18px; }
  .rf-bento__year { font-size: clamp(48px, 11vw, 72px); }
}
@media (max-width: 480px) {
  .rf-bento { grid-template-columns: 1fr; }
  .rf-bento__cell--hero,
  .rf-bento__cell--wide,
  .rf-bento__cell--third,
  .rf-bento__cell--half,
  .rf-bento__cell--full,
  .rf-bento__cell--jaho { grid-column: span 1; }
  .rf-bento__hero-stats { gap: 28px; }
  .rf-bento__year { position: static; transform: none; margin-top: 16px; font-size: 56px; }
}

/* ============================================================
   4b. ECOSYSTEM — Orbital diagram (replaces bento for #ecosystem)
   ============================================================ */
.rf-orbit {
  --rf-orbit-r: 320px;
  --rf-orbit-node-w: 200px;
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: clamp(16px, 2vw, 28px) auto 0;
  aspect-ratio: 1 / 0.92;
  isolation: isolate;
  overflow: visible;
}

.rf-orbit__grid {
  position: absolute;
  inset: 4%;
  background-image:
    linear-gradient(rgba(203,182,130,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203,182,130,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 75%);
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s var(--rf-ease) 0.2s;
}
.rf-orbit.is-visible .rf-orbit__grid { opacity: 1; }

.rf-orbit__rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}
.rf-orbit__ring {
  position: absolute;
  border: 1px dashed rgba(203,182,130,0.18);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 1s var(--rf-ease);
}
.rf-orbit__ring--1 { width: 280px; height: 280px; }
.rf-orbit__ring--2 { width: 480px; height: 480px; border-style: solid; border-color: rgba(203,182,130,0.12); }
.rf-orbit__ring--3 { width: 660px; height: 660px; border-color: rgba(203,182,130,0.08); }
.rf-orbit.is-visible .rf-orbit__ring--1 { opacity: 1; transition-delay: 0.35s; animation: rf-orbit-spin 90s linear infinite; }
.rf-orbit.is-visible .rf-orbit__ring--2 { opacity: 1; transition-delay: 0.45s; animation: rf-orbit-spin-rev 180s linear infinite; }
.rf-orbit.is-visible .rf-orbit__ring--3 { opacity: 1; transition-delay: 0.55s; }

@keyframes rf-orbit-spin     { to { transform: rotate(360deg); } }
@keyframes rf-orbit-spin-rev { to { transform: rotate(-360deg); } }

.rf-orbit__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rf-gold);
  box-shadow: 0 0 12px var(--rf-gold);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.rf-orbit.is-visible .rf-orbit__particle { opacity: 0.85; }
.rf-orbit__particle--a { top: 18%; left: 22%; animation: rf-orbit-drift 9s ease-in-out infinite; }
.rf-orbit__particle--b { top: 76%; left: 78%; animation: rf-orbit-drift 11s ease-in-out -3s infinite reverse; }
.rf-orbit__particle--c { top: 32%; left: 84%; animation: rf-orbit-drift 13s ease-in-out -6s infinite; }
@keyframes rf-orbit-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50%      { transform: translate(20px, -30px) scale(0.6); opacity: 0.35; }
}

.rf-orbit__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.rf-orbit__line {
  stroke: rgba(203,182,130,0.55);
  stroke-width: 0.4;
  stroke-dasharray: 4 3;
  stroke-dashoffset: 200;
  filter: drop-shadow(0 0 2px rgba(203,182,130,0.4));
  transition: stroke-dashoffset 1.4s var(--rf-ease) calc(0.4s + var(--rf-orbit-i, 0) * 0.1s);
}
.rf-orbit.is-visible .rf-orbit__line {
  stroke-dashoffset: 0;
  animation: rf-orbit-flow 6s linear infinite;
  animation-delay: calc(1.6s + var(--rf-orbit-i, 0) * 0.2s);
}
@keyframes rf-orbit-flow {
  to { stroke-dashoffset: -28; }
}

.rf-orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  margin: -120px 0 0 -120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(203,182,130,0.18), rgba(203,182,130,0.02) 60%),
    radial-gradient(circle at center, rgba(10,10,10,0.95), rgba(10,10,10,0.7));
  border: 1px solid rgba(203,182,130,0.35);
  box-shadow:
    inset 0 0 40px rgba(203,182,130,0.12),
    0 0 60px rgba(203,182,130,0.18),
    0 0 0 1px rgba(203,182,130,0.08);
  z-index: 4;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s var(--rf-ease) 0.5s, transform 0.8s var(--rf-ease) 0.5s;
}
.rf-orbit.is-visible .rf-orbit__core { opacity: 1; transform: scale(1); }

.rf-orbit__core-pulse {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(203,182,130,0.45);
  opacity: 0;
  pointer-events: none;
}
.rf-orbit.is-visible .rf-orbit__core-pulse { animation: rf-orbit-pulse 4s ease-out infinite; }
.rf-orbit.is-visible .rf-orbit__core-pulse--d { animation-delay: 2s; }
@keyframes rf-orbit-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.rf-orbit__core-inner {
  text-align: center;
  display: grid;
  gap: 4px;
  padding: 0 20px;
}
.rf-orbit__core-tag {
  font-family: var(--rf-font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rf-gold);
}
.rf-orbit__core-big {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 4px 0 2px;
}
.rf-orbit__core-label {
  font-family: var(--rf-font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.2;
}
.rf-orbit__core-sub {
  font-family: var(--rf-font-body);
  font-size: 11px;
  color: var(--rf-text-muted);
  margin-top: 6px;
}

/* Division nodes — polar-positioned */
.rf-orbit__node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--rf-orbit-node-w);
  transform:
    translate(-50%, -50%)
    rotate(var(--rf-orbit-ang))
    translateY(calc(-1 * var(--rf-orbit-r)))
    rotate(calc(-1 * var(--rf-orbit-ang)));
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.005));
  border: 1px solid rgba(203,182,130,0.22);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 3;
  cursor: default;
  outline: none;
  opacity: 0;
  transition:
    opacity 0.7s var(--rf-ease) calc(0.7s + var(--rf-orbit-i, 0) * 0.1s),
    background 0.4s var(--rf-ease),
    border-color 0.4s var(--rf-ease),
    box-shadow 0.4s var(--rf-ease);
}
.rf-orbit.is-visible .rf-orbit__node { opacity: 1; }

.rf-orbit__node-num {
  grid-row: 1 / 3;
  grid-column: 1;
  align-self: center;
  font-family: var(--rf-font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(203,182,130,0.35);
  transition: color 0.4s var(--rf-ease), -webkit-text-stroke-color 0.4s var(--rf-ease);
}
.rf-orbit__node-icon { display: none; }
.rf-orbit__node-name {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--rf-font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  transition: color 0.4s var(--rf-ease);
}
.rf-orbit__node-tag {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--rf-font-body);
  font-size: 11px;
  line-height: 1.4;
  color: var(--rf-text-muted);
  margin: 0;
  letter-spacing: 0.02em;
}

.rf-orbit__node:hover,
.rf-orbit__node:focus-visible {
  background: linear-gradient(180deg, rgba(203,182,130,0.10), rgba(203,182,130,0.01));
  border-color: var(--rf-gold);
  box-shadow:
    0 18px 36px -18px rgba(0,0,0,0.7),
    0 0 24px rgba(203,182,130,0.22);
}
.rf-orbit__node:hover .rf-orbit__node-num,
.rf-orbit__node:focus-visible .rf-orbit__node-num {
  color: var(--rf-gold);
  -webkit-text-stroke-color: var(--rf-gold);
}
.rf-orbit__node:hover .rf-orbit__node-name,
.rf-orbit__node:focus-visible .rf-orbit__node-name { color: var(--rf-gold); }

/* JAHO featured spotlight banner */
.rf-eco__feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(56px, 7vw, 88px);
  padding: clamp(36px, 5vw, 60px);
  background: linear-gradient(135deg, rgba(203,182,130,0.10), rgba(203,182,130,0.01) 60%),
              linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--rf-line-strong);
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
}
.rf-eco__feature-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(60% 60% at 80% 20%, rgba(203,182,130,0.16), transparent 60%);
  z-index: 0;
  pointer-events: none;
  animation: rf-eco-feat-glow 8s ease-in-out infinite alternate;
}
@keyframes rf-eco-feat-glow {
  0%   { transform: translate(0, 0); opacity: 0.85; }
  100% { transform: translate(-6%, 4%); opacity: 1; }
}

.rf-eco__feature-bars {
  position: absolute;
  top: 12%;
  bottom: 12%;
  right: 6%;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}
.rf-eco__feature-bars span {
  display: block;
  width: 6px;
  background: linear-gradient(180deg, var(--rf-gold-bright), rgba(203,182,130,0));
  border-radius: 3px;
  animation: rf-eco-bar 2.4s ease-in-out infinite alternate;
}
.rf-eco__feature-bars span:nth-child(1) { height: 28%; animation-delay: -0.4s; }
.rf-eco__feature-bars span:nth-child(2) { height: 56%; animation-delay: -1.0s; }
.rf-eco__feature-bars span:nth-child(3) { height: 84%; animation-delay: -0.2s; }
.rf-eco__feature-bars span:nth-child(4) { height: 42%; animation-delay: -1.6s; }
.rf-eco__feature-bars span:nth-child(5) { height: 70%; animation-delay: -0.8s; }
@keyframes rf-eco-bar {
  to { transform: scaleY(0.55); }
}

.rf-eco__feature-body { position: relative; z-index: 2; }

.rf-eco__feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rf-font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold);
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(203,182,130,0.32);
  background: rgba(203,182,130,0.05);
}
.rf-eco__feature-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rf-gold);
  box-shadow: 0 0 0 3px rgba(203,182,130,0.2);
  animation: rf-eco-feat-pulse 2.2s ease-in-out infinite;
}
@keyframes rf-eco-feat-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(203,182,130,0.2); }
  50%      { box-shadow: 0 0 0 7px rgba(203,182,130,0.04); }
}

.rf-eco__feature-name {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0 0 14px;
  color: #fff;
}
.rf-eco__feature-desc {
  font-family: var(--rf-font-body);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  color: var(--rf-text-muted);
  margin: 0 0 22px;
  max-width: 52ch;
}
.rf-eco__feature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rf-gold);
  transition: color 0.4s var(--rf-ease), gap 0.4s var(--rf-ease);
}
.rf-eco__feature-link svg { width: 14px; height: 14px; transition: transform 0.4s var(--rf-ease); }
.rf-eco__feature-link:hover { color: var(--rf-gold); gap: 14px; }
.rf-eco__feature-link:hover svg { transform: translateX(4px); }

.rf-eco__feature-stamp {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}
.rf-eco__feature-stamp-big {
  font-family: var(--rf-font-display);
  font-weight: 700;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(203,182,130,0.35);
  user-select: none;
}
.rf-eco__feature-stamp-num {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold);
}

/* Tablet — collapse orbit to a vertical stack */
@media (max-width: 900px) {
  .rf-orbit {
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 560px;
    padding: 0;
  }
  .rf-orbit__grid,
  .rf-orbit__rings,
  .rf-orbit__lines,
  .rf-orbit__particle { display: none; }

  .rf-orbit__core {
    position: static;
    width: 100%;
    height: auto;
    margin: 0 0 8px;
    border-radius: 12px;
    padding: 24px 20px;
    aspect-ratio: auto;
  }
  .rf-orbit__core-big { font-size: 56px; }

  .rf-orbit__node {
    position: static;
    width: 100%;
    transform: none;
    grid-template-columns: 44px 1fr;
    padding: 16px 18px;
  }
  .rf-orbit__node-num { font-size: 32px; }
  .rf-orbit__node-name { font-size: 15px; }
}

@media (max-width: 720px) {
  .rf-eco__feature {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 24px;
  }
  .rf-eco__feature-bars { display: none; }
  .rf-eco__feature-stamp { justify-items: start; text-align: left; }
}

/* Honor reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .rf-orbit.is-visible .rf-orbit__ring--1,
  .rf-orbit.is-visible .rf-orbit__ring--2 { animation: none; }
  .rf-orbit.is-visible .rf-orbit__line { animation: none; }
  .rf-orbit.is-visible .rf-orbit__core-pulse { animation: none; }
  .rf-orbit__particle { animation: none !important; }
  .rf-eco__feature-glow,
  .rf-eco__feature-bars span,
  .rf-eco__feature-pulse { animation: none; }
}

/* ============================================================
   5. FUTURE VISION — 3-card vision board (2026)
   ============================================================ */
.rf-vision { position: relative; overflow: hidden; isolation: isolate; }
.rf-vision__ambient {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 40% at 20% 15%, rgba(203,182,130,0.08), transparent 70%),
    radial-gradient(35% 30% at 85% 80%, rgba(203,182,130,0.06), transparent 70%);
  animation: rfVisionAmbient 14s ease-in-out infinite alternate;
}
@keyframes rfVisionAmbient {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.06); }
}
.rf-vision .rf-container { position: relative; z-index: 1; }

.rf-vision__label-dot {
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--rf-gold);
  box-shadow: 0 0 0 4px rgba(203,182,130,0.18);
  animation: rfVisionDot 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes rfVisionDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(203,182,130,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(203,182,130,0.05); }
}

.rf-vision__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 88px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.rf-vision__title {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
  max-width: 16ch;
}
.rf-vision__title em { font-style: italic; color: var(--rf-gold); font-weight: 300; }
.rf-vision__title strong { font-style: normal; font-weight: 500; color: var(--rf-gold); }
.rf-vision__head-right { padding-bottom: 10px; max-width: 50ch; }
.rf-vision__lead {
  font-family: var(--rf-font-body);
  font-size: clamp(14.5px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.rf-vision__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
}
.rf-vision__card {
  position: relative;
  padding: 26px 28px 30px;
  background: linear-gradient(165deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
  border: 1px solid rgba(203,182,130,0.14);
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: transform 0.55s var(--rf-ease), border-color 0.55s var(--rf-ease),
              background 0.55s var(--rf-ease), box-shadow 0.55s var(--rf-ease);
}
.rf-vision__card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(203,182,130,0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 1s var(--rf-ease);
  pointer-events: none;
  z-index: 0;
}
.rf-vision__card:hover {
  transform: translateY(-6px);
  border-color: rgba(203,182,130,0.42);
  background: linear-gradient(165deg, rgba(203,182,130,0.08) 0%, rgba(255,255,255,0.01) 100%);
  box-shadow: 0 22px 48px -22px rgba(203,182,130,0.28),
              inset 0 1px 0 rgba(203,182,130,0.18);
}
.rf-vision__card:hover::after { transform: translateX(100%); }
.rf-vision__card:hover .rf-vision__card-title { color: var(--rf-gold); }

.rf-vision__card-num {
  position: relative; z-index: 1;
  margin-top: auto;
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold);
  margin-bottom: 14px;
}
.rf-vision__card-title {
  position: relative; z-index: 1;
  font-family: var(--rf-font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.2;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.012em;
  transition: color 0.45s var(--rf-ease);
}
.rf-vision__card-desc {
  position: relative; z-index: 1;
  font-family: var(--rf-font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--rf-text-muted);
  margin: 0;
}

.rf-vision__viz {
  position: relative;
  height: 160px;
  margin: -26px -28px 24px;
  border-bottom: 1px solid rgba(203,182,130,0.10);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(203,182,130,0.04) 0%, transparent 100%);
}

.rf-vision__viz--geo .rf-vision__lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.rf-vision__dot {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rf-gold);
  box-shadow: 0 0 0 4px rgba(203,182,130,0.18);
  animation: rfVisionDotPulse 2.8s ease-in-out infinite;
}
.rf-vision__dot--1 { top: 42%; left: 18%; animation-delay: 0s; }
.rf-vision__dot--2 { top: 58%; left: 78%; animation-delay: 1.2s; }
@keyframes rfVisionDotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(203,182,130,0.18); }
  50%      { box-shadow: 0 0 0 9px rgba(203,182,130,0.04); }
}

.rf-vision__viz--model { perspective: 600px; }
.rf-vision__layer {
  position: absolute;
  left: 50%;
  width: 56%;
  height: 14px;
  border: 1px solid rgba(203,182,130,0.35);
  background: linear-gradient(90deg, rgba(203,182,130,0.06), rgba(203,182,130,0.14), rgba(203,182,130,0.06));
  border-radius: 2px;
  transform: translateX(-50%) rotateX(58deg);
  transform-origin: center;
  animation: rfVisionLayer 4.5s ease-in-out infinite;
}
.rf-vision__layer--1 { top: 38%; animation-delay: 0s;   opacity: 1; }
.rf-vision__layer--2 { top: 50%; animation-delay: 0.3s; opacity: 0.85; width: 64%; }
.rf-vision__layer--3 { top: 62%; animation-delay: 0.6s; opacity: 0.7;  width: 72%; }
.rf-vision__layer--4 { top: 74%; animation-delay: 0.9s; opacity: 0.55; width: 80%; }
@keyframes rfVisionLayer {
  0%, 100% { transform: translateX(-50%) rotateX(58deg) translateY(0); }
  50%      { transform: translateX(-50%) rotateX(58deg) translateY(-4px); }
}

.rf-vision__viz--horizon {
  background: linear-gradient(180deg, rgba(203,182,130,0.10) 0%, rgba(203,182,130,0.04) 50%, rgba(10,10,10,0.5) 100%);
}
.rf-vision__sun {
  position: absolute;
  bottom: 38%; left: 50%;
  width: 88px; height: 88px;
  background: radial-gradient(circle, rgba(255,210,140,0.55) 0%, rgba(203,182,130,0.20) 40%, transparent 70%);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: rfVisionSun 5s ease-in-out infinite alternate;
}
@keyframes rfVisionSun {
  from { transform: translateX(-50%) translateY(0)    scale(1);    opacity: 0.85; }
  to   { transform: translateX(-50%) translateY(-6px) scale(1.08); opacity: 1; }
}
.rf-vision__horizon-line {
  position: absolute;
  bottom: 38%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203,182,130,0.65) 50%, transparent);
}
.rf-vision__year {
  position: absolute;
  bottom: 12px; right: 16px;
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--rf-gold);
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .rf-vision__ambient, .rf-vision__label-dot,
  .rf-vision__dot, .rf-vision__layer, .rf-vision__sun { animation: none; }
}
@media (max-width: 1100px) {
  .rf-vision__head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .rf-vision__head-right { padding-bottom: 0; max-width: 62ch; }
}
@media (max-width: 800px) {
  .rf-vision__grid { grid-template-columns: 1fr; }
  .rf-vision__card { min-height: auto; }
}

/* ============================================================
   6. FUTURE SYSTEMS — Animated numbered list (2026)
   ============================================================ */
.rf-systems { position: relative; overflow: hidden; isolation: isolate; }
.rf-systems__ambient {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 80% 30%, rgba(203,182,130,0.08), transparent 70%),
    radial-gradient(35% 30% at 10% 80%, rgba(203,182,130,0.05), transparent 70%);
  animation: rfSystemsAmbient 14s ease-in-out infinite alternate;
}
@keyframes rfSystemsAmbient { from { opacity: 0.7; } to { opacity: 1; } }
.rf-systems .rf-container { position: relative; z-index: 1; }

.rf-systems__label-dot {
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--rf-gold);
  box-shadow: 0 0 0 4px rgba(203,182,130,0.18);
  animation: rfSystemsDot 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes rfSystemsDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(203,182,130,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(203,182,130,0.05); }
}

.rf-systems__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.rf-systems__title {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
  max-width: 14ch;
}
.rf-systems__title em { font-style: italic; color: var(--rf-gold); font-weight: 300; }
.rf-systems__title strong { font-style: normal; font-weight: 500; color: var(--rf-gold); }
.rf-systems__head-right { padding-bottom: 10px; max-width: 50ch; }
.rf-systems__lead {
  font-family: var(--rf-font-body);
  font-size: clamp(14.5px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0 0 14px;
}
.rf-systems__body {
  font-family: var(--rf-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--rf-text-muted);
  margin: 0;
}

.rf-systems__list {
  list-style: none;
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(203,182,130,0.15);
}
.rf-systems__row {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(22px, 3vw, 32px) clamp(14px, 2vw, 28px);
  border-bottom: 1px solid rgba(203,182,130,0.15);
  cursor: default;
  isolation: isolate;
  transition: background 0.55s var(--rf-ease), padding-left 0.55s var(--rf-ease);
}
.rf-systems__row::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rf-gold), var(--rf-gold-bright));
  transition: width 1s var(--rf-ease) calc(0.2s + var(--rf-sys-i, 0) * 0.1s);
  box-shadow: 0 0 8px rgba(203,182,130,0.4);
}
html.rf-anim .rf-systems__row.is-visible::before { width: 100%; }
.rf-systems__row::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(203,182,130,0.10), rgba(203,182,130,0.02));
  opacity: 0;
  transition: opacity 0.55s var(--rf-ease);
  pointer-events: none;
  z-index: -1;
}
.rf-systems__row:hover { padding-left: clamp(20px, 2.5vw, 36px); }
.rf-systems__row:hover::after { opacity: 1; }
.rf-systems__row:hover .rf-systems__row-num {
  color: var(--rf-gold);
  -webkit-text-stroke-color: rgba(203,182,130,0.55);
  transform: translateX(-4px);
}
.rf-systems__row:hover .rf-systems__row-title { color: var(--rf-gold); }
.rf-systems__row:hover .rf-systems__row-desc { opacity: 1; }
.rf-systems__row:hover .rf-systems__row-arrow {
  color: var(--rf-ink);
  background: var(--rf-gold);
  border-color: var(--rf-gold);
  transform: translateX(6px);
}

.rf-systems__row-num {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(203,182,130,0.22);
  transition: color 0.5s var(--rf-ease),
              -webkit-text-stroke-color 0.5s var(--rf-ease),
              transform 0.5s var(--rf-ease);
}
.rf-systems__row-body { min-width: 0; }
.rf-systems__row-title {
  font-family: var(--rf-font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  margin: 0 0 6px;
  color: #fff;
  transition: color 0.5s var(--rf-ease);
}
.rf-systems__row-desc {
  font-family: var(--rf-font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--rf-text-muted);
  margin: 0;
  opacity: 0.6;
  transition: opacity 0.5s var(--rf-ease);
}
.rf-systems__row-arrow {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(203,182,130,0.32);
  color: rgba(203,182,130,0.7);
  transition: color 0.4s var(--rf-ease), background 0.4s var(--rf-ease),
              border-color 0.4s var(--rf-ease), transform 0.4s var(--rf-ease);
}
.rf-systems__row-arrow svg { width: 14px; height: 14px; }

@media (prefers-reduced-motion: reduce) {
  .rf-systems__ambient, .rf-systems__label-dot { animation: none; }
  .rf-systems__row::before { width: 100%; transition: none; }
}
@media (max-width: 1100px) {
  .rf-systems__head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .rf-systems__head-right { padding-bottom: 0; max-width: 62ch; }
}
@media (max-width: 720px) {
  .rf-systems__row { grid-template-columns: 64px 1fr; gap: 16px; padding: 20px 12px; }
  .rf-systems__row-num { font-size: 40px; }
  .rf-systems__row-arrow { display: none; }
  .rf-systems__row-desc { opacity: 1; font-size: 13px; }
}

/* ============================================================
   7-8. CTA bands — shared base
   ============================================================ */
.rf-cta-band {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  text-align: left;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.rf-cta-band--projects {
  background: linear-gradient(180deg, #f7f0e2 0%, var(--rf-cream) 100%);
  color: var(--rf-ink);
}
.rf-cta-band--leadership {
  background: linear-gradient(180deg, var(--rf-ink-soft) 0%, #0d0d12 100%);
  color: #fff;
}
.rf-cta-band .rf-container { position: relative; z-index: 1; }

/* ============================================================
   7. PROJECTS & EXECUTION — Editorial + metrics + marquee
   ============================================================ */
.rf-projects__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(168,148,94,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,148,94,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.8) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.8) 0%, transparent 75%);
  animation: rfProjectsGrid 40s linear infinite;
}
@keyframes rfProjectsGrid {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 64px 64px, 64px 64px; }
}

.rf-projects__corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 0;
  pointer-events: none;
}
.rf-projects__corner--tl {
  top: clamp(24px, 4vw, 56px);
  left: clamp(24px, 5vw, 64px);
  border-top: 1px solid rgba(168,148,94,0.35);
  border-left: 1px solid rgba(168,148,94,0.35);
}
.rf-projects__corner--br {
  bottom: clamp(24px, 4vw, 56px);
  right: clamp(24px, 5vw, 64px);
  border-bottom: 1px solid rgba(168,148,94,0.35);
  border-right: 1px solid rgba(168,148,94,0.35);
}

.rf-projects__label { color: var(--rf-gold-deep); }
.rf-projects__label-dot {
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--rf-gold-deep);
  box-shadow: 0 0 0 4px rgba(168,148,94,0.18);
  animation: rfProjectsDot 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes rfProjectsDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(168,148,94,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(168,148,94,0.05); }
}

.rf-projects__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 88px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.rf-projects__title {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin: 0;
  color: var(--rf-ink);
  max-width: 13ch;
}
.rf-projects__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--rf-gold-deep);
}
.rf-projects__head-right { padding-bottom: 8px; max-width: 50ch; }
.rf-projects__lead {
  font-family: var(--rf-font-body);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
  color: rgba(10,10,10,0.72);
  margin: 0 0 26px;
}

/* Premium CTA button */
.rf-projects__cta,
.rf-leadership__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s var(--rf-ease), transform 0.4s var(--rf-ease),
              box-shadow 0.4s var(--rf-ease);
}
.rf-projects__cta {
  color: var(--rf-ink);
  border: 1px solid rgba(10,10,10,0.55);
}
.rf-projects__cta-bg,
.rf-leadership__cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--rf-ink);
  transform: translateX(-101%);
  transition: transform 0.5s var(--rf-ease);
}
.rf-leadership__cta-bg { background: var(--rf-gold); }
.rf-projects__cta-arrow,
.rf-leadership__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(10,10,10,0.08);
  transition: background 0.4s var(--rf-ease), transform 0.4s var(--rf-ease),
              color 0.4s var(--rf-ease);
}
.rf-projects__cta-arrow svg,
.rf-leadership__cta-arrow svg { width: 11px; height: 11px; }

.rf-projects__cta:hover {
  color: var(--rf-cream);
  border-color: var(--rf-ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(10,10,10,0.4);
}
.rf-projects__cta:hover .rf-projects__cta-bg { transform: translateX(0); }
.rf-projects__cta:hover .rf-projects__cta-arrow {
  background: var(--rf-gold);
  color: var(--rf-ink);
  transform: translateX(3px);
}

/* Metrics row */
.rf-projects__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: clamp(48px, 6vw, 80px);
  background: rgba(168,148,94,0.25);
  border-top: 1px solid rgba(168,148,94,0.25);
  border-bottom: 1px solid rgba(168,148,94,0.25);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.rf-projects__metric {
  background: linear-gradient(180deg, var(--rf-cream) 0%, rgba(247,240,226,0.8) 100%);
  padding: clamp(28px, 3.5vw, 44px) clamp(20px, 2.5vw, 36px);
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--rf-ease);
}
.rf-projects__metric::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rf-gold-deep), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--rf-ease) 0.3s;
}
html.rf-anim .rf-projects__metric.is-visible::before { transform: scaleX(1); }
.rf-projects__metric:hover { background: linear-gradient(180deg, #faf5e8, var(--rf-cream)); }
.rf-projects__metric-value {
  display: block;
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--rf-ink);
  margin-bottom: 14px;
}
.rf-projects__metric-value sup {
  font-size: 0.45em;
  color: var(--rf-gold-deep);
  font-weight: 400;
  vertical-align: super;
  letter-spacing: 0;
}
.rf-projects__metric-label {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold-deep);
}

/* Marquee strip */
.rf-projects__marquee {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(168,148,94,0.18);
  border-bottom: 1px solid rgba(168,148,94,0.18);
  padding: 22px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.rf-projects__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: rfProjectsMarquee 32s linear infinite;
}
.rf-projects__marquee-track > span {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 36px);
  letter-spacing: -0.018em;
  color: rgba(10,10,10,0.78);
}
.rf-projects__marquee-track > span:nth-child(4n+1) { color: var(--rf-gold-deep); font-weight: 400; font-style: italic; }
.rf-projects__marquee-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rf-gold-deep);
  flex-shrink: 0;
}
@keyframes rfProjectsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .rf-projects__grid-bg,
  .rf-projects__label-dot,
  .rf-projects__marquee-track { animation: none; }
}
@media (max-width: 1100px) {
  .rf-projects__head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .rf-projects__head-right { padding-bottom: 0; max-width: 62ch; }
  .rf-projects__metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rf-projects__metrics { grid-template-columns: 1fr; }
  .rf-projects__corner { display: none; }
}

/* ============================================================
   8. LEADERSHIP — Editorial + pillar trio
   ============================================================ */
.rf-leadership__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 50% at 25% 20%, rgba(203,182,130,0.10), transparent 70%),
    radial-gradient(45% 40% at 85% 80%, rgba(203,182,130,0.08), transparent 70%);
  animation: rfLeadershipAmbient 14s ease-in-out infinite alternate;
}
@keyframes rfLeadershipAmbient {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.05); }
}

.rf-leadership__label-dot {
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--rf-gold);
  box-shadow: 0 0 0 4px rgba(203,182,130,0.18);
  animation: rfLeadershipDot 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes rfLeadershipDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(203,182,130,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(203,182,130,0.05); }
}

.rf-leadership__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 88px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.rf-leadership__title {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
  max-width: 14ch;
}
.rf-leadership__title em { font-style: italic; color: var(--rf-gold); font-weight: 300; }
.rf-leadership__title strong { font-style: normal; font-weight: 500; color: var(--rf-gold); }
.rf-leadership__head-right { padding-bottom: 10px; max-width: 50ch; }
.rf-leadership__lead {
  font-family: var(--rf-font-body);
  font-size: clamp(14.5px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

/* Pillar trio */
.rf-leadership__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.rf-leadership__pillar {
  position: relative;
  padding: 28px 28px 32px;
  background: linear-gradient(165deg,
              rgba(255,255,255,0.025) 0%,
              rgba(255,255,255,0.005) 100%);
  border: 1px solid rgba(203,182,130,0.14);
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: transform 0.55s var(--rf-ease), border-color 0.55s var(--rf-ease),
              background 0.55s var(--rf-ease), box-shadow 0.55s var(--rf-ease);
}
.rf-leadership__pillar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(203,182,130,0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 1s var(--rf-ease);
  pointer-events: none;
  z-index: 0;
}
.rf-leadership__pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(203,182,130,0.42);
  background: linear-gradient(165deg, rgba(203,182,130,0.08) 0%, rgba(255,255,255,0.01) 100%);
  box-shadow: 0 22px 48px -22px rgba(203,182,130,0.28),
              inset 0 1px 0 rgba(203,182,130,0.18);
}
.rf-leadership__pillar:hover::after { transform: translateX(100%); }
.rf-leadership__pillar:hover .rf-leadership__pillar-name { color: var(--rf-gold); }
.rf-leadership__pillar:hover .rf-leadership__pillar-glyph {
  color: var(--rf-ink);
  background: var(--rf-gold);
  border-color: var(--rf-gold);
  transform: rotate(-6deg);
}

.rf-leadership__pillar-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
  padding-bottom: 36px;
}
.rf-leadership__pillar-num {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--rf-gold);
}
.rf-leadership__pillar-glyph {
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(203,182,130,0.28);
  color: rgba(203,182,130,0.7);
  transition: color 0.45s var(--rf-ease), background 0.45s var(--rf-ease),
              border-color 0.45s var(--rf-ease), transform 0.45s var(--rf-ease);
}
.rf-leadership__pillar-glyph svg { width: 22px; height: 22px; }

.rf-leadership__pillar-name {
  position: relative;
  z-index: 1;
  font-family: var(--rf-font-display);
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.012em;
  transition: color 0.45s var(--rf-ease);
}
.rf-leadership__pillar-desc {
  position: relative;
  z-index: 1;
  font-family: var(--rf-font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--rf-text-muted);
  margin: 0;
}

/* CTA row */
.rf-leadership__cta-row {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}
.rf-leadership__cta {
  color: #fff;
  border: 1px solid rgba(203,182,130,0.55);
}
.rf-leadership__cta-arrow {
  background: rgba(203,182,130,0.15);
  color: var(--rf-gold);
}
.rf-leadership__cta:hover {
  color: var(--rf-ink);
  border-color: var(--rf-gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(203,182,130,0.5);
}
.rf-leadership__cta:hover .rf-leadership__cta-bg { transform: translateX(0); }
.rf-leadership__cta:hover .rf-leadership__cta-arrow {
  background: var(--rf-ink);
  color: var(--rf-gold);
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .rf-leadership__ambient,
  .rf-leadership__label-dot { animation: none; }
}
@media (max-width: 1100px) {
  .rf-leadership__head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .rf-leadership__head-right { padding-bottom: 0; max-width: 62ch; }
}
@media (max-width: 800px) {
  .rf-leadership__pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   FINAL MANIFESTO — Cinematic closing statement (2026)
   ============================================================ */
.rf-manifesto {
  background: linear-gradient(180deg, var(--rf-ink) 0%, #050505 100%);
  padding: clamp(120px, 16vw, 200px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Breathing radial glow */
.rf-manifesto__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(203,182,130,0.12) 0%, rgba(203,182,130,0.04) 30%, transparent 65%),
    radial-gradient(circle at 20% 30%, rgba(203,182,130,0.06) 0%, transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(203,182,130,0.05) 0%, transparent 45%);
  animation: rfManifestoGlow 8s ease-in-out infinite alternate;
}
@keyframes rfManifestoGlow {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.08); }
}

/* Floating particles */
.rf-manifesto__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.rf-manifesto__particles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rf-gold);
  box-shadow: 0 0 8px rgba(203,182,130,0.7);
  opacity: 0;
  animation: rfManifestoParticle 9s ease-in-out infinite;
}
.rf-manifesto__particles span:nth-child(1) { left: 10%;  top: 20%; animation-delay: 0s; }
.rf-manifesto__particles span:nth-child(2) { left: 90%;  top: 30%; animation-delay: 1.2s; }
.rf-manifesto__particles span:nth-child(3) { left: 22%;  top: 80%; animation-delay: 2.4s; }
.rf-manifesto__particles span:nth-child(4) { left: 78%;  top: 78%; animation-delay: 3.6s; }
.rf-manifesto__particles span:nth-child(5) { left: 50%;  top: 14%; animation-delay: 4.8s; }
.rf-manifesto__particles span:nth-child(6) { left: 6%;   top: 55%; animation-delay: 6s; }
.rf-manifesto__particles span:nth-child(7) { left: 94%;  top: 58%; animation-delay: 7.2s; }
.rf-manifesto__particles span:nth-child(8) { left: 38%;  top: 88%; animation-delay: 8s; }
@keyframes rfManifestoParticle {
  0%,100% { opacity: 0; transform: translateY(0)    scale(0.6); }
  20%     { opacity: 0.9; }
  50%     { opacity: 1; transform: translateY(-22px) scale(1); }
  80%     { opacity: 0.6; }
}

/* Edge rules — fade-in lines top + bottom */
.rf-manifesto__rule {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203,182,130,0.45) 50%, transparent);
  z-index: 0;
  opacity: 0;
  animation: rfManifestoRule 2s ease-out 0.4s forwards;
}
.rf-manifesto__rule--top { top: clamp(48px, 6vw, 80px); }
.rf-manifesto__rule--bot { bottom: clamp(48px, 6vw, 80px); }
@keyframes rfManifestoRule {
  from { opacity: 0; transform: scaleX(0.6); }
  to   { opacity: 1; transform: scaleX(1); }
}

.rf-manifesto__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Eyebrow */
.rf-manifesto__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 64px);
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--rf-gold);
}
.rf-manifesto__eyebrow-rule {
  width: 40px;
  height: 1px;
  background: var(--rf-gold);
}
.rf-manifesto__eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rf-gold);
  animation: rfManifestoEyeDot 2.4s ease-in-out infinite;
}
@keyframes rfManifestoEyeDot {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.2); }
}

/* Giant decorative quote */
.rf-manifesto__quote {
  position: absolute;
  top: clamp(40px, 8vw, 96px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(140px, 18vw, 280px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(203,182,130,0.10);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* Statement */
.rf-manifesto__title {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(28px, 4.5vw, 60px);
  line-height: 1.22;
  letter-spacing: -0.012em;
  margin: 0 auto clamp(36px, 5vw, 56px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  max-width: 24ch;
}
.rf-manifesto__line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.28em;
}
.rf-manifesto__line--muted { opacity: 0.86; }
.rf-manifesto__word {
  display: inline-block;
  position: relative;
}
.rf-manifesto__word--accent {
  position: relative;
  color: var(--rf-gold);
  font-style: italic;
  font-weight: 300;
  padding: 0 2px;
}
.rf-manifesto__underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rf-gold), var(--rf-gold-bright), var(--rf-gold), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s var(--rf-ease) 1.2s;
  box-shadow: 0 0 12px rgba(203,182,130,0.55);
}
html.rf-anim .rf-manifesto__word--accent.is-visible .rf-manifesto__underline { transform: scaleX(1); }

.rf-manifesto__dash {
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--rf-gold);
  margin-left: 0.2em;
  align-self: center;
  border-radius: 1px;
  transition: width 0.9s var(--rf-ease) 1.4s;
  box-shadow: 0 0 10px rgba(203,182,130,0.5);
}
html.rf-anim .rf-manifesto__dash.is-visible { width: 0.7em; }

.rf-manifesto__lead {
  font-family: var(--rf-font-body);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.8;
  color: var(--rf-text-muted);
  max-width: 60ch;
  margin: 0 auto clamp(56px, 7vw, 88px);
}

/* Signature row */
.rf-manifesto__signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 32px);
  margin-top: clamp(48px, 6vw, 80px);
}
.rf-manifesto__sig-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203,182,130,0.55), transparent);
}
.rf-manifesto__sig-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(203,182,130,0.45);
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--rf-gold);
  position: relative;
  transition: transform 0.5s var(--rf-ease), border-color 0.5s var(--rf-ease);
}
.rf-manifesto__sig-mark::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(203,182,130,0.18);
  animation: rfManifestoSigPulse 2.8s ease-out infinite;
}
@keyframes rfManifestoSigPulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}
.rf-manifesto__sig-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.rf-manifesto__sig-brand {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
}
.rf-manifesto__sig-horizon {
  font-family: var(--rf-font-display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold);
}

@media (prefers-reduced-motion: reduce) {
  .rf-manifesto__glow,
  .rf-manifesto__particles span,
  .rf-manifesto__eyebrow-dot,
  .rf-manifesto__sig-mark::before { animation: none; }
  .rf-manifesto__rule { opacity: 1; transform: scaleX(1); animation: none; }
}
@media (max-width: 600px) {
  .rf-manifesto__quote { font-size: 180px; top: 64px; }
  .rf-manifesto__signature { flex-wrap: wrap; gap: 16px; }
  .rf-manifesto__sig-line { max-width: 80px; }
  .rf-manifesto__sig-meta { text-align: center; }
}

/* ============================================================
   FOOTER STRIP
   ============================================================ */
.rf-footer {
  background: #050505;
  padding: 64px 0 40px;
  border-top: 1px solid var(--rf-line);
}
.rf-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.rf-footer__brand {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 14px;
}
.rf-footer__brand em {
  font-style: normal;
  color: var(--rf-gold);
  font-weight: 400;
}
.rf-footer__loc {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rf-gold);
  margin: 0 0 18px;
}
.rf-footer__tag {
  font-size: 14px;
  color: var(--rf-text-muted);
  max-width: 36ch;
  line-height: 1.65;
  margin: 0;
}
.rf-footer__h {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold);
  margin: 0 0 18px;
}
.rf-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rf-footer__list li { margin-bottom: 10px; }
.rf-footer__list a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.3s var(--rf-ease);
}
.rf-footer__list a:hover { color: var(--rf-gold); }

.rf-footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rf-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

@media (max-width: 800px) {
  .rf-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .rf-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   Header — sleek glass overlay, works on dark + cream sections
   ============================================================ */
.rf-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(203, 182, 130, 0.12);
  transition: background 0.4s var(--rf-ease);
}
.rf-page .site-header.header-scrolled,
.rf-page .site-header.scrolled,
.rf-page .site-header.header-sticky {
  background: rgba(8, 8, 8, 0.82);
  border-bottom-color: rgba(203, 182, 130, 0.18);
}
.rf-page .site-header .navbar { background: transparent !important; }
.rf-page .site-header .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: var(--rf-font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s var(--rf-ease);
}
.rf-page .site-header .nav-link:hover,
.rf-page .site-header .nav-link.active { color: var(--rf-gold) !important; }
.rf-page .navbar-brand img {
  filter: brightness(0) invert(1);
  max-height: 40px;
  transition: opacity 0.3s var(--rf-ease);
}
.rf-page .sidemenu_btn span { background: #fff !important; }

/* Contact — styled the same as other nav links */
.rf-page .rf-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.55rem;
  margin: 0;
  font-family: var(--rf-font-display);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88) !important;
  background: transparent;
  border: none;
  border-radius: 0;
  text-decoration: none !important;
  transition: color 0.3s var(--rf-ease);
  white-space: nowrap;
}
.rf-page .rf-nav-cta:hover { color: var(--rf-gold) !important; }
@media (max-width: 991px) {
  .rf-page .rf-nav-cta { display: none; }
}

/* Side-menu specific tweaks for new nav */
.rf-page .side-menu .navbar-nav .nav-link { font-size: 13px; letter-spacing: 0.18em; }

/* ============================================================
   Top bar — logo far LEFT, nav CENTERED (absolute), CTA+hamburger far RIGHT
   ============================================================ */
@media (min-width: 992px) {
  .rf-page .site-header .nav-cont.container {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(24px, 3vw, 48px);
    padding-right: clamp(24px, 3vw, 48px);
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 78px;
  }
  /* Logo — far left, in normal flow */
  .rf-page .site-header .navbar-brand {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    z-index: 2;
  }
  /* Centered nav — absolutely positioned at the geometric center of the bar */
  .rf-page .site-header .collapse.navbar-collapse {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    flex: 0 0 auto !important;
    width: max-content !important;
    max-width: calc(100vw - 480px) !important;
    flex-basis: auto !important;
    z-index: 1;
  }
  .rf-page .site-header .navbar-nav.ml-auto,
  .rf-page .site-header .navbar-nav {
    margin: 0 !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    list-style: none;
    padding: 0;
  }
  /* Right cluster — Contact link + hamburger (tight) */
  .rf-page .site-header .rf-nav-cta {
    flex: 0 0 auto;
    margin: 0 8px 0 0;
    padding: 0.5rem 0.4rem !important;
    z-index: 2;
    order: 90;
  }
  .rf-page .site-header .sidemenu_btn {
    flex: 0 0 auto;
    margin: 0;
    z-index: 2;
    order: 100;
  }
  /* Nav links — tighter spacing */
  .rf-page .site-header .nav-item {
    margin: 0 !important;
    padding: 0 !important;
  }
  .rf-page .site-header .nav-link {
    margin: 0 !important;
    padding: 0.5rem 0.3rem !important;
    font-size: 11.5px !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap;
  }
}
@media (min-width: 1280px) {
  .rf-page .site-header .nav-link,
  .rf-page .site-header .rf-nav-cta {
    margin: 0 !important;
    padding: 0.5rem 0.45rem !important;
    font-size: 12px !important;
    letter-spacing: 0.1em !important;
  }
}
@media (min-width: 1480px) {
  .rf-page .site-header .nav-link,
  .rf-page .site-header .rf-nav-cta {
    margin: 0 !important;
    padding: 0.5rem 0.6rem !important;
  }
}

/* Push hero so it accounts for fixed header on small screens */
@media (max-width: 992px) {
  .rf-page .site-header { background: rgba(8, 8, 8, 0.92); }
}

/* Reveal animations (subtle) — opt-in via .rf-anim on <html>, so no-JS fallback shows content */
html.rf-anim .rf-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--rf-ease), transform 0.9s var(--rf-ease);
}
html.rf-anim .rf-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Selection */
.rf-page ::selection { background: var(--rf-gold); color: var(--rf-ink); }

/* Reduce vertical pad for hero on small screens */
@media (max-width: 768px) {
  .rf-hero { padding: 140px 0 100px; min-height: 88vh; }
  .rf-hero__stat { padding: 22px 26px 22px 22px; margin-top: 40px; }
  .rf-cta-group { margin-top: 40px; }
}

/* Reveal delay variants */
html.rf-anim .rf-reveal--d1 { transition-delay: 0.10s; }
html.rf-anim .rf-reveal--d2 { transition-delay: 0.20s; }
html.rf-anim .rf-reveal--d3 { transition-delay: 0.32s; }
html.rf-anim .rf-reveal--d4 { transition-delay: 0.44s; }

/* Honor user motion pref */
@media (prefers-reduced-motion: reduce) {
  html.rf-anim .rf-reveal { opacity: 1; transform: none; transition: none; }
  .rf-scroll-cue { display: none; }
}

/* ============================================================
   PAGE HERO (non-video pages) — compact parallax banner
   ============================================================ */
.rf-pagehero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 180px 0 100px;
  overflow: hidden;
  background: var(--rf-ink);
}
.rf-pagehero__bg {
  position: absolute;
  inset: -10% 0 -10% 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 80ms linear;
}
.rf-pagehero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.30) 30%, rgba(10,10,10,0.85) 100%),
    radial-gradient(circle at 70% 50%, rgba(203,182,130,0.10) 0%, transparent 60%);
}
.rf-pagehero__inner {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--rf-container);
  margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px);
  color: #fff;
}
.rf-pagehero__eyebrow {
  font-family: var(--rf-font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--rf-gold); margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.rf-pagehero__eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--rf-gold);
}
.rf-pagehero__title {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  max-width: 18ch;
}
.rf-pagehero__title em {
  font-style: normal; font-weight: 400;
  color: var(--rf-gold);
}
.rf-pagehero__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7; font-weight: 300;
  max-width: 56ch;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

/* ============================================================
   STICKY RAIL (about) — left sticky text, right scrolling content
   ============================================================ */
.rf-rail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-top: 72px;
}
.rf-rail__sticky {
  position: sticky;
  top: 140px;
  align-self: start;
}
.rf-rail__year {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(72px, 11vw, 156px);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--rf-gold);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.rf-rail__cap {
  font-family: var(--rf-font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rf-gold);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.rf-rail__cap::before { content: ''; width: 36px; height: 1px; background: var(--rf-gold); }
.rf-rail__story p {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.85;
  color: var(--rf-text-muted);
  margin: 0 0 24px;
  max-width: 60ch;
}
.rf-rail__story p strong { color: #fff; font-weight: 500; }
@media (max-width: 900px) {
  .rf-rail { grid-template-columns: 1fr; gap: 40px; }
  .rf-rail__sticky { position: static; }
  .rf-rail__year { font-size: clamp(64px, 14vw, 96px); }
}

/* ============================================================
   COUNTERS — number count-up
   ============================================================ */
.rf-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--rf-line);
  border-bottom: 1px solid var(--rf-line);
}
.rf-counter {
  padding: 64px 40px;
  border-right: 1px solid var(--rf-line);
  text-align: left;
}
.rf-counter:last-child { border-right: none; }
.rf-counter__num {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
  font-variant-numeric: tabular-nums;
}
.rf-counter__num em {
  font-style: normal;
  color: var(--rf-gold);
  font-weight: 300;
}
.rf-counter__label {
  font-family: var(--rf-font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rf-gold);
}
.rf-counter__sub {
  display: block;
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--rf-text-muted);
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
}
@media (max-width: 800px) {
  .rf-counters { grid-template-columns: 1fr; }
  .rf-counter { border-right: none; border-bottom: 1px solid var(--rf-line); padding: 40px 24px; }
  .rf-counter:last-child { border-bottom: none; }
}

/* ============================================================
   QUOTE / TESTIMONIAL
   ============================================================ */
.rf-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--rf-line);
  border: 1px solid var(--rf-line);
}
.rf-quote {
  background: var(--rf-ink);
  padding: 56px 40px;
  display: flex; flex-direction: column;
  transition: background 0.4s var(--rf-ease);
}
.rf-quote:hover { background: var(--rf-ink-soft); }
.rf-quote__mark {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: 72px;
  line-height: 0.7;
  color: var(--rf-gold);
  opacity: 0.5;
  margin: 0 0 20px;
}
.rf-quote__text {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin: 0 0 32px;
  flex: 1;
}
.rf-quote__author {
  font-family: var(--rf-font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.rf-quote__role {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--rf-gold);
  letter-spacing: 0.15em;
  font-weight: 400;
}
@media (max-width: 900px) {
  .rf-quote-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ALTERNATING OFFSET ROWS (why-us)
   ============================================================ */
.rf-altrows { margin-top: 80px; display: flex; flex-direction: column; gap: clamp(80px, 10vw, 140px); }
.rf-altrow {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.rf-altrow--rev { grid-template-columns: 0.55fr 0.45fr; }
.rf-altrow--rev .rf-altrow__num-wrap { order: 2; }
.rf-altrow--rev .rf-altrow__body { order: 1; text-align: right; }
.rf-altrow__num {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(120px, 16vw, 240px);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--rf-gold);
  letter-spacing: -0.04em;
  margin: 0;
  display: block;
}
.rf-altrow--full .rf-altrow__num {
  -webkit-text-stroke: 0;
  color: var(--rf-gold);
  font-weight: 300;
}
.rf-altrow__lbl {
  font-family: var(--rf-font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rf-gold);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.rf-altrow__lbl::before { content: ''; width: 36px; height: 1px; background: var(--rf-gold); }
.rf-altrow--rev .rf-altrow__lbl { flex-direction: row-reverse; }
.rf-altrow--rev .rf-altrow__lbl::before { /* same line */ }
.rf-altrow__title {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: #fff;
}
.rf-altrow__title strong { font-weight: 500; color: var(--rf-gold); }
.rf-altrow__text {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.8;
  color: var(--rf-text-muted);
  max-width: 50ch;
  margin: 0;
}
.rf-altrow--rev .rf-altrow__text { margin-left: auto; }
@media (max-width: 900px) {
  .rf-altrow, .rf-altrow--rev { grid-template-columns: 1fr; gap: 24px; }
  .rf-altrow--rev .rf-altrow__num-wrap, .rf-altrow--rev .rf-altrow__body { order: initial; text-align: left; }
  .rf-altrow--rev .rf-altrow__text { margin-left: 0; }
  .rf-altrow--rev .rf-altrow__lbl { flex-direction: row; }
}

/* Vertical rail of advantages */
.rf-vrail {
  margin-top: 80px;
  display: flex; flex-direction: column;
  gap: 1px;
  background: var(--rf-line);
  border-top: 1px solid var(--rf-line);
  border-bottom: 1px solid var(--rf-line);
}
.rf-vrail__row {
  background: var(--rf-ink);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: 40px clamp(16px, 3vw, 32px);
  align-items: center;
  transition: background 0.4s var(--rf-ease);
}
.rf-vrail__row:hover { background: var(--rf-ink-soft); }
.rf-vrail__row:hover .rf-vrail__num { color: var(--rf-gold); }
.rf-vrail__num {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: rgba(203,182,130,0.45);
  letter-spacing: -0.02em;
  transition: color 0.4s var(--rf-ease);
}
.rf-vrail__h {
  font-family: var(--rf-font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  margin: 0 0 8px;
  color: #fff;
}
.rf-vrail__h strong { color: var(--rf-gold); font-weight: 500; }
.rf-vrail__p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--rf-text-muted);
  margin: 0;
  max-width: 64ch;
}
@media (max-width: 700px) {
  .rf-vrail__row { grid-template-columns: 1fr; padding: 32px 20px; gap: 12px; }
}

/* ============================================================
   FULL-BLEED SECTOR CARDS (investment-portfolio)
   ============================================================ */
.rf-sectors {
  margin-top: 80px;
  display: flex; flex-direction: column;
  gap: 1px;
  background: var(--rf-line);
  border-top: 1px solid var(--rf-line);
  border-bottom: 1px solid var(--rf-line);
}
.rf-sector {
  background: var(--rf-ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  overflow: hidden;
}
.rf-sector--rev { grid-template-columns: 1fr 1fr; }
.rf-sector--rev .rf-sector__media { order: 2; }
.rf-sector--rev .rf-sector__body { order: 1; }
.rf-sector__media {
  position: relative;
  overflow: hidden;
  background: #050505;
}
.rf-sector__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--rf-ease), filter 1.2s var(--rf-ease);
  filter: brightness(0.78) saturate(0.92);
}
.rf-sector:hover .rf-sector__media img {
  transform: scale(1.04);
  filter: brightness(0.9) saturate(1);
}
.rf-sector__body {
  padding: clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column;
  justify-content: center;
}
.rf-sector__num {
  font-family: var(--rf-font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rf-gold);
  margin-bottom: 22px;
}
.rf-sector__h {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.rf-sector__h a { color: #fff; text-decoration: none; transition: color 0.4s var(--rf-ease); }
.rf-sector__h a:hover { color: var(--rf-gold); }
.rf-sector__p {
  font-size: 15px; line-height: 1.7;
  color: var(--rf-text-muted);
  margin: 0 0 28px;
  max-width: 52ch;
}
.rf-sector__cta {
  font-family: var(--rf-font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rf-gold);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rf-gold);
  width: fit-content;
  transition: gap 0.3s var(--rf-ease);
}
.rf-sector__cta::after { content: '→'; }
.rf-sector__cta:hover { gap: 18px; color: var(--rf-gold-bright); }
@media (max-width: 900px) {
  .rf-sector, .rf-sector--rev { grid-template-columns: 1fr; }
  .rf-sector--rev .rf-sector__media { order: 1; }
  .rf-sector--rev .rf-sector__body { order: 2; }
  .rf-sector__media { min-height: 280px; }
}

/* Spec sheet — investment strategy */
.rf-spec {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rf-line);
  border: 1px solid var(--rf-line);
}
.rf-spec__cell {
  background: var(--rf-ink);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.rf-spec__cell--hero {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(203,182,130,0.10), rgba(203,182,130,0));
  border-left: 2px solid var(--rf-gold);
}
.rf-spec__k {
  font-family: var(--rf-font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rf-gold);
}
.rf-spec__v {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  margin: 0;
  color: #fff;
}
.rf-spec__v--big {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--rf-gold);
}
.rf-spec__p {
  font-size: 14.5px; line-height: 1.7;
  color: var(--rf-text-muted);
  margin: 0;
  max-width: 70ch;
}
@media (max-width: 700px) {
  .rf-spec { grid-template-columns: 1fr; }
  .rf-spec__cell--hero { grid-column: span 1; }
}

/* Approach bullets — 2 col with gold tick */
.rf-approach {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.rf-approach__item {
  padding: 28px 0 28px 36px;
  position: relative;
  border-top: 1px solid var(--rf-line);
}
.rf-approach__item:nth-child(odd) { padding-right: clamp(16px, 3vw, 48px); }
.rf-approach__item:nth-child(even) { padding-left: clamp(40px, 5vw, 64px); border-left: 1px solid var(--rf-line); }
.rf-approach__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 36px;
  width: 22px; height: 1px;
  background: var(--rf-gold);
}
.rf-approach__item:nth-child(even)::before {
  left: clamp(40px, 5vw, 64px);
  margin-left: -22px;
}
.rf-approach__item p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
@media (max-width: 700px) {
  .rf-approach { grid-template-columns: 1fr; }
  .rf-approach__item:nth-child(even) { padding-left: 36px; border-left: none; }
  .rf-approach__item:nth-child(even)::before { left: 0; margin-left: 0; }
}

/* ============================================================
   TEAM — Portrait card grid
   ============================================================ */
.rf-team-band {
  display: flex; flex-direction: column;
  gap: clamp(80px, 10vw, 140px);
}
.rf-team-band__h {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 56px;
  color: #fff;
}
.rf-team-band__h strong { font-weight: 500; color: var(--rf-gold); }

.rf-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.rf-team-grid--4 { grid-template-columns: repeat(4, 1fr); }
.rf-team-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; }

.rf-member {
  position: relative;
  overflow: hidden;
  background: var(--rf-ink-soft);
  border: 1px solid transparent;
  transition: border-color 0.5s var(--rf-ease), transform 0.5s var(--rf-ease);
}
.rf-member:hover {
  border-color: var(--rf-line-strong);
  transform: translateY(-4px);
}
.rf-member__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #1a1a1f;
}
.rf-member__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.92) saturate(0.85);
  transition: filter 0.7s var(--rf-ease), transform 1s var(--rf-ease);
}
.rf-member:hover .rf-member__media img {
  filter: grayscale(0) brightness(1) saturate(1);
  transform: scale(1.04);
}
.rf-member__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(10,10,10,0.92) 100%);
  pointer-events: none;
}
.rf-member__body {
  padding: 24px 28px 28px;
  background: var(--rf-ink-soft);
  border-top: 1px solid var(--rf-line);
}
.rf-member__role {
  font-family: var(--rf-font-display);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rf-gold);
  margin-bottom: 10px;
}
.rf-member__name {
  font-family: var(--rf-font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.25;
  margin: 0;
  color: #fff;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .rf-team-grid, .rf-team-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .rf-team-grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .rf-team-grid, .rf-team-grid--4 { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT — split editorial + form
   ============================================================ */
.rf-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-top: 72px;
}
.rf-contact__left { padding-right: clamp(0px, 3vw, 32px); }
.rf-contact__info {
  margin-top: 40px;
  display: flex; flex-direction: column;
}
.rf-contact__row {
  padding: 24px 0;
  border-top: 1px solid var(--rf-line);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: baseline;
}
.rf-contact__row:last-child { border-bottom: 1px solid var(--rf-line); }
.rf-contact__k {
  font-family: var(--rf-font-display);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rf-gold);
}
.rf-contact__v {
  font-size: 15.5px; line-height: 1.55;
  color: #fff;
  margin: 0;
  font-weight: 300;
}
.rf-contact__v a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.rf-contact__v a:hover { border-bottom-color: var(--rf-gold); }

.rf-form {
  display: flex; flex-direction: column;
  gap: 0;
  background: var(--rf-ink-soft);
  border: 1px solid var(--rf-line);
  padding: clamp(32px, 4vw, 56px);
}
.rf-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.rf-field {
  position: relative;
  border-bottom: 1px solid var(--rf-line);
  padding-top: 22px;
  padding-bottom: 4px;
}
.rf-form__row .rf-field + .rf-field { border-left: 1px solid var(--rf-line); padding-left: 16px; }
.rf-field input,
.rf-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--rf-font-body);
  font-size: 15px;
  padding: 16px 0 14px;
  resize: vertical;
}
.rf-field textarea { min-height: 120px; }
.rf-field label {
  position: absolute;
  left: 0;
  top: 36px;
  font-family: var(--rf-font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
  transition: top 0.3s var(--rf-ease), color 0.3s var(--rf-ease), font-size 0.3s var(--rf-ease);
}
.rf-form__row .rf-field:nth-child(2) label { left: 16px; }
.rf-field input:focus + label,
.rf-field input:not(:placeholder-shown) + label,
.rf-field textarea:focus + label,
.rf-field textarea:not(:placeholder-shown) + label {
  top: 0; color: var(--rf-gold); font-size: 10px;
}
.rf-field:focus-within { border-bottom-color: var(--rf-gold); }
.rf-form button[type="submit"], .rf-form .rf-form__submit {
  margin-top: 32px;
  background: var(--rf-gold);
  color: var(--rf-ink);
  border: 1px solid var(--rf-gold);
  padding: 18px 36px;
  font-family: var(--rf-font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--rf-ease), color 0.3s var(--rf-ease);
  display: inline-flex; align-items: center; gap: 12px;
  align-self: flex-start;
}
.rf-form button[type="submit"]::after, .rf-form .rf-form__submit::after { content: '→'; }
.rf-form button[type="submit"]:hover, .rf-form .rf-form__submit:hover {
  background: var(--rf-gold-bright);
}
@media (max-width: 900px) {
  .rf-contact { grid-template-columns: 1fr; }
  .rf-form__row { grid-template-columns: 1fr; }
  .rf-form__row .rf-field + .rf-field { border-left: none; padding-left: 0; }
  .rf-form__row .rf-field:nth-child(2) label { left: 0; }
}

/* Section heading variant — centered for non-grid pages */
.rf-section__title--center { text-align: center; margin-left: auto; margin-right: auto; max-width: 22ch; }
.rf-section__label--center { display: block; text-align: center; margin-left: 0; margin-right: 0; }

/* Address card / map placeholder */
.rf-map {
  margin-top: 56px;
  border: 1px solid var(--rf-line);
  overflow: hidden;
  position: relative;
  aspect-ratio: 21/9;
}
.rf-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.92);
}

/* Marquee for testimonials (horizontal infinite) */
.rf-marquee {
  margin-top: 64px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.rf-marquee__track {
  display: flex;
  gap: 24px;
  animation: rfMarquee 50s linear infinite;
  width: max-content;
}
.rf-marquee:hover .rf-marquee__track { animation-play-state: paused; }
.rf-marquee__card {
  flex: 0 0 clamp(280px, 30vw, 420px);
  background: var(--rf-ink-soft);
  padding: 36px 32px;
  border: 1px solid var(--rf-line);
}
@keyframes rfMarquee {
  to { transform: translateX(-50%); }
}

/* Image reveal mask — clip-path that opens on enter */
html.rf-anim .rf-mask {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--rf-ease);
}
html.rf-anim .rf-mask.is-visible { clip-path: inset(0 0 0 0); }

/* Helper: subtle background pattern */
.rf-bg-grid {
  position: relative;
}
.rf-bg-grid::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(203,182,130,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203,182,130,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 80%);
}
.rf-bg-grid > * { position: relative; z-index: 1; }

/* WhatsApp + back-to-top floating fix */
.rf-page .fixed-whats { z-index: 60; }

/* ============================================================
   HERO — 2035 Vision Card with sparkle field
   ============================================================ */
.rf-hero__vision-wrap {
  position: relative;
  display: inline-flex;
  margin-top: 56px;
  isolation: isolate;
}

/* ============================================================
   LAMP EFFECT — Gold spotlight from above (illuminates the €10B+ card)
   Vanilla CSS port of the framer-motion / Tailwind lamp component
   ============================================================ */
.rf-lamp {
  position: absolute;
  top: -260px;
  left: -260px;
  right: -260px;
  height: 320px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
  isolation: isolate;
  --rf-lamp-color: 203, 182, 130;
  --rf-lamp-bright: 230, 207, 145;
}

/* Two conic-gradient beams forming the V-shape of light */
.rf-lamp__beam {
  position: absolute;
  top: 0;
  height: 14rem;
  width: 30rem;
  opacity: 0;
  z-index: 1;
  filter: blur(2px);
  animation: rfLampBeamGrow 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.25s;
}
.rf-lamp__beam--right {
  right: 50%;
  background-image: conic-gradient(
    from 70deg at top center,
    rgba(var(--rf-lamp-color), 0.9) 0deg,
    rgba(var(--rf-lamp-color), 0.45) 6deg,
    rgba(var(--rf-lamp-color), 0) 18deg
  );
  /* Single soft fade so the beam dissolves into the hero gradient */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 50%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 50%, transparent 100%);
}
.rf-lamp__beam--left {
  left: 50%;
  background-image: conic-gradient(
    from 290deg at top center,
    rgba(var(--rf-lamp-color), 0) 342deg,
    rgba(var(--rf-lamp-color), 0.45) 354deg,
    rgba(var(--rf-lamp-color), 0.9) 360deg
  );
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 50%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 50%, transparent 100%);
}

@keyframes rfLampBeamGrow {
  0%   { opacity: 0;    width: 15rem; }
  100% { opacity: 1;    width: 30rem; }
}

/* Soft circular halo where the beams meet */
.rf-lamp__halo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 28rem;
  height: 9rem;
  background: rgba(var(--rf-lamp-color), 0.55);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 2;
  animation: rfLampGlowFade 1.6s ease-out forwards 0.25s;
  opacity: 0;
}
@keyframes rfLampGlowFade {
  0%   { opacity: 0; }
  100% { opacity: 0.5; }
}

/* Inner bright core of the lamp */
.rf-lamp__core {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 16rem;
  height: 9rem;
  background: rgba(var(--rf-lamp-bright), 0.9);
  border-radius: 50%;
  filter: blur(36px);
  z-index: 3;
  opacity: 0;
  animation: rfLampGlowFade 1.6s ease-out forwards 0.35s;
}

/* Sharp horizontal line where the lamp sits */
.rf-lamp__line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 15rem;
  background: linear-gradient(90deg, transparent, rgb(var(--rf-lamp-bright)) 30%, rgb(var(--rf-lamp-bright)) 70%, transparent);
  z-index: 4;
  box-shadow:
    0 0 14px rgba(var(--rf-lamp-bright), 0.95),
    0 0 28px rgba(var(--rf-lamp-color), 0.7);
  animation: rfLampLineGrow 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.25s;
  opacity: 0;
}
@keyframes rfLampLineGrow {
  0%   { width: 12rem; opacity: 0; }
  40%  { opacity: 1; }
  100% { width: 30rem; opacity: 1; }
}

/* Top mask — hides anything above the line so the lamp source feels solid */
.rf-lamp__mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--rf-ink);
  z-index: 5;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rf-lamp__beam,
  .rf-lamp__halo,
  .rf-lamp__core,
  .rf-lamp__line { animation: none; opacity: 1; width: 30rem; }
}

@media (max-width: 768px) {
  .rf-lamp { inset: -200px -100px auto -100px; height: 260px; }
  .rf-lamp__beam { width: 22rem; height: 11rem; }
  @keyframes rfLampBeamGrow { to { width: 22rem; opacity: 1; } }
  @keyframes rfLampLineGrow { to { width: 22rem; opacity: 1; } }
}

.rf-hero__vision {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 0;
  padding: 36px 56px 40px 56px;
  position: relative;
  z-index: 1; /* above the sparkle layer */
  background:
    linear-gradient(135deg, rgba(203,182,130,0.10) 0%, rgba(203,182,130,0.02) 60%, rgba(203,182,130,0.04) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(203, 182, 130, 0.35);
  border-radius: 2px;
  isolation: isolate;
  overflow: visible;
  animation: rfVisionFloat 6s ease-in-out infinite;
}
.rf-hero__vision::before {
  /* Outer glow */
  content: '';
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 30% 50%, rgba(203,182,130,0.35), transparent 60%);
  filter: blur(20px);
  opacity: 0.55;
  z-index: -1;
  border-radius: 4px;
  animation: rfVisionGlow 4s ease-in-out infinite;
}
@keyframes rfVisionFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes rfVisionGlow {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 0.85; }
}

/* Corner brackets */
.rf-hero__vision-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--rf-gold);
  pointer-events: none;
}
.rf-hero__vision-corner--tl { top: -1px; left: -1px;    border-right: none; border-bottom: none; }
.rf-hero__vision-corner--tr { top: -1px; right: -1px;   border-left: none;  border-bottom: none; }
.rf-hero__vision-corner--bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.rf-hero__vision-corner--br { bottom: -1px; right: -1px;border-left: none;  border-top: none; }

/* Label with live-dot */
.rf-hero__vision-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rf-gold);
}
.rf-hero__vision-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rf-gold);
  box-shadow: 0 0 0 0 rgba(203, 182, 130, 0.7);
  animation: rfVisionPulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes rfVisionPulse {
  0%   { box-shadow: 0 0 0 0   rgba(203, 182, 130, 0.7); }
  70%  { box-shadow: 0 0 0 14px rgba(203, 182, 130, 0); }
  100% { box-shadow: 0 0 0 0   rgba(203, 182, 130, 0); }
}

/* Big value */
.rf-hero__vision-value {
  font-family: var(--rf-font-display);
  font-weight: 700;
  font-size: clamp(72px, 11vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  text-shadow:
    0 0 30px rgba(203, 182, 130, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.5);
}
.rf-hero__vision-prefix {
  color: var(--rf-gold);
  font-weight: 300;
  font-size: 0.7em;
}
.rf-hero__vision-num {
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 0%, #e5d6b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sub-line */
.rf-hero__vision-sub {
  font-family: var(--rf-font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rf-hero__vision { animation: none; }
  .rf-hero__vision::before { animation: none; opacity: 0.55; }
  .rf-hero__vision-pulse { animation: none; }
}

/* Smaller screens */
@media (max-width: 768px) {
  .rf-hero__vision {
    padding: 28px 32px 32px;
    margin-top: 40px;
    width: 100%;
  }
  .rf-hero__vision-value { font-size: clamp(56px, 14vw, 88px); }
}

/* ============================================================
   02 — WHO WE ARE — Modern editorial (2026)
   ============================================================ */
.rf-who {
  position: relative;
  background: var(--rf-ink);
  padding: clamp(96px, 14vw, 180px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  isolation: isolate;
}

/* Ambient radial glow at top */
.rf-who__glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%,
              rgba(203, 182, 130, 0.10) 0%,
              rgba(203, 182, 130, 0.04) 30%,
              transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: rfWhoGlow 12s ease-in-out infinite alternate;
}
@keyframes rfWhoGlow {
  0%   { opacity: 0.7; transform: translateX(-50%) scale(1); }
  100% { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

/* Giant ghost numeral */
.rf-who__bg {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(280px, 40vw, 640px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: rgba(203, 182, 130, 0.04);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  animation: rfWhoFloat 14s ease-in-out infinite alternate;
}
@keyframes rfWhoFloat {
  from { transform: translate(0, -50%); }
  to   { transform: translate(-22px, calc(-50% - 12px)); }
}

/* Vertical grid lines (subtle architectural rhythm) */
.rf-who__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  pointer-events: none;
}
.rf-who__grid-lines span {
  border-left: 1px solid rgba(203, 182, 130, 0.05);
  height: 100%;
}
.rf-who__grid-lines span:first-child { border-left: none; }

@media (prefers-reduced-motion: reduce) {
  .rf-who__glow,
  .rf-who__bg { animation: none; }
}

.rf-who__inner {
  position: relative;
  z-index: 1;
}

/* ── Editorial header (2-col asymmetric) ───────────────────── */
.rf-who__head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 88px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.rf-who__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rf-gold);
  margin-bottom: 32px;
}
.rf-who__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rf-gold);
  box-shadow: 0 0 0 4px rgba(203, 182, 130, 0.18);
  animation: rfWhoDot 2.4s ease-in-out infinite;
}
@keyframes rfWhoDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(203, 182, 130, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(203, 182, 130, 0.05); }
}

/* Staircase headline — aligned with global section-title scale */
.rf-who__title {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  max-width: 14ch;
}
.rf-who__word { display: inline-block; position: relative; }
.rf-who__word--accent {
  font-style: italic;
  color: var(--rf-gold);
  font-weight: 300;
}

/* Right column lead + CTA */
.rf-who__head-right {
  padding-bottom: 14px;
  max-width: 44ch;
}
.rf-who__lead {
  font-family: var(--rf-font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.75;
  font-weight: 400;
  color: var(--rf-text-muted);
  margin: 0 0 28px;
}
.rf-who__lead strong {
  color: var(--rf-gold);
  font-weight: 500;
}

.rf-who__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(203, 182, 130, 0.55);
  transition: color 0.4s var(--rf-ease), gap 0.4s var(--rf-ease),
              border-color 0.4s var(--rf-ease);
}
.rf-who__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--rf-ease);
}
.rf-who__cta:hover {
  color: var(--rf-gold);
  gap: 18px;
  border-color: var(--rf-gold);
}
.rf-who__cta:hover svg { transform: translateX(4px); }

/* ── Card grid ─────────────────────────────────────────────── */
.rf-who__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto clamp(56px, 7vw, 96px);
}

.rf-who__pillar {
  position: relative;
  padding: 32px 28px 36px;
  background: linear-gradient(165deg,
              rgba(255, 255, 255, 0.028) 0%,
              rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(203, 182, 130, 0.14);
  border-radius: 6px;
  overflow: hidden;
  cursor: default;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  text-align: left;
  outline: none;
  isolation: isolate;
  transition: transform 0.55s var(--rf-ease),
              background 0.55s var(--rf-ease),
              border-color 0.55s var(--rf-ease),
              box-shadow 0.55s var(--rf-ease);
}

/* Sweeping diagonal shine */
.rf-who__pillar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
              transparent 0%,
              transparent 40%,
              rgba(203, 182, 130, 0.10) 50%,
              transparent 60%,
              transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.9s var(--rf-ease);
  pointer-events: none;
  z-index: 1;
}

/* Top accent bar that draws in on hover */
.rf-who__pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--rf-gold), var(--rf-gold-bright), var(--rf-gold));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s var(--rf-ease);
  z-index: 3;
}

.rf-who__pillar:hover,
.rf-who__pillar:focus-visible {
  transform: translateY(-8px);
  background: linear-gradient(165deg,
              rgba(203, 182, 130, 0.08) 0%,
              rgba(255, 255, 255, 0.01) 100%);
  border-color: rgba(203, 182, 130, 0.42);
  box-shadow: 0 24px 56px -24px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(203, 182, 130, 0.20),
              inset 0 1px 0 rgba(203, 182, 130, 0.18);
}
.rf-who__pillar:hover::after,
.rf-who__pillar:focus-visible::after { transform: translateX(100%); }
.rf-who__pillar:hover::before,
.rf-who__pillar:focus-visible::before { transform: scaleX(1); }

/* Giant corner watermark number */
.rf-who__pillar-watermark {
  position: absolute;
  bottom: -22px;
  right: -10px;
  font-family: var(--rf-font-display);
  font-weight: 700;
  font-size: clamp(110px, 11vw, 168px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(203, 182, 130, 0.09);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  transition: -webkit-text-stroke-color 0.55s var(--rf-ease),
              transform 0.7s var(--rf-ease);
}
.rf-who__pillar:hover .rf-who__pillar-watermark,
.rf-who__pillar:focus-visible .rf-who__pillar-watermark {
  -webkit-text-stroke-color: rgba(203, 182, 130, 0.28);
  transform: translateY(-6px) scale(1.04);
}

/* Animated icon container */
.rf-who__pillar-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--rf-gold);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(203, 182, 130, 0.18), rgba(203, 182, 130, 0.02) 60%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(203, 182, 130, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.55s var(--rf-ease),
              color 0.55s var(--rf-ease),
              border-color 0.55s var(--rf-ease),
              background 0.55s var(--rf-ease),
              box-shadow 0.55s var(--rf-ease);
}
.rf-who__pillar-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  transition: transform 0.6s var(--rf-ease);
}
.rf-who__pillar:hover .rf-who__pillar-icon,
.rf-who__pillar:focus-visible .rf-who__pillar-icon {
  transform: translateY(-2px) rotate(-3deg);
  color: var(--rf-ink);
  background:
    radial-gradient(120% 120% at 0% 0%, var(--rf-gold-bright), var(--rf-gold) 70%);
  border-color: var(--rf-gold);
  box-shadow: 0 12px 24px -10px rgba(203, 182, 130, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.rf-who__pillar:hover .rf-who__pillar-icon svg,
.rf-who__pillar:focus-visible .rf-who__pillar-icon svg {
  transform: scale(1.08) rotate(3deg);
}

.rf-who__pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.rf-who__pillar-num {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--rf-gold);
  text-transform: uppercase;
}
.rf-who__pillar-arrow {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(203, 182, 130, 0.28);
  color: rgba(203, 182, 130, 0.7);
  transition: transform 0.4s var(--rf-ease),
              color 0.4s var(--rf-ease),
              border-color 0.4s var(--rf-ease),
              background 0.4s var(--rf-ease);
}
.rf-who__pillar-arrow svg { width: 11px; height: 11px; }
.rf-who__pillar:hover .rf-who__pillar-arrow,
.rf-who__pillar:focus-visible .rf-who__pillar-arrow {
  color: var(--rf-ink);
  background: var(--rf-gold);
  border-color: var(--rf-gold);
  transform: rotate(-8deg) translate(2px, -2px);
}

.rf-who__pillar-name {
  position: relative;
  z-index: 2;
  font-family: var(--rf-font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.18;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.018em;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  transition: color 0.4s var(--rf-ease), transform 0.5s var(--rf-ease);
}
.rf-who__pillar:hover .rf-who__pillar-name {
  color: var(--rf-gold);
  transform: translateX(2px);
}

.rf-who__pillar-desc {
  position: relative;
  z-index: 2;
  font-family: var(--rf-font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--rf-text-muted);
  margin: 0;
  font-weight: 400;
  opacity: 0.78;
  transition: opacity 0.4s var(--rf-ease);
}
.rf-who__pillar:hover .rf-who__pillar-desc { opacity: 1; }

/* Staggered card entrance via custom index */
html.rf-anim .rf-who__pillar.rf-reveal {
  transition-delay: calc(var(--rf-who-i, 0) * 0.10s) !important;
}
@media (prefers-reduced-motion: reduce) {
  html.rf-anim .rf-who__pillar.rf-reveal { transition-delay: 0s !important; }
}

/* Bottom progress line — fills on reveal */
.rf-who__pillar-line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--rf-gold), var(--rf-gold-bright));
  transition: width 1.1s var(--rf-ease) 0.35s;
}
html.rf-anim .rf-who__pillar.is-visible .rf-who__pillar-line { width: 100%; }

/* Scroll-filled bottom rule */
.rf-who__rule {
  height: 1px;
  background: rgba(203, 182, 130, 0.15);
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}
.rf-who__rule span {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--rf-gold), var(--rf-gold-bright));
  transition: width 2s var(--rf-ease) 0.3s;
}
html.rf-anim .rf-who__rule.is-visible span { width: 100%; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .rf-who__head {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .rf-who__head-right { padding-bottom: 0; max-width: 60ch; }
  .rf-who__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .rf-who__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rf-who__pillar { min-height: 260px; padding: 24px 22px 28px; }
  .rf-who__pillar-icon { width: 48px; height: 48px; margin-bottom: 20px; border-radius: 12px; }
  .rf-who__pillar-icon svg { width: 22px; height: 22px; }
  .rf-who__pillar-watermark { font-size: 130px; }
}
@media (max-width: 480px) {
  .rf-who__grid { grid-template-columns: 1fr; }
  .rf-who__pillar { min-height: auto; }
  .rf-who__bg { font-size: 240px; right: -10%; }
}

/* ============================================================
   HERO — EDITORIAL SPLIT (v3)
   Title + minimal CTAs on left · Vision anchor on right · Data strip at bottom
   ============================================================ */

.rf-page .rf-hero__overlay {
  background:
    linear-gradient(100deg, rgba(8,8,10,0.78) 0%, rgba(8,8,10,0.55) 40%, rgba(8,8,10,0.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0.78) 100%),
    radial-gradient(circle at 80% 35%, rgba(203,182,130,0.08), transparent 55%);
}

.rf-hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 12% 33%, rgba(255,255,255,0.10) 0px, transparent 1.2px, transparent 3px),
    repeating-radial-gradient(circle at 88% 73%, rgba(255,255,255,0.08) 0px, transparent 0.9px, transparent 4px);
}

.rf-hero__grid {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--rf-container);
  margin: 0 auto;
  padding: 40px clamp(28px, 5vw, 72px);
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

.rf-hero__main { color: #fff; }

.rf-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  font-family: var(--rf-font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.rf-hero__eyebrow::before { content: none; }
.rf-hero__index {
  color: var(--rf-gold-bright);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
}
.rf-hero__rule {
  display: inline-block;
  width: 52px;
  height: 1px;
  background: var(--rf-gold);
  flex-shrink: 0;
}
.rf-hero__chip {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

.rf-hero__title {
  font-family: var(--rf-font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: -0.028em;
  margin: 0 0 28px;
  color: #fff;
  text-shadow:
    0 2px 24px rgba(0,0,0,0.5),
    0 0 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  max-width: none;
}
.rf-hero__line { display: block; }
.rf-hero__line--accent {
  color: var(--rf-gold);
  font-style: italic;
  font-weight: 500;
  padding-left: 0.8ch;
}

.rf-hero__lead {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  font-weight: 400;
  max-width: 44ch;
  color: rgba(255,255,255,0.78);
  margin: 0 0 48px;
}

.rf-hero__links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.rf-hero__link {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  min-width: 240px;
  position: relative;
  transition: border-color 0.4s var(--rf-ease), color 0.4s var(--rf-ease);
}
.rf-hero__link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--rf-gold);
  transition: width 0.5s var(--rf-ease);
}
.rf-hero__link:hover {
  color: var(--rf-gold-bright);
  border-top-color: rgba(203,182,130,0.5);
  border-bottom-color: transparent;
}
.rf-hero__link:hover::before { width: 100%; }
.rf-hero__link-num {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--rf-gold);
  flex-shrink: 0;
}
.rf-hero__link-text {
  font-family: var(--rf-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex: 1;
}
.rf-hero__link-arrow {
  font-size: 16px;
  font-weight: 300;
  color: var(--rf-gold);
  transition: transform 0.4s var(--rf-ease);
}
.rf-hero__link:hover .rf-hero__link-arrow { transform: translateX(8px); }

/* ─── Floating typographic display (no border, no card) ─── */
.rf-hero__anchor {
  position: relative;
  padding: 0;
  background: none;
  border: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  box-shadow: none;
  isolation: isolate;
  justify-self: end;
  width: 100%;
  max-width: 460px;
  text-align: right;
}
.rf-hero__anchor::before {
  /* Ambient gold glow only — sits behind the typography */
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at 65% 50%, rgba(203,182,130,0.20), transparent 60%);
  filter: blur(50px);
  z-index: -1;
  opacity: 0.7;
  animation: rfAnchorPulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes rfAnchorPulse {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 0.85; }
}

/* Corner brackets — no longer needed */
.rf-page .rf-hero__anchor-mark { display: none !important; }

/* Simple editorial top label */
.rf-hero__anchor-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 14px;
  width: 100%;
}
.rf-hero__anchor-top::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--rf-gold);
}
.rf-hero__anchor-year {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--rf-gold);
  font-variant-numeric: tabular-nums;
}
.rf-page .rf-hero__anchor-live,
.rf-page .rf-hero__anchor-dot { display: none !important; }

.rf-hero__anchor-value {
  font-family: var(--rf-font-display);
  font-weight: 800;
  font-size: clamp(84px, 11vw, 160px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2px;
  margin-bottom: 4px;
  text-shadow:
    0 0 60px rgba(203,182,130,0.30),
    0 6px 32px rgba(0,0,0,0.5);
}
.rf-hero__anchor-prefix {
  color: var(--rf-gold);
  font-weight: 500;
  font-size: 0.55em;
  line-height: 1;
  margin-top: 0.22em;
}
.rf-hero__anchor-num {
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #ffffff 0%, #f0dfb6 60%, #d4b87a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rf-hero__anchor-tag {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--rf-gold);
  margin-bottom: 36px;
}

/* Hide legacy meta-row markup (replaced by timeline + chips below) */
.rf-page .rf-hero__anchor-rule,
.rf-page .rf-hero__anchor-meta,
.rf-page .rf-hero__anchor-head { display: none !important; }

/* 2025 → Now → 2035 — thin elegant progress line */
.rf-hero__timeline {
  margin-bottom: 28px;
  width: 100%;
}
.rf-hero__timeline-bar {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,0.16);
  overflow: visible;
}
.rf-hero__timeline-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--rf-gold);
  box-shadow: 0 0 8px rgba(203,182,130,0.7);
  animation: rfTimelineFill 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.4s;
}
@keyframes rfTimelineFill { to { width: 12%; } }
.rf-hero__timeline-marker {
  position: absolute;
  top: 50%;
  left: 12%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rf-gold-bright);
  transform: translate(-50%, -50%) scale(0.4);
  box-shadow:
    0 0 0 4px rgba(203,182,130,0.18),
    0 0 12px rgba(230, 207, 145, 0.8);
  opacity: 0;
  animation: rfTimelineMarker 0.6s ease-out forwards 2.4s;
}
@keyframes rfTimelineMarker {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.rf-hero__timeline-axis {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
  font-family: var(--rf-font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-variant-numeric: tabular-nums;
}
.rf-hero__timeline-now {
  color: var(--rf-gold);
  font-weight: 700;
}

/* Metadata as a single inline editorial row — no boxes */
.rf-hero__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  gap: 4px 16px;
}
.rf-hero__chip-item {
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  position: relative;
}
.rf-hero__chip-item + .rf-hero__chip-item::before {
  content: '·';
  color: var(--rf-gold);
  margin-right: 8px;
  font-weight: 700;
}
.rf-hero__chip-item:hover .rf-hero__chip-v { color: var(--rf-gold-bright); }
.rf-hero__chip-k {
  display: none;
}
.rf-hero__chip-v {
  font-family: var(--rf-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s var(--rf-ease);
}
.rf-hero__chip-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: rfChipPulse 1.6s infinite;
}
@keyframes rfChipPulse {
  0%   { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0); }
}

.rf-hero__strip {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--rf-container);
  margin: clamp(40px, 5vw, 80px) auto 40px;
  padding: 0 clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(203,182,130,0.32);
  border-bottom: 1px solid rgba(203,182,130,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
}
.rf-hero__strip-cell {
  padding: 22px clamp(16px, 2.5vw, 32px);
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-right: 1px solid rgba(203,182,130,0.12);
  transition: background 0.4s var(--rf-ease);
}
.rf-hero__strip-cell:last-child { border-right: none; }
.rf-hero__strip-cell:hover { background: rgba(203,182,130,0.04); }
.rf-hero__strip-k {
  font-family: var(--rf-font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold);
}
.rf-hero__strip-v {
  font-family: var(--rf-font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.rf-hero__strip-v sup {
  font-size: 0.55em;
  color: var(--rf-gold);
  font-weight: 500;
  margin-left: 1px;
}

@media (max-width: 1100px) {
  .rf-hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .rf-hero__anchor { justify-self: start; max-width: 520px; }
}
@media (max-width: 768px) {
  .rf-hero { padding-top: 130px; }
  .rf-hero__grid { padding-bottom: 0; }
  .rf-hero__title { font-size: clamp(40px, 11vw, 64px); }
  .rf-hero__line--accent { padding-left: 0.4ch; }
  .rf-hero__anchor { padding: 32px 28px 28px; }
  .rf-hero__anchor-value { font-size: clamp(56px, 14vw, 84px); }
  .rf-hero__anchor-row { grid-template-columns: 90px 1fr; gap: 10px; }
  .rf-hero__strip { grid-template-columns: 1fr 1fr; }
  .rf-hero__strip-cell:nth-child(2) { border-right: none; }
  .rf-hero__strip-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(203,182,130,0.12); }
  .rf-hero__links { gap: 16px; }
  .rf-hero__link { min-width: 100%; }
}

/* Hide the old lamp + vision-wrap classes (no longer used) */
.rf-page .rf-hero__vision-wrap,
.rf-page .rf-lamp { display: none !important; }


/* ============================================================
   HERO v6 — Single editorial statement with inline highlighted euro10B+
   ============================================================ */
.rf-hero__v6 {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px clamp(28px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 80px);
  min-height: calc(100vh - 160px);
  color: #fff;
}

.rf-hero__topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.rf-hero__brand {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rf-gold);
  flex-shrink: 0;
}
.rf-hero__topbar-rule {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(203,182,130,0.55), rgba(203,182,130,0.08));
  max-width: 320px;
}
.rf-hero__horizon {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.rf-hero__statement {
  font-family: var(--rf-font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
  text-shadow:
    0 2px 24px rgba(0,0,0,0.5),
    0 0 60px rgba(0,0,0,0.35);
  max-width: 22ch;
}
.rf-hero__statement-line { display: block; }
.rf-hero__statement-line--muted {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  font-size: 0.7em;
  letter-spacing: -0.01em;
  margin-top: 0.5em;
  max-width: 30ch;
}

.rf-hero__highlight {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  background: none;
  color: #fff;
  padding: 0 4px 0 2px;
  margin: 0 2px;
  font-family: var(--rf-font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.rf-hero__highlight-prefix {
  color: var(--rf-gold);
  font-weight: 500;
  font-size: 0.7em;
  margin-right: 1px;
}
.rf-hero__highlight-num {
  background: linear-gradient(180deg, #ffffff 0%, #f0dfb6 60%, #d4b87a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(203,182,130,0.4);
}
.rf-hero__highlight-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 6px;
  background: linear-gradient(90deg, var(--rf-gold), var(--rf-gold-bright));
  opacity: 0.22;
  border-radius: 1px;
  z-index: -1;
  transform-origin: left center;
  transform: scaleX(0);
  animation: rfHighlightGrow 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.9s;
}
@keyframes rfHighlightGrow {
  to { transform: scaleX(1); }
}

.rf-hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
}
.rf-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px 14px 26px;
  background: var(--rf-gold);
  color: var(--rf-ink) !important;
  text-decoration: none !important;
  font-family: var(--rf-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.35s var(--rf-ease), transform 0.35s var(--rf-ease);
  white-space: nowrap;
}
.rf-hero__cta:hover {
  background: var(--rf-gold-bright);
  transform: translateY(-2px);
}
.rf-hero__cta-arrow {
  display: inline-block;
  transition: transform 0.35s var(--rf-ease);
}
.rf-hero__cta:hover .rf-hero__cta-arrow { transform: translateX(6px); }

.rf-hero__sectors {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.rf-hero__sectors li {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  position: relative;
  padding-left: 18px;
}
.rf-hero__sectors li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rf-gold);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .rf-hero__v6 { min-height: auto; gap: 48px; padding-top: 24px; padding-bottom: 24px; }
  .rf-hero__statement { font-size: clamp(28px, 8vw, 48px); }
  .rf-hero__foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  .rf-hero__sectors { gap: 14px; }
  .rf-hero__sectors li { font-size: 10px; padding-left: 14px; }
}

/* Hide v3/v4/v5 markup (kept in DOM for safety) */
.rf-page .rf-hero__grid,
.rf-page .rf-hero__main,
.rf-page .rf-hero__anchor,
.rf-page .rf-hero__strip { display: none !important; }

/* ============================================================
   SIDE MENU — Modern editorial drawer (2026)
   ============================================================ */

/* Override the vendor gold background — we keep .side-menu for JS compat */
.side-menu.rf-side {
  background: linear-gradient(160deg, #0a0a0a 0%, #15151a 60%, #1a1812 100%) !important;
  color: #fff;
  width: 460px !important;
  max-width: 90vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  overflow-y: auto;
  overflow-x: hidden;
  isolation: isolate;
  box-shadow: -24px 0 60px -20px rgba(0,0,0,0.6),
              -1px 0 0 rgba(203,182,130,0.18);
}
.side-menu.rf-side .overlay { display: none; }

/* Ambient radial glow */
.rf-side__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(45% 35% at 20% 25%, rgba(203,182,130,0.14), transparent 70%),
    radial-gradient(40% 35% at 85% 80%, rgba(203,182,130,0.10), transparent 70%);
  animation: rfSideAmbient 12s ease-in-out infinite alternate;
}
@keyframes rfSideAmbient {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.08); }
}

/* Architectural corner brackets */
.rf-side__corner {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 1;
  pointer-events: none;
}
.rf-side__corner--tl { top: 24px; left: 24px;
  border-top: 1px solid rgba(203,182,130,0.45);
  border-left: 1px solid rgba(203,182,130,0.45); }
.rf-side__corner--tr { top: 24px; right: 24px;
  border-top: 1px solid rgba(203,182,130,0.45);
  border-right: 1px solid rgba(203,182,130,0.45); }
.rf-side__corner--bl { bottom: 24px; left: 24px;
  border-bottom: 1px solid rgba(203,182,130,0.45);
  border-left: 1px solid rgba(203,182,130,0.45); }
.rf-side__corner--br { bottom: 24px; right: 24px;
  border-bottom: 1px solid rgba(203,182,130,0.45);
  border-right: 1px solid rgba(203,182,130,0.45); }

.side-menu .rf-side__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 64px 40px 40px;
  width: 100%;
  box-sizing: border-box;
}

/* Close button override */
.rf-side .rf-side__close {
  position: absolute;
  top: clamp(28px, 3.5vw, 48px);
  right: clamp(28px, 3.5vw, 48px);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203,182,130,0.32);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.4s var(--rf-ease),
              border-color 0.4s var(--rf-ease),
              background 0.4s var(--rf-ease);
}
.rf-side .rf-side__close i {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: var(--rf-gold);
  border-radius: 2px;
  transition: background 0.4s var(--rf-ease);
}
.rf-side .rf-side__close i:nth-child(1) { transform: rotate(45deg); }
.rf-side .rf-side__close i:nth-child(2) { transform: rotate(-45deg); }
.rf-side .rf-side__close:hover {
  transform: rotate(90deg);
  border-color: var(--rf-gold);
  background: rgba(203,182,130,0.12);
}

/* Header */
.rf-side__head {
  margin-bottom: clamp(36px, 4vw, 56px);
}
.rf-side__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}
.rf-side__logo {
  height: clamp(36px, 4vw, 48px);
  width: auto;
}
.rf-side__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--rf-font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold);
}
.rf-side__meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rf-gold);
  box-shadow: 0 0 0 4px rgba(203,182,130,0.18);
  animation: rfSideDot 2.4s ease-in-out infinite;
}
@keyframes rfSideDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(203,182,130,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(203,182,130,0.05); }
}

/* Nav list */
.rf-side__nav { flex: 1; display: flex; align-items: center; }
.rf-side__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}
.rf-side__item {
  border-top: 1px solid rgba(203,182,130,0.12);
  opacity: 0;
  transform: translateX(-20px);
}
.rf-side__item:last-child { border-bottom: 1px solid rgba(203,182,130,0.12); }

/* When the menu opens (vendor JS removes .opacity-0), stagger items in */
.side-menu:not(.opacity-0) .rf-side__item {
  animation: rfSideItemIn 0.7s var(--rf-ease) forwards;
  animation-delay: calc(0.15s + var(--rf-side-i, 0) * 0.06s);
}
@keyframes rfSideItemIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.rf-side__link {
  position: relative;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  padding: 16px 8px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  color: rgba(255,255,255,0.78) !important;
  text-decoration: none;
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.012em;
  text-transform: none;
  overflow: hidden;
  isolation: isolate;
  transition: padding-left 0.5s var(--rf-ease),
              color 0.5s var(--rf-ease);
}
.rf-side__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(203,182,130,0.10), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--rf-ease);
  z-index: -1;
}
.rf-side__link:hover {
  color: var(--rf-gold) !important;
  padding-left: clamp(20px, 2.5vw, 36px);
}
.rf-side__link:hover::before { transform: translateX(0); }
.rf-side__link:hover .rf-side__num { color: var(--rf-gold); transform: translateX(-4px); }
.rf-side__link:hover .rf-side__arrow { opacity: 1; transform: translateX(0); color: var(--rf-gold); }

.rf-side__num {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(203,182,130,0.55);
  transition: color 0.4s var(--rf-ease), transform 0.4s var(--rf-ease);
  align-self: center;
}
.rf-side__label {
  display: block !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  width: 100%;
  color: rgba(255,255,255,0.92) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Bootstrap reset inside the sidebar — .navbar-nav + .nav-item bring
   flex:1 1 0, text-align:center, and (at certain widths) flex-direction:row
   which fights our grid-based row layout. Neutralize them. */
.side-menu.rf-side .navbar-nav,
.side-menu.rf-side .rf-side__list {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
.side-menu.rf-side .nav-item,
.side-menu.rf-side .rf-side__item {
  flex: 0 0 auto !important;
  flex-basis: auto !important;
  flex-grow: 0 !important;
  text-align: left !important;
  width: 100% !important;
  margin: 0 !important;
}
.side-menu.rf-side .nav-link,
.side-menu.rf-side .rf-side__link {
  padding: 16px 8px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-align: left !important;
}
.rf-side__arrow {
  font-family: var(--rf-font-display);
  font-size: 22px;
  font-weight: 300;
  color: rgba(203,182,130,0.6);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s var(--rf-ease),
              transform 0.4s var(--rf-ease),
              color 0.4s var(--rf-ease);
}

/* CTA-styled Contact item */
.rf-side__link--cta { color: var(--rf-gold) !important; }
.rf-side__link--cta .rf-side__num { color: var(--rf-gold); }
.rf-side__link--cta .rf-side__arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--rf-gold);
}

/* Footer row */
.rf-side__foot {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid rgba(203,182,130,0.18);
  width: 100%;
}
.rf-side__foot-col {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rf-side__foot-label {
  font-family: var(--rf-font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rf-gold);
}
.rf-side__foot-value {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.rf-side__foot-col--copy .rf-side__foot-value {
  color: rgba(255,255,255,0.55);
  font-size: 11.5px;
  line-height: 1.5;
}
.rf-side__foot-col--copy .rf-side__foot-label {
  font-size: 14px;
  letter-spacing: 0;
  color: var(--rf-gold);
}

/* Responsive */
@media (prefers-reduced-motion: reduce) {
  .rf-side__ambient,
  .rf-side__meta-dot { animation: none; }
  .rf-side__item { opacity: 1; transform: none; }
  .side-menu:not(.opacity-0) .rf-side__item { animation: none; }
}
@media (max-width: 900px) {
  .rf-side__inner { padding: 64px 32px 40px; }
  .rf-side__link { font-size: clamp(22px, 6vw, 32px); grid-template-columns: 44px 1fr auto; gap: 16px; }
  .rf-side__corner { width: 28px; height: 28px; }
  .rf-side__foot { grid-template-columns: 1fr 1fr; }
  .rf-side__foot-col--copy { grid-column: span 2; }
}
/* Lock the page behind the open menu at every screen size — no horizontal/vertical scroll bleed */
html:has(.side-menu.side-menu-active),
body:has(.side-menu.side-menu-active) {
  overflow: hidden !important;
  overscroll-behavior: contain;
  touch-action: none;
}
/* Make the vendor backdrop actually cover the viewport (vendor uses height:100% which collapses to 0) */
#close_side_menu {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  width: 100dvw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 1 !important;
  z-index: 1500 !important;
}
/* The menu itself never scrolls horizontally; only its own content can scroll vertically */
.side-menu.rf-side,
.side-menu.rf-side .rf-side__inner {
  overflow-x: hidden !important;
}
/* Full viewport on phones AND tablets — no page peeking on any side */
@media (max-width: 1024px) {
  .side-menu.rf-side {
    width: 100vw !important;
    width: 100dvw !important;
    max-width: 100vw !important;
    max-width: 100dvw !important;
    left: 0 !important;
    right: 0 !important;
    box-shadow: none;
  }
}

/* Narrow phones (Galaxy S8+ ≤ 380px) — the base .side-menu .rf-side__inner
   rule has padding 40px on each side, which leaves only 273px content area
   at 360vw. That tight content was overflowing horizontally and the menu
   labels fell off-screen. Force tighter padding with matching specificity. */
@media (max-width: 1024px) {
  .side-menu .rf-side__inner,
  .side-menu.rf-side .rf-side__inner {
    padding: 64px 18px 28px !important;
  }
  .side-menu.rf-side .rf-side__nav,
  .side-menu.rf-side .rf-side__list,
  .side-menu.rf-side .rf-side__item,
  .side-menu.rf-side .rf-side__link {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
  .side-menu.rf-side .rf-side__link {
    grid-template-columns: 36px minmax(0, 1fr) 22px !important;
    gap: 12px !important;
    padding: 14px 4px !important;
  }
}
@media (max-width: 640px) {
  .rf-side__inner { padding: 64px 22px 28px; }
  .rf-side__head { margin-bottom: 24px; }
  /* Keep original grid (44px / 1fr / auto). Just trim sizes a bit. */
  .rf-side__link {
    font-size: clamp(20px, 5.5vw, 26px);
    padding: 14px 4px;
    grid-template-columns: 40px minmax(0, 1fr) 24px;
    gap: 14px;
  }
  .rf-side__num { font-size: 10px; }
  .rf-side__arrow { font-size: 18px; }
  .rf-side__brand img { height: 32px; }
  .rf-side__foot { grid-template-columns: 1fr; gap: 12px; padding-top: 20px; margin-top: 20px; }
  .rf-side__foot-col--copy { grid-column: span 1; }
  .rf-side__corner { width: 22px; height: 22px; }
  .rf-side__corner--tl, .rf-side__corner--bl { left: 14px; }
  .rf-side__corner--tr, .rf-side__corner--br { right: 14px; }
  .rf-side__corner--tl, .rf-side__corner--tr { top: 18px; }
  .rf-side__corner--bl, .rf-side__corner--br { bottom: 18px; }
  /* Close button — comfortable tap target, anchored top-right */
  .rf-side .rf-side__close {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
}

/* ============================================================
   ABOUT — 03. PRINCIPLES — Modern editorial cards (2026)
   ============================================================ */
.rf-principles { position: relative; overflow: hidden; isolation: isolate; }
.rf-principles__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(45% 35% at 25% 20%, rgba(203,182,130,0.10), transparent 70%),
    radial-gradient(40% 35% at 80% 80%, rgba(203,182,130,0.07), transparent 70%);
  animation: rfPrinAmbient 14s ease-in-out infinite alternate;
}
@keyframes rfPrinAmbient {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.06); }
}
.rf-principles .rf-container { position: relative; z-index: 1; }

.rf-principles__label-dot {
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--rf-gold);
  box-shadow: 0 0 0 4px rgba(203,182,130,0.18);
  animation: rfPrinDot 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes rfPrinDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(203,182,130,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(203,182,130,0.05); }
}

.rf-principles__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 88px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.rf-principles__title {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
  max-width: 13ch;
}
.rf-principles__title em { font-style: italic; color: var(--rf-gold); font-weight: 300; }
.rf-principles__title strong { font-style: normal; font-weight: 500; color: var(--rf-gold); }
.rf-principles__head-right { padding-bottom: 10px; max-width: 50ch; }
.rf-principles__lead {
  font-family: var(--rf-font-body);
  font-size: clamp(14.5px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.rf-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
}

.rf-principles__card {
  position: relative;
  padding: 32px 28px 36px;
  background: linear-gradient(165deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
  border: 1px solid rgba(203,182,130,0.14);
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform 0.55s var(--rf-ease),
              border-color 0.55s var(--rf-ease),
              background 0.55s var(--rf-ease),
              box-shadow 0.55s var(--rf-ease);
}
.rf-principles__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
              transparent 40%,
              rgba(203,182,130,0.08) 50%,
              transparent 60%);
  transform: translateX(-100%);
  transition: transform 1s var(--rf-ease);
  pointer-events: none;
  z-index: 0;
}
.rf-principles__card:hover {
  transform: translateY(-6px);
  border-color: rgba(203,182,130,0.42);
  background: linear-gradient(165deg, rgba(203,182,130,0.08) 0%, rgba(255,255,255,0.01) 100%);
  box-shadow: 0 22px 48px -22px rgba(203,182,130,0.28),
              inset 0 1px 0 rgba(203,182,130,0.18);
}
.rf-principles__card:hover::after { transform: translateX(100%); }
.rf-principles__card:hover .rf-principles__name { color: var(--rf-gold); }
.rf-principles__card:hover .rf-principles__watermark {
  -webkit-text-stroke-color: rgba(203,182,130,0.55);
  transform: translate(-4px, -2px);
}
.rf-principles__card:hover .rf-principles__dot {
  background: var(--rf-gold);
  transform: scale(1.4);
}
.rf-principles__card:hover .rf-principles__line { width: 100%; }

.rf-principles__watermark {
  position: absolute;
  bottom: 8px;
  right: 14px;
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(80px, 9vw, 140px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(203,182,130,0.16);
  user-select: none;
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.55s var(--rf-ease),
              transform 0.55s var(--rf-ease);
  z-index: 0;
}

.rf-principles__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
  padding-bottom: 36px;
}
.rf-principles__eyebrow {
  font-family: var(--rf-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold);
}
.rf-principles__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(203,182,130,0.32);
  transition: background 0.4s var(--rf-ease), transform 0.4s var(--rf-ease);
}

.rf-principles__name {
  position: relative;
  z-index: 1;
  font-family: var(--rf-font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  margin: 0 0 12px;
  color: #fff;
  transition: color 0.45s var(--rf-ease);
}
.rf-principles__desc {
  position: relative;
  z-index: 1;
  font-family: var(--rf-font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--rf-text-muted);
  margin: 0;
}

.rf-principles__line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--rf-gold), var(--rf-gold-bright));
  transition: width 1s var(--rf-ease) calc(0.25s + var(--rf-prin-i, 0) * 0.1s);
  box-shadow: 0 0 8px rgba(203,182,130,0.4);
  z-index: 2;
}
html.rf-anim .rf-principles__card.is-visible .rf-principles__line { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .rf-principles__ambient,
  .rf-principles__label-dot { animation: none; }
}
@media (max-width: 1100px) {
  .rf-principles__head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .rf-principles__head-right { padding-bottom: 0; max-width: 62ch; }
  .rf-principles__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rf-principles__grid { grid-template-columns: 1fr; }
  .rf-principles__card { min-height: auto; padding: 26px 22px 30px; }
  .rf-principles__watermark { font-size: 96px; }
}

/* ============================================================
   WHY-US — Three+One Reasons (modern principle grid)
   ============================================================ */
.rf-why {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.rf-why__ambient {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 40% at 12% 18%, rgba(203,182,130,0.07), transparent 70%),
    radial-gradient(40% 40% at 90% 80%, rgba(203,182,130,0.05), transparent 70%);
}
.rf-why .rf-container { position: relative; z-index: 1; }

.rf-why__label-dot,
.rf-stats__label-dot,
.rf-edges__label-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rf-gold);
  margin-right: 12px;
  box-shadow: 0 0 0 3px rgba(203,182,130,0.18);
  animation: rf-why-dot 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes rf-why-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(203,182,130,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(203,182,130,0.05); }
}

.rf-why__head,
.rf-stats__head,
.rf-edges__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 1100px;
}
.rf-why__title,
.rf-stats__title,
.rf-edges__title {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
  color: #fff;
  max-width: 14ch;
}
.rf-why__title em,
.rf-stats__title em,
.rf-edges__title em {
  font-style: italic;
  color: var(--rf-gold);
  font-weight: 300;
}
.rf-why__lead,
.rf-stats__lead,
.rf-edges__lead {
  font-family: var(--rf-font-body);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  color: var(--rf-text-muted);
  margin: 0;
  padding-bottom: 6px;
  max-width: 48ch;
}

/* Reasons grid (2x2; last spans both columns) */
.rf-why__reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.rf-why__reason {
  position: relative;
  padding: 32px 30px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--rf-line);
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(22px);
  transition:
    background 0.5s var(--rf-ease),
    border-color 0.5s var(--rf-ease),
    box-shadow 0.5s var(--rf-ease),
    transform 0.7s var(--rf-ease),
    opacity 0.7s var(--rf-ease);
}
.rf-why__reasons.is-visible .rf-why__reason {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s var(--rf-ease) calc(0.15s + var(--rf-why-i, 0) * 0.10s),
    transform 0.7s var(--rf-ease) calc(0.15s + var(--rf-why-i, 0) * 0.10s),
    background 0.4s var(--rf-ease),
    border-color 0.4s var(--rf-ease),
    box-shadow 0.4s var(--rf-ease);
}
.rf-why__reason::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--rf-gold), var(--rf-gold-bright));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s var(--rf-ease);
  z-index: 2;
}
.rf-why__reason:hover {
  background: linear-gradient(180deg, rgba(203,182,130,0.06), rgba(203,182,130,0.01));
  border-color: var(--rf-line-strong);
  box-shadow: 0 22px 44px -22px rgba(0,0,0,0.6), 0 0 0 1px rgba(203,182,130,0.18);
}
.rf-why__reason:hover::before { transform: scaleX(1); }

.rf-why__reason-index {
  position: absolute;
  right: -10px; bottom: -22px;
  font-family: var(--rf-font-display);
  font-weight: 700;
  font-size: clamp(120px, 13vw, 200px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(203,182,130,0.10);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  transition: -webkit-text-stroke-color 0.5s var(--rf-ease), transform 0.6s var(--rf-ease);
}
.rf-why__reason:hover .rf-why__reason-index {
  -webkit-text-stroke-color: rgba(203,182,130,0.32);
  transform: translateY(-6px);
}
.rf-why__reason-num {
  position: relative; z-index: 2;
  display: block;
  font-family: var(--rf-font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold);
  margin-bottom: 18px;
}
.rf-why__reason-title {
  position: relative; z-index: 2;
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: #fff;
  margin: 0 0 14px;
}
.rf-why__reason-title em {
  font-style: italic;
  color: var(--rf-gold);
  font-weight: 400;
}
.rf-why__reason-text {
  position: relative; z-index: 2;
  font-family: var(--rf-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--rf-text-muted);
  margin: 0;
  max-width: 52ch;
}

/* Feature card — "+ One" spans both columns */
.rf-why__reason--feature {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(203,182,130,0.10), rgba(203,182,130,0.01) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border-color: var(--rf-line-strong);
  padding: 40px 36px 44px;
}
.rf-why__reason--feature .rf-why__reason-title { font-size: clamp(26px, 2.8vw, 38px); }
.rf-why__reason-pin {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 3;
  font-family: var(--rf-font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rf-ink);
  background: var(--rf-gold);
  border-radius: 999px;
  padding: 6px 14px;
}

@media (max-width: 900px) {
  .rf-why__head,
  .rf-stats__head,
  .rf-edges__head { grid-template-columns: 1fr; gap: 18px; align-items: start; margin-bottom: 32px; }
  .rf-why__reasons { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .rf-why__reason { opacity: 1; transform: none; transition: none; }
  .rf-why__label-dot,
  .rf-stats__label-dot,
  .rf-edges__label-dot { animation: none; }
}

/* ============================================================
   WHY-US — By the Numbers (modern stat tiles)
   ============================================================ */
.rf-stats {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.rf-stats__ambient {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 40% at 85% 20%, rgba(203,182,130,0.06), transparent 70%);
}
.rf-stats .rf-container { position: relative; z-index: 1; }

.rf-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rf-stats__tile {
  position: relative;
  padding: 32px 28px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--rf-line);
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(22px);
  transition:
    background 0.5s var(--rf-ease),
    border-color 0.5s var(--rf-ease),
    box-shadow 0.5s var(--rf-ease),
    transform 0.7s var(--rf-ease),
    opacity 0.7s var(--rf-ease);
}
.rf-stats__grid.is-visible .rf-stats__tile {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s var(--rf-ease) calc(0.15s + var(--rf-stats-i, 0) * 0.10s),
    transform 0.7s var(--rf-ease) calc(0.15s + var(--rf-stats-i, 0) * 0.10s),
    background 0.4s var(--rf-ease),
    border-color 0.4s var(--rf-ease),
    box-shadow 0.4s var(--rf-ease);
}
.rf-stats__tile:hover {
  background: linear-gradient(180deg, rgba(203,182,130,0.06), rgba(203,182,130,0.01));
  border-color: var(--rf-line-strong);
  box-shadow: 0 22px 44px -22px rgba(0,0,0,0.6), 0 0 0 1px rgba(203,182,130,0.18);
}
.rf-stats__tag {
  display: inline-block;
  font-family: var(--rf-font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold);
  padding: 4px 10px;
  border: 1px solid rgba(203,182,130,0.32);
  border-radius: 999px;
  background: rgba(203,182,130,0.04);
  margin-bottom: 22px;
}
.rf-stats__big {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(64px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  margin: 0;
}
.rf-stats__big em {
  font-style: normal;
  color: var(--rf-gold);
  font-weight: 300;
  font-size: 0.5em;
  margin-left: 4px;
}
.rf-stats__rule {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--rf-gold), transparent);
  margin: 18px 0;
  width: 0;
  transition: width 1s var(--rf-ease) calc(0.6s + var(--rf-stats-i, 0) * 0.1s);
}
.rf-stats__grid.is-visible .rf-stats__rule { width: 60%; }
.rf-stats__tile:hover .rf-stats__rule { width: 100%; }
.rf-stats__name {
  font-family: var(--rf-font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.2;
  margin: 0 0 8px;
  color: #fff;
}
.rf-stats__sub {
  font-family: var(--rf-font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--rf-text-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .rf-stats__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .rf-stats__tile { opacity: 1; transform: none; transition: none; }
  .rf-stats__grid.is-visible .rf-stats__rule { transition: none; }
}

/* ============================================================
   WHY-US — Comparative Advantage (modern vertical timeline)
   ============================================================ */
.rf-edges {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.rf-edges__ambient {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 20% 80%, rgba(203,182,130,0.06), transparent 70%);
}
.rf-edges .rf-container { position: relative; z-index: 1; }

.rf-edges__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 64px;
  position: relative;
  max-width: 1000px;
}
.rf-edges__list::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(203,182,130,0.32), transparent);
}
.rf-edges__list::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 32px;
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, var(--rf-gold), var(--rf-gold-bright));
  box-shadow: 0 0 10px rgba(203,182,130,0.45);
  transition: height 1.4s var(--rf-ease) 0.3s;
}
.rf-edges__list.is-visible::after { height: calc(100% - 64px); }

.rf-edges__row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 16px 30px 0;
  border-bottom: 1px solid rgba(203,182,130,0.14);
  opacity: 0;
  transform: translateX(-18px);
  transition:
    background 0.4s var(--rf-ease),
    transform 0.7s var(--rf-ease),
    opacity 0.7s var(--rf-ease);
}
.rf-edges__list.is-visible .rf-edges__row {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.7s var(--rf-ease) calc(0.25s + var(--rf-edges-i, 0) * 0.12s),
    transform 0.7s var(--rf-ease) calc(0.25s + var(--rf-edges-i, 0) * 0.12s),
    background 0.4s var(--rf-ease);
}
.rf-edges__row:hover {
  background: linear-gradient(90deg, rgba(203,182,130,0.04), transparent 70%);
}

.rf-edges__node {
  position: absolute;
  left: -42px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  background: var(--rf-ink);
  border: 1.5px solid var(--rf-gold);
  z-index: 2;
  transition: background 0.4s var(--rf-ease), box-shadow 0.4s var(--rf-ease), transform 0.4s var(--rf-ease);
}
.rf-edges__node::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--rf-gold);
  transform: scale(0);
  transition: transform 0.4s var(--rf-ease);
}
.rf-edges__list.is-visible .rf-edges__node {
  animation: rf-edges-pulse 2.4s var(--rf-ease) infinite;
  animation-delay: calc(1s + var(--rf-edges-i, 0) * 0.12s);
}
.rf-edges__row:hover .rf-edges__node {
  background: var(--rf-gold);
  box-shadow: 0 0 0 6px rgba(203,182,130,0.15), 0 0 16px rgba(203,182,130,0.5);
  transform: scale(1.1);
}
.rf-edges__row:hover .rf-edges__node::after { transform: scale(1); }
@keyframes rf-edges-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(203,182,130,0); }
  50%      { box-shadow: 0 0 0 5px rgba(203,182,130,0.10); }
}

.rf-edges__body { min-width: 0; }
.rf-edges__num {
  display: block;
  font-family: var(--rf-font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rf-gold);
  margin-bottom: 6px;
}
.rf-edges__h {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 8px;
  transition: color 0.4s var(--rf-ease), transform 0.4s var(--rf-ease);
}
.rf-edges__h em {
  font-style: italic;
  color: var(--rf-gold);
  font-weight: 400;
}
.rf-edges__row:hover .rf-edges__h { transform: translateX(3px); }
.rf-edges__p {
  font-family: var(--rf-font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--rf-text-muted);
  margin: 0;
  max-width: 64ch;
}
.rf-edges__index {
  font-family: var(--rf-font-display);
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(203,182,130,0.22);
  user-select: none;
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.5s var(--rf-ease), color 0.5s var(--rf-ease), transform 0.5s var(--rf-ease);
  white-space: nowrap;
}
.rf-edges__row:hover .rf-edges__index {
  color: var(--rf-gold);
  -webkit-text-stroke-color: var(--rf-gold);
  transform: translateX(-3px);
}

@media (max-width: 720px) {
  .rf-edges__list { padding-left: 48px; }
  .rf-edges__list::before,
  .rf-edges__list::after { left: 18px; }
  .rf-edges__node { left: -36px; }
  .rf-edges__row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0 24px; }
  .rf-edges__index { font-size: 38px; justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  .rf-edges__row { opacity: 1; transform: none; transition: none; }
  .rf-edges__list.is-visible::after { transition: none; }
  .rf-edges__list.is-visible .rf-edges__node { animation: none; }
}

/* ============================================================
   PORTFOLIO — 04 Approach (modern principle grid)
   ============================================================ */
.rf-approach-sec {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.rf-approach-sec__ambient {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 40% at 15% 20%, rgba(203,182,130,0.06), transparent 70%),
    radial-gradient(40% 40% at 85% 80%, rgba(203,182,130,0.05), transparent 70%);
}
.rf-approach-sec .rf-container { position: relative; z-index: 1; }

.rf-approach-sec__label-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rf-gold);
  margin-right: 12px;
  box-shadow: 0 0 0 3px rgba(203,182,130,0.18);
  animation: rf-approach-dot 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes rf-approach-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(203,182,130,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(203,182,130,0.05); }
}

.rf-approach-sec__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 1100px;
}
.rf-approach-sec__title {
  font-family: var(--rf-font-display);
  font-weight: 200;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
  color: #fff;
  max-width: 14ch;
}
.rf-approach-sec__title em {
  font-style: italic;
  color: var(--rf-gold);
  font-weight: 300;
}
.rf-approach-sec__lead {
  font-family: var(--rf-font-body);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  color: var(--rf-text-muted);
  margin: 0;
  padding-bottom: 6px;
  max-width: 48ch;
}

/* Editorial ledger — 8 numbered rows, no boxes, just typography + hairlines */
.rf-approach {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  border-top: 1px solid rgba(203,182,130,0.18);
}
.rf-approach__row {
  position: relative;
  display: grid;
  grid-template-columns: clamp(72px, 9vw, 124px) 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3vw, 36px) 8px;
  border-bottom: 1px solid rgba(203,182,130,0.18);
  isolation: isolate;
  opacity: 0;
  transform: translateY(14px);
  transition:
    background 0.45s var(--rf-ease),
    transform 0.7s var(--rf-ease),
    opacity 0.7s var(--rf-ease);
}
.rf-approach.is-visible .rf-approach__row {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s var(--rf-ease) calc(0.10s + var(--rf-app-i, 0) * 0.08s),
    transform 0.6s var(--rf-ease) calc(0.10s + var(--rf-app-i, 0) * 0.08s),
    background 0.45s var(--rf-ease);
}
.rf-approach__row:hover {
  background: linear-gradient(90deg, rgba(203,182,130,0.05), transparent 70%);
}

/* Animated gold side rail (left edge) — grows on hover */
.rf-approach__rail {
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 2px;
  background: var(--rf-gold);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.5s var(--rf-ease);
  border-radius: 1px;
}
.rf-approach__row:hover .rf-approach__rail { transform: scaleY(1); }

/* Giant outlined number — left column */
.rf-approach__num {
  font-family: var(--rf-font-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(203,182,130,0.28);
  user-select: none;
  transition:
    color 0.5s var(--rf-ease),
    -webkit-text-stroke-color 0.5s var(--rf-ease),
    transform 0.5s var(--rf-ease);
}
.rf-approach__row:hover .rf-approach__num {
  color: var(--rf-gold);
  -webkit-text-stroke-color: var(--rf-gold);
  transform: translateX(4px);
}

.rf-approach__body { min-width: 0; }
.rf-approach__key {
  font-family: var(--rf-font-display);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: #fff;
  margin: 0 0 8px;
  transition: color 0.4s var(--rf-ease), transform 0.4s var(--rf-ease);
}
.rf-approach__row:hover .rf-approach__key {
  color: var(--rf-gold);
  transform: translateX(3px);
}
.rf-approach__txt {
  font-family: var(--rf-font-body);
  font-size: clamp(13px, 0.95vw, 14.5px);
  line-height: 1.6;
  color: var(--rf-text-muted);
  margin: 0;
  max-width: 72ch;
}

/* Responsive — collapse to single column on small screens */
@media (max-width: 900px) {
  .rf-approach-sec__head { grid-template-columns: 1fr; gap: 18px; align-items: start; margin-bottom: 32px; }
}
@media (max-width: 560px) {
  .rf-approach__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 6px;
  }
  .rf-approach__num { font-size: 44px; }
  .rf-approach__key { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .rf-approach__row { opacity: 1; transform: none; transition: none; }
  .rf-approach-sec__label-dot { animation: none; }
}

/* Hide Leadership nav item — top bar + side menu */
.rf-page .site-header .nav-item:has(> a[href="team.html"]) { display: none !important; }
.rf-page .rf-side__item:has(> a[href="team.html"]) { display: none !important; }
