/* ============================================================
   SUNDRY MARKETS — Shared Stylesheet
   Design tokens + component styles. Edit the :root block
   to change colors/fonts across the entire site.
   ============================================================ */

:root {
  /* Brand */
  --brand-primary:  #E9451E;
  --brand-accent:   #F99F23;
  --brand-deep:     #C7361A;
  --brand-warm:     #2A1810;     /* warm dark for sections */

  /* Ink */
  --ink-900:        #0A0A0A;
  --ink-700:        #333333;
  --ink-500:        #545454;
  --ink-300:        #AAAAAA;

  /* Surfaces */
  --surface-white:  #FFFFFF;
  --surface-50:     #F5F0E8;     /* warm cream */
  --surface-50b:    #EBE4D7;
  --surface-900:    #0A0A0A;
  --surface-800:    #1A1A1A;
  --surface-footer: #0A0A0A;

  /* Borders */
  --border-100:     #E8E8E8;
  --border-dark:    rgba(255,255,255,0.12);

  /* Type */
  --font-display:   "Oswald", "Helvetica Neue", Arial, sans-serif;
  --font-body:      "Roboto", "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  48px;
  --space-6:  64px;
  --space-7:  96px;
  --space-8:  128px;

  /* Layout */
  --container-max:  1280px;
  --gutter-mobile:  20px;
  --gutter-desk:    48px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--surface-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-primary); text-decoration: none; }
a:hover { color: var(--brand-deep); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 0.875rem; font-weight: 700; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-primary);
  margin-bottom: var(--space-2);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
}
@media (min-width: 768px) {
  .container { padding-left: var(--gutter-desk); padding-right: var(--gutter-desk); }
}

.section { padding: var(--space-6) 0; }
@media (min-width: 768px) { .section { padding: var(--space-7) 0; } }
.section--cream { background: var(--surface-50); }
.section--dark {
  background: var(--ink-900);
  color: var(--surface-white);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--surface-white);
}
.section--impact {
  background: var(--ink-900);
  color: var(--surface-white);
  position: relative;
  overflow: hidden;
}
.section--impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(233,69,30,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.section--map {
  background: var(--ink-900);
  color: var(--surface-white);
}

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

/* ---------- Logo (real Sundry logo image) ---------- */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
/* Same logo file as the header, on a clean white plate so the
   dark "MARKETS" wordmark stays legible against the dark footer. */
.footer-logo-plate {
  display: inline-block;
  align-self: flex-start;
  background: #fff;
  padding: 9px 13px;
  border-radius: 10px;
  margin-bottom: var(--space-2);
  line-height: 0;
}
.footer-logo {
  height: 34px;
  width: auto;
  display: block;
  margin: 0;
}

/* ---------- Logo mark (fallback) ---------- */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--brand-primary);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 4px;
  flex-shrink: 0;
}
.logo-mark--lg { width: 48px; height: 48px; font-size: 1.5rem; }
.logo-mark__s { line-height: 1; }

.logo-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--ink-900);
}
.logo-wordmark--light { color: white; }
.logo-dot { color: var(--brand-primary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 16px 32px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.15s ease;
  min-height: 52px;
}
.btn--primary { background: var(--brand-primary); color: white; }
.btn--primary:hover { background: var(--brand-deep); color: white; }
.btn--accent { background: var(--brand-accent); color: var(--ink-900); }
.btn--accent:hover { background: #E08E1F; color: var(--ink-900); }
.btn--ghost { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn--ghost:hover { background: var(--ink-900); color: white; }
.btn--ghost-light { background: transparent; color: white; border-color: white; }
.btn--ghost-light:hover { background: white; color: var(--ink-900); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-100);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) 0;
  gap: var(--space-3);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__links {
  display: none;
  list-style: none;
  gap: var(--space-3);
}
.nav__links a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 4px;
  position: relative;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--brand-primary); }
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 2px;
  background: var(--brand-primary);
}
.nav__cta { display: none; padding: 12px 20px; min-height: auto; }
.nav__menu-btn {
  background: none; border: 0; font-size: 1.5rem;
  cursor: pointer; padding: 8px; color: var(--ink-900);
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta   { display: inline-flex; }
  .nav__menu-btn { display: none; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border-100);
  background: var(--surface-white);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  color: var(--ink-900);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-100);
}

