/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--heading);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- COLOUR PALETTE ---------- */
:root {
  --bg: #F7F5F2;
  --warm-white: #FCFBF8;
  --light-beige: #EFEAE3;
  --navy: #0E2A47;
  --exec-blue: #214E7A;
  --slate: #4E5968;
  --gold: #B68D40;
  --gold-light: #D4B06A;

  /* semantic tokens (theme-aware) */
  --heading: var(--navy);
  --header-bg: rgba(252, 251, 248, 0.86);
  --border-subtle: rgba(14, 42, 71, 0.06);
  --card-shadow: rgba(14, 42, 71, 0.04);
  --card-shadow-hover: rgba(14, 42, 71, 0.06);
  --hero-globe-bg: #E9E3DA;

  color-scheme: light;
}

/* ---------- DARK MODE ---------- */
html[data-theme="dark"] {
  --bg: #0B1420;
  --warm-white: #101C2C;
  --light-beige: #0D1826;
  --slate: #A9B6C6;
  --gold-light: #E2C084;
  --heading: #F4F1EA;
  --header-bg: rgba(11, 20, 32, 0.86);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --card-shadow: rgba(0, 0, 0, 0.30);
  --card-shadow-hover: rgba(0, 0, 0, 0.45);
  --hero-globe-bg: #16283D;
  color-scheme: dark;
}

html[data-theme="dark"] .btn-outline {
  color: var(--heading);
  border-color: rgba(244, 241, 234, 0.55);
  background: rgba(255, 255, 255, 0.02);
}

html[data-theme="dark"] .btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

html, body {
  transition: background-color 0.35s ease, color 0.35s ease;
}

/* ---------- PAGE LOADER ---------- */
#site-shell {
  transition: opacity 0.75s ease, transform 0.75s ease;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading #site-shell {
  opacity: 0;
  transform: translateY(12px) scale(0.995);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 22% 28%, rgba(212, 176, 106, 0.28), transparent 46%),
    radial-gradient(circle at 76% 72%, rgba(33, 78, 122, 0.24), transparent 48%),
    linear-gradient(145deg, #0C1D31 0%, #132A43 48%, #0F253D 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.72s ease, visibility 0.72s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader-inner {
  width: min(460px, calc(100vw - 48px));
  text-align: center;
  color: #F4F1EA;
}

.loader-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 241, 234, 0.74);
}

.loader-title {
  margin-top: 0.4rem;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 4.8vw, 2.25rem);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #F4F1EA;
}

.loader-progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(244, 241, 234, 0.2);
  border: 1px solid rgba(244, 241, 234, 0.26);
}

.loader-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #D4B06A 0%, #F2D6A8 100%);
  box-shadow: 0 0 16px rgba(212, 176, 106, 0.45);
  transition: width 0.28s linear;
}

.loader-percent {
  margin-top: 0.65rem;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  color: rgba(244, 241, 234, 0.72);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--heading);
}

h1 {
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.serif {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.subhead {
  font-size: 1.25rem;
  color: var(--slate);
  max-width: 680px;
  font-weight: 400;
  line-height: 1.7;
}

.label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  background: var(--exec-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 42, 71, 0.12);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 28px rgba(14, 42, 71, 0.08);
}

.btn-gold {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #A67A32;
  border-color: #A67A32;
}

/* ---------- HEADER / NAV ---------- */
header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
  background: var(--header-bg);
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(200, 164, 106, 0.5);
}

.logo-inner {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  z-index: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.13em;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.61rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: lowercase;
  margin-top: 3px;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 650;
  font-size: 1.14rem;
  letter-spacing: -0.01em;
  color: var(--heading);
}

.logo span {
  color: var(--gold);
}

.logo-subtitle {
  margin-top: 0.2rem;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  color: var(--slate);
  flex-wrap: wrap;
}

.nav-links a {
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--heading);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid var(--border-subtle);
  background: var(--light-beige);
  color: var(--heading);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-beige);
  border: 1px solid var(--border-subtle);
  color: var(--heading);
  cursor: pointer;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.theme-toggle:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: translateY(-2px) rotate(12deg);
}

.nav-cta {
  background: var(--navy);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.2s;
}

.nav-cta:hover {
  background: var(--exec-blue);
  color: white;
}

.nav-links a.nav-cta {
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
  box-shadow: 0 6px 14px rgba(14, 42, 71, 0.18);
}

