/* ==========================================================
   Essa Khan — Premium Founder Brand System
   Editorial light base · charcoal & gold accents
   ========================================================== */

:root {
  --bg: #FAFAF8;
  --bg-warm: #F5F4F0;
  --surface: #FFFFFF;
  --charcoal: #111827;
  --black: #0A0A0A;
  --text: #1F2937;
  --muted: #64748B;
  --muted-light: #94A3B8;
  --border: #E8E6E1;
  --gold: #D4AF37;
  --gold-dark: #B8941F;
  --gold-glow: rgba(212, 175, 55, 0.12);
  --font-display: 'Cormorant Garamond', 'Libre Baskerville', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 3px;
  --shadow-xs: 0 1px 2px rgba(17, 24, 39, 0.04);
  --shadow-sm: 0 4px 20px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 12px 40px rgba(17, 24, 39, 0.08);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.18);
  --section: 100px;

  /* Typography scale */
  --text-base: 1.125rem;
  --text-lg: 1.25rem;
  --text-sm: 1rem;
  --text-xs: 0.875rem;
  --text-2xs: 0.8125rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: 0;
}

a { text-decoration: none; color: inherit; transition: 0.3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--gold-glow); color: var(--charcoal); }

/* ---- Utilities ---- */
.text-muted-theme { color: var(--muted); }
.bg-surface { background: var(--surface); }
.bg-warm { background: var(--bg-warm); }
.bg-charcoal { background: var(--charcoal); color: #F9FAFB; }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3, .bg-charcoal h4 { color: #fff; }
.bg-charcoal .text-muted-theme { color: #94A3B8; }

.section-pad { padding: var(--section) 0; }
.section-pad-sm { padding: 72px 0; }

/* ---- Typography ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.125rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-light { color: var(--gold); }
.eyebrow-light::before { background: var(--gold); }

.display-name {
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.display-name .gold { color: var(--gold); }

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.hero-headline {
  font-size: clamp(2.125rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.section-title {
  font-size: clamp(2.375rem, 4.5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.75;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* ---- Navbar ---- */
.navbar-premium {
  padding: 1.125rem 0;
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: 0.3s var(--ease);
  z-index: 1030;
}

.navbar-premium.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}

.navbar-premium .brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.navbar-premium .brand em {
  font-style: normal;
  color: var(--gold-dark);
}

.navbar-premium .nav-link {
  color: var(--muted) !important;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.navbar-premium .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s var(--ease);
  transform: translateX(-50%);
}

.navbar-premium .nav-link:hover,
.navbar-premium .nav-link.active {
  color: var(--charcoal) !important;
}

.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-link.active::after { width: 70%; }

.navbar-premium .btn-nav-cta {
  background: var(--charcoal);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem !important;
  border-radius: var(--radius);
  margin-left: 0.5rem;
}

.navbar-premium .btn-nav-cta::after { display: none; }
.navbar-premium .btn-nav-cta:hover { background: var(--gold-dark); color: #fff !important; }

.navbar-premium .navbar-toggler {
  border-color: var(--border);
  padding: 0.4rem 0.65rem;
}

.navbar-premium .navbar-toggler:focus { box-shadow: 0 0 0 3px var(--gold-glow); }

.navbar-premium .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23111827' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- Buttons ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.125rem 2.25rem;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  transition: 0.3s var(--ease);
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.3);
  color: var(--charcoal);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.125rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.3s var(--ease);
}

