.leadership-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .leadership-teaser-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .leadership-teaser-grid {
    gap: 32px;
  }
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
@media (max-width: 768px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   FOUAD AL-ANSARI GROUP — Main Stylesheet
   Color: #96702a (brand gold) | Theme: Light, premium
═══════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --gold:        #96702a;
  --gold-dark:   #694e1d;
  --gold-light:  #b8924a;
  --gold-pale:   #f2ede5;
  --gold-faint:  #f9f7f4;
  --text:        #1a1612;
  --text-mid:    #4a4440;
  --text-muted:  #7a7570;
  --white:       #ffffff;
  --off-white:   #faf9f7;
  --border:      #e8e0d4;
  --border-light:#f0ebe2;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'Segoe UI', sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(150,112,42,0.08);
  --shadow-md: 0 8px 40px rgba(150,112,42,0.12);
  --shadow-lg: 0 24px 80px rgba(150,112,42,0.16);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.display { font-family: var(--font-display); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ── GOLD DIVIDER ── */
.gold-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow { max-width: 860px; }

section { padding: 100px 0; }
section.compact { padding: 70px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-arrow::after {
  content: '→';
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.site-nav.scrolled {
  background: rgba(250,249,247,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 48px;
}
.nav-logo img {
  height: 40px;
  width: 200px;
  object-fit: contain;
  object-position: left center;
}
.nav-logo .logo-dark { display: none; }
.nav-logo .logo-light { display: block; }
.site-nav.scrolled .logo-dark { display: block; }
.site-nav.scrolled .logo-light { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.site-nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold); }
.site-nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px) !important;
  color: var(--white) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.site-nav.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 48px;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav-drawer a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--text);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(26,22,18,0.92) 0%,
      rgba(105,78,29,0.6) 50%,
      rgba(26,22,18,0.85) 100%
    );
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(150,112,42,0.04) 60px,
      rgba(150,112,42,0.04) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(150,112,42,0.04) 60px,
      rgba(150,112,42,0.04) 61px
    );
  z-index: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  background:
    url("../../assets/images/heroBG.webp") center/cover no-repeat;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-established {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-established::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subheadline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
}
.hero-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s forwards;
  opacity: 0;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(150,112,42,0.6));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); }
}

/* ── HERO STATS BAR ── */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(250,249,247,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}
.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-stat {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.6s forwards;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:nth-child(1) { animation-delay: 0.9s; }
.hero-stat:nth-child(2) { animation-delay: 1.0s; }
.hero-stat:nth-child(3) { animation-delay: 1.1s; }
.hero-stat:nth-child(4) { animation-delay: 1.2s; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   ABOUT STRIP (homepage)
══════════════════════════════════════════════ */
.about-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-strip-text p:last-of-type { margin-bottom: 32px; }
.about-strip-visual {
  position: relative;
}
.about-year-block {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 32px 40px;
  z-index: 2;
}
.about-year-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.about-year-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
  display: block;
}
.img-placeholder {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   CHAIN (vertical integration)
══════════════════════════════════════════════ */
.chain {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.chain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.chain-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}
.chain-item {
  padding: 60px 40px;
  text-align: center;
  position: relative;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.chain-item:last-child { border-right: none; }
.chain-item:hover { background: rgba(150,112,42,0.05); }
.chain-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(150,112,42,0.12);
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.chain-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.chain-item:hover .chain-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.chain-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  transition: var(--transition);
}
.chain-item:hover .chain-icon svg { stroke: var(--white); }
.chain-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.chain-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 8px;
}
.chain-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   COMPANIES / ENTITIES
══════════════════════════════════════════════ */
.entities { background: var(--off-white); }

.entities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.entity-card {
  background: var(--white);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}
.entity-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.entity-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.entity-card:hover::before { transform: scaleX(1); }

.entity-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 24px;
  align-self: flex-start;
}
.entity-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.entity-location {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.entity-location::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.entity-desc {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
  flex: 1;
}
.entity-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.entity-cap {
  font-size: 11px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
}
.entity-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.entity-link:hover { gap: 14px; color: var(--gold-dark); }
.entity-link span { font-size: 16px; }

/* Foshan card — full width */
.entity-card.wide { grid-column: 1 / -1; }
.entity-card.wide .entity-inner { max-width: 600px; }

/* ══════════════════════════════════════════════
   LEADERSHIP
══════════════════════════════════════════════ */
.leadership { background: var(--white); }

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.leader-card {
  padding: 48px 40px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.leader-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}
.leader-card:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.leader-card:hover::after { transform: scaleY(1); }

.leader-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--border);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.leader-img .initials {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 600;
}
.leader-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.leader-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 16px;
}
.leader-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   GEOGRAPHY
══════════════════════════════════════════════ */
.geography {
  background: var(--text);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.geography::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(150,112,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.geography .section-eyebrow { color: var(--gold-light); }
.geography .section-eyebrow::before { background: var(--gold-light); }
.geography .section-title { color: var(--white); }
.geography .section-subtitle { color: rgba(255,255,255,0.6); }

.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.geo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(150,112,42,0.2);
  padding: 48px;
  transition: var(--transition);
}
.geo-card:hover {
  background: rgba(150,112,42,0.08);
  border-color: rgba(150,112,42,0.4);
}
.geo-flag {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.geo-country {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.geo-city {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
}
.geo-details {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.geo-details strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 80px 48px;
}
.cta-section .section-eyebrow { color: rgba(255,255,255,0.7); justify-content: center; }
.cta-section .section-eyebrow::before { background: rgba(255,255,255,0.5); }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.btn-white {
  background: var(--white);
  color: var(--gold);
  border-radius: 2px;
  padding: 16px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-white:hover {
  background: var(--text);
  color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(150,112,42,0.2);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold); }

/* ══════════════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════════════ */
.page-header {
  background: var(--text);
  padding: 160px 48px 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,22,18,0.95), rgba(105,78,29,0.7));
  z-index: 0;
}
.page-header-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(150,112,42,0.03) 30px, rgba(150,112,42,0.03) 31px);
  z-index: 0;
}
.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--gold-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info-card {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  padding: 48px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--white); }
.contact-detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.contact-detail-value a {
  color: var(--text);
  transition: color var(--transition);
}
.contact-detail-value a:hover { color: var(--gold); }

