/* ═══════════════════════════════════════════════════════════════
   DFCA RESEARCH  —  Global Stylesheet
   Direction 1 "Evidence Authority"
   Font stack: Playfair Display (serif) · Inter (sans) · DM Mono (data)
═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─────────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────────── */
:root {
  /* Core palette */
  --navy:        #0D1B2A;
  --navy-light:  #1A2B4A;
  --gold:        #C9A84C;
  --gold-muted:  #A8853A;
  --gold-soft:   #F5EDD6;
  --cream:       #F7F3EC;
  --white:       #FFFFFF;
  --charcoal:    #2E2E2E;

  /* Warm neutral scale */
  --slate-50:    #FAFAF7;
  --slate-100:   #F5F0E8;
  --slate-200:   #E8DFCF;
  --slate-300:   #CBBFA8;
  --slate-400:   #A09277;
  --slate-500:   #7A6B55;
  --slate-600:   #5A4E3C;
  --slate-700:   #3D3428;
  --slate-800:   #2E2822;
  --slate-900:   #1A1612;

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'DM Mono', 'Courier New', monospace;

  /* Legacy aliases — keeps all section HTML working without edits */
  --emerald:       var(--gold);
  --emerald-light: var(--gold-soft);
  --green:         var(--gold);
  --green-dark:    var(--gold-muted);
  --green-soft:    var(--gold-soft);
  --slate:         var(--navy);
  --slate-mid:     var(--navy-light);
  --cool-gray:     var(--cream);
  --off-white:     var(--cream);
  --ink:           var(--charcoal);
  --ink-mid:       var(--slate-600);
  --ink-soft:      var(--slate-500);
  --rule:          var(--slate-200);
  --rule-soft:     var(--slate-100);

  /* Utilities */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* ─────────────────────────────────────────────────────────
   MODAL / DISCLAIMER
───────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--cream);
  width: 90%;
  max-width: 500px;
  border-radius: 4px;
  padding: 48px;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.6s var(--ease);
  border: 1px solid var(--slate-200);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-badge {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-muted);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: var(--sans);
}

.modal-header h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.modal-body p {
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 15px;
  font-family: var(--sans);
}

.modal-footer { margin-top: 32px; }

.btn-modal {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn-modal:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-modal:active { transform: translateY(0); }

/* ─────────────────────────────────────────────────────────
   BASE
───────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--navy); color: var(--gold); }

/* ─────────────────────────────────────────────────────────
   SECTION TRANSITION MARKER
───────────────────────────────────────────────────────── */
.section-mark { position: relative; }

.section-mark::before {
  content: '';
  position: absolute;
  top: 0; left: 7%;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.9s var(--ease);
  z-index: 2;
}

.section-mark.line-in::before { width: 64px; }

/* Mobile Quick Navigation Bar */
.mobile-bottom-nav { display: none; }

/* ─────────────────────────────────────────────────────────
   SCROLL POSITION DOTS
───────────────────────────────────────────────────────── */
/* Robust Scroll Position Dot Nav */
nav.dot-nav {
  display: flex;
  visibility: visible;
  opacity: 1;
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 15px;
  z-index: 99999;
  padding: 22px 14px;
  background: #0d1b2a; 
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 2px solid #c9a84c;
  min-width: 40px;
  align-items: center;
}

nav.dot-nav a.dot {
  position: relative;
  display: block;
  width: 10px; 
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Active Ripple Animation - Only for the lit dot */
nav.dot-nav a.dot.active::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.4);
  transform: scale(1);
  animation: dot-ripple 2s infinite;
  pointer-events: none;
}

@keyframes dot-ripple {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3.5); opacity: 0; }
}

nav.dot-nav a.dot::after {
  content: attr(data-label);
  position: absolute;
  right: 45px; top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #c9a84c;
  color: #0d1b2a;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--sans);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

nav.dot-nav a.dot:hover::after { 
  opacity: 1; 
  transform: translateY(-50%) translateX(0);
}

nav.dot-nav a.dot.active {
  background: #c9a84c !important;
  transform: scale(1.6);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.6);
}

nav.dot-nav a.dot:hover:not(.active) {
  background: #ffffff;
  transform: scale(1.3);
}

