/* ================================================================
   PAGA PICTURES — REBRAND STYLESHEET
   Authority. Restraint. Discipline. Scale.
   ================================================================ */

/* ── RESET / BASE ── */
body.rebrand { overflow-x: hidden; }

/* ── VARIABLES ── */
:root {
  --gold:      #c6a75e;
  --gold-dim:  rgba(198,167,94,0.15);
  --gold-line: rgba(198,167,94,0.1);
  --wine:      #6b1a2a;
  --wine-dim:  rgba(107,26,42,0.15);
  --wine-line: rgba(107,26,42,0.2);
  --black:     #0a0a0a;
  --charcoal:  #141414;
  --charcoal2: #1c1c1c;
  --grey:      #2e2e2e;
  --grey-mid:  #4a4a4a;
  --white:     #f5f3f0;
  --off-white: #f0ede8;
  --muted:     rgba(245,243,240,0.45);
  --muted2:    rgba(245,243,240,0.2);
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', system-ui, sans-serif;
  --pad-x:     clamp(1.5rem, 7vw, 6rem);
  --pad-y:     clamp(5rem, 10vw, 9rem);
}

/* ================================================================
   NAV
   ================================================================ */
.rb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem var(--pad-x);
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.rb-nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(107,26,42,0.3);
}

.rb-nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  opacity: 0.92;
  transition: opacity 0.3s;
}
.rb-nav-logo:hover img { opacity: 1; }

.rb-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}
.rb-nav-links a {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.rb-nav-links a:hover { color: var(--off-white); }

.rb-nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .rb-nav-links { display: none; }
  .rb-nav-ctas  { display: none; }
}

/* ── CTA BUTTONS ── */
.rb-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: var(--gold);
  padding: 0.7rem 1.75rem;
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
}
.rb-cta-gold:hover {
  background: transparent;
  color: var(--gold);
}

.rb-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  background: transparent;
  padding: 0.7rem 1.75rem;
  border: 1px solid rgba(198,167,94,0.2);
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer;
}
.rb-cta-ghost:hover {
  color: var(--gold);
  border-color: rgba(198,167,94,0.5);
}

/* ================================================================
   HERO
   ================================================================ */
.rb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.rb-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 90%, rgba(107,26,42,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 15%, rgba(198,167,94,0.06) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.97) 100%),
    #0a0a0a;
  z-index: 1;
}

.rb-hero-content {
  position: relative;
  z-index: 3;
  padding: 0 var(--pad-x) clamp(5rem, 12vw, 9rem);
  max-width: 900px;
}

.rb-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.55);
  margin-bottom: 1.75rem;
}
.rb-eyebrow-dot { opacity: 0.3; }

.rb-hero-headline {
  font-family: var(--serif);
  font-size: clamp(5.5rem, 16vw, 14rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin-bottom: 2.25rem;
}

.rb-hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.6vw, 1.1rem);
  font-weight: 200;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 3rem;
  text-transform: uppercase;
  max-width: 480px;
}

.rb-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.rb-hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: var(--pad-x);
  z-index: 3;
}
.rb-scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(198,167,94,0.5), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ================================================================
   SECTION BASE
   ================================================================ */
.rb-section {
  padding: var(--pad-y) 0;
  position: relative;
}

.rb-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.rb-section-label {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
  opacity: 0.7;
}

.rb-section-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--off-white);
  margin-bottom: 0;
}
.rb-section-headline em {
  font-style: italic;
  color: var(--gold);
}

/* ================================================================
   WHO WE ARE
   ================================================================ */
.rb-who { border-top: 1px solid rgba(107,26,42,0.2); }

.rb-section-inner.rb-who-inner,
.rb-who .rb-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: start;
}

.rb-who-left { padding-top: 0.5rem; }
.rb-who-left .rb-section-headline { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }

.rb-who-right {}