.btn-outline:hover {
  border-color: var(--charcoal);
  background: var(--surface);
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-filter {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.btn-filter:hover,
.btn-filter.active {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-glow);
}

/* ---- Hero ---- */
.hero-premium {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-premium::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}

.hero-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text .lead {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.hero-visual { position: relative; }

.hero-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.hero-visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.45;
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--charcoal);
  color: #fff;
  padding: 1.125rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: var(--text-xs);
  line-height: 1.5;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

/* ---- Stats ---- */
.stats-bar {
  background: var(--charcoal);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-cell {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

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

.stat-value {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94A3B8;
}

/* ---- Editorial split ---- */
.split-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-editorial img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 2rem;
}

.bullet-list li {
  display: flex;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
  color: var(--muted);
}

.bullet-list li i {
  color: var(--gold);
  margin-top: 0.3rem;
  font-size: var(--text-xs);
}

.bullet-list li strong { color: var(--charcoal); }

/* ---- Expertise cards ---- */
.expertise-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.expertise-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: 0.3s var(--ease);
  height: 100%;
}

.expertise-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.expertise-card .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border-radius: var(--radius);
  color: var(--gold-dark);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.expertise-card h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.expertise-card p {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ---- Venture cards (dark section) ---- */
.venture-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.venture-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: 0.3s var(--ease);
  display: block;
  height: 100%;
}

.venture-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}

.venture-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.venture-card-top img { max-height: 28px; opacity: 0.9; filter: brightness(0) invert(1); }

.venture-card-top i { color: #64748B; transition: 0.3s var(--ease); }
.venture-card:hover .venture-card-top i { color: var(--gold); transform: translateX(4px); }

.venture-card .tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.venture-card h4 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.65rem;
}

.venture-card p {
  font-size: var(--text-sm);
  color: #94A3B8;
  margin: 0;
}

/* ---- Philosophy ---- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.philosophy-item {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.3s var(--ease);
}

.philosophy-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.philosophy-item .icon-ring {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 1.125rem;
  transition: 0.3s var(--ease);
}

.philosophy-item:hover .icon-ring {
  background: var(--gold);
  color: var(--charcoal);
}

.philosophy-item h4 {
  font-size: 1.25rem;
  line-height: 1.4;
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid var(--border);
}

.timeline-entry {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-entry:last-child { padding-bottom: 0; }

.timeline-entry::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 5px);
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border: 2px solid var(--bg);
  border-radius: 50%;
}

.timeline-entry .year {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.timeline-entry p {
  color: var(--muted);
  font-size: var(--text-sm);
  margin: 0;
}

/* ---- Markets ---- */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.market-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.3s var(--ease);
}

.market-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.market-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.market-item h5 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--charcoal);
}

/* ---- Insights ---- */
.insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.insight-card .thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--bg-warm), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.insight-card .thumb i { font-size: 2rem; color: rgba(212,175,55,0.3); }

.insight-card .cat {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius);
}

.insight-card .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.insight-card h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: 0.3s var(--ease);
}
.insight-card:hover h4 { color: var(--gold-dark); }

.insight-card p { font-size: var(--text-sm); color: var(--muted); flex: 1; margin-bottom: 0.75rem; }

.insight-card .date { font-size: var(--text-xs); color: var(--muted-light); }

.insight-featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}

.insight-featured .visual {
  min-height: 300px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-featured .visual i { font-size: 3rem; color: rgba(212,175,55,0.25); }

.insight-featured .content { padding: 2.75rem; }

/* ---- CTA ---- */
.cta-premium {
  text-align: center;
  padding: var(--section) 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a2332 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.1) 0%, transparent 60%);
}

.cta-premium .inner { position: relative; z-index: 1; }

.cta-premium h2 { color: #fff; max-width: 600px; margin: 0 auto 1rem; }

.cta-premium p { color: #94A3B8; max-width: 560px; margin: 0 auto 2rem; font-size: var(--text-lg); }

/* ---- Page header ---- */
.page-hero {
  padding: 150px 0 70px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 0;
}

.breadcrumb {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: var(--muted-light); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb span { color: var(--gold-dark); }

/* ---- Venture detail ---- */
.venture-block {
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: 0.3s var(--ease);
}

.venture-block:hover { box-shadow: var(--shadow-sm); }

.venture-block-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.venture-block-header img { max-height: 40px; }

.venture-block-header h2 { font-size: 2.25rem; margin: 0; }

.detail-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.detail-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.65rem;
}

.detail-cols p, .detail-cols li {
  font-size: var(--text-sm);
  color: var(--muted);
}

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }

.tag {
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: var(--radius);
}

/* ---- Expertise rows ---- */
.expertise-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border);
}