/* ─────────────────────────────────────────────────────────
   TOP BAR
───────────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  padding: 9px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-family: var(--sans);
}

.top-bar-left { color: rgba(255,255,255,0.5); }

.top-bar-left a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.top-bar-left a:hover { border-bottom-color: currentColor; }

.top-bar-right { display: flex; gap: 20px; }

.top-bar-right a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.top-bar-right a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────────────
   GLOBAL LAYOUT & ALIGNMENT
───────────────────────────────────────────────────────── */
.section-inner, .hero-inner, .about-grid, .research-grid,
.featured-inner, .approach-grid, .footer-top {
  max-width: 1400px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────── */
nav#main-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  transition: all 0.4s var(--ease);
}

nav#main-nav.scrolled {
  height: 80px;
  background: rgba(247, 243, 236, 0.97);
  box-shadow: 0 10px 30px -10px rgba(13, 27, 42, 0.12);
}

.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-brand img { height: 70px; width: auto; mix-blend-mode: multiply; transition: opacity 0.2s; }
.nav-brand:hover img { opacity: 0.85; }

.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }

.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 0;
  transition: color 0.3s;
  font-family: var(--sans);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  background: var(--navy);
  color: #fff;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--sans);
  border: 1px solid var(--navy);
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.cta-short { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: var(--navy);
  position: absolute;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before { top: -8px; }
.hamburger-inner::after { bottom: -8px; }

/* Hamburger Open State */
.menu-toggle.active .hamburger-inner { background-color: transparent; }
.menu-toggle.active .hamburger-inner::before { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active .hamburger-inner::after { transform: translateY(-8px) rotate(-45deg); }

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
#hero {
  padding: 160px 7% 180px;
  background:
    radial-gradient(circle at 85% 15%, rgba(201,168,76,0.09), transparent 48%),
    radial-gradient(circle at 10% 85%, rgba(13,27,42,0.04), transparent 42%),
    var(--cream);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-eyebrow img { height: 32px; width: auto; }

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--slate-300);
}

.hero-eyebrow-text {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--slate-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  font-variation-settings: 'wght' 400;
  animation: wordReveal 0.7s var(--ease) forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 32px;
}

.hero-title em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--slate-600);
  max-width: 600px;
  margin-bottom: 48px;
  font-weight: 400;
}

.hero-actions { display: flex; gap: 20px; align-items: center; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 2px;
  padding: 18px 36px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--sans);
  text-decoration: none;
  box-shadow: 0 4px 14px 0 rgba(13, 27, 42, 0.2);
  transition: all 0.3s var(--ease);
}

.btn-primary svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  border-radius: 2px;
  padding: 18px 36px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--sans);
  text-decoration: none;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  transition: all 0.3s var(--ease);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* ─────────────────────────────────────────────────────────
   MAP FRAME
───────────────────────────────────────────────────────── */
.hero-visual {
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) 0.5s forwards;
}

.map-frame {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 32px -10px rgba(13,27,42,0.1), 0 1px 4px rgba(13,27,42,0.04);
}

.map-label-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--slate-100);
}

.map-label-top-left {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--slate-500);
}

.map-label-top-right {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--sans);
}

.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.3;
  animation: pulse 2s ease-out infinite;
}

.map-svg { width: 100%; height: auto; filter: drop-shadow(0 12px 24px rgba(12,26,46,0.08)); }

.map-svg .neighbour { fill: #EEF2F6; stroke: #D1D9E0; stroke-width: 0.5; }

.map-svg .province-kpk {
  fill: rgba(201,168,76,0.12);
  stroke: var(--gold);
  stroke-width: 1.2;
  filter: drop-shadow(0 2px 6px rgba(201,168,76,0.15));
}

.district-dot { fill: var(--gold); }

.district-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.8;
  opacity: 0;
  animation: ring 2.4s ease-out infinite;
}

@keyframes ring {
  0%   { opacity: 0.7; r: 2; }
  100% { opacity: 0;   r: 10; }
}

.map-svg .province-punjab {
  fill: rgba(59,130,246,0.10);
  stroke: #6BA3D6;
  stroke-width: 1.1;
  filter: drop-shadow(0 2px 6px rgba(59,130,246,0.08));
}