.rb-who-body {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.rb-who-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(107,26,42,0.2);
}
.rb-who-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(107,26,42,0.2);
}
.rb-pillar-head {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
}
.rb-pillar-body {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .rb-who .rb-section-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ================================================================
   SLATE
   ================================================================ */
.rb-slate { background: #111111; border-top: 1px solid rgba(107,26,42,0.2); }

.rb-slate-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 2rem;
}

.rb-slate-header .rb-section-headline { font-size: clamp(2rem, 4vw, 3.5rem); }

.rb-slate-note {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 320px;
  text-align: right;
  border-left: 1px solid rgba(198,167,94,0.12);
  padding-left: 1.25rem;
}

@media (max-width: 800px) {
  .rb-slate-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .rb-slate-note { text-align: left; border-left: none; border-top: 1px solid rgba(198,167,94,0.12); padding: 1rem 0 0; max-width: 100%; }
}

/* Slate meta row on film cards */
.slate-meta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}
.slate-meta-item {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.4);
  background: rgba(198,167,94,0.05);
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(198,167,94,0.1);
}

.rb-slate-footer {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(107,26,42,0.2);
  padding-top: 2.5rem;
}
.rb-slate-footer p {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted2);
  max-width: 500px;
  line-height: 1.7;
}

/* ================================================================
   INVESTMENT
   ================================================================ */
.rb-investment { background: var(--charcoal); border-top: 1px solid rgba(107,26,42,0.2); }
.rb-investment-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(107,26,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.rb-investment .rb-section-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(4rem, 8vw, 7rem);
  align-items: start;
}

.rb-investment-left .rb-section-headline {
  margin-bottom: 3rem;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

.rb-inv-pillars { display: flex; flex-direction: column; gap: 2.5rem; }
.rb-inv-pillar {}
.rb-inv-pillar-title {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.rb-inv-pillar-body {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}

/* Portal card */
.rb-portal-card {
  background: rgba(19,0,8,0.8);
  border: 1px solid rgba(107,26,42,0.2);
  padding: 2.5rem;
}
.rb-portal-badge {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(198,167,94,0.06);
  border: 1px solid rgba(198,167,94,0.15);
  padding: 0.35rem 0.85rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.rb-portal-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 1rem;
}
.rb-portal-title em { font-style: italic; color: var(--gold); }
.rb-portal-desc {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.rb-portal-desc em { color: rgba(240,237,232,0.6); font-style: normal; }
.rb-portal-divider {
  height: 1px;
  background: rgba(107,26,42,0.18);
  margin-bottom: 1.75rem;
}
.rb-portal-direct {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted2);
}
.rb-portal-direct a {
  color: rgba(198,167,94,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.rb-portal-direct a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .rb-investment .rb-section-inner { grid-template-columns: 1fr; }
}

/* ================================================================
   TALENT
   ================================================================ */
.rb-talent { border-top: 1px solid rgba(107,26,42,0.2); }

.rb-talent-top { margin-bottom: 4rem; }
.rb-talent-intro {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  max-width: 680px;
  margin-top: 1.5rem;
}

/* ── OPEN POSITIONS ── */
.rb-positions {
  margin-bottom: 5rem;
}
.rb-positions-label {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rb-positions-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(107,26,42,0.2);
  max-width: 400px;
}

.rb-positions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(107,26,42,0.15);
  border: 1px solid rgba(107,26,42,0.15);
}

@media (max-width: 780px) {
  .rb-positions-grid { grid-template-columns: 1fr; }
}

.rb-position-card {
  background: var(--charcoal);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: background 0.3s ease;
  position: relative;
}
.rb-position-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s ease;
}
.rb-position-card:hover { background: #191919; }
.rb-position-card:hover::before { background: var(--wine); }

.rb-pos-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(107,26,42,0.15);
  letter-spacing: -0.02em;
}

.rb-pos-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.2;
}

.rb-pos-desc {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  flex: 1;
}
.rb-pos-desc em {
  color: rgba(240,237,232,0.6);
  font-style: italic;
}