/* ============================================================
   HERO — full bleed with side ticker
   ============================================================ */
.hero {
  --header-h: 73px;
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  color: white;
  background: var(--ink-900);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.85) 100%);
}
.hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(233,69,30,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233,69,30,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  width: 100%;
  max-width: 940px;
  padding: var(--space-5) var(--gutter-mobile);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1 { color: white; margin-bottom: var(--space-3); }
@media (max-width: 480px) {
  .hero h1 { font-size: 2.35rem; }
  .hero p { font-size: 1rem; }
}

/* Inline footprint stats inside the hero */
.hero__stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3) var(--space-5);
  margin-top: var(--space-5);
}
.hero__stats li { display: flex; flex-direction: column; align-items: center; }
.hero__stats b {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stats span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* Marquee pinned to the bottom of the hero (stays within the viewport) */
.marquee--hero {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin-top: auto;
}
.hero h1 .hero__hl {
  color: var(--brand-accent);
  position: relative;
  display: inline-block;
}
.hero h1 .hero__hl::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 4px;
  background: var(--brand-primary);
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto var(--space-4);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

.hero__ticker {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  padding-left: var(--space-3);
  border-left: 2px solid var(--brand-primary);
}
.ticker__row {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ticker__row span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
@media (min-width: 1100px) {
  .hero__ticker { display: flex; }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.hero__scroll:hover { color: var(--brand-accent); }
.hero__scroll svg { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--brand-primary);
  color: white;
  padding: var(--space-2) 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.marquee__dot {
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  display: inline-block;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   STATEMENT (big quote)
   ============================================================ */
.statement__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.3;
  text-transform: none;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  max-width: 1000px;
  margin-bottom: var(--space-4);
}
.statement__text em {
  font-style: normal;
  color: var(--brand-primary);
  font-weight: 600;
}
.statement__signature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: var(--space-3);
  border-top: 2px solid var(--ink-900);
  max-width: 400px;
}
.signature-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.signature-role {
  font-size: 0.875rem;
  color: var(--ink-500);
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head, .impact-head, .partner-head {
  max-width: 800px;
  margin-bottom: var(--space-5);
}
.section-head h2, .impact-head h2, .partner-head h2 { margin-bottom: var(--space-2); }
.impact-head__lede {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin-top: var(--space-2);
}

/* ============================================================
   STATS STRIP (homepage)
   ============================================================ */
.stats-strip {
  background: var(--ink-900);
  color: var(--surface-white);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
@media (min-width: 768px) {
  .stats-strip__grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  text-align: center;
  padding: var(--space-2) 0;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 767px) {
  .stat:nth-child(2)::before { display: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: var(--space-3); }
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ============================================================
   MAP
   ============================================================ */
.map-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
@media (min-width: 768px) {
  .map-header { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .map-header h2 { max-width: 600px; }
  .map-header__caption { max-width: 320px; text-align: right; color: rgba(255,255,255,0.6); }
}
.map-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 1024px) {
  .map-stage { grid-template-columns: 1fr 280px; }
}

.map-canvas {
  background: linear-gradient(180deg, #0F0F0F 0%, #050505 100%);
  border-radius: 12px;
  padding: var(--space-3);
  border: 1px solid var(--border-dark);
  position: relative;
}
#nigeria-map {
  width: 100%;
  height: auto;
  display: block;
  max-height: 700px;
}
#nigeria-map .pin { transition: r 0.15s ease, filter 0.15s ease; }
#nigeria-map .pin:hover { filter: drop-shadow(0 0 8px #F99F23); }

.map-sidebar {
  background: var(--surface-800);
  border-radius: 12px;
  padding: var(--space-3);
  border: 1px solid var(--border-dark);
}
.city-list {
  list-style: none;
  margin: var(--space-2) 0;
  max-height: 480px;
  overflow-y: auto;
}
.city-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.city-list li:last-child { border-bottom: 0; }
.city-count {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-accent);
  font-size: 1rem;
}
.map-legend {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-dark);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.legend-pin {
  width: 10px; height: 10px;
  background: var(--brand-primary);
  border: 2px solid white;
  border-radius: 50%;
  display: inline-block;
}
.legend-pin--hq {
  background: var(--brand-accent);
  width: 12px; height: 12px;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brand-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  background: white;
  border: 2px solid var(--ink-900);
  padding: var(--space-4);
  border-radius: 0;
  align-items: center;
}
@media (min-width: 768px) {
  .brand-showcase { grid-template-columns: 1fr 1.4fr; padding: var(--space-5); gap: var(--space-6); }
}
.brand-showcase__visual {
  background: var(--brand-primary);
  color: white;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  text-align: center;
  border-radius: 0;
}
.brand-showcase__visual--logo {
  background: var(--surface-white);
  border: 2px solid var(--border-100);
}
.brand-showcase__visual--logo .brand-logo-img {
  width: 100%;
  max-width: 320px;
  height: auto;
}
.brand-marketsquare {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.msq__m { color: var(--brand-accent); font-size: 1.3em; }
.msq__rest { color: white; }
.brand-tagline {
  margin-top: var(--space-2);
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.9;
}
.brand-showcase__copy h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-2);
}
.brand-showcase__copy p {
  font-size: 1.0625rem;
  margin-bottom: var(--space-3);
  color: var(--ink-500);
  text-transform: none;
  line-height: 1.6;
}
.brand-stats {
  display: flex;
  gap: var(--space-4);
  margin: var(--space-3) 0;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border-100);
  border-bottom: 1px solid var(--border-100);
}
.brand-stats > div { display: flex; flex-direction: column; }
.brand-stats dt {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  text-transform: none;
}
.brand-stats dd {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  margin-top: 4px;
}

/* ============================================================
   IMPACT (dark)
   ============================================================ */
.impact-head { color: var(--surface-white); }
.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .impact-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .impact-grid { grid-template-columns: repeat(4, 1fr); } }
.impact-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  padding: var(--space-4);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.impact-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--brand-primary);
  transition: width 0.3s ease;
}
.impact-tile:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.impact-tile:hover::before { width: 100%; }
.impact-tile--accent { background: rgba(233,69,30,0.08); }
.impact-tile__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}
.impact-tile h4 {
  color: white;
  margin-bottom: var(--space-1);
  font-size: 1.125rem;
}
.impact-tile p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-transform: none;
  line-height: 1.5;
}