.district-dot-punjab { fill: #5B90C0; }

.district-ring-punjab {
  fill: none;
  stroke: #5B90C0;
  stroke-width: 0.8;
  opacity: 0;
  animation: ring 2.4s ease-out infinite;
}

.map-legend {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 4px;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.05em;
  font-family: var(--sans);
}

.map-legend-swatch { width: 12px; height: 12px; border-radius: 3px; }
.map-legend-swatch.kpk  { background: rgba(201,168,76,0.3);  border: 1.5px solid var(--gold); }
.map-legend-swatch.punj { background: rgba(59,130,246,0.2);  border: 1.5px solid #5B90C0; }

.map-bottom-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--slate-100);
}

.map-stat {
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--slate-100);
}

.map-stat:last-child { border-right: none; }

.map-stat-num {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.map-stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-family: var(--sans);
}

/* ─────────────────────────────────────────────────────────
   STATS BAND
───────────────────────────────────────────────────────── */
#stats {
  background: var(--navy-light);
  padding: 64px 7%;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(201,168,76,0.12), transparent 45%),
    radial-gradient(ellipse at 85% 50%, rgba(201,168,76,0.07), transparent 45%);
  pointer-events: none;
}

.stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  max-width: 1400px;
  margin: 0 auto;
}

.stat-col {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-col:last-child { border-right: none; }

.stat-num {
  font-family: var(--mono);
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-num .plus {
  color: rgba(201,168,76,0.65);
  font-size: 0.6em;
  margin-left: 2px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 12px;
  line-height: 1.5;
  font-family: var(--sans);
}

/* ─────────────────────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────────────────────── */
.section-wrap     { padding: 112px 7%; background: var(--cream); }
.section-wrap-alt { padding: 112px 7%; background: var(--white); }

.section-head { max-width: 700px; margin-bottom: 64px; }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.section-label-line {
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.7s var(--ease);
  flex-shrink: 0;
}

.in .section-label-line,
.line-in .section-label-line { width: 28px; }

.section-label-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-muted);
  font-family: var(--sans);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.5s 0.2s var(--ease), transform 0.5s 0.2s var(--ease);
}

.in .section-label-text,
.line-in .section-label-text { opacity: 1; transform: translateX(0); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-desc {
  margin-top: 18px;
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--slate-600);
  line-height: 1.8;
  max-width: 600px;
  font-family: var(--sans);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

.reveal.in { opacity: 1; transform: translateY(0); }

/* Horizontal wipe variant — for featured quote block */
.reveal.reveal-wipe {
  opacity: 1;
  transform: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s var(--ease);
}

.reveal.reveal-wipe.in { clip-path: inset(0 0% 0 0); }

/* ─────────────────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────────────────── */
#about .about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 88px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.about-body > p {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--slate-600);
  line-height: 1.88;
  margin-bottom: 20px;
}

.about-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 700;
  float: left;
  line-height: 0.82;
  padding: 8px 12px 0 0;
  color: var(--navy);
}

.highlight {
  color: var(--gold-muted);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  transition: border-color 0.2s, color 0.2s;
}

.highlight:hover { border-bottom-color: var(--gold); color: var(--gold); }

.about-quote {
  margin-top: 36px;
  padding: 24px 28px 24px 40px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  position: relative;
}

.about-quote::before {
  content: '\201C';
  position: absolute;
  top: 10px; left: 14px;
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}

.about-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.65;
  margin: 0;
}

.about-sidebar { display: flex; flex-direction: column; gap: 16px; }

.ab-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  padding: 26px;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.ab-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -10px rgba(13,27,42,0.1);
}

.ab-card--featured {
  border-color: rgba(168,133,58,0.38);
  position: relative;
  overflow: hidden;
}
.ab-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-muted) 0%, rgba(201,168,76,0.3) 100%);
}
.ab-card--featured:hover {
  border-color: rgba(168,133,58,0.6);
  box-shadow: 0 12px 32px -10px rgba(13,27,42,0.14);
}
.ab-card--featured .ab-card-label {
  color: var(--navy);
  opacity: 0.7;
}

.ab-card-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 10px;
  font-family: var(--sans);
}

.ab-card h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ab-card p { font-size: 13.5px; font-weight: 400; color: var(--slate-600); line-height: 1.7; }

.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

.tag {
  padding: 4px 11px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  background: var(--slate-100);
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
  font-family: var(--sans);
}

