/* ================================================================
   RKDF University — Design System CSS v5 (Loveable Port)
   Direct translation from Loveable React → Vanilla CSS
   ================================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --p-paper:      #FAF9F6;
  --p-navy-deep:  #0c1424;
  --p-navy:       #1a2540;
  --p-royal:      #3B52A0;
  --p-gold:       #DC2626;   /* red used as gold accent throughout */
  --p-gold-soft:  #B91C1C;
  --p-charcoal:   #18191E;
  --p-hairline:   #DEDCE0;

  --p-font-serif: 'Instrument Serif', Georgia, ui-serif, serif;
  --p-font-sans:  'Inter', system-ui, ui-sans-serif, sans-serif;
  --p-font-mono:  'JetBrains Mono', ui-monospace, monospace;

  --p-max-w: 1440px;
  --p-px:    clamp(24px, 4vw, 40px);
  --p-nav-h: 80px;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--p-paper); color: var(--p-charcoal); font-family: var(--p-font-sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Keyframes ── */
@keyframes rkdf-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes rkdf-drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1.05); }
  50%       { transform: translate3d(-1.5%,-1%,0) scale(1.1); }
}
@keyframes rkdf-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rkdf-marquee { animation: rkdf-marquee 40s linear infinite; }
.rkdf-drift   { animation: rkdf-drift 22s ease-in-out infinite; }
.rkdf-rise    { animation: rkdf-rise 0.9s cubic-bezier(0.19,1,0.22,1) both; }

/* ── Reveal animation ── */
.rk-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.19,1,0.22,1), transform 0.9s cubic-bezier(0.19,1,0.22,1);
}
.rk-reveal.rk-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utilities ── */
.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

.rk-container {
  max-width: var(--p-max-w);
  margin: 0 auto;
  padding-left: var(--p-px);
  padding-right: var(--p-px);
}

/* Eyebrow label */
.rk-eyebrow {
  font-family: var(--p-font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--p-royal);
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin-bottom: 22px;
}
.rk-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--p-gold);
  flex-shrink: 0;
}
.rk-eyebrow.tone-gold  { color: var(--p-gold); }
.rk-eyebrow.tone-light { color: rgba(250,249,246,0.6); }

/* Gold decorative line (hero eyebrow) */
.rk-gold-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--p-gold);
  flex-shrink: 0;
}
.rk-eyebrow-mono {
  font-family: var(--p-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--p-gold);
}

/* Headings */
.rk-h2-xl {
  font-family: var(--p-font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--p-navy-deep);
}
.rk-h2-huge {
  font-family: var(--p-font-serif);
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--p-navy-deep);
}

/* Italic accents */
.rk-italic        { font-style: italic; color: var(--p-royal); }
.rk-italic-gold   { font-style: italic; color: var(--p-gold); }
.rk-italic-plain  { font-style: italic; }

/* Buttons */
.rk-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--p-gold);
  color: var(--p-paper);
  font-family: var(--p-font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.rk-btn-gold:hover { background: var(--p-gold-soft); }

.rk-btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--p-gold);
  color: var(--p-paper);
  font-family: var(--p-font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 12px 20px;
  transition: background 0.2s;
}
.rk-btn-gold-sm:hover { background: var(--p-gold-soft); }

.rk-btn-outline-paper {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(12,20,36,0.3);
  backdrop-filter: blur(12px);
  color: var(--p-paper);
  font-family: var(--p-font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 14px 24px;
  border: 1px solid rgba(250,249,246,0.5);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.rk-btn-outline-paper:hover { background: rgba(250,249,246,0.1); border-color: var(--p-gold); }

.rk-btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--p-navy-deep);
  color: var(--p-paper);
  font-family: var(--p-font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.rk-btn-navy:hover { background: var(--p-royal); }

.rk-btn-lg { padding: 20px 40px; font-size: 13px; letter-spacing: 0.2em; }

.rk-btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--p-navy-deep);
  font-family: var(--p-font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 14px 32px;
  border: 1px solid rgba(12,20,36,0.2);
  transition: border-color 0.2s;
  text-decoration: none;
}
.rk-btn-outline-navy:hover { border-color: var(--p-navy-deep); }

.rk-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--p-navy-deep);
  border-bottom: 1px solid var(--p-navy-deep);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.rk-link-arrow:hover { color: var(--p-gold); border-color: var(--p-gold); }

/* Section header helper */
.rk-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.rk-section-sub {
  font-size: 14px;
  color: rgba(12,20,36,0.6);
  line-height: 1.6;
  max-width: 380px;
}

