/* ===== ARCB Investment LLC — Sovereign Luxury Finance ===== */

:root {
  --black: #050508;
  --navy: #0a0e1a;
  --navy-mid: #0f1528;
  --navy-light: #151d35;
  --gold: #b79452;
  --gold-light: #d4b072;
  --gold-dim: rgba(183, 148, 82, 0.15);
  --gold-rule: rgba(183, 148, 82, 0.3);
  --white: #ffffff;
  --off-white: #e8e6e1;
  --text-primary: rgba(255, 255, 255, 0.92);
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.3);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --font-serif: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; letter-spacing: 0; }

/* SEO: semantic H1 on inner pages visually matches H2 sizing */
h1.page-h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

p {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.section-label--gold {
  color: var(--gold);
}

/* ===== Gold Rules ===== */
.gold-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}

.gold-rule--center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== Reveal Animation ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Preloader ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
  50% { opacity: 1; transform: scaleX(1); }
}

.preloader-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Top Micro Bar ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 32px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1001;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.top-bar-sep {
  color: var(--gold-rule);
  margin: 0 4px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  width: 100%;
  height: 72px;
  z-index: 1000;
  overflow: visible;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: none;
  padding: 0 40px;
  overflow: visible;
}

.logo {
  display: block;
  width: 180px;
  height: 40px;
  background-image: url('logo-gold.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.logo:hover { opacity: 0.8; }

.logo-img {
  display: none;
}

.nav {
  display: flex;
  gap: 48px;
}

.nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-license {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-rule);
  padding: 5px 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }
.nav-toggle.open span:first-child { top: 50%; transform: rotate(45deg); }
.nav-toggle.open span:last-child { bottom: 50%; transform: rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 12s ease-out;
}

body.loaded .hero-bg-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5,5,8,0.3) 0%,
      rgba(5,5,8,0.15) 30%,
      rgba(5,5,8,0.5) 60%,
      rgba(5,5,8,0.92) 100%
    ),
    linear-gradient(90deg,
      rgba(5,5,8,0.6) 0%,
      transparent 60%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 900px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s ease 0.5s forwards;
}

.hero-badge-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-badge-text {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 0 24px rgba(0,0,0,0.6);
}

.hero-title { margin-bottom: 20px; }

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: heroReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
}

.hero-title-line:nth-child(2) { animation-delay: 0.9s; }

.hero-title-accent {
  color: var(--gold-light);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s ease 1.1s forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s ease 1.3s forwards;
}

.hero-meta-sep {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-rule);
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Statement ===== */
.statement {
  padding: 72px 60px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold-rule), transparent);
}

.statement-inner {
  max-width: 800px;
  margin: 0 auto;
}

.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* ===== Positioning ===== */
.positioning {
  padding: 56px 60px;
  background: var(--black);
  border-top: 1px solid var(--border);
  text-align: center;
}

.positioning-inner {
  max-width: 900px;
  margin: 0 auto;
}

.positioning-text {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 2;
  letter-spacing: 0.02em;
}

/* ===== Scrolling Marquee ===== */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  opacity: 0.5;
}

.marquee-dot {
  display: inline-block;
  width: 4px !important;
  height: 4px !important;
  background: var(--gold-rule) !important;
  border-radius: 50%;
  font-size: 0 !important;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Hero Alignment Badges ===== */
.hero-alignments {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s ease 1.15s forwards;
}

.hero-alignment-badge {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-rule);
  padding: 5px 14px;
}

/* ===== About — With Image ===== */
.about {
  padding: 90px 60px;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 32px;
}

.about-image {
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.85);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.03);
  filter: grayscale(0%) brightness(0.9);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,5,8,0.6) 100%);
  pointer-events: none;
}

.about-image-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* --- About License Card (replaces stock photo) --- */
.about-license-card {
  margin-top: 8px;
  background: linear-gradient(145deg, #0d1120 0%, #0a0e1a 100%);
  border: 1px solid rgba(183, 148, 82, 0.20);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

/* Tab navigation */
.about-license-card-tabs {
  display: flex;
  border-bottom: 1px solid rgba(183, 148, 82, 0.12);
  position: relative;
  z-index: 5;
}

.about-license-tab {
  flex: 1;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.about-license-tab:first-child {
  border-right: 1px solid rgba(183, 148, 82, 0.12);
}

.about-license-tab.active {
  color: var(--gold);
  background: rgba(183, 148, 82, 0.04);
}

.about-license-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: var(--gold);
}

.about-license-tab:hover:not(.active) {
  color: var(--text-secondary);
}

/* Panels */
.about-license-panel {
  display: none;
}

.about-license-panel.active {
  display: block;
}

.about-license-card-image {
  position: relative;
  padding: 16px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.about-license-card-image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

/* Repeating diagonal watermark overlay — VISIBLE for anti-photo protection */
.about-license-card-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  background-image: url('watermark-tile.png');
  background-repeat: repeat;
  background-size: 350px 110px;
}

/* Invisible shield layer — blocks drag/save/inspect on image only */
.about-license-card-shield {
  position: absolute;
  inset: 16px;
  z-index: 3;
  cursor: default;
  background: transparent;
}

/* Anti-screenshot: black overlay when page loses visibility */
.about-license-card[data-protected] .about-license-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #0a0e1a;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 10;
  pointer-events: none;
}

.about-license-card[data-protected].is-hidden .about-license-card-image::after {
  opacity: 1;
}

.about-license-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid rgba(183, 148, 82, 0.12);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.about-license-card-footer strong {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.about-license-card-sep {
  color: rgba(183, 148, 82, 0.25);
}

/* Print protection — hide license on print */
@media print {
  .about-license-card {
    display: none !important;
  }
}

/* --- About Pillars (fills right column) --- */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--border);
}

.about-pillar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.about-pillar-icon {
  display: inline-block;
  color: var(--gold);
  font-size: 0.5rem;
  margin-right: 8px;
  vertical-align: middle;
}

.about-pillar h4 {
  display: inline;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.about-pillar p {
  margin-top: 8px;
  margin-bottom: 0 !important;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-right { padding-top: 8px; }

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.6;
  margin-bottom: 28px;
}

.about-right p { margin-bottom: 20px; }

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- About License Certificate --- */
.about-license {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-license-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.about-license-icon {
  color: var(--gold);
  font-size: 0.6rem;
}

.about-license-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-license-frame {
  position: relative;
  max-width: 480px;
  border: 1px solid rgba(183, 148, 82, 0.25);
  border-radius: 2px;
  overflow: hidden;
  background: #0d1120;
}

.about-license-frame img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
  transition: opacity 0.4s ease;
}

.about-license-frame:hover img {
  opacity: 1;
}

/* Repeating diagonal watermark overlay */
.about-license-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(183, 148, 82, 0.08);
  transform: rotate(-25deg);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  text-transform: uppercase;
}