.tag-green {
  background: var(--gold-soft);
  color: var(--gold-muted);
  border-color: rgba(201,168,76,0.3);
}

.tag-blue {
  background: #EFF6FF;
  color: #1D4ED8;
  border-color: #BFDBFE;
}

.tag-institution {
  background: var(--navy);
  color: rgba(255,255,255,0.86);
  border-color: var(--navy);
  letter-spacing: 0.01em;
  font-size: 11.5px;
}

.geo-stats {
  display: flex;
  gap: 24px;
  margin: 18px 0 0;
  padding: 16px 0 18px;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.geo-stat-num {
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
  font-family: var(--sans);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.geo-stat-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-top: 5px;
  font-family: var(--sans);
}

/* ─────────────────────────────────────────────────────────
   RESEARCH AREAS
───────────────────────────────────────────────────────── */
.research-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.r-card {
  background-color: var(--cream);
  background-image: linear-gradient(105deg, rgba(201,168,76,0.13) 0%, rgba(201,168,76,0.05) 45%, transparent 60%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-size 0.55s var(--ease);
}

.r-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.r-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -12px rgba(13,27,42,0.12);
  background-size: 120% 100%;
}

.r-card:hover::after { width: 100%; }

.r-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.r-icon {
  width: 44px; height: 44px;
  border-radius: 4px;
  background: var(--gold-soft);
  color: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s, transform 0.35s var(--ease);
}

.r-card:hover .r-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(-5deg) scale(1.05);
}

.r-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.r-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--slate-300);
  letter-spacing: 0.08em;
}

.r-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.r-card p { font-size: 13.5px; font-weight: 400; color: var(--slate-600); line-height: 1.75; }

/* Featured Study Block in Research Section */
.research-featured {
  margin-top: 64px;
  background: var(--cream);
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  padding: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.research-featured-content h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}

.research-featured-content p {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.research-featured-content .btn-primary {
  margin-top: 12px;
}

.research-featured-visual {
  position: relative;
  background: var(--white);
  padding: 32px;
  border-radius: 4px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
}

.r-card-footer {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-muted);
  letter-spacing: 0.04em;
  font-family: var(--sans);
}

.r-card-footer svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform 0.3s var(--ease);
}

.r-card-footer.active svg { transform: rotate(90deg); }

.r-card-footer:hover .r-card-footer svg { transform: translateX(4px); }

/* Project List inside Card */
.r-projects-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), margin-top 0.5s var(--ease);
  margin-top: 0;
}

.r-projects-list.active {
  max-height: 300px;
  margin-top: 24px;
}

.r-projects-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.r-project-item {
  margin-bottom: 8px;
}

.r-project-link {
  text-decoration: none;
  display: block;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}

.r-project-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.05);
  background: var(--gold-soft);
}

.r-project-name {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}

.r-project-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.r-project-cta::after {
  content: '→';
  transition: transform 0.3s var(--ease);
}

.r-project-link:hover .r-project-cta::after {
  transform: translateX(4px);
}

.r-no-projects {
  padding: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--slate-500);
  background: rgba(247, 243, 236, 0.5);
  border: 1px dashed var(--slate-300);
  border-radius: 4px;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────
   FEATURED SPOTLIGHT
───────────────────────────────────────────────────────── */
#featured {
  padding: 140px 7%;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.featured-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.featured-left h2 em { color: var(--gold); font-style: italic; }

.featured-left p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 40px;
}

.featured-meta {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.featured-meta-item-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  font-family: var(--sans);
}

.featured-meta-item-value {
  font-family: var(--serif);
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.featured-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 60px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.featured-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 6px 6px 0 0;
}

.featured-quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: 24px;
  opacity: 0.5;
}

.featured-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  font-weight: 500;
}

.featured-attr {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  font-family: var(--sans);
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.featured-attr strong {
  display: block;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
  font-size: 13px;
}

/* ─────────────────────────────────────────────────────────
   RCT SLIDESHOW
───────────────────────────────────────────────────────── */
.rct-section {
  background: var(--navy);
  padding: 120px 7%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.rct-header {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.rct-header .section-label { justify-content: center; }

.rct-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.rct-heading em { color: var(--gold); font-style: italic; }

.rct-subhead {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-family: var(--sans);
}

.rct-carousel {
  max-width: 1100px;
  margin: 0 auto;
}

.rct-slides { position: relative; min-height: 240px; }

.rct-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease);
}

.rct-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.rct-slide-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: stretch;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.rct-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
  background: rgba(201,168,76,0.06);
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.rct-stat-num {
  display: block;
  font-family: var(--mono);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.rct-stat-unit {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.28);
  margin-top: 14px;
  font-family: var(--sans);
}

.rct-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rct-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.rct-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 3px 12px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--sans);
}