/* ══════════════════════════════════════════════════
   §00. HERO
══════════════════════════════════════════════════ */
.rk-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--p-navy-deep);
  display: flex;
  flex-direction: column;
}
.rk-hero-video-wrap { position: absolute; inset: 0; }
.rk-hero-video { width: 100%; height: 100%; object-fit: cover; }
.rk-hero-overlay-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(12,20,36,0.50) 0%, transparent 40%, rgba(12,20,36,0.70) 100%),
    linear-gradient(to right,  rgba(12,20,36,0.40) 0%, transparent 60%);
}
.rk-hero-overlay-radial {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(220,38,38,0.18), transparent 55%);
}
.rk-hero-body {
  position: relative;
  max-width: var(--p-max-w);
  margin: 0 auto;
  padding: 128px var(--p-px) 64px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
}
.rk-hero-eyebrow { display: flex; align-items: center; gap: 16px; }
.rk-hero-foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}
@media (min-width: 1024px) {
  .rk-hero-foot { grid-template-columns: repeat(12, 1fr); }
}
.rk-hero-headline {
  grid-column: span 12;
  font-family: var(--p-font-serif);
  font-size: clamp(2.75rem, 7.5vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--p-paper);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  animation: rkdf-rise 1.1s cubic-bezier(0.19,1,0.22,1) both;
}
@media (min-width: 1024px) { .rk-hero-headline { grid-column: span 8; } }
.rk-hero-ctas {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: rkdf-rise 1s cubic-bezier(0.19,1,0.22,1) 0.35s both;
}
@media (min-width: 1024px) {
  .rk-hero-ctas { grid-column: span 4; padding-bottom: 16px; }
}
.rk-hero-apply {
  background: linear-gradient(135deg, #ffc82e, #f59e0b);
  color: #0c1424;
  border: 1px solid #fef08a;
  font-weight: 800;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 16px rgba(245,158,11,0.3);
  transition: all 0.25s ease;
}
.rk-hero-apply:hover {
  background: linear-gradient(135deg, #ffffff, #fef08a);
  color: #d9232d;
  border-color: #ffffff;
  box-shadow: 0 10px 36px rgba(0,0,0,0.6);
}
.rk-btn-arrow   { font-size: 16px; flex-shrink: 0; }
.rk-explore-inner { display: inline-flex; align-items: center; gap: 12px; }
.rk-play-icon   { font-size: 12px; }
.rk-hero-scroll-ind {
  position: absolute;
  bottom: 24px;
  right: var(--p-px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250,249,246,0.7);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.rk-scroll-line { display: block; height: 1px; width: 40px; background: rgba(250,249,246,0.4); }

/* ══════════════════════════════════════════════════
   §01. STATS
══════════════════════════════════════════════════ */
.rk-stats {
  border-top: 1px solid var(--p-hairline);
  border-bottom: 1px solid var(--p-hairline);
  background: var(--p-paper);
  padding: 64px 0 80px;
}
.rk-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px)  { .rk-stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .rk-stats-grid { grid-template-columns: repeat(6, 1fr); } }
.rk-stat-item {
  padding: 24px 16px 24px 8px;
}
.rk-stat-border-top {
  height: 1px;
  background: rgba(12,20,36,0.1);
  margin-bottom: 24px;
}
.rk-stat-num {
  font-family: var(--p-font-serif);
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--p-navy-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rk-stat-label {
  margin-top: 16px;
  font-family: var(--p-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(12,20,36,0.5);
}

/* ══════════════════════════════════════════════════
   §02. ABOUT
══════════════════════════════════════════════════ */
.rk-about {
  background: var(--p-paper);
  padding: 80px 0 96px;
}
.rk-about-12col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .rk-about-12col { grid-template-columns: 5fr 7fr; gap: 56px; }
  .rk-about-left { position: sticky; top: 112px; }
}
.rk-about-h2 {
  font-family: var(--p-font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--p-navy-deep);
  margin-bottom: 24px;
}
.rk-about-sub {
  color: rgba(12,20,36,0.7);
  font-size: 17px;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}
.rk-timeline-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-top: 40px;
}
.rk-timeline-entry { border-top: 1px solid rgba(12,20,36,0.15); padding-top: 16px; }
.rk-timeline-top-border { display: none; }
.rk-timeline-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.rk-timeline-year-mono { font-family: var(--p-font-mono); font-size: 11px; color: var(--p-gold); flex-shrink: 0; }
.rk-timeline-title-serif { font-family: var(--p-font-serif); font-size: 18px; color: var(--p-navy-deep); }
.rk-timeline-desc { font-size: 12px; color: rgba(12,20,36,0.6); line-height: 1.6; }
.rk-about-img-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.rk-about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.rk-about-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,20,36,0.9), transparent);
  padding: 24px 32px;
}
.rk-founder-label {
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(250,249,246,0.6);
  margin-bottom: 8px;
}
.rk-founder-quote {
  font-family: var(--p-font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--p-paper);
  line-height: 1.35;
  max-width: 420px;
}
.rk-founder-name {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(250,249,246,0.7);
}