/* contact form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .chain-grid { grid-template-columns: repeat(2, 1fr); }
  .chain-grid::before { display: none; }
  .entities-grid { grid-template-columns: 1fr; }
  .entity-card.wide { grid-column: auto; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 60px 24px 100px; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .hero-stat { padding: 20px 16px; }
  .chain-grid { grid-template-columns: 1fr 1fr; }
  .geo-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 140px 24px 80px; }
  .about-year-block { position: relative; bottom: auto; right: auto; display: inline-block; }
}

@media (max-width: 480px) {
  .chain-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.8rem; }
}


/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES — max-width: 768px additions
   Covers all grids missing from original mobile block
═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── INDEX: about strip ── */
  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* ── INDEX: entity cards ── */
  .entities-grid {
    grid-template-columns: 1fr;
  }

  /* ── INDEX: geography ── */
  .geo-grid {
    grid-template-columns: 1fr;
  }

  /* ── INDEX: leadership teaser grid ── */
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  /* ── INDEX: contact offices grid (inline style override) ── */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── ABOUT: mission/vision grid ── */
  .mv-grid {
    grid-template-columns: 1fr;
  }

  /* ── ABOUT: values grid ── */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* ── ABOUT: timeline ── */
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: 0;
  }
  .timeline-year {
    font-size: 1rem;
    writing-mode: initial;
  }
  .timeline-year::before {
    width: 8px;
    height: 8px;
  }
  .timeline-content {
    padding: 16px 20px;
    grid-column: 2;
  }
  /* Hide empty spacer cells on mobile */
  .timeline-item > div:last-child:empty,
  .timeline-item > div:first-child:empty {
    display: none;
  }
  /* Reverse items: always text on right of year dot */
  .timeline-item:nth-child(even) > div:nth-child(1),
  .timeline-item:nth-child(even) > div:nth-child(3) {
    order: initial;
  }

  /* ── COMPANIES: company layout grid ── */
  .company-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .company-layout.reverse .company-text,
  .company-layout.reverse .company-visual {
    order: initial;
  }

  /* ── COMPANIES: stats bar ── */
  .company-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* ── COMPANIES: chain diagram ── */
  .chain-diagram {
    flex-direction: column;
    align-items: stretch;
  }
  .chain-sep {
    width: 100% !important;
    height: 1px !important;
    margin: 0 24px !important;
    background: linear-gradient(to right, transparent, var(--gold), transparent) !important;
  }
  .chain-node {
    padding: 28px 24px !important;
  }

  /* ── LEADERSHIP: full leader layout ── */
  .leader-full {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }
  .leader-portrait {
    max-width: 240px;
  }

  /* ── CONTACT: entity-quick-links (inline style) ── */
  .entity-quick-links {
    grid-template-columns: 1fr 1fr !important;
  }

  /* ── CONTACT: offices grid ── */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ── FOOTER: always single column on mobile ── */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ── ALL PAGES: page header padding ── */
  .page-header {
    padding: 120px 24px 60px;
  }

  /* ── COMPANY image accent ── */
  .company-img-accent {
    display: none;
  }

}

/* ── EXTRA SMALL: 480px ── */
@media (max-width: 480px) {

  /* Contact entity cards: 1 column */
  .entity-quick-links {
    grid-template-columns: 1fr !important;
  }

  /* Company stats: 1 column */
  .company-stats {
    grid-template-columns: 1fr;
  }

  /* Values grid */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Leader portrait full width */
  .leader-portrait {
    max-width: 100%;
  }

  /* Hero stat number smaller */
  .stat-number {
    font-size: 1.6rem;
  }

  /* CTA section padding */
  .cta-section {
    padding: 60px 24px;
  }

  /* General section padding reduction */
  section {
    padding: 60px 0;
  }

}