.expertise-row:last-child { border-bottom: none; }

.expertise-row h3 { font-size: 1.75rem; margin-top: 0.25rem; }

.expertise-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* ---- Contact ---- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}

.contact-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 0.25rem;
}

.contact-item-value { font-size: var(--text-lg); font-weight: 500; }
.contact-item-value a:hover { color: var(--gold-dark); }

.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form-control, .form-select {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius);
  font-size: var(--text-sm);
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  outline: none;
}

.map-box {
  height: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted-light);
}

.map-box i { font-size: 2rem; color: var(--gold); opacity: 0.35; margin-bottom: 0.5rem; }

/* ---- Value cards ---- */
.value-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-xs);
}

.value-card h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.value-card p { font-size: var(--text-sm); color: var(--muted); margin: 0; }

/* ---- Footer ---- */
.footer-premium {
  background: var(--charcoal);
  color: #94A3B8;
  padding: 4.5rem 0 2rem;
}

.footer-premium .brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.875rem;
}

.footer-premium .brand em { font-style: normal; color: var(--gold); }

.footer-premium .desc {
  font-size: var(--text-sm);
  max-width: 280px;
  line-height: 1.75;
}

.footer-premium h6 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.125rem;
}

.footer-premium ul { list-style: none; padding: 0; margin: 0; }
.footer-premium ul li { margin-bottom: 0.55rem; }
.footer-premium ul a { font-size: var(--text-sm); color: #94A3B8; }
.footer-premium ul a:hover { color: var(--gold); }

.social-icons { display: flex; gap: 0.625rem; margin-top: 1.25rem; }

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: var(--text-sm);
  transition: 0.3s var(--ease);
}

.social-icons a:hover { border-color: var(--gold); color: var(--gold-dark); }

.footer-premium .social-icons a {
  border-color: rgba(255,255,255,0.12);
  color: #94A3B8;
}

.footer-premium .social-icons a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--text-sm);
  color: #64748B;
}

.insights-search {
  position: relative;
  max-width: 320px;
}

.insights-search input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border-radius: var(--radius);
  font-size: var(--text-sm);
}

.insights-search input:focus { outline: none; border-color: var(--gold); }

.insights-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-light);
  font-size: 0.8rem;
}

/* ---- Positioning pills ---- */
.position-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1.75rem 0 2rem;
}

.position-pill {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: 0.3s var(--ease);
}

.position-pill:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
}

/* ---- Commerce Impact ---- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.impact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: 0.3s var(--ease);
  box-shadow: var(--shadow-xs);
}

.impact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.impact-card .metric {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.impact-card .label {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.5;
}

.impact-card .editable-note {
  font-size: var(--text-xs);
  color: var(--muted-light);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ---- Ecosystem flow ---- */
.ecosystem-flow {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.eco-node {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: 0.3s var(--ease);
}

.eco-node:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.eco-node.highlight {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

.eco-node.highlight h5 { color: #fff; }
.eco-node.highlight p { color: #94A3B8; }

.eco-node h5 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.eco-node p {
  font-size: var(--text-sm);
  color: var(--muted);
  margin: 0;
}

.eco-node .eco-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.eco-node.highlight .eco-tag { color: var(--gold); }

.eco-arrow {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  color: var(--gold);
  font-size: var(--text-sm);
}

.eco-markets {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.eco-market {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold);
  border-radius: var(--radius);
}

/* ---- Credibility ---- */
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.credibility-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: 0.3s var(--ease);
  height: 100%;
}

.credibility-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.credibility-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  color: var(--gold-dark);
  border-radius: var(--radius);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.credibility-card h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.credibility-card p {
  font-size: var(--text-sm);
  color: var(--muted);
  margin: 0;
}

/* ---- Video section ---- */
.video-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--charcoal);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.15) 0%, transparent 70%);
}