/* ══════════════════════════════════════════════════
   §03. GATEWAY
══════════════════════════════════════════════════ */
.rk-gateway {
  background: var(--p-paper);
  padding: 80px 0;
}
.rk-gateway-9col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  outline: 1px solid var(--p-hairline);
  box-shadow: inset 0 0 0 1px var(--p-hairline);
}
@media (min-width: 640px)  { .rk-gateway-9col { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .rk-gateway-9col { grid-template-columns: repeat(9, 1fr); } }
.rk-gw-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--p-paper);
  padding: 24px;
  height: 140px;
  outline: 1px solid var(--p-hairline);
  transition: background 0.5s;
  text-decoration: none;
}
.rk-gw-card:hover { background: var(--p-navy-deep); }
.rk-gw-icon {
  font-size: 20px;
  transition: filter 0.3s;
}
.rk-gw-bottom { margin-top: auto; }
.rk-gw-label {
  font-family: var(--p-font-serif);
  font-size: 16px;
  color: var(--p-navy-deep);
  transition: color 0.5s;
}
.rk-gw-arrow {
  display: block;
  font-size: 14px;
  color: rgba(12,20,36,0.3);
  margin-top: 6px;
  transition: color 0.5s, transform 0.3s;
}
.rk-gw-card:hover .rk-gw-label  { color: var(--p-paper); }
.rk-gw-card:hover .rk-gw-arrow  { color: var(--p-gold); transform: translate(2px, -2px); }

/* ══════════════════════════════════════════════════
   §04. SCHOOLS
══════════════════════════════════════════════════ */
.rk-schools { background: var(--p-paper); padding: 80px 0 96px; overflow: hidden; }
.rk-schools-outer { padding-left: var(--p-px); }
.rk-drag-hint {
  display: none;
  align-items: center;
  gap: 12px;
  font-family: var(--p-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(12,20,36,0.6);
}
@media (min-width: 1024px) { .rk-drag-hint { display: flex; } }
.rk-chevron { font-size: 16px; }
.rk-h2-huge { }
.rk-schools-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 32px;
  padding-right: var(--p-px);
  cursor: grab;
}
.rk-schools-rail:active { cursor: grabbing; }
.rk-school-card { display: block; width: 320px; flex-shrink: 0; text-decoration: none; }
@media (min-width: 1024px) { .rk-school-card { width: 380px; } }
.rk-school-card:hover .rk-school-img img { transform: scale(1.05); }
.rk-school-aspect {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: rgba(12,20,36,0.05);
}
.rk-school-aspect img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1200ms ease-out;
}
.rk-school-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,20,36,0.7) 0%, transparent 60%);
}
.rk-school-top-badges {
  position: absolute;
  top: 16px; left: 16px; right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rk-school-num-mono {
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(250,249,246,0.8);
}
.rk-school-tag-badge {
  background: rgba(250,249,246,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(250,249,246,0.2);
  padding: 4px 10px;
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--p-paper);
}
.rk-school-bottom-info {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
}
.rk-school-name {
  font-family: var(--p-font-serif);
  font-size: 22px;
  color: var(--p-paper);
  line-height: 1.2;
}
.rk-school-note {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(250,249,246,0.7);
}
.rk-school-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(12,20,36,0.1);
  padding: 16px 0 0;
  margin-top: 4px;
}
.rk-school-explore {
  font-family: var(--p-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(12,20,36,0.6);
}
.rk-school-foot-arrow { font-size: 14px; color: var(--p-navy-deep); }

/* ══════════════════════════════════════════════════
   §05. WHY RKDF
══════════════════════════════════════════════════ */
.rk-why {
  position: relative;
  color: var(--p-paper);
  padding: 96px 0 112px;
  overflow: hidden;
}
.rk-why-bg-img { position: absolute; inset: 0; }
.rk-why-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.rk-why-overlay-1 {
  position: absolute; inset: 0;
  background: rgba(12,20,36,0.55);
}
.rk-why-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,20,36,0.4) 0%, transparent 50%, rgba(12,20,36,0.7) 100%);
}
.rk-why-hairline-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 8.333% 100%;
}
.rk-why-inner { position: relative; }
.rk-why-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 56px;
  align-items: start;
}
@media (min-width: 1024px) {
  .rk-why-header { grid-template-columns: 5fr 6fr; gap: 40px; }
}
.rk-why-h2 {
  font-family: var(--p-font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--p-paper);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.rk-why-sub {
  font-size: 16px;
  color: rgba(250,249,246,0.85);
  line-height: 1.7;
  margin-top: 20px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.rk-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .rk-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rk-why-grid { grid-template-columns: repeat(3, 1fr); } }

/* Glass card */
.rk-glass-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: rgba(12,20,36,0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(250,249,246,0.15);
  transition: border-color 0.3s;
}
.rk-glass-card:hover { border-color: var(--p-gold); }
.rk-glass-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.rk-glass-num {
  font-family: var(--p-font-mono);
  font-size: 12px;
  color: var(--p-gold);
}
.rk-glass-arr { font-size: 14px; color: rgba(250,249,246,0.4); }
.rk-glass-card:hover .rk-glass-arr { color: var(--p-gold); }
.rk-glass-title {
  font-family: var(--p-font-serif);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--p-paper);
  line-height: 1.2;
  margin-bottom: 12px;
}
.rk-glass-desc { font-size: 14px; color: rgba(250,249,246,0.7); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   §06. ADMISSIONS
══════════════════════════════════════════════════ */
.rk-admissions { background: var(--p-paper); padding: 80px 0 96px; }
.rk-adm-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .rk-adm-header { grid-template-columns: 6fr 5fr; gap: 48px; }
}
.rk-adm-sub { font-size: 16px; color: rgba(12,20,36,0.7); line-height: 1.7; margin-top: 20px; }
.rk-steps-wrap { position: relative; margin-bottom: 48px; }
.rk-steps-line {
  position: absolute;
  left: 5%; right: 5%;
  top: 56px;
  height: 1px;
  background: rgba(12,20,36,0.15);
  display: none;
}
@media (min-width: 768px) { .rk-steps-line { display: block; } }
.rk-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
@media (min-width: 640px) { .rk-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .rk-steps-grid { grid-template-columns: repeat(4, 1fr); } }
.rk-step-box {
  position: relative;
  width: 112px; height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--p-paper);
  border: 1px solid rgba(12,20,36,0.15);
  margin-bottom: 24px;
  z-index: 1;
}
.rk-step-box--gold { }
.rk-step-gold-border {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--p-gold);
  pointer-events: none;
}
.rk-step-num {
  font-family: var(--p-font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--p-navy-deep);
}
.rk-step-title {
  font-family: var(--p-font-serif);
  font-size: 22px;
  color: var(--p-navy-deep);
  margin-bottom: 8px;
}
.rk-step-desc { font-size: 13px; color: rgba(12,20,36,0.6); line-height: 1.6; max-width: 24ch; }
.rk-adm-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 20px; }