.nav-links a.nav-cta:hover {
  background: var(--exec-blue);
  border-color: var(--exec-blue);
  color: #fff;
}

/* ---------- HERO ---------- */
#hero {
  padding: 80px 0 100px;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 60px;
  align-items: center;
}

.hero-visual {
  width: 100%;
  max-width: 620px;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content .label {
  margin-bottom: 0.5rem;
  display: block;
}

.hero-content h1 {
  font-size: clamp(2.35rem, 5.6vw, 4.2rem);
  line-height: 1.14;
  margin: 0.5rem 0 1.2rem;
}

.hero-content h1 .highlight {
  color: var(--gold);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(14, 42, 71, 0.08);
}

.hero-signature {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--slate);
  max-width: 620px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--slate);
  font-size: 0.95rem;
}

.hero-meta-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* 3D container (Three.js) */
#hero-3d {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  background: var(--hero-globe-bg);
  position: relative;
  overflow: hidden;
  transition: background-color 0.35s ease;
}

.globe-tooltip {
  position: absolute;
  pointer-events: none;
  z-index: 12;
  min-width: 180px;
  max-width: 260px;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(8, 20, 35, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f3f6fa;
  font-size: 0.74rem;
  line-height: 1.45;
  opacity: 0;
  transform: translate(-50%, -6px);
  transition: opacity 0.2s ease;
}

.globe-tooltip strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.76rem;
  margin-bottom: 0.15rem;
  letter-spacing: 0.01em;
}

.globe-hint {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--slate);
  letter-spacing: 0.01em;
  text-align: center;
  max-width: 620px;
}

.coverage-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
}

.coverage-card {
  background: var(--light-beige);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
}

.coverage-card h3 {
  margin: 0;
  font-size: 0.95rem;
}

.coverage-card .coverage-stat {
  margin: 0.2rem 0 0.3rem;
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.coverage-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.78rem;
  line-height: 1.55;
}

#hero-3d canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.world-map {
  width: min(100%, 620px);
  height: 480px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, rgba(200,164,106,0.1), rgba(13,27,42,0.96) 55%);
}

.world-map canvas {
  border-radius: 14px;
}

/* ---------- MARKETS ---------- */
#markets {
  background: var(--bg);
  padding-top: 70px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.market-card {
  background: var(--warm-white);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 6px 16px var(--card-shadow);
}

.market-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.market-card-sub {
  margin: 0.28rem 0 0.72rem;
  font-size: 0.85rem;
  color: var(--slate);
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.market-tag {
  padding: 0.34rem 0.64rem;
  border-radius: 999px;
  border: 1px solid rgba(182, 141, 64, 0.45);
  background: rgba(182, 141, 64, 0.08);
  color: var(--heading);
  font-size: 0.8rem;
  font-weight: 500;
}

.market-card-priority {
  border-color: rgba(182, 141, 64, 0.65);
  box-shadow: 0 10px 24px var(--card-shadow-hover);
}

.market-card-placeholder {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--light-beige), var(--warm-white));
}

/* ---------- SECTION COMMON ---------- */
section {
  padding: 90px 0;
}

.section-label {
  text-align: center;
  margin-bottom: 0.25rem;
}

.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 1rem;
}

.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--slate);
  font-size: 1.15rem;
}

/* ---------- ABOUT (AUTHORITY) ---------- */
#about {
  background: var(--light-beige);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story-intro {
  color: var(--slate);
  font-size: 1.06rem;
  line-height: 1.82;
  max-width: 580px;
}

.about-story-intro.secondary {
  margin-top: 0.8rem;
}

.journey-meta {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.journey-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--border-subtle);
  background: var(--warm-white);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate);
}

.journey-meta a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--exec-blue);
}

.journey-meta a:hover {
  color: var(--gold);
}

.timeline-shell {
  position: relative;
  background: var(--warm-white);
  padding: 1.2rem;
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--card-shadow);
  border: 1px solid var(--border-subtle);
}

.timeline-readmore-hint {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
}

.timeline-nav {
  position: relative;
  display: grid;
  gap: 0.7rem;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.timeline-nav::before {
  content: "";
  position: absolute;
  left: 0.52rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(182, 141, 64, 0.18));
}

.timeline-step {
  position: relative;
  display: grid;
  text-align: left;
  gap: 0.2rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.timeline-step::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: -1.16rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold-light);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold-light) 20%, transparent);
}