.about-license-note {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===== Cinematic Break ===== */
.cinematic-break {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cinematic-bg {
  position: absolute;
  inset: 0;
}

.cinematic-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.88) 0%, rgba(10,14,26,0.7) 100%);
}

.cinematic-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  max-width: 700px;
}

.cinematic-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.cinematic-content p {
  font-size: 1rem;
  line-height: 1.85;
  max-width: 540px;
}

/* ===== Sectors — Horizontal Scroll ===== */
.sectors {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.sectors-header {
  padding: 0 60px 60px;
  max-width: 800px;
}

.sectors-title { margin-bottom: 16px; }

.sectors-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.sectors-track-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 80px;
}

.sectors-track-wrapper::-webkit-scrollbar { display: none; }

.sectors-track {
  display: flex;
  gap: 2px;
  padding: 0 60px;
  width: max-content;
}

.sector-panel {
  position: relative;
  width: 360px;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

.sector-panel-bg {
  position: absolute;
  inset: 0;
  background-image: var(--panel-img);
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sector-panel-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5,5,8,0.15) 0%,
    rgba(5,5,8,0.35) 40%,
    rgba(5,5,8,0.88) 100%
  );
  transition: background 0.5s ease;
}

.sector-panel:hover .sector-panel-bg {
  transform: scale(1.08);
}

.sector-panel:hover .sector-panel-bg::after {
  background: linear-gradient(180deg,
    rgba(5,5,8,0.05) 0%,
    rgba(5,5,8,0.25) 40%,
    rgba(5,5,8,0.82) 100%
  );
}

.sector-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 28px;
  z-index: 2;
}

.sector-number {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.sector-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.sector-panel:hover h3 { color: var(--gold-light); }

.sector-panel p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sector-panel:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ESG — With Images ===== */
.esg {
  padding: 90px 60px;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}

.esg-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.esg-heading { margin-bottom: 20px; }

.esg-intro {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.85;
}

.esg-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.esg-col {
  background: var(--navy-mid);
  padding: 0;
  text-align: left;
  position: relative;
  transition: background 0.4s ease;
  overflow: hidden;
}

.esg-col:hover { background: var(--navy-light); }

.esg-col-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.esg-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.7);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.esg-col:hover .esg-col-image img {
  transform: scale(1.05);
  filter: grayscale(10%) brightness(0.8);
}

.esg-col-accent {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 32px 36px 24px;
}

.esg-col h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--off-white);
  padding: 0 36px;
}

.esg-col p {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-secondary);
  padding: 0 36px 40px;
}

/* ===== Global Impact ===== */
.global {
  padding: 90px 60px;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.global-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.global-text h2 { margin-bottom: 24px; }

.global-text p {
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 40px;
}

.global-regions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.region-item:hover { color: var(--white); }

.region-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-hover);
  border: 1px solid var(--text-muted);
  transition: all 0.3s;
}

.region-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(183, 148, 82, 0.4);
}

.region-item:hover .region-dot {
  border-color: var(--gold);
}

.global-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.world-map {
  width: 100%;
  max-width: 700px;
  height: auto;
}

/* ===== Closing — With Background Image ===== */
.closing {
  padding: 100px 60px;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  inset: 0;
}

.closing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.85) 100%);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 24px;
}

.closing p {
  font-size: 1.0625rem;
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto 32px;
}

.closing-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.closing-badge {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-rule);
  padding: 6px 16px;
  transition: background 0.3s, color 0.3s;
}

.closing-badge:hover {
  background: rgba(183, 148, 82, 0.1);
}

/* ===== Footer ===== */
.footer {
  padding: 56px 60px;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand { max-width: 520px; }

.footer-logo-icon {
  width: 32px;
  height: auto;
  margin-bottom: 12px;
  opacity: 0.3;
}

.footer-logo {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-entity {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-credentials {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer-dot {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-rule);
}

.footer-copy {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.15);
}

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1001;
  transition: width 0.05s linear;
}

/* ===== Noise Texture Overlay ===== */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ===== Video Hero ===== */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video + .hero-bg-img {
  display: none;
}

/* If video fails, show image */
.hero-video.hidden + .hero-bg-img {
  display: block;
}

/* ===== Track Record Metrics Strip ===== */
.track-record {
  padding: 64px 60px;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.track-record-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.track-record-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.track-record-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.track-metric {
  padding: 0 32px;
  border-left: 1px solid var(--border);
}

.track-metric:first-child {
  padding-left: 0;
  border-left: none;
}

.track-metric-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.track-metric-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1;
  letter-spacing: -0.01em;
}

.track-metric-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.6;
}

.track-metric-desc {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .track-record-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }
  .track-metric:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .track-record { padding: 48px 24px; }
  .track-record-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }
  .track-metric-number { font-size: 2rem; }
}

/* ===== Leadership — Merged Section ===== */
.leadership {
  padding: 90px 60px;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.leadership-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.leadership-top {
  margin-bottom: 60px;
}

.leadership-top--centered {
  display: flex;
  justify-content: center;
  text-align: center;
}

.leadership-header--centered {
  max-width: 700px;
}

.leadership-header--centered .sl-gold-line {
  margin: 0 auto 24px;
}

.leadership-header--centered .leadership-lead {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.leadership-header {
  max-width: 600px;
}

.leadership-header .sl-gold-line {
  margin: 0 0 24px;
}

.leadership-header h2 {
  margin-bottom: 24px;
}

.leadership-lead {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 500px;
}

/* --- Leadership Portraits --- */
.leadership-portraits {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 70px;
}

.leader-card {
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.leader-card-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 11;
  background: var(--navy);
  border: none;
  border-radius: 0;
}

/* Gold corner accents */
.leader-card-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  z-index: 3;
  pointer-events: none;
}

.leader-card-corner--tl {
  top: 0; left: 0;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.leader-card-corner--tr {
  top: 0; right: 0;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.leader-card-corner--bl {
  bottom: 0; left: 0;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.leader-card-corner--br {
  bottom: 0; right: 0;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

/* Subtle gold edge glow on hover */
.leader-card-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(183, 148, 82, 0.10);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.leader-card:hover .leader-card-frame::after {
  border-color: rgba(183, 148, 82, 0.28);
  box-shadow: inset 0 0 40px rgba(183, 148, 82, 0.06);
}

.leader-card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  filter: brightness(0.95);
}

.leader-card:hover .leader-card-frame img {
  transform: scale(1.03);
  filter: brightness(1);
}

.leader-card-info {
  padding: 28px 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leader-card-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 18px;
}

.leader-card-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.04em;
}

.leader-card-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

/* --- Governance Profile (detailed page) --- */
.gov-profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 70px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--border);
}

.gov-profile--reverse {
  grid-template-columns: 1fr 220px;
}

.gov-profile--reverse .gov-profile-photo {
  order: 2;
}

.gov-profile--reverse .gov-profile-detail {
  order: 1;
}

.gov-profile-photo .leader-card-frame {
  aspect-ratio: 3 / 4;
  max-width: 220px;
}

.gov-profile-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(183, 148, 82, 0.25);
  border-radius: 2px;
}