/* ══════════════════════════════════════════════════
   §07. FEATURED PROGRAMS
══════════════════════════════════════════════════ */
.rk-programs {
  background: rgba(12,20,36,0.04);
  padding: 80px 0 96px;
}
.rk-programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 1024px) { .rk-programs-grid { grid-template-columns: 7fr 5fr; } }
.rk-prog-big {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--p-navy-deep);
}
@media (min-width: 1024px) { .rk-prog-big { min-height: 640px; } }
.rk-prog-big img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 1200ms ease-out;
}
.rk-prog-big:hover img { transform: scale(1.05); }
.rk-prog-big-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--p-navy-deep), rgba(12,20,36,0.6) 40%, transparent);
}
.rk-prog-big-body {
  position: relative;
  height: 100%;
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--p-paper);
}
.rk-prog-big-eyebrow {
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--p-gold);
  margin-bottom: 16px;
}
.rk-prog-big-title {
  font-family: var(--p-font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: var(--p-paper);
  margin-bottom: 24px;
  max-width: 480px;
}
.rk-prog-big-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 400px;
  border-top: 1px solid rgba(250,249,246,0.2);
  padding-top: 24px;
  margin-bottom: 32px;
}
.rk-prog-meta-label {
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(250,249,246,0.5);
  margin-bottom: 4px;
}
.rk-prog-meta-val {
  font-family: var(--p-font-serif);
  font-size: 20px;
  color: var(--p-paper);
}
/* Small program cards stack */
.rk-prog-stack { display: flex; flex-direction: column; gap: 24px; }
.rk-prog-small {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  min-height: 180px;
  background: var(--p-paper);
  overflow: hidden;
  transition: background 0.5s;
}
.rk-prog-small:hover { background: var(--p-navy-deep); }
.rk-prog-small-img { position: relative; overflow: hidden; }
.rk-prog-small-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms ease-out;
}
.rk-prog-small:hover .rk-prog-small-img img { transform: scale(1.1); }
.rk-prog-small-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}
.rk-prog-small-tag {
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--p-royal);
  margin-bottom: 8px;
  transition: color 0.5s;
}
.rk-prog-small:hover .rk-prog-small-tag { color: var(--p-gold); }
.rk-prog-small-title {
  font-family: var(--p-font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--p-navy-deep);
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color 0.5s;
}
.rk-prog-small:hover .rk-prog-small-title { color: var(--p-paper); }
.rk-prog-small-detail {
  font-size: 12px;
  color: rgba(12,20,36,0.5);
  margin-bottom: 16px;
  transition: color 0.5s;
}
.rk-prog-small:hover .rk-prog-small-detail { color: rgba(250,249,246,0.6); }
.rk-prog-small-link {
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(12,20,36,0.6);
  transition: color 0.5s;
}
.rk-prog-small:hover .rk-prog-small-link { color: var(--p-gold); }