.rb-pos-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(107,26,42,0.12);
}
.rb-pos-skills span {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.5);
  background: rgba(198,167,94,0.04);
  border: 1px solid rgba(198,167,94,0.1);
  padding: 0.3rem 0.75rem;
}

/* ── FORM SUBTITLE ── */
.rb-talent-form-sub {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 560px;
}

.rb-talent-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(107,26,42,0.18);
  border: 1px solid rgba(107,26,42,0.2);
  margin-bottom: 5rem;
}
.rb-talent-value {
  background: var(--black);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.rb-talent-value:hover { background: var(--charcoal2); }
.rb-tv-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(198,167,94,0.1);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}
.rb-tv-title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 0.75rem;
}
.rb-tv-body {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

@media (max-width: 640px) {
  .rb-talent-values { grid-template-columns: 1fr; }
}

.rb-talent-form-wrap {
  max-width: 680px;
  border-top: 1px solid rgba(107,26,42,0.2);
  padding-top: 4rem;
}
.rb-talent-form-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 1rem;
}
.rb-talent-form { display: flex; flex-direction: column; gap: 1.25rem; }

/* ================================================================
   ABOUT
   ================================================================ */
.rb-about { background: var(--charcoal); border-top: 1px solid rgba(107,26,42,0.2); }
.rb-about-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 90% 10%, rgba(107,26,42,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.rb-founder-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  margin-top: 2.5rem;
}
.rb-founder-photo-frame {
  position: relative;
  border: 1px solid rgba(107,26,42,0.2);
}
.rb-founder-photo-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}

.rb-founder-bio .rb-section-headline { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 0.5rem; }

.rb-founder-roles {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.5);
  margin-bottom: 2rem;
  display: block;
}

.rb-founder-body {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.rb-founder-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.rb-badge {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(198,167,94,0.2);
  padding: 0.3rem 0.8rem;
  background: rgba(198,167,94,0.04);
}

.rb-about-divider {
  height: 1px;
  background: rgba(107,26,42,0.18);
  margin: clamp(4rem, 7vw, 6rem) 0;
}

.rb-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem clamp(3rem, 7vw, 6rem);
  margin-top: 2.5rem;
}
.rb-phi-title {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.rb-phi-body {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
}
.rb-phi-body em { color: rgba(240,237,232,0.55); font-style: italic; }

.rb-team-grid { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2.5rem; }

@media (max-width: 700px) {
  .rb-founder-layout { grid-template-columns: 1fr; }
  .rb-founder-photo-frame img { height: 260px; }
  .rb-philosophy-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   CONTACT
   ================================================================ */
.rb-contact { border-top: 1px solid rgba(107,26,42,0.2); }

.rb-contact-top { margin-bottom: 4rem; }
.rb-contact-intro {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  max-width: 560px;
  margin-top: 1.5rem;
}

.rb-contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.rb-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}
.rb-contact-block { display: flex; flex-direction: column; gap: 0.4rem; }
.rb-ci-label {
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.4);
}
.rb-ci-value {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.3s;
}
.rb-ci-value:hover { color: var(--gold); }

.rb-contact-cta-pair {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rb-contact-social {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(107,26,42,0.2);
}
.rb-contact-social a {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.3s;
}
.rb-contact-social a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .rb-contact-layout { grid-template-columns: 1fr; }
}

/* ================================================================
   FORMS (shared)
   ================================================================ */
.rb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .rb-form-row { grid-template-columns: 1fr; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.rb-footer {
  background: #070707;
  border-top: 1px solid rgba(107,26,42,0.2);
}
.rb-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem var(--pad-x) 2.5rem;
}
.rb-footer-top {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(107,26,42,0.2);
  margin-bottom: 2rem;
}
.rb-footer-top .footer-logo { height: 52px; width: auto; opacity: 0.8; }
.rb-footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-left: auto;
}
.rb-footer-nav a {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.3s;
}
.rb-footer-nav a:hover { color: var(--gold); }
.rb-footer-ctas { display: flex; gap: 0.75rem; }