.gov-profile-name {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.gov-profile-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0;
}

.gov-profile-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}

.gov-profile-bio {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

.gov-profile-bio:last-of-type {
  margin-bottom: 28px;
}

.gov-profile-bio strong {
  color: var(--off-white);
  font-weight: 500;
}

.gov-profile-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gov-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.gov-highlight-icon {
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.gov-highlight strong {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  display: block;
  margin-bottom: 4px;
}

.gov-highlight p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .gov-profile,
  .gov-profile--reverse {
    grid-template-columns: 200px 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .gov-profile,
  .gov-profile--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gov-profile-photo {
    max-width: 220px;
  }
  .gov-profile--reverse .gov-profile-photo {
    order: -1;
  }
  .gov-profile-name {
    font-size: 1.75rem;
  }
}

.sl-link {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}

.sl-link:hover {
  border-bottom-color: var(--gold);
}

.sl-link span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.sl-link:hover span {
  transform: translateX(5px);
}

.leadership-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.pillar {
  background: var(--navy);
  padding: 40px 32px;
  transition: background 0.4s ease;
}

.pillar:hover {
  background: var(--navy-light);
}

.pillar-icon {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: 20px;
}

.pillar h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--off-white);
}

.pillar p {
  font-size: 0.9375rem;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .leadership-portraits {
    gap: 40px;
  }
  .leader-card {
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .leadership-portraits {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .leader-card {
    max-width: 360px;
  }
}

/* ===== Affiliations ===== */
.affiliations {
  padding: 60px 60px;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.affiliations-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.affiliations-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.affiliation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  flex: 1;
}

.affiliation-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.affiliation:hover .affiliation-icon {
  opacity: 1;
}

.affiliation-icon svg {
  width: 100%;
  height: 100%;
}

.affiliation-name {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color 0.3s;
}

.affiliation:hover .affiliation-name {
  color: var(--text-secondary);
}

.affiliation-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== Affiliations — Logo variant ===== */
.affiliation--logo { cursor: default; }
.affiliation-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 48px;
  transition: opacity 0.3s;
}
.affiliation-logo-link:hover { opacity: 0.8; }
.affiliation-logo-img {
  max-width: 80px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.affiliation-logo-link:hover .affiliation-logo-img { opacity: 0.9; }
.affiliation-logo-img--color {
  filter: none;
  mix-blend-mode: screen;
  opacity: 0.85;
}
.affiliation-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ===== JLM AI Agent — Innovation Partner (Redesigned) ===== */
.jlm-partner {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

/* subtle grid overlay */
.jlm-partner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(183,148,82,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183,148,82,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.jlm-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 80px;
  position: relative;
  z-index: 1;
}

/* ── Header Row ── */
.jlm-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 52px;
}

.jlm-header-text {
  flex: 1;
}

.jlm-label {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(183,148,82,0.08);
  border: 1px solid rgba(183,148,82,0.22);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.jlm-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 18px;
}

.jlm-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.60);
  font-weight: 300;
  line-height: 1.65;
  max-width: 460px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  margin: 0;
}

/* ── Logo Card (dark, preserving mix-blend-mode: screen) ── */
.jlm-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  overflow: hidden;
}

.jlm-logo-card-inner {
  width: 400px;
  height: 225px;
  background: linear-gradient(135deg, #0a0e1a 0%, #0f1528 100%);
  border: 1px solid rgba(183,148,82,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.jlm-logo-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(183,148,82,0.25), transparent);
}

.jlm-logo-card-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(183,148,82,0.25), var(--gold));
}

.jlm-logo-img {
  width: 75%;
  max-width: 300px;
  max-height: 190px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  display: block;
  flex-shrink: 0;
}

.jlm-logo-fallback {
  display: none;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  align-items: center;
  justify-content: center;
}

.jlm-logo-fallback em {
  font-style: normal;
  color: var(--gold);
}

.jlm-logo-caption {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a9ab5;
  text-align: center;
}

/* ── Video Trigger on Logo Card ── */
button.jlm-logo-card-inner {
  border: 1px solid rgba(183,148,82,0.2);
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
button.jlm-logo-card-inner:hover {
  transform: translateY(-2px);
  border-color: rgba(183,148,82,0.55);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(183,148,82,0.25);
}
button.jlm-logo-card-inner:hover .jlm-logo-img { opacity: .35; }
button.jlm-logo-card-inner:hover .jlm-play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
button.jlm-logo-card-inner:hover .jlm-play-badge { opacity: 1; transform: translateY(0); }

.jlm-logo-img { transition: opacity .35s ease; }

.jlm-play-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(183,148,82,0.95);
  color: #0a0e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  pointer-events: none;
}
.jlm-play-overlay svg {
  width: 28px; height: 28px;
  margin-left: 3px;
}

/* Subtle resting indicator (small play dot always visible) */
button.jlm-logo-card-inner::before {
  content: '';
  position: absolute;
  top: 10px; right: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(183,148,82,0.6);
  animation: jlmPulse 2.2s ease-out infinite;
  z-index: 2;
  height: 8px;
  left: auto;
}
@keyframes jlmPulse {
  0%   { box-shadow: 0 0 0 0 rgba(183,148,82,0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(183,148,82,0); }
  100% { box-shadow: 0 0 0 0 rgba(183,148,82,0); }
}

.jlm-play-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  background: rgba(10,14,26,0.85);
  padding: 5px 12px;
  border: 1px solid rgba(183,148,82,0.4);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
  white-space: nowrap;
}