/* ══════════════════════════════════════════════════
   §08. CAMPUS LIFE
══════════════════════════════════════════════════ */
.rk-campus { background: var(--p-paper); padding: 80px 0 96px; }
.rk-campus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (min-width: 1024px) { .rk-campus-grid { grid-template-columns: 5fr 7fr; gap: 48px; } }
.rk-campus-left { display: flex; flex-direction: column; justify-content: space-between; }
.rk-campus-h2 {
  font-family: var(--p-font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--p-navy-deep);
  line-height: 1.02;
  margin-top: 16px;
  margin-bottom: 20px;
}
.rk-campus-sub {
  font-size: 16px;
  color: rgba(12,20,36,0.7);
  line-height: 1.7;
  max-width: 440px;
}
.rk-campus-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(12,20,36,0.1);
  padding-top: 32px;
}
.rk-campus-stat-num {
  font-family: var(--p-font-serif);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  color: var(--p-navy-deep);
  line-height: 1;
  margin-bottom: 6px;
}
.rk-campus-stat-label {
  font-family: var(--p-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(12,20,36,0.5);
}

/* Collage grid */
.rk-campus-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
  height: 520px;
}
@media (min-width: 1024px) { .rk-campus-collage { height: 620px; } }
.rk-campus-collage > div { overflow: hidden; }
.rk-campus-collage > div img { width: 100%; height: 100%; object-fit: cover; }
.rk-col-tall       { grid-row: span 3; }
.rk-col-span-7     { grid-column: span 7; }
.rk-col-span-5     { grid-column: span 5; }
.rk-col-span-12    { grid-column: span 12; }