.timeline-step:hover {
  transform: translateX(3px);
  border-color: color-mix(in srgb, var(--gold) 45%, var(--border-subtle));
}

.timeline-step.active {
  background: color-mix(in srgb, var(--gold) 14%, var(--warm-white));
  border-color: color-mix(in srgb, var(--gold) 55%, var(--border-subtle));
}

.timeline-inline-host {
  margin: -0.1rem 0 0.55rem;
}

.timeline-inline-host .timeline-story-card {
  box-shadow: 0 10px 20px var(--card-shadow);
  border-color: color-mix(in srgb, var(--gold) 38%, var(--border-subtle));
}

.timeline-year {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
}

.timeline-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--heading);
}

.timeline-sub {
  font-size: 0.82rem;
  color: var(--slate);
}

.timeline-story-card {
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: var(--bg);
}

.timeline-story-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.timeline-story-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---------- ENGAGEMENT CARDS ---------- */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.engagement-card {
  background: var(--warm-white);
  padding: 2rem 1.8rem;
  border-radius: 18px;
  box-shadow: 0 4px 16px var(--card-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-subtle);
}

.engagement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--card-shadow-hover);
  border-color: var(--gold-light);
}

.engagement-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.engagement-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.engagement-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- LOGOS STRIP ---------- */
#logos {
  background: var(--bg);
  padding: 60px 0 80px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 1.5rem;
}

.partner-card {
  background: var(--warm-white);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  min-height: 88px;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--card-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  position: relative;
  overflow: hidden;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px var(--card-shadow-hover);
  border-color: rgba(182, 141, 64, 0.45);
}

.partner-card::after {
  content: attr(data-company);
  position: absolute;
  left: 50%;
  bottom: 0.45rem;
  transform: translateX(-50%) translateY(12px);
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(8, 20, 34, 0.78);
  color: #f7f5f2;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.partner-card img {
  width: 100%;
  max-width: 130px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(0.38);
  opacity: 0.88;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.partner-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

.partner-card:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- GALLERY ---------- */
#gallery {
  background: var(--warm-white);
}

#media-videos {
  background: var(--light-beige);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.media-card {
  border: 1px solid var(--border-subtle);
  background: var(--warm-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px var(--card-shadow);
  display: grid;
  grid-template-rows: 220px auto;
}

.media-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.media-content {
  padding: 1rem 1.1rem 1.2rem;
}

.media-content h4 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.media-content p {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.65;
}

.media-link {
  margin-top: 0.9rem;
  display: inline-block;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr);
  gap: 28px;
  margin-top: 2rem;
}

.founder-photo-col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.founder-slider {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #0f253d;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 34px var(--card-shadow);
}

.founder-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.founder-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.founder-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.founder-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.founder-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.founder-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(8, 20, 34, 0.42);
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.founder-slider-btn:hover {
  background: rgba(182, 141, 64, 0.88);
  transform: translateY(-50%) scale(1.05);
}

.founder-slider-btn.prev {
  left: 12px;
}

.founder-slider-btn.next {
  right: 12px;
}

.founder-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.42rem;
  z-index: 2;
}

.founder-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.founder-dot.active {
  background: var(--gold-light);
  transform: scale(1.18);
}

.team-social {
  display: flex;
  justify-content: flex-start;
}

.team-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--heading);
  background: var(--light-beige);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.team-social a:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: #fff;
}

.founder-exp-badge {
  align-self: flex-start;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--light-beige);
  color: var(--heading);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
}

.field-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.field-card {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px var(--card-shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.field-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px var(--card-shadow-hover);
}

.field-image {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center top;
  background: linear-gradient(135deg, #0f253d, #163551);
  display: block;
}

.field-content {
  padding: 1rem 1.1rem 1.2rem;
}

.field-content h4 {
  font-size: 1.04rem;
  margin-bottom: 0.45rem;
  line-height: 1.4;
}

.field-content p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.7;
  z-index: 2;
}

/* ---------- RATE CARD ---------- */
#rates {
  background: var(--light-beige);
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 2rem;
  align-items: stretch;
}

.rate-card {
  background: var(--warm-white);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--card-shadow-hover);
  border-color: var(--gold-light);
}

.rate-card-head i {
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.rate-card-head h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.rate-card-head p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 1.45rem;
  line-height: 1.65;
}

.rate-includes {
  margin: 0 0 1.6rem;
  flex: 1;
}