/* ── Video Modal ── */
.jlm-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(3,6,14,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .3s ease;
}
.jlm-video-modal.open {
  display: flex;
  opacity: 1;
}
.jlm-video-frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(183,148,82,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.jlm-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}
.jlm-video-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  opacity: .75;
  transition: opacity .2s ease, transform .2s ease;
}
.jlm-video-close:hover { opacity: 1; transform: scale(1.1); }

@media (max-width: 768px) {
  .jlm-video-modal { padding: 16px; }
  .jlm-play-overlay { width: 54px; height: 54px; }
  .jlm-play-overlay svg { width: 24px; height: 24px; }
}

/* ── Section Divider ── */
.jlm-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,148,82,0.45), transparent);
  margin-bottom: 52px;
}

/* ── Two-Column Content Blocks ── */
.jlm-blocks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.jlm-block {
  padding: 36px 36px;
  border: 1px solid rgba(183,148,82,0.15);
  background: var(--navy-mid);
  position: relative;
}

.jlm-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.jlm-block--csr {
  background: #111827;
  border-color: rgba(183,148,82,0.22);
}

.jlm-block--csr::before {
  background: linear-gradient(180deg, var(--gold) 0%, #b74a52 100%);
}

.jlm-block-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.jlm-block-heading {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.2;
}

.jlm-block p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 13px;
}

.jlm-block p:last-child { margin-bottom: 0; }

.jlm-csr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e06a72;
  background: rgba(183,74,82,0.12);
  border: 1px solid rgba(183,74,82,0.28);
  padding: 5px 13px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.jlm-belief {
  font-style: italic !important;
  color: rgba(255,255,255,0.70) !important;
  border-top: 1px solid rgba(183,148,82,0.22) !important;
  padding-top: 13px !important;
  margin-top: 4px !important;
}

/* ── SDG Alignment Block ── */
.jlm-sdg-wrap {
  background: var(--navy-mid);
  border: 1px solid rgba(183,148,82,0.18);
  padding: 36px 40px;
  margin-bottom: 52px;
  position: relative;
}

/* Multi-color SDG rainbow top bar */
.jlm-sdg-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #19486a 0%, #a21942 25%, #c31f33 45%, #fd6925 68%, #dd1367 100%);
  opacity: 0.75;
}

.jlm-sdg-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(183,148,82,0.1);
}

.jlm-un-mark { flex-shrink: 0; opacity: 0.88; }

.jlm-sdg-heading-label {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.jlm-sdg-heading-desc {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

.jlm-sdg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.jlm-sdg-item {
  border: 1px solid rgba(183,148,82,0.12);
  background: #0d1324;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.jlm-sdg-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}

.jlm-sdg-icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.jlm-sdg-text {
  font-size: 11px;
  color: rgba(255,255,255,0.50);
  line-height: 1.55;
  font-weight: 300;
  margin: 0;
  padding: 12px 14px;
  flex: 1;
}

/* ── Impact Statement ── */
.jlm-impact-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 52px;
  padding: 0 16px;
}

.jlm-impact-rule {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(183,148,82,0.45));
}

.jlm-impact-rule--right {
  background: linear-gradient(90deg, rgba(183,148,82,0.45), transparent);
}

.jlm-impact-text {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.35vw, 18px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  text-align: center;
  max-width: 700px;
  flex-shrink: 0;
  width: 60%;
}

/* ── CTA Block ── */
.jlm-cta-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.jlm-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #050a14;
  color: var(--gold);
  border: 1px solid rgba(183,148,82,0.3);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 40px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.jlm-cta-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #050a14;
  transform: translateY(-2px);
}

.jlm-cta-btn svg { transition: transform 0.3s ease; }

.jlm-cta-btn:hover svg { transform: translate(2px, -2px); }

.jlm-cta-subtext {
  font-size: 12px;
  color: #8a9ab5;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .jlm-inner { padding: 72px 48px; }
  .jlm-sdg-grid { grid-template-columns: repeat(3, 1fr); }
  .jlm-sdg-wrap { padding: 32px 32px; }
}

@media (max-width: 768px) {
  .jlm-inner { padding: 56px 24px; }
  .jlm-header-row { flex-direction: column; gap: 32px; }
  .jlm-logo-card { width: 100%; }
  .jlm-logo-card-inner { width: 100%; max-width: 400px; aspect-ratio: 16/9; height: auto; margin: 0 auto; }
  .jlm-blocks-grid { grid-template-columns: 1fr; gap: 20px; }
  .jlm-sdg-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .jlm-sdg-wrap { padding: 28px 20px; }
  .jlm-impact-wrap { flex-direction: column; gap: 16px; padding: 0; }
  .jlm-impact-rule, .jlm-impact-rule--right { display: none; }
  .jlm-impact-text { width: 100%; }
}

@media (max-width: 480px) {
  .jlm-sdg-grid { grid-template-columns: 1fr; }
  .jlm-block { padding: 28px 24px; }
}

/* ===== Dotted Map Canvas ===== */
#dotMap {
  width: 100%;
  max-width: 700px;
  height: auto;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 90px 60px;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info > p {
  margin-bottom: 40px;
  max-width: 400px;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:first-child {
  border-top: 1px solid var(--border);
}

.contact-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-secondary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field label {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  font-weight: 300;
  background: transparent;
  color: var(--text-primary);
  border-radius: 0;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}

.form-field select {
  cursor: pointer;
  color: var(--text-muted);
}

.form-field select option {
  background: var(--navy);
  color: var(--text-primary);
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  display: inline-block;
  padding: 14px 48px;
  font-size: 0.6875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-rule);
  cursor: pointer;
  transition: all 0.4s ease;
  align-self: flex-start;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .about-inner { gap: 60px; }
  .global-inner { gap: 60px; }
}