/* ══════════════════════════════════════════════════
   §09. RESEARCH
══════════════════════════════════════════════════ */
.rk-research {
  position: relative;
  color: var(--p-paper);
  padding: 80px 0 96px;
  overflow: hidden;
}
.rk-research-bg { position: absolute; inset: 0; }
.rk-research-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.rk-research-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--p-charcoal) 0%, rgba(24,25,30,0.85) 50%, var(--p-charcoal) 100%);
}
.rk-research-inner { position: relative; }
.rk-research-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .rk-research-header { grid-template-columns: 6fr 5fr; gap: 48px; } }
.rk-research-h2 {
  font-family: var(--p-font-serif);
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--p-paper);
  margin-top: 16px;
}
.rk-research-sub {
  font-size: 16px;
  color: rgba(250,249,246,0.6);
  line-height: 1.7;
  margin-top: 20px;
}
.rk-research-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(250,249,246,0.1);
  border: 1px solid rgba(250,249,246,0.15);
  border-radius: 0;
  margin-bottom: 64px;
}
@media (min-width: 768px) { .rk-research-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.rk-research-stat { background: var(--p-charcoal); padding: 32px 24px; }
.rk-research-stat-num {
  font-family: var(--p-font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--p-gold);
  margin-bottom: 8px;
}
.rk-research-stat-label {
  font-family: var(--p-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(250,249,246,0.5);
}
.rk-research-labs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  border-top: 1px solid rgba(250,249,246,0.1);
  padding-top: 32px;
}
@media (min-width: 768px) { .rk-research-labs { grid-template-columns: repeat(3, 1fr); } }
.rk-lab-title {
  font-family: var(--p-font-serif);
  font-size: 22px;
  color: var(--p-paper);
  margin-bottom: 10px;
}
.rk-lab-desc { font-size: 14px; color: rgba(250,249,246,0.6); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   §10. PLACEMENTS
══════════════════════════════════════════════════ */
.rk-placements { background: var(--p-paper); padding: 80px 0 0; overflow: hidden; }
.rk-placement-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
  margin-top: 16px;
  margin-bottom: 48px;
}
@media (min-width: 1024px) { .rk-placement-header { grid-template-columns: 7fr 4fr; } }
.rk-placement-sub { font-size: 16px; color: rgba(12,20,36,0.7); line-height: 1.7; margin-top: 20px; }
.rk-placement-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--p-hairline);
  border: 1px solid var(--p-hairline);
  margin-bottom: 64px;
}
@media (min-width: 768px) { .rk-placement-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.rk-placement-stat { background: var(--p-paper); padding: 32px 24px; }
.rk-placement-stat-num {
  font-family: var(--p-font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--p-navy-deep);
  margin-bottom: 8px;
}
.rk-placement-stat-label {
  font-family: var(--p-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(12,20,36,0.5);
}
/* Marquee */
.rk-marquee-row {
  border-top: 1px solid var(--p-hairline);
  border-bottom: 1px solid var(--p-hairline);
  padding: 40px 0;
  overflow: hidden;
}
.rk-marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.rk-marquee-name {
  font-family: var(--p-font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(12,20,36,0.4);
  font-style: italic;
  flex-shrink: 0;
  padding-right: 60px;
}
.rk-marquee-dot {
  margin-left: 60px;
  color: var(--p-gold);
  font-style: normal;
  font-size: 14px;
}

/* ══════════════════════════════════════════════════
   §11. TESTIMONIALS
══════════════════════════════════════════════════ */
.rk-voices {
  background: rgba(12,20,36,0.04);
  padding: 80px 0 96px;
}
.rk-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .rk-testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.rk-testi-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(250,249,246,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(12,20,36,0.1);
  padding: 32px;
}
@media (min-width: 1024px) { .rk-testi-card { padding: 40px; } }
.rk-testi-offset { }
@media (min-width: 768px) { .rk-testi-offset { margin-top: 64px; } }
.rk-testi-quote-mark {
  font-family: var(--p-font-serif);
  font-size: 3rem;
  color: var(--p-gold);
  line-height: 1;
  margin-bottom: 16px;
}
.rk-testi-quote {
  font-family: var(--p-font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--p-navy-deep);
  line-height: 1.5;
  margin-bottom: 40px;
}
.rk-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(12,20,36,0.1);
  padding-top: 24px;
}
.rk-testi-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.rk-testi-name { font-weight: 600; color: var(--p-navy-deep); font-size: 15px; }
.rk-testi-role { font-size: 12px; color: rgba(12,20,36,0.6); margin-top: 2px; }

/* ══════════════════════════════════════════════════
   §12. NEWS
══════════════════════════════════════════════════ */
.rk-news { background: var(--p-paper); padding: 80px 0 96px; }
.rk-news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.rk-news-h2 {
  font-family: var(--p-font-serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  color: var(--p-navy-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.rk-news-all-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--p-navy-deep);
  border-bottom: 1px solid var(--p-navy-deep);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.rk-news-all-link:hover { color: var(--p-gold); border-color: var(--p-gold); }
.rk-news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .rk-news-layout { grid-template-columns: 7fr 5fr; gap: 48px; } }
.rk-news-featured-img {
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 24px;
  background: rgba(12,20,36,0.05);
}
.rk-news-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms ease-out;
}
.rk-news-featured:hover .rk-news-featured-img img { transform: scale(1.05); }
.rk-news-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--p-royal);
  margin-bottom: 16px;
}
.rk-news-meta-tag   { }
.rk-news-meta-divider { display: inline-block; width: 24px; height: 1px; background: rgba(12,20,36,0.3); }
.rk-news-meta-date  { color: rgba(12,20,36,0.5); }
.rk-news-featured-title {
  font-family: var(--p-font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--p-navy-deep);
  line-height: 1.2;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.rk-news-featured:hover .rk-news-featured-title { color: var(--p-royal); }
.rk-news-featured-desc { font-size: 15px; color: rgba(12,20,36,0.6); line-height: 1.6; }
.rk-news-list { display: flex; flex-direction: column; }
.rk-news-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(12,20,36,0.1);
  transition: padding-left 0.2s;
  text-decoration: none;
}
.rk-news-item:last-child { border-bottom: 1px solid rgba(12,20,36,0.1); }
.rk-news-item:hover { padding-left: 12px; }
.rk-news-item-date {
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(12,20,36,0.5);
  padding-top: 4px;
  flex-shrink: 0;
  width: 80px;
}
.rk-news-item-body { flex: 1; min-width: 0; }
.rk-news-item-cat {
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--p-gold);
  margin-bottom: 8px;
}
.rk-news-item-title {
  font-family: var(--p-font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--p-navy-deep);
  line-height: 1.3;
  transition: color 0.2s;
}
.rk-news-item:hover .rk-news-item-title { color: var(--p-royal); }
.rk-news-item-arr {
  font-size: 14px;
  color: rgba(12,20,36,0.3);
  flex-shrink: 0;
  margin-top: 4px;
  transition: color 0.2s, transform 0.2s;
}
.rk-news-item:hover .rk-news-item-arr { color: var(--p-gold); transform: translate(2px,-2px); }