.rb-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.rb-footer-address,
.rb-footer-legal,
.rb-footer-brand {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--muted2);
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.rb-footer-address a,
.rb-footer-legal a { color: var(--muted2); text-decoration: none; transition: color 0.3s; }
.rb-footer-address a:hover,
.rb-footer-legal a:hover { color: var(--gold); }
.rb-footer-brand {
  color: rgba(240,237,232,0.1);
  border-top: 1px solid rgba(198,167,94,0.05);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal-block {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   NAV SCROLL STATE (JS adds .scrolled)
   ================================================================ */

/* ================================================================
   RESPONSIVE UTILITIES
   ================================================================ */
@media (max-width: 480px) {
  .rb-hero-headline { font-size: clamp(4.5rem, 22vw, 7rem); }
  .rb-hero-ctas { flex-direction: column; }
  .rb-footer-top { flex-direction: column; align-items: flex-start; }
  .rb-footer-nav { margin-left: 0; }
  .rb-footer-ctas { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-block {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .rb-scroll-line { animation: none !important; }
}

/* ================================================================
   FOOTER NEWSLETTER
   ================================================================ */
.rb-footer-newsletter {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(107,26,42,0.2);
  border-bottom: 1px solid rgba(107,26,42,0.2);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.rb-newsletter-label {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--off-white);
  white-space: nowrap;
  flex-shrink: 0;
}

.rb-newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 420px;
}
.rb-newsletter-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107,26,42,0.3);
  border-right: none;
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.1rem;
  outline: none;
  transition: border-color 0.3s;
}
.rb-newsletter-form input[type="email"]::placeholder { color: var(--muted2); }
.rb-newsletter-form input[type="email"]:focus { border-color: rgba(107,26,42,0.6); }
.rb-newsletter-form button {
  background: var(--wine);
  border: 1px solid var(--wine);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.rb-newsletter-form button:hover {
  background: transparent;
  color: var(--wine);
}

.rb-newsletter-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--muted2);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .rb-footer-newsletter { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .rb-newsletter-form { max-width: 100%; width: 100%; }
  .rb-newsletter-sub { display: none; }
}

/* ── FOOTER SOCIAL ── */
.rb-footer-social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.rb-footer-social a {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.3s;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
}
.rb-footer-social a:hover {
  color: var(--gold);
  border-bottom-color: rgba(198,167,94,0.3);
}

/* ================================================================
   EARLY WORK
   ================================================================ */
.rb-early-work {
  background: #0d0d0d;
  border-top: 1px solid rgba(107,26,42,0.2);
}

.rb-ew-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 760px;
}

.rb-ew-intro {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 300;
  line-height: 1.95;
  color: var(--muted);
  margin-top: 1.75rem;
}

.rb-ew-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

@media (max-width: 820px) {
  .rb-ew-grid { grid-template-columns: 1fr; }
}

/* Card */
.rb-ew-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(107,26,42,0.15);
  background: #111111;
  transition: border-color 0.3s ease;
}
.rb-ew-card:hover { border-color: rgba(107,26,42,0.35); }

/* Thumbnail */
.rb-ew-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  text-decoration: none;
  flex-shrink: 0;
}
.rb-ew-thumb-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: grayscale(30%) brightness(0.7);
}
.rb-ew-thumb:hover .rb-ew-thumb-img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(0.75);
}
.rb-ew-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.35);
  transition: background 0.3s ease;
}
.rb-ew-thumb:hover .rb-ew-thumb-overlay { background: rgba(10,10,10,0.25); }

.rb-ew-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(198,167,94,0.55);
  background: rgba(10,10,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  padding-left: 3px; /* optical center for play triangle */
}
.rb-ew-thumb:hover .rb-ew-play {
  background: rgba(107,26,42,0.7);
  border-color: var(--wine);
  color: var(--off-white);
  transform: scale(1.1);
}