@media (max-width: 1024px) {
  .header-inner { padding: 0 40px; }
  .hero-content { padding: 0 40px 60px; }
  .hero-scroll { right: 40px; }
  .statement { padding: 60px 40px; }
  .about { padding: 72px 40px; }
  .cinematic-content { padding: 60px 40px; }
  .sectors { padding-top: 64px; }
  .sectors-header { padding: 0 40px 48px; }
  .sectors-track { padding: 0 40px; }
  .esg { padding: 72px 40px; }
  .global { padding: 72px 40px; }
  .closing { padding: 80px 40px; }
  .footer { padding: 56px 40px; }
  .leadership { padding: 72px 40px; }
  .affiliations { padding: 56px 40px; }
  .contact-section { padding: 72px 40px; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-heading { position: static; }
  .about-image { display: none; }
  .sector-panel { width: 320px; height: 460px; }
  .esg-columns { grid-template-columns: 1fr; }
  .global-inner { grid-template-columns: 1fr; gap: 48px; }
  .leadership-pillars { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .affiliations-row { flex-wrap: wrap; gap: 32px; }
  .affiliation-sep { display: none; }
}

@media (max-width: 768px) {
  .header { height: 64px; }
  .header-inner { padding: 0 24px; }
  .header-license { display: none; }
  .logo-img { height: 32px; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 40px 24px;
    gap: 24px;
  }
  .nav-toggle { display: block; }

  .top-bar { display: none; }
  .header { top: 0; height: 64px; }
  .hero { min-height: 100vh; }
  .hero-content { padding: 0 24px 60px; }
  .hero-scroll { display: none; }
  .hero-badge {
    display: inline-flex;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(183,148,82,0.25);
    padding: 8px 14px;
    border-radius: 2px;
  }
  .hero-badge-line { display: none; }
  .hero-alignments { gap: 8px; }
  .hero-alignment-badge { font-size: 0.5rem; padding: 4px 10px; }

  .statement { padding: 48px 24px; }
  .statement::before { height: 40px; }
  .positioning { padding: 36px 24px; }

  .about { padding: 56px 24px; }

  .cinematic-break { min-height: 320px; }
  .cinematic-content { padding: 48px 24px; }

  .sectors { padding-top: 64px; }
  .sectors-header { padding: 0 24px 36px; }
  .sectors-track { padding: 0 24px; }
  .sector-panel { width: 280px; height: 420px; }
  .sector-panel p { opacity: 1; transform: none; }

  .esg { padding: 56px 24px; }
  .esg-col-image { height: 160px; }
  .esg-col-accent { margin: 24px 24px 20px; }
  .esg-col h3 { padding: 0 24px; }
  .esg-col p { padding: 0 24px 32px; }

  .global { padding: 56px 24px; }
  .closing { padding: 64px 24px; }
  .closing-badges { gap: 10px; }

  .leadership { padding: 56px 24px; }
  .leadership-header { margin-bottom: 32px; }
  .pillar { padding: 28px 24px; }
  .affiliations { padding: 40px 24px; }
  .contact-section { padding: 56px 24px; }
  .contact-inner { gap: 40px; }

  .footer { padding: 40px 24px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { gap: 40px; }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-credentials { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .about-stats { flex-direction: column; gap: 24px; }
  .sector-panel { width: 260px; height: 380px; }
  .footer-links { flex-direction: column; gap: 28px; }
  .closing-badges { flex-direction: column; align-items: center; }
}

/* ===== Gold Line (reusable) ===== */
.sl-gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

/* ===== Scroll to Top ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: rgba(183, 148, 82, 0.1);
  border: 1px solid var(--gold-rule);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--black);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ===== Active Nav State ===== */
.nav a.active,
.nav a.nav-active {
  color: var(--white);
}

.nav a.active::after,
.nav a.nav-active::after {
  width: 100%;
}

/* ===== Gold Rule Center variant ===== */
.gold-rule--center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== Form Success ===== */
.form-success {
  text-align: center;
  padding: 32px 0;
}

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ===== Footer Legal Name & Highlight ===== */
.footer-legal-name {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer-highlight {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--gold);
  line-height: 1.7;
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(183, 148, 82, 0.06);
  border-left: 2px solid var(--gold);
  border-radius: 0 3px 3px 0;
}

.footer-highlight strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ===== Footer Addresses ===== */
.footer-addresses {
  display: flex;
  gap: 36px;
  margin-top: 20px;
}

.footer-address-col {
  flex: 1;
}

.footer-address-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-address-col p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-address-col p strong {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.footer-license-no {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ===== Contact Value Line Height ===== */
.contact-value {
  line-height: 1.6;
}

/* ===== Language Switcher ===== */
.lang-switcher {
  position: relative;
  margin-right: 16px;
}
.lang-current {
  background: transparent;
  border: 1px solid rgba(183, 148, 82, 0.3);
  color: var(--gold);
  padding: 6px 12px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}
.lang-current:hover {
  border-color: var(--gold);
  background: rgba(183, 148, 82, 0.06);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--navy-mid);
  border: 1px solid rgba(183, 148, 82, 0.25);
  border-radius: 2px;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 100;
}
.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu {
  list-style: none;
}
.lang-menu li {
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  list-style: none;
  text-align: left;
  direction: ltr;
}
[dir="rtl"] .lang-menu li {
  text-align: right;
  direction: rtl;
}
.lang-menu li:hover {
  background: rgba(183, 148, 82, 0.08);
  color: var(--gold);
}

/* ===== RTL Support ===== */
[dir="rtl"] body { text-align: right; }
[dir="rtl"] .nav { flex-direction: row-reverse; }
[dir="rtl"] .header-right { flex-direction: row-reverse; }
[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .footer-top { direction: rtl; }
[dir="rtl"] .footer-addresses { direction: rtl; }
[dir="rtl"] .top-bar { direction: rtl; }
[dir="rtl"] .marquee-track { animation-direction: reverse; }
[dir="rtl"] .gov-profile { direction: rtl; }
[dir="rtl"] .gov-profile > * { direction: rtl; }
[dir="rtl"] .gov-profile--reverse .gov-profile-photo { order: 1; }
[dir="rtl"] .gov-profile--reverse .gov-profile-detail { order: 2; }
[dir="rtl"] .about-license-card-footer { direction: rtl; }
[dir="rtl"] .footer-highlight { border-left: none; border-right: 2px solid var(--gold); border-radius: 3px 0 0 3px; }
[dir="rtl"] .gov-profile-divider { background: linear-gradient(-90deg, var(--gold), transparent); }

/* ============================================
   MEDIA & ANNOUNCEMENTS PAGE
   Dark navy background — matches site-wide theme
   Institutional, minimal, calm
   ============================================ */

/* Hero */
.media-hero {
  background: var(--navy);
  padding: 140px 40px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.media-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.media-hero .section-label {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
}
.media-hero h1 {
  color: rgba(255, 255, 255, 0.95);
  margin: 16px 0 28px;
  font-weight: 400;
}
.media-hero .media-intro {
  max-width: 720px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

/* Section heads (shared by Coverage + Announcements) */
.coverage-section,
.announcements-section {
  background: var(--navy);
  padding: 90px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.coverage-inner,
.announcements-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-head .section-label {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
}
.section-h2 {
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 14px 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.section-lead {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 300;
}

/* Media grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .media-grid { grid-template-columns: 1fr; gap: 16px; } }

/* Media card */
.media-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  min-height: 240px;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.media-card:hover {
  border-color: rgba(183, 148, 82, 0.35);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-2px);
}

.media-card-head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.media-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.media-card:hover .media-logo-wrap {
  filter: grayscale(0%);
  opacity: 1;
}
.media-logo-svg {
  width: 40px;
  height: 40px;
  display: block;
  /* Safety net: guaranteed minimum visual if SVG fails to render */
  background: rgba(183, 148, 82, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
}
/* If an <img> is ever used as a logo instead of SVG, hide it if broken
   rather than show a broken-image icon. The data-fallback handler in
   i18n.js will swap the src to default-logo.png first. */
.media-logo-img[data-fallback] {
  width: 40px;
  height: 40px;
  display: block;
  background: rgba(183, 148, 82, 0.12);
  border-radius: 50%;
  object-fit: contain;
}
.media-logo-img[data-fallback]:not([src]),
.media-logo-img[data-fallback][src=""] {
  visibility: hidden;
}
.media-outlet-name {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.media-card-body {
  flex: 1;
  margin-bottom: 22px;
}
.media-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.media-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  font-weight: 300;
}

.media-card-foot {
  margin-top: auto;
}
.media-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.media-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 12px;
}

.coverage-disclaimer {
  margin-top: 48px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-weight: 300;
  max-width: 720px;
  line-height: 1.6;
}

/* Announcements — clean ordered list, institutional */
.announcements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.announcement {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.announcement:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 760px) {
  .announcement { grid-template-columns: 1fr; gap: 12px; }
}

.announcement-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.announcement-date {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}
.announcement-ref {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.announcement-body {
  max-width: 720px;
}
.announcement-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.announcement-summary {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

.announcements-note {
  margin-top: 40px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.announcements-note a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.announcements-note a:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   HOMEPAGE — FEATURED IN SECTION
   ============================================ */
.featured-in {
  padding: 64px 40px;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.featured-in-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.featured-in-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 32px;
}
.featured-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px 56px;
  margin-bottom: 36px;
}
.featured-logo-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.78);
  filter: grayscale(100%);
  opacity: 0.92;
  transition: opacity 0.3s ease, filter 0.3s ease, color 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.featured-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  color: #ffffff;
}
.featured-logo-item svg {
  color: currentColor;
}
.featured-logo-item .featured-logo-text {
  font-size: 1rem;
  font-weight: 500;
}
.featured-in-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, gap 0.25s ease;
}
.featured-in-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
  gap: 14px;
}

@media (max-width: 640px) {
  .featured-logos { gap: 28px 36px; }
  .featured-logo-item .featured-logo-text { font-size: 0.875rem; }
}


/* ============================================
   COOKIE CONSENT BAR
   Institutional, dark, minimal — anchored at bottom
   ============================================ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #0b0b0b;
  border-top: 1px solid rgba(200, 169, 106, 0.22);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.cookie-bar--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-bar--hiding {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.cookie-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cookie-bar-copy {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.cookie-bar-icon {
  color: #C8A96A;
  flex-shrink: 0;
}
.cookie-bar-text {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
}
.cookie-bar-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}
.cookie-btn-primary {
  background: #C8A96A;
  color: #0b0b0b;
}
.cookie-btn-primary:hover {
  background: #D4B97A;
}
.cookie-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
}
.cookie-btn-secondary:hover {
  color: #C8A96A;
  border-color: #C8A96A;
}

/* Mobile layout — stack vertically */
@media (max-width: 768px) {
  .cookie-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 20px;
  }
  .cookie-bar-copy { align-items: flex-start; }
  .cookie-bar-text { font-size: 0.78125rem; }
  .cookie-bar-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
    padding: 13px 20px;
  }
}

/* RTL: reverse the action button order so Accept sits first in reading order */
[dir="rtl"] .cookie-bar-actions { flex-direction: row-reverse; }
@media (max-width: 768px) {
  [dir="rtl"] .cookie-bar-actions { flex-direction: column; }
}

/* ============================================
   HERO DISCLAIMER (index.html only)
   Subtle verification-channel notice under hero content
   ============================================ */
.hero-disclaimer {
  max-width: 560px;
  margin: 28px auto 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ============================================
   FOOTER OFFICIAL NOTICE
   Above main footer links — institutional disclaimer block
   ============================================ */
.footer-notice {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-notice-inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 820px;
}
.footer-notice-icon {
  color: #C8A96A;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.92;
}
.footer-notice-content {
  flex: 1;
  min-width: 0;
}
.footer-notice-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C8A96A;
  margin-bottom: 8px;
  line-height: 1;
}
.footer-notice-text {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  margin: 0;
}
.footer-notice-text a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-notice-text a:hover {
  color: #C8A96A;
  border-color: #C8A96A;
}

/* Tighten divider gap below the notice */
.footer-notice + .footer-divider,
.footer-notice + .footer-top {
  margin-top: 20px;
}

/* Minimal-footer variant (legal + 404 pages) */
.footer-min .footer-notice {
  padding: 18px 32px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 760px) {
  .footer-notice {
    padding: 18px 22px 16px;
  }
  .footer-notice-inner {
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
  }
  .footer-notice-icon {
    margin-top: 0;
  }
  .footer-notice-text {
    font-size: 0.78125rem;
    line-height: 1.6;
  }
  .footer-notice + .footer-divider,
  .footer-notice + .footer-top {
    margin-top: 14px;
  }
}


/* ============================================
   UNGC — Global Alignment & Governance
   Homepage section + About page section + Footer badge
   Institutional, minimal, alignment-based (NOT licensing)
   ============================================ */

/* Homepage section */
.ungc-section {
  background: var(--navy);
  padding: 88px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ungc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.ungc-content {
  max-width: 720px;
}
.ungc-section .section-label {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
}
.ungc-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 14px 0 18px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.ungc-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 640px;
}
.ungc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.ungc-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 12px;
}
.ungc-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ungc-logo-img {
  width: 180px;
  height: auto;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.72;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.ungc-section:hover .ungc-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}
.ungc-participant-note {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 820px) {
  .ungc-inner { grid-template-columns: 1fr; gap: 40px; }
  .ungc-mark { align-items: flex-start; }
  .ungc-logo-img { width: 140px; }
}

/* About page section (dark document style — matches about.html theme) */
.about-ungc-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-ungc-heading {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.about-ungc-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #b79452);
  margin: 0;
}
#global-alignment p[data-i18n^="about-ungc-p"] {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 18px;
}
#global-alignment strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.about-ungc-logo {
  width: 140px;
  height: auto;
  flex-shrink: 0;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.78;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.about-ungc-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.about-ungc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.about-ungc-link:hover {
  color: var(--gold, #b79452);
  border-color: var(--gold, #b79452);
  gap: 12px;
}

@media (max-width: 640px) {
  .about-ungc-heading-row { flex-direction: column; gap: 20px; }
  .about-ungc-logo { width: 112px; }
}

/* Footer UNGC badge — small, grayscale, institutional */
.footer-ungc-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.footer-ungc-badge:hover {
  border-color: rgba(183, 148, 82, 0.35);
  background: rgba(255, 255, 255, 0.03);
}
.footer-ungc-img {
  width: 44px;
  height: auto;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.footer-ungc-badge:hover .footer-ungc-img {
  opacity: 1;
  filter: grayscale(0%);
}
.footer-ungc-caption {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.footer-ungc-badge:hover .footer-ungc-caption {
  color: rgba(255, 255, 255, 0.85);
}


/* ============================================
   LEADER CARDS — clickable link wrappers
   Homepage profile cards navigate to leadership.html anchors
   ============================================ */
.leader-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.leader-card-link .leader-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

/* Hover lift — desktop */
@media (hover: hover) {
  .leader-card-link:hover .leader-card {
    transform: translateY(-5px);
  }
  .leader-card-link:hover .leader-card-frame {
    border-color: rgba(183, 148, 82, 0.55);
  }
  .leader-card-link:hover .leader-card-name {
    color: var(--gold, #b79452);
  }
  .leader-card-link:hover .leader-card-cta {
    color: var(--gold, #b79452);
    gap: 10px;
  }
  .leader-card-link:hover .leader-card-cta::after {
    transform: translateX(3px);
  }
}

/* Active state — works on touch devices */
.leader-card-link:active .leader-card {
  transform: translateY(-2px);
}

/* Keyboard focus — accessibility */
.leader-card-link:focus-visible .leader-card-frame {
  outline: 2px solid var(--gold, #b79452);
  outline-offset: 4px;
}

/* Subtle CTA ("View Profile →") under each name */
.leader-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease, gap 0.25s ease;
}
.leader-card-cta::after {
  content: "→";
  display: inline-block;
  font-size: 11px;
  transition: transform 0.25s ease;
}

/* Ensure the transitions also work at mobile where hover doesn't fire */
@media (max-width: 820px) {
  .leader-card-link .leader-card {
    transition: transform 0.25s ease;
  }
}


/* ============================================
   CHINESE TYPOGRAPHY (html[lang="zh"] only)
   Prevents unnatural line breaks, narrow orphan
   characters, and Western-font rendering on CJK
   text. Does NOT affect EN/AR/FR.
   ============================================ */
html[lang="zh"] body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC",
               "Hiragino Sans GB", "Source Han Sans CN",
               -apple-system, BlinkMacSystemFont, var(--font-sans), sans-serif;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: break-word;
}

html[lang="zh"] h1,
html[lang="zh"] h2,
html[lang="zh"] h3,
html[lang="zh"] h4 {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC",
               "Hiragino Sans GB", "Source Han Sans CN",
               var(--font-serif), serif;
  line-height: 1.45;
  word-break: keep-all;
  white-space: normal;
  letter-spacing: 0;
}

/* Hero & marquee headlines — tighter line height for display sizes */
html[lang="zh"] .hero-title,
html[lang="zh"] .statement-text,
html[lang="zh"] .positioning-text,
html[lang="zh"] .about-heading {
  line-height: 1.35;
}

/* Constrain wide text blocks so Chinese doesn't stretch across
   the viewport and produce half-empty trailing lines. */
html[lang="zh"] .hero-title,
html[lang="zh"] .hero-subtitle,
html[lang="zh"] .statement-text,
html[lang="zh"] .positioning-text,
html[lang="zh"] .about-heading,
html[lang="zh"] .about-lead,
html[lang="zh"] .page-h1,
html[lang="zh"] .section-h2,
html[lang="zh"] .section-lead,
html[lang="zh"] .media-intro,
html[lang="zh"] .ungc-heading,
html[lang="zh"] .ungc-paragraph,
html[lang="zh"] .esg-heading,
html[lang="zh"] .esg-intro,
html[lang="zh"] .about-ungc-heading {
  max-width: 720px;
}

/* Left-align section titles so short Chinese lines aren't
   centered with awkward gaps. */
html[lang="zh"] .section-label,
html[lang="zh"] .section-h2,
html[lang="zh"] .about-ungc-heading,
html[lang="zh"] .ungc-heading {
  text-align: left;
}

/* Paragraph + body copy — Chinese benefits from slightly
   looser line height than Latin text. */
html[lang="zh"] p,
html[lang="zh"] .section-lead,
html[lang="zh"] .about-paragraph,
html[lang="zh"] .media-intro,
html[lang="zh"] .ungc-paragraph,
html[lang="zh"] .media-desc,
html[lang="zh"] .announcement-summary,
html[lang="zh"] .hero-disclaimer,
html[lang="zh"] .footer-notice-text {
  line-height: 1.85;
  letter-spacing: 0.01em;
}

/* Navigation & UI labels — tighter for short strings */
html[lang="zh"] .nav a,
html[lang="zh"] .header-nav a,
html[lang="zh"] .footer-col a,
html[lang="zh"] .media-link,
html[lang="zh"] .ungc-link,
html[lang="zh"] .about-ungc-link,
html[lang="zh"] .cookie-btn,
html[lang="zh"] .leader-card-cta,
html[lang="zh"] .footer-ungc-caption {
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Serif fallback: when a Chinese title uses Playfair Display
   (Latin), switch to a Chinese serif. PingFang SC looks sharper
   than Playfair for Chinese glyphs anyway. */
html[lang="zh"] .hero-title,
html[lang="zh"] .statement-text,
html[lang="zh"] .ungc-heading,
html[lang="zh"] .about-ungc-heading,
html[lang="zh"] .section-h2,
html[lang="zh"] .esg-heading,
html[lang="zh"] .media-hero h1,
html[lang="zh"] .page-h1 {
  font-weight: 500;
}

/* Small-label UI elements: ensure gold labels don't
   letter-space Chinese characters to the point of illegibility */
html[lang="zh"] .section-label,
html[lang="zh"] .label-text,
html[lang="zh"] .hero-badge-text,
html[lang="zh"] .top-bar,
html[lang="zh"] .featured-in-label,
html[lang="zh"] .announcement-ref,
html[lang="zh"] .media-outlet-name {
  letter-spacing: 0.08em;
}


/* ============================================
   LICENSE CERTIFICATE — hover + lightbox modal
   ============================================ */
.about-license-card-image.license-clickable {
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-license-card-image.license-clickable img {
  transition: transform 0.35s ease;
}
.about-license-card-image.license-clickable:hover {
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(183, 148, 82, 0.3);
  transform: scale(1.02);
}
.about-license-card-image.license-clickable:hover img {
  transform: scale(1.02);
}
.about-license-card-image.license-clickable:focus-visible {
  outline: 2px solid var(--gold, #b79452);
  outline-offset: 4px;
}

/* "Click to enlarge" hint — appears on hover */
.license-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(10, 14, 26, 0.82);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(183, 148, 82, 0.3);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 3;
}
.license-zoom-hint::before {
  content: "⌕";
  font-size: 12px;
  color: var(--gold, #b79452);
}
.about-license-card-image.license-clickable:hover .license-zoom-hint,
.about-license-card-image.license-clickable:focus-visible .license-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox modal */
.license-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 80px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.license-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.license-modal-inner {
  max-width: min(1100px, 92vw);
  max-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.license-modal.is-open .license-modal-inner {
  transform: scale(1);
}

.license-modal-img {
  max-width: 100%;
  max-height: calc(100vh - 180px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  background: #fff;
}

.license-modal-caption {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.license-modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  z-index: 2;
}
.license-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(183, 148, 82, 0.5);
  transform: rotate(90deg);
}
.license-modal-close:focus-visible {
  outline: 2px solid var(--gold, #b79452);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .license-modal { padding: 56px 16px 60px; }
  .license-modal-close { top: 14px; right: 14px; }
  .about-license-card-image.license-clickable:hover { transform: none; }
}


/* ============================================
   FEATURED MEDIA (TIER-1 / GOVERNMENT)
   Sits above the main Featured Coverage grid.
   Higher visual weight for national broadcasters.
   ============================================ */
.featured-media-section {
  background: var(--navy);
  padding: 80px 40px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.featured-media-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.featured-media-logos {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.featured-media-logo {
  display: inline-flex;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.featured-media-logo:hover {
  border-color: rgba(183, 148, 82, 0.45);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

/* RTM wordmark — styled tribute, not a literal trademark */
.rtm-wordmark {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rtm-mark {
  position: relative;
  padding: 10px 14px;
  background: #C8102E;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 2px;
}
.rtm-mark-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
.rtm-mark-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.9;
}
.rtm-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rtm-caption-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.rtm-caption-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

/* ============================================
   FEATURED ARTICLE CARDS (Tier-1)
   Premium single-column stack above the crypto grid.
   Larger, more narrative, distinctly higher-priority.
   ============================================ */
.featured-articles-section {
  background: var(--navy);
  padding: 20px 40px 80px;
}
.featured-articles-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.featured-article-card {
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.05) 0%, rgba(255, 255, 255, 0.025) 38%);
  border: 1px solid rgba(200, 16, 46, 0.22);
  border-left: 3px solid #C8102E;
  padding: 34px 36px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.featured-article-card:hover {
  border-color: rgba(200, 16, 46, 0.45);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.07) 0%, rgba(255, 255, 255, 0.035) 40%);
}
.featured-article-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.featured-article-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: #C8102E;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.featured-article-outlet {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.featured-article-date {
  margin-left: auto;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.featured-article-title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
  max-width: 860px;
}
.featured-article-source {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 20px;
  font-style: italic;
}
.featured-article-excerpt {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  margin: 0 0 24px;
  max-width: 900px;
}
.featured-article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.featured-article-link:hover {
  color: #C8102E;
  border-color: #C8102E;
  gap: 12px;
}

@media (max-width: 640px) {
  .featured-media-section { padding: 60px 24px 40px; }
  .featured-articles-section { padding: 20px 24px 60px; }
  .featured-article-card { padding: 26px 22px; }
  .rtm-wordmark { gap: 12px; }
  .rtm-mark { padding: 8px 11px; }
  .rtm-mark-text { font-size: 1.0625rem; }
  .featured-article-date { margin-left: 0; width: 100%; }
}


/* ============================================
   REAL BERITA RTM LOGO TREATMENT
   Overrides the earlier RTM wordmark on media.html
   + adds RTM to the homepage Featured In row
   ============================================ */

/* media.html — Featured Media section logo */
.featured-media-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 22px;
}
.featured-media-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
/* Grayscale at rest — institutional restraint. Full colour on hover. */
.featured-media-logo:not(:hover) .featured-media-logo-img {
  filter: grayscale(30%) brightness(0.95);
}
.featured-media-logo:hover .featured-media-logo-img {
  filter: none;
  opacity: 1;
}
.featured-media-logo-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

/* Homepage Featured In row — RTM as tier-1 anchor item */
.featured-logo-item--tier1 {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  text-decoration: none;
}
.featured-logo-item--tier1 .featured-logo-img {
  height: 22px;
  width: auto;
  display: block;
  filter: grayscale(100%) brightness(1.4);
  opacity: 0.82;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.featured-logo-item--tier1:hover .featured-logo-img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}
/* Subtle vertical rule between RTM and the rest of the row */
.featured-logo-sep {
  display: inline-block;
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.14);
  margin: 0 6px;
}

@media (max-width: 640px) {
  .featured-logo-sep { display: none; }
  .featured-logo-item--tier1 .featured-logo-img { height: 20px; }
}