/* ============================================================
   PARTNER CARDS (brutalist)
   ============================================================ */
.partner-head h2 { max-width: 800px; }
.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid var(--ink-900);
}
@media (min-width: 768px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
.partner-card {
  padding: var(--space-4);
  background: white;
  color: var(--ink-900);
  border-right: 2px solid var(--ink-900);
  border-bottom: 2px solid var(--ink-900);
  position: relative;
  display: block;
  transition: all 0.2s ease;
  text-decoration: none;
}
.partner-card:last-child { border-right: 0; }
@media (max-width: 767px) {
  .partner-card:last-child { border-bottom: 0; }
}
.partner-card:hover {
  background: var(--ink-900);
  color: white;
}
.partner-card:hover .partner-card__arrow { transform: translateX(8px); color: var(--brand-accent); }
.partner-card:hover .partner-card__index { color: var(--brand-accent); }
.partner-card:hover h4 { color: white; }
.partner-card__index {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-2);
  transition: color 0.2s ease;
}
.partner-card h4 {
  color: var(--ink-900);
  margin-bottom: var(--space-2);
  font-size: 1.25rem;
  transition: color 0.2s ease;
}
.partner-card p {
  font-size: 0.9rem;
  color: var(--ink-500);
  margin-bottom: var(--space-3);
  text-transform: none;
  line-height: 1.5;
}
.partner-card:hover p { color: rgba(255,255,255,0.7); }
.partner-card__arrow {
  font-size: 1.5rem;
  color: var(--ink-900);
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* ============================================================
   CAREERS (big quote)
   ============================================================ */
.big-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: var(--space-3);
}
.big-quote em {
  font-style: normal;
  color: var(--brand-accent);
  position: relative;
}
.big-quote em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 6px;
  background: var(--brand-primary);
  opacity: 0.6;
}
.careers-lede {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto var(--space-4);
  text-transform: none;
}