.rate-includes li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.72rem;
  color: var(--slate);
  font-size: 0.96rem;
  line-height: 1.65;
}

.rate-includes li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.72rem;
}

.rate-quote {
  display: grid;
  gap: 0.28rem;
  justify-items: start;
  padding: 1rem 1.1rem;
  background: var(--light-beige);
  border-radius: 12px;
  margin-bottom: 1.3rem;
}

.rate-quote-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
}

.rate-quote-value {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.32rem, 1.2rem + 0.32vw, 1.56rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: normal;
  overflow-wrap: anywhere;
  color: var(--heading);
}

.rate-cta {
  text-align: center;
}

.rate-note {
  text-align: center;
  color: var(--slate);
  margin-top: 2.2rem;
  font-size: 0.9rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- WHO WE ADVISE ---------- */
#audience {
  background: var(--warm-white);
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.audience-tag {
  background: var(--light-beige);
  padding: 0.6rem 1.8rem;
  border-radius: 60px;
  font-weight: 500;
  color: var(--heading);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: 0.2s;
}

.audience-tag-featured {
  background: linear-gradient(135deg, rgba(182, 141, 64, 0.22), rgba(182, 141, 64, 0.08));
  border-color: rgba(182, 141, 64, 0.65);
  font-weight: 600;
}

.audience-tag:hover {
  border-color: var(--gold);
  background: white;
}

/* ---------- 3D NETWORK (second three) ---------- */
#network-3d-section {
  background: var(--navy);
  color: white;
  padding: 60px 0;
}

#network-3d-container {
  width: 100%;
  height: 430px;
  border-radius: 24px;
  background: radial-gradient(circle at 28% 22%, #274d73 0%, #162c44 45%, #0f1f31 100%);
  border: 1px solid rgba(212, 176, 106, 0.26);
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.25), 0 18px 38px rgba(3, 9, 16, 0.42);
  overflow: hidden;
}

#network-3d-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.network-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.network-text h2 {
  color: white;
}

.network-text .subhead {
  color: rgba(255, 255, 255, 0.7);
}

.network-context {
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 760px;
}

/* ---------- CTA FINAL (three.js particle) ---------- */
#cta-3d-section {
  background: var(--gold);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.4rem;
  align-items: stretch;
}

.cta-qna,
.cta-content {
  background: rgba(12, 32, 52, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(3px);
}

.cta-qna {
  padding: 1.1rem 1.1rem 1.2rem;
  text-align: left;
}

.cta-qna h3 {
  margin: 0 0 0.45rem;
  color: white;
  font-size: 1.36rem;
}

.cta-qna-intro {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 0.7rem;
}

.qna-list {
  display: grid;
  gap: 0.55rem;
}

.qna-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.qna-item[open] {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.11);
}

.qna-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.5;
  padding: 0.75rem 0.82rem;
  color: #fff;
}

.qna-item summary::-webkit-details-marker {
  display: none;
}

.qna-item summary::after {
  content: '+';
  float: right;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1;
}

.qna-item[open] summary::after {
  content: '-';
}

.qna-item p {
  margin: 0;
  padding: 0 0.82rem 0.88rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.67;
}

#cta-3d-container {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.08);
  margin: 2rem 0 0;
  overflow: hidden;
}

#cta-3d-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 1.4rem 1.2rem;
}

.cta-content h2 {
  color: white;
}

.cta-content .subhead {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 2rem;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 0 30px;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  color: white;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand .logo span {
  color: var(--gold);
}

.footer-brand .logo-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- INSIGHTS ---------- */
.insights-preview {
  background: var(--light-beige);
}

.insights-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.insight-card {
  background: var(--warm-white);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 14px 24px var(--card-shadow);
}

.insight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.insight-card p {
  color: var(--slate);
  margin-bottom: 0.8rem;
}

.insight-link {
  color: var(--exec-blue);
  font-weight: 600;
}

.insights-cta-wrap {
  margin-top: 1.3rem;
}

.insights-page {
  background: var(--bg);
  color: var(--heading);
}

.insights-page-shell {
  padding: 68px 0 84px;
}

.insights-back {
  color: var(--exec-blue);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.insights-hero {
  background: linear-gradient(135deg, rgba(14, 42, 71, 0.08), rgba(212, 176, 106, 0.16));
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.5rem;
}

.insights-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.95rem;
}

.insights-list article {
  background: var(--warm-white);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.1rem;
}

.insights-list h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
}