.rct-region {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}

.rct-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 18px;
}

.rct-finding {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
  font-family: var(--sans);
}

.rct-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.rct-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.rct-btn svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.45);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rct-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.rct-btn:hover svg { stroke: var(--gold); }

.rct-dots { display: flex; gap: 10px; }

.rct-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.rct-dot.active { background: var(--gold); transform: scale(1.35); }

/* ─────────────────────────────────────────────────────────
   METHODOLOGY (APPROACH)
───────────────────────────────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.approach-intro-text p {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.85;
  margin-bottom: 20px;
}

.approach-sdgs {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--slate-200);
}

.approach-sdgs-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-muted);
  margin-bottom: 16px;
  font-family: var(--sans);
}

.sdg-pill {
  display: inline-block;
  margin: 4px;
  padding: 5px 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-600);
  font-family: var(--sans);
  letter-spacing: 0.03em;
}

.steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--slate-200);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--mono);
  font-size: 2rem;
  color: var(--slate-200);
  font-weight: 400;
  line-height: 1.3;
}

.step h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step p { font-size: 14px; color: var(--slate-600); line-height: 1.75; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 100px 7% 0;
  color: var(--slate-400);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-brand-sub {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--sans);
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  font-family: var(--sans);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  font-family: var(--sans);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  text-decoration: none;
  font-size: 14px;
  color: inherit;
  transition: color 0.3s;
  font-family: var(--sans);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: var(--sans);
}

/* ─────────────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); font-variation-settings: 'wght' 700; }
}

@keyframes scaleIn { to { transform: scaleX(1); } }

@keyframes pulse {
  0%   { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner          { grid-template-columns: 1fr; gap: 56px; }
  .map-frame           { max-width: 500px; margin: 0 auto; }
  #about .about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .research-grid       { grid-template-columns: repeat(2,1fr); }
  .research-featured   { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .featured-inner      { grid-template-columns: 1fr; gap: 48px; }
  .approach-grid       { grid-template-columns: 1fr; gap: 48px; }
  .footer-top          { grid-template-columns: 1fr 1fr; }
  /* Hide dot-nav on tablets and mobile */
  nav.dot-nav          { display: none !important; }
}

@media (max-width: 900px) {
  .rct-slide-inner     { grid-template-columns: 1fr; }
  .rct-stat-block      { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 40px; }
  .rct-content         { padding: 40px; }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .hide-mobile { display: none !important; }

  /* Mobile Bottom Nav Styles */
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(247, 243, 236, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(0,0,0,0.08);
    z-index: 900;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
  }

  .m-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--slate-400);
    gap: 4px;
    flex: 1;
  }

  .m-nav-item.active {
    color: var(--navy);
  }

  .m-nav-icon {
    font-size: 18px;
    line-height: 1;
  }

  .m-nav-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--sans);
  }

  /* Adjust footer padding to account for bottom nav */
  footer {
    padding-bottom: 80px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.4s var(--ease);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 0;
    margin: 0;
  }

  .nav-links.active {
    right: 0;
    display: flex;
  }

  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { font-size: 18px; display: block; padding: 12px; }

  .nav-cta {
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  
  .cta-full { display: none; }
  .cta-short { display: inline; }

  .top-bar-right                { display: none; }
  .stats-inner                  { grid-template-columns: repeat(2,1fr); }
  .stat-col                     { padding: 20px 12px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .research-grid                { grid-template-columns: 1fr; }
  .footer-top                   { grid-template-columns: 1fr; }
  .section-wrap, .section-wrap-alt, #featured, .rct-section { padding: 80px 7%; }
  #hero                         { padding: 64px 7% 80px; }
  .featured-meta                { flex-direction: column; gap: 18px; }
  .rct-header                   { margin-bottom: 48px; }
  .footer-bottom                { flex-direction: column; gap: 8px; }
}