/* ============================================================
   NEWSROOM
   ============================================================ */
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-4);
  gap: var(--space-3);
  flex-wrap: wrap;
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 768px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--lg { grid-row: span 2; }
}
.news-card {
  background: white;
  border: 1px solid var(--border-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.news-card__img {
  aspect-ratio: 16/10;
  background: var(--surface-50);
  overflow: hidden;
}
.news-card__img img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: var(--space-3); flex: 1; display: flex; flex-direction: column; gap: 8px; }
.news-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--brand-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  align-self: flex-start;
  width: fit-content;
}
.news-card h3, .news-card h4 {
  text-transform: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.news-card--lg h3 { font-size: 1.75rem; }
.news-meta {
  font-size: 0.75rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface-footer);
  color: rgba(255,255,255,0.7);
  padding: var(--space-6) 0 var(--space-3);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-dark);
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1.5fr 3fr; }
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-brand .logo-wordmark { font-size: 1.25rem; }
.footer-tag {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: var(--space-2) 0;
  text-transform: none;
  line-height: 1.5;
}
.footer-brand address {
  font-size: 0.875rem;
  font-style: normal;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
@media (min-width: 768px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.site-footer h5 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-2);
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.site-footer a:hover { color: var(--brand-accent); }

.footer-bottom {
  padding-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.social-icons { display: flex; gap: 8px; }
.social-icons a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-dark);
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: lowercase;
  transition: all 0.15s ease;
}
.social-icons a:hover { background: var(--brand-primary); border-color: var(--brand-primary); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  background: var(--ink-900);
  color: white;
  padding: var(--space-6) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(233,69,30,0.2) 0%, transparent 50%);
}
.page-header h1 { color: white; margin-bottom: var(--space-2); position: relative; }
.page-header p {
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.125rem;
  text-transform: none;
  position: relative;
}

/* ============================================================
   LEADERSHIP GRID
   ============================================================ */
.leader-card {
  text-align: center;
  background: var(--surface-white);
  border: 1px solid var(--border-100);
  border-radius: 0;
  padding: var(--space-3);
}
.leader-card__photo {
  width: 140px; height: 140px;
  background: var(--border-100);
  margin: 0 auto var(--space-2);
  overflow: hidden;
  border-radius: 0;
}
.leader-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-card h5 { margin-bottom: 4px; }
.leader-card p { font-size: 0.875rem; color: var(--ink-500); text-transform: none; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: var(--space-3); }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--ink-900);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-100);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
@media (min-width: 768px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   CARDS / ICON CARDS
   ============================================================ */
.card {
  background: var(--surface-white);
  border: 1px solid var(--border-100);
  border-radius: 0;
  padding: var(--space-4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

/* ============================================================
   FILTERS
   ============================================================ */
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: var(--space-4); }
.chip {
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border-100);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.chip:hover, .chip.is-active { background: var(--ink-900); color: white; border-color: var(--ink-900); }

/* ============================================================
   LOCATIONS — interactive footprint (homepage)
   ============================================================ */
.loc-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-dark);
}
.loc-stat { display: flex; flex-direction: column; gap: 2px; }
.loc-stat b {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
}
.loc-stat span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
}

.map-canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(circle at 60% 40%, rgba(233,69,30,0.12) 0%, transparent 55%);
  pointer-events: none;
}
#nigeria-map .pin { transition: opacity 0.25s ease, filter 0.15s ease; cursor: pointer; transform-box: fill-box; transform-origin: center; }
#nigeria-map .pin.is-dim { opacity: 0.18; }
#nigeria-map .pin.is-on  { animation: pinPulse 1.3s ease-in-out infinite; filter: drop-shadow(0 0 6px var(--brand-accent)); }
@keyframes pinPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.6); }
}
@media (prefers-reduced-motion: reduce) {
  #nigeria-map .pin.is-on { animation: none; }
}