/* ══════════════════════════════════════════════════
   §13. GALLERY
══════════════════════════════════════════════════ */
.rk-gallery { background: var(--p-paper); padding: 80px 0 128px; }
.rk-masonry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
@media (min-width: 768px)  { .rk-masonry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .rk-masonry-grid { grid-template-columns: repeat(4, 1fr); } }
.rk-masonry-item { overflow: hidden; cursor: zoom-in; }
.rk-masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms ease-out; }
.rk-masonry-item:hover img { transform: scale(1.1); }
.rk-masonry-tall { grid-row: span 2; }

/* ══════════════════════════════════════════════════
   §14. ACCREDITATION
══════════════════════════════════════════════════ */
.rk-accred {
  border-top: 1px solid var(--p-hairline);
  border-bottom: 1px solid var(--p-hairline);
  background: rgba(12,20,36,0.04);
  padding: 64px 0;
  overflow: hidden;
}
.rk-accred-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .rk-accred-inner {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
    gap: 48px;
  }
}
.rk-accred-left { max-width: 100%; }
.rk-accred-title {
  font-family: var(--p-font-serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--p-navy-deep);
  margin-top: 8px;
  line-height: 1.2;
  max-width: 320px;
}
.rk-accred-badges {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  width: 100%;
  min-width: 0;
}
@media (min-width: 1024px) {
  .rk-accred-badges {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .rk-accred-badges {
    grid-template-columns: 1fr;
  }
}
.rk-accred-badge { background: rgba(12,20,36,0.04); padding: 32px 16px; text-align: center; }
.rk-accred-badge-icon {
  width: 40px; height: 40px;
  margin: 0 auto 12px;
  border: 1px solid rgba(12,20,36,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-gold);
  font-size: 12px;
}
.rk-accred-badge-name {
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--p-navy-deep);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════
   §15. VIRTUAL TOUR CTA
══════════════════════════════════════════════════ */
.rk-virtual-cta {
  position: relative;
  background: var(--p-navy-deep);
  color: var(--p-paper);
  overflow: hidden;
}
.rk-virtual-bg { position: absolute; inset: 0; }
.rk-virtual-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.rk-virtual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--p-navy-deep) 0%, rgba(12,20,36,0.6) 40%, rgba(12,20,36,0.3) 100%);
}
.rk-virtual-inner {
  position: relative;
  padding-top: 96px;
  padding-bottom: 128px;
}
.rk-virtual-h2 {
  font-family: var(--p-font-serif);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--p-paper);
  margin: 24px 0 40px;
  max-width: 900px;
}
.rk-virtual-sub {
  font-size: 16px;
  color: rgba(250,249,246,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}
.rk-virtual-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.rk-virtual-btn-play { gap: 16px; }
.rk-virtual-play-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--p-navy-deep);
  color: var(--p-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   §16. FINAL CTA
══════════════════════════════════════════════════ */
.rk-final-cta { background: var(--p-paper); padding: 80px 0 96px; }
.rk-final-cta-block {
  border-top: 1px solid var(--p-navy-deep);
  border-bottom: 1px solid var(--p-navy-deep);
  padding: 64px 0 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-end;
}
@media (min-width: 1024px) {
  .rk-final-cta-block {
    grid-template-columns: 8fr 4fr;
    gap: 48px;
  }
}
.rk-final-h2 {
  font-family: var(--p-font-serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--p-navy-deep);
  margin-top: 24px;
}
.rk-final-cta-action {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 1024px) { .rk-final-cta-action { justify-content: flex-end; } }

/* ══════════════════════════════════════════════════
   RESPONSIVE PATCHES
══════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .rk-section-header { flex-direction: column; align-items: flex-start; }
  .rk-prog-big { min-height: 380px; }
  .rk-prog-big-body { padding: 24px; }
  .rk-prog-big-meta { gap: 12px; }
  .rk-campus-collage { height: 400px; grid-auto-rows: 90px; }
  .rk-news-header { flex-direction: column; align-items: flex-start; }
  .rk-final-h2 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .rk-virtual-h2 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .rk-research-h2 { font-size: clamp(2rem, 8vw, 3.5rem); }
}

/* Safety override — ensure all visible on load if JS not running */
.rk-reveal:not(.rk-revealed) { opacity: 0; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.rk-footer {
  background: var(--p-navy-deep);
  color: var(--p-paper);
  padding-top: 96px;
  padding-bottom: 40px;
}

/* Top grid: brand + 4 columns */
.rk-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(250,249,246,0.1);
}
@media (min-width: 640px)  { .rk-footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rk-footer-top { grid-template-columns: 4fr 2fr 2fr 2fr 2fr; } }

/* Brand column */
.rk-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.rk-footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.rk-footer-brand-name {
  font-family: var(--p-font-serif);
  font-size: 22px;
  color: var(--p-paper);
  line-height: 1.2;
}
.rk-footer-brand-loc {
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(250,249,246,0.5);
  margin-top: 2px;
}
.rk-footer-desc {
  font-size: 14px;
  color: rgba(250,249,246,0.6);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 32px;
}

/* Social icons row */
.rk-footer-social {
  display: flex;
  gap: 10px;
}
.rk-footer-social-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250,249,246,0.15);
  color: rgba(250,249,246,0.7);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.rk-footer-social-link:hover {
  border-color: var(--p-gold);
  color: var(--p-gold);
}