.insights-list p {
  color: var(--slate);
  margin-bottom: 0.65rem;
}

.article-shell {
  padding: 60px 0 84px;
}

.article-wrap {
  max-width: 900px;
}

.article-meta {
  margin: 0.4rem 0 1.2rem;
  color: var(--slate);
  font-size: 0.92rem;
}

.article-content {
  background: var(--warm-white);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1.4rem;
}

.article-content h2 {
  font-size: 1.55rem;
  margin-top: 1.2rem;
  margin-bottom: 0.55rem;
}

.article-content p,
.article-content li {
  color: var(--slate);
  line-height: 1.75;
}

.article-content ul,
.article-content ol {
  padding-left: 1.15rem;
  margin: 0.45rem 0 1rem;
}

.article-cta {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-width: 720px;
    margin: 0 auto;
  }
  .nav-right {
    width: auto;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.55rem;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(84vw, 330px);
    display: grid;
    gap: 0.38rem;
    background: var(--warm-white);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 16px 28px var(--card-shadow-hover);
    border-radius: 14px;
    padding: 0.52rem;
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 120;
  }
  body.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.62rem 0.72rem;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: var(--bg);
    line-height: 1.2;
    font-size: 0.9rem;
  }
  .nav-cta {
    padding: 0.62rem 0.72rem;
  }
  .engagement-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rate-grid {
    grid-template-columns: 1fr;
  }
  .rate-card {
    padding: 2rem 1.6rem;
  }
  .rate-quote {
    padding: 0.95rem 1rem;
  }
  .founder-profile {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .cta-qna,
  .cta-content {
    padding: 1.05rem;
  }
  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .market-grid {
    grid-template-columns: 1fr;
  }
  #hero-3d {
    height: 360px;
  }
  .world-map {
    height: 360px;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
  }
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container { padding: 0 20px; }
  .nav {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
  }
  .nav-links {
    width: min(88vw, 320px);
  }
  .nav-cta {
    padding: 0.56rem 0.68rem;
  }
  .engagement-grid { grid-template-columns: 1fr; }
  .timeline-shell {
    padding: 1rem 0.8rem;
  }
  .timeline-nav {
    padding-left: 1.1rem;
  }
  .timeline-step {
    padding: 0.68rem 0.72rem;
  }
  .timeline-title {
    font-size: 0.9rem;
  }
  .timeline-sub {
    font-size: 0.78rem;
  }
  .hero-meta { flex-direction: column; gap: 0.8rem; }
  .founder-slider { aspect-ratio: 4 / 4.8; }
  .founder-slider-btn { width: 36px; height: 36px; }
  .field-image { height: 220px; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-card { min-height: 78px; }
  .logo-subtitle { font-size: 0.58rem; }
  .rate-card {
    padding: 1.55rem 1.1rem;
    border-radius: 16px;
  }
  .rate-card-head h3 {
    font-size: 1.2rem;
  }
  .rate-card-head p,
  .rate-includes li {
    font-size: 0.93rem;
    line-height: 1.62;
  }
  .rate-quote {
    gap: 0.34rem;
    padding: 0.85rem 0.9rem;
    margin-bottom: 1rem;
  }
  .rate-quote-label {
    font-size: 0.72rem;
  }
  .rate-quote-value {
    font-size: clamp(1.18rem, 1.02rem + 1.2vw, 1.4rem);
  }
  .rate-note {
    margin-top: 1.6rem;
    font-size: 0.85rem;
  }
  .insights-page-shell,
  .article-shell {
    padding-top: 44px;
    padding-bottom: 62px;
  }
  .insights-hero,
  .article-content,
  .insight-card,
  .insights-list article {
    border-radius: 14px;
    padding: 1rem;
  }
  .cta-qna h3 {
    font-size: 1.15rem;
  }
  .cta-qna-intro {
    font-size: 0.88rem;
  }
  .qna-item summary {
    font-size: 0.88rem;
    padding: 0.66rem 0.72rem;
  }
  .qna-item p {
    font-size: 0.84rem;
    padding: 0 0.72rem 0.75rem;
  }
  .cta-content {
    padding: 1.1rem 0.9rem;
  }
  #hero-3d { height: 260px; }
  .world-map { height: 260px; }
  #network-3d-container { height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  #site-shell,
  .page-loader,
  .loader-progress-fill {
    transition: none;
  }
}