/* Sidebar: toolbar + two stacked views (city list / store detail) */
.loc-toolbar { position: relative; margin-bottom: var(--space-2); }
.loc-search {
  width: 100%;
  padding: 11px 14px 11px 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.loc-search::placeholder { color: rgba(255,255,255,0.4); }
.loc-search:focus { outline: none; border-color: var(--brand-primary); background: rgba(255,255,255,0.08); }
.loc-toolbar svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.4); pointer-events: none; }

.city-list li {
  cursor: pointer;
  padding: 11px 10px;
  margin: 0 -10px;
  border-radius: 6px;
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.15s ease, color 0.15s ease;
}
.city-list li:hover { background: rgba(255,255,255,0.05); }
.city-list li.is-active { background: var(--brand-primary); color: white; }
.city-list li.is-active .city-count { color: white; }
.city-list li.is-hidden { display: none; }

/* Store detail view (replaces the old alert) */
.store-detail { display: none; animation: fadeUp 0.3s ease; }
.store-detail.is-open { display: block; }
.store-detail__back {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer;
  color: var(--brand-accent);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 0; margin-bottom: var(--space-3);
}
.store-detail__back:hover { color: white; }
.store-detail__city {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--brand-accent); margin-bottom: 6px;
}
.store-detail__name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: white; line-height: 1.1; margin-bottom: var(--space-2);
}
.store-detail__brand {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: var(--space-3);
}
.store-detail__hq {
  display: inline-block; margin-bottom: var(--space-3);
  padding: 4px 10px; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--brand-accent); color: var(--ink-900);
}
.store-detail .btn { width: 100%; justify-content: center; }

/* In-place popover: opens right at the clicked pin with directions,
   so users don't have to look away to the sidebar. */
.map-popover {
  position: absolute;
  z-index: 6;
  left: 0; top: 0;
  width: 226px;
  transform: translate(-50%, calc(-100% - 16px));
  background: #141414;
  border: 1px solid var(--brand-primary);
  border-radius: 12px;
  padding: 14px 16px 16px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}
.map-popover.is-open { opacity: 1; pointer-events: auto; }
.map-popover--below { transform: translate(-50%, 16px); }
.map-popover::after {
  content: ""; position: absolute; left: 50%; bottom: -7px;
  width: 13px; height: 13px; background: #141414;
  border-right: 1px solid var(--brand-primary);
  border-bottom: 1px solid var(--brand-primary);
  transform: translateX(-50%) rotate(45deg);
}
.map-popover--below::after {
  bottom: auto; top: -7px;
  border: 0; border-left: 1px solid var(--brand-primary);
  border-top: 1px solid var(--brand-primary);
}
.map-popover__close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: 0; cursor: pointer;
  color: rgba(255,255,255,0.5); font-size: 1.25rem; line-height: 1;
  padding: 0;
}
.map-popover__close:hover { color: #fff; }
.map-popover__city {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--brand-accent); margin: 0 0 4px;
}
.map-popover__name {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: #fff; line-height: 1.15; margin: 0 0 10px;
}
.map-popover__hq {
  display: none; margin: 0 0 10px;
  padding: 3px 9px; font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--brand-accent); color: var(--ink-900); border-radius: 3px;
}
.map-popover .btn { width: 100%; justify-content: center; padding: 9px 14px; font-size: 0.8rem; }

/* Map responsiveness: enlarge tap targets as the SVG scales down */
@media (max-width: 768px) {
  .map-canvas { padding: var(--space-2); }
  #nigeria-map .pin { r: 12px; }
  #nigeria-map .pin[data-hq] { r: 15px; }
  #nigeria-map text { font-size: 18px; }
  .map-header__caption { text-align: left; }
}
@media (max-width: 480px) {
  #nigeria-map .pin { r: 15px; }
}

/* ============================================================
   HOME CTA (closing band)
   ============================================================ */
.cta-band {
  background: var(--brand-primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-band h2 { color: white; margin-bottom: var(--space-2); }
.cta-band p { color: rgba(255,255,255,0.9); text-transform: none; font-size: 1.0625rem; margin-bottom: var(--space-4); }
.cta-band .hero__ctas { justify-content: center; }
.cta-band .btn--ghost-light:hover { background: white; color: var(--brand-primary); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   UTIL
   ============================================================ */
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