/* Link columns */
.rk-footer-col-head {
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--p-gold);
  margin-bottom: 24px;
}
.rk-footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rk-footer-col-links li { }
.rk-footer-col-links a {
  font-size: 14px;
  color: rgba(250,249,246,0.7);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.rk-footer-col-links a:hover { color: var(--p-paper); }

/* Contact row */
.rk-footer-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(250,249,246,0.1);
}
@media (min-width: 768px) { .rk-footer-contact { grid-template-columns: repeat(3, 1fr); } }
.rk-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rk-footer-contact-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}
.rk-footer-contact-label {
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(250,249,246,0.5);
  margin-bottom: 4px;
}
.rk-footer-contact-val {
  font-size: 14px;
  color: rgba(250,249,246,0.8);
  line-height: 1.5;
}

/* Newsletter form */
.rk-footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 12px;
}
.rk-footer-newsletter input {
  background: rgba(250,249,246,0.05);
  border: 1px solid rgba(250,249,246,0.15);
  border-right: none;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--p-paper);
  width: 160px;
  outline: none;
  font-family: var(--p-font-sans);
  transition: border-color 0.2s;
}
.rk-footer-newsletter input::placeholder { color: rgba(250,249,246,0.4); }
.rk-footer-newsletter input:focus { border-color: var(--p-gold); }
.rk-footer-newsletter button {
  background: var(--p-gold);
  color: var(--p-paper);
  border: none;
  padding: 8px 14px;
  font-family: var(--p-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.rk-footer-newsletter button:hover { background: var(--p-gold-soft); }

/* Bottom bar */
.rk-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .rk-footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.rk-footer-copy {
  font-family: var(--p-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(250,249,246,0.4);
}
.rk-footer-legal {
  display: flex;
  gap: 24px;
}
.rk-footer-legal a {
  font-family: var(--p-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(250,249,246,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.rk-footer-legal a:hover { color: var(--p-paper); }

/* ══════════════════════════════════════════════════
   HOMEPAGE SLIDER CAROUSEL CONTROLS (§04 & §09B)
══════════════════════════════════════════════════ */
.rk-slider-nav-btns {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rk-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0c1424;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  box-shadow: 0 2px 8px rgba(12,20,36,0.06);
  outline: none;
}
.rk-slider-btn:hover {
  background: #0c1424;
  color: #ffffff;
  border-color: #0c1424;
  box-shadow: 0 4px 12px rgba(12,20,36,0.2);
  transform: translateY(-2px);
}
.rk-slider-btn:active {
  transform: scale(0.95);
}

/* Section 04 Schools Slider Additions */
.rk-schools-rail {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.rk-schools-rail.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
}
.rk-school-card {
  scroll-snap-align: start;
}

/* Section 09B Shining Stars Alumni Slider */
.rk-stars-outer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.rk-stars-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 24px;
  padding-top: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.rk-stars-rail.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
}
.rk-star-card {
  width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(12,20,36,0.04);
  text-align: center;
  transition: all 0.3s ease;
  user-select: none;
}
@media (min-width: 768px) {
  .rk-star-card {
    width: 310px;
  }
}
.rk-star-card:hover {
  transform: translateY(-6px);
  border-color: #c5a059;
  box-shadow: 0 12px 28px rgba(12,20,36,0.1);
  background: #ffffff;
}
.rk-star-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #E31B23;
  box-shadow: 0 4px 12px rgba(227,27,35,0.15);
}
.rk-star-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rk-star-badge {
  font-family: var(--p-font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: #0C1424;
  padding: 4px 12px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 10px;
}
.rk-star-name {
  font-size: 17px;
  font-weight: 800;
  color: #0C1424;
  margin-bottom: 4px;
}
.rk-star-sub {
  font-size: 13px;
  color: #C5A059;
  font-weight: 600;
  margin-bottom: 8px;
}
.rk-star-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* ── Mobile Viewport Layout Fixes & Table Scroll (QA-008, QA-022, QA-047) ── */
@media (max-width: 480px) {
  .subpage-hero {
    padding: 120px 0 50px !important;
  }
  .rk-hero-headline {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    line-height: 1.15 !important;
  }
  .rk-h1 {
    font-size: clamp(2rem, 7vw, 2.6rem) !important;
  }
  .rk-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.table-responsive, .ac-table-container, .qual-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}