/* Info */
.rb-ew-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.rb-ew-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.rb-ew-type {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.5);
}
.rb-ew-status {
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--off-white);
  background: rgba(107,26,42,0.3);
  border: 1px solid rgba(107,26,42,0.4);
  padding: 0.2rem 0.65rem;
}

.rb-ew-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.15;
}

.rb-ew-desc {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}

.rb-ew-what-it-proves {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(198,167,94,0.55);
  border-left: 2px solid rgba(198,167,94,0.2);
  padding-left: 1rem;
  font-style: italic;
}

.rb-ew-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Footer statement */
.rb-ew-footer {
  border-top: 1px solid rgba(107,26,42,0.15);
  padding-top: 2.5rem;
  max-width: 680px;
}
.rb-ew-footer p {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(240,237,232,0.4);
}

/* ================================================================
   SLATE — NEW CARD DESIGN (replaces filmstrip for preproduction)
   ================================================================ */
.rb-slate-cards {
  max-width: 1280px;
  margin: 0 auto 4rem;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(107,26,42,0.1);
}

@media (max-width: 900px) {
  .rb-slate-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rb-slate-cards { grid-template-columns: 1fr; }
}

.rb-slate-card {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}

.rb-slate-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) grayscale(15%);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.rb-slate-card:hover .rb-slate-card-bg {
  filter: brightness(0.35) grayscale(20%);
  transform: scale(1.03);
}

.rb-slate-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.7) 40%,
    rgba(10,10,10,0.2) 70%,
    transparent 100%
  );
}

.rb-slate-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.rb-slate-card-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(107,26,42,0.2);
  letter-spacing: -0.02em;
  position: absolute;
  top: 2rem;
  right: 2.5rem;
}

.rb-slate-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.rb-slate-card-genre {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.5);
}

.rb-slate-card-status {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border: 1px solid;
}
.rb-status-dev {
  color: var(--wine);
  border-color: rgba(107,26,42,0.4);
  background: rgba(107,26,42,0.12);
}

.rb-slate-card-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--off-white);
  letter-spacing: -0.01em;
}

.rb-slate-card-tagline {
  font-family: var(--serif);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(240,237,232,0.4);
  line-height: 1.5;
}

.rb-slate-card-lock {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.35);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(107,26,42,0.15);
}
.rb-slate-card-lock svg { flex-shrink: 0; color: rgba(198,167,94,0.35); }

.rb-slate-card-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  transition: color 0.3s, letter-spacing 0.3s;
  margin-top: 0.25rem;
}
.rb-slate-card-cta:hover {
  color: var(--off-white);
  letter-spacing: 0.45em;
}

/* ================================================================
   VETTING PROCESS
   ================================================================ */
.rb-inv-intro {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin: 1.5rem 0 3rem;
  max-width: 540px;
}

.rb-vetting-process {
  margin-bottom: 3.5rem;
}

.rb-vetting-label {
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rb-vetting-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(107,26,42,0.2);
}

.rb-vetting-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rb-vetting-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(107,26,42,0.12);
}
.rb-vetting-step:first-child { border-top: 1px solid rgba(107,26,42,0.12); }

.rb-vs-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(107,26,42,0.3);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.rb-vs-title {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 0.4rem;
}

.rb-vs-desc {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* Portal disclaimer */
.rb-portal-disclaimer {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted2);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(107,26,42,0.12);
}

/* ── PRE-PRODUCTION STATUS BADGE ── */
.rb-status-preprod {
  color: #d4a843;
  border-color: rgba(212,168,67,0.4);
  background: rgba(212,168,67,0.08);
}

/* ── PRE-PRODUCTION CARD — gold top border to distinguish ── */
.rb-slate-card--preprod::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, rgba(212,168,67,0.6), rgba(212,168,67,0.15));
  z-index: 3;
}