.video-placeholder .play-btn {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  transition: 0.3s var(--ease);
  box-shadow: var(--shadow-gold);
}

.video-placeholder:hover .play-btn { transform: scale(1.08); }

.video-placeholder .coming-soon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  text-align: center;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94A3B8;
  z-index: 1;
}

/* ---- Venture role blocks ---- */
.venture-role-block {
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-xs);
}

.venture-role-block .role-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-glow);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.venture-role-block h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }

.role-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.role-col-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.role-col p { font-size: var(--text-sm); color: var(--muted); margin: 0; }

.eco-mini-flow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-xs);
  color: var(--muted);
}

.eco-mini-flow span { color: var(--gold-dark); font-weight: 600; }
.eco-mini-flow i { color: var(--gold); font-size: var(--text-xs); }

/* ---- Journey sections ---- */
.journey-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.journey-block:last-child { border-bottom: none; }

.journey-block .phase {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.journey-block h2 { font-size: 2rem; margin-bottom: 1rem; }
.journey-block p { font-size: var(--text-base); color: var(--muted); max-width: 720px; }

/* ---- Media grid ---- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.media-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: 0.3s var(--ease);
}

.media-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.media-card i {
  font-size: 1.75rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.media-card h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.media-card p { font-size: var(--text-sm); color: var(--muted); margin: 0; }
.media-card .status { font-size: var(--text-xs); color: var(--muted-light); margin-top: 0.75rem; font-style: italic; }

/* ---- Speaking topics ---- */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.topic-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.3s var(--ease);
}

.topic-item:hover { border-color: var(--gold); }

.topic-item i { color: var(--gold-dark); font-size: 1.125rem; }
.topic-item h4 { font-size: 1.125rem; margin: 0; }

/* ---- Partnership types ---- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.partner-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.3s var(--ease);
  height: 100%;
}

.partner-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.partner-card i {
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.partner-card h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.partner-card p { font-size: var(--text-sm); color: var(--muted); margin: 0; }

/* ---- Global map ---- */
.global-map-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.map-visual {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 2.5rem;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(212,175,55,0.08) 0%, transparent 60%);
}

.map-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.map-region {
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.map-region:hover,
.map-region.active {
  background: rgba(212,175,55,0.12);
  border-color: var(--gold);
}

.map-region i { font-size: 1.25rem; color: var(--gold); margin-bottom: 0.5rem; }
.map-region h5 { font-size: var(--text-sm); color: #fff; margin: 0; }

.region-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.region-detail h3 { font-size: 1.75rem; margin-bottom: 1rem; }

.region-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-detail-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
  color: var(--muted);
}

.region-detail-list li strong { color: var(--charcoal); }

/* ---- Dropdown nav ---- */
.dropdown-premium {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.dropdown-premium .dropdown-item {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 1.125rem;
  border-radius: var(--radius);
  color: var(--muted);
}

.dropdown-premium .dropdown-item:hover,
.dropdown-premium .dropdown-item.active {
  background: var(--gold-glow);
  color: var(--charcoal);
}

.navbar-premium .dropdown-toggle::after { margin-left: 0.35rem; }

/* ---- Placeholder grid ---- */
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.placeholder-logo {
  height: 60px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  color: var(--muted-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .credibility-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-cards { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  :root { --section: 72px; }
  .hero-grid, .split-editorial, .contact-split, .insight-featured,
  .detail-cols, .expertise-cols, .expertise-row, .video-section,
  .global-map-wrap, .role-cols { grid-template-columns: 1fr; }
  .media-grid, .partner-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-cell:nth-child(2) { border-right: none; }
  .venture-cards { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-badge { left: 1rem; bottom: 1rem; }
}

@media (max-width: 767px) {
  .hero-premium { min-height: auto; padding: 110px 0 64px; }
  .hero-grid { gap: 2.5rem; }
  .hero-visual-accent { display: none; }
  .stats-grid, .markets-grid, .philosophy-grid, .expertise-cards,
  .impact-grid, .credibility-grid, .topics-grid, .placeholder-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; }
}
