/* ============================================================
   ABOUT US PAGE  —  Carson Cold Storage & Packing
   css/about.css
   ============================================================ */

/* ================================================================
   HERO  — split layout: navy text left / photo right
   An angled clip-path on the photo panel creates the diagonal
   "diffuse" transition between the image and the blue side.
   ================================================================ */
.about-hero {
  position: relative;
  height: clamp(300px, 32vw, 400px);
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: stretch;
}

/* ── RIGHT: photo panel ── */
.about-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 60%;
  height: 100%;
  z-index: 0;
  clip-path: polygon(120px 0, 100% 0, 100% 100%, 0 100%);
}

/* Soft navy bleed from the cut edge into the photo */
.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(11,28,54,1.00)  0%,
    rgba(11,28,54,0.85) 15%,
    rgba(11,28,54,0.55) 30%,
    rgba(11,28,54,0.25) 45%,
    rgba(11,28,54,0.00) 62%
  );
  pointer-events: none;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.92) contrast(1.04);
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ── LEFT: navy text panel ── */
.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  width: 55%;
  height: 100%;
  z-index: 1;
  background: var(--navy);
  clip-path: polygon(0 0, calc(100% - 120px) 0, 100% 100%, 0 100%);
}

/* Subtle teal accent line at the very top of the blue panel */
.about-hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal) 60%, transparent);
}

/* ── Content sits above both panels ── */
.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* text anchored to the left */
  padding: 0 var(--container-pad, 48px);
}

.about-hero-text {
  /* text sits in the left ~48% — clears the photo */
  width: clamp(320px, 46%, 560px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-hero-eyebrow {
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}

.about-hero-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 14px;
}

.about-hero-sub {
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 460px;
}

.about-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-hero-pills span {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.90);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.about-hero-pills span i {
  color: var(--teal);
  font-size: var(--text-xs);
}

/* ================================================================
   TRUST STRIP
   ================================================================ */
.about-trust-strip {
  background: var(--navy);
  padding: 6px 0;
  border-bottom: 1px solid rgba(11,28,54,0.10);
}

.about-trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.about-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3px 20px;
  color: rgba(255,255,255,0.88);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
  line-height: 1.1;
}

.about-trust-item i {
  color: var(--teal);
  font-size: var(--text-xs);
}

.about-trust-div {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ================================================================
   WHO WE ARE  — Option C layout
   Full-width centered header → 3-col body (stats | narrative | map)
   → 4-up value cards spanning full width below
   ================================================================ */
.about-who {
  background: #fff;
  padding: 52px 0 64px;
}

/* ── Centered section header — removed, title now lives in narrative col ── */
.about-who-header {
  display: none;
}

.about-who-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 12px;
}

.about-who-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}

.about-who-header-sub {
  font-size: var(--text-base);
  color: var(--gray-text);
  line-height: 1.65;
  margin: 0;
}

/* ── 3-column body ── */
.about-who-cols {
  display: grid;
  grid-template-columns: 200px 1fr 380px;
  gap: 36px;
  align-items: start;
  margin-bottom: 36px;
  padding-top: 0;
}

/* ── COL 1: Key facts sidebar ── */
.about-who-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--navy);
  border-radius: 14px;
  padding: 28px 22px 22px;
  position: static;
}

.about-fact-divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 0;
}

.about-who-safety-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.2s, color 0.2s;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 18px;
}

.about-who-safety-link:hover { gap: 12px; color: #fff; }
.about-who-safety-link i { font-size: 11px; }

/* Attribute entries (icon + label + desc) inside the navy sidebar */
.about-fact-attr {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 0;
}

.about-fact-attr-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(76,201,240,0.15);
  border: 1px solid rgba(76,201,240,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: 11px;
}

.about-fact-attr > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-fact-attr-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.about-fact-attr-desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.50);
  line-height: 1.45;
}

/* ── COL 2: Narrative text (carries the section heading) ── */
.about-who-narrative {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-who-narrative .about-who-eyebrow {
  margin: 0 0 10px;
}

.about-who-narrative .about-who-title {
  margin: 0 0 6px;
  text-align: left;
}

.about-who-narrative .about-who-header-sub {
  margin: 0 0 22px;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 20px;
}

.about-who-narrative p {
  font-size: var(--text-base);
  color: var(--gray-text);
  line-height: 1.85;
  margin: 0 0 16px;
}

.about-who-narrative p strong {
  color: var(--navy);
  font-weight: 700;
}



/* ── COL 3: Map ── */
.about-who-map-wrap {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  box-shadow: 0 4px 20px rgba(11,28,54,0.10);
  position: relative;
  isolation: isolate;
  z-index: 0;
}

.about-who-map-wrap #about-map {
  width: 100%;
  height: 380px;
}

/* Node jump animation */
@keyframes nodeJump {
  0%   { transform: translateY(0); }
  35%  { transform: translateY(-9px); }
  100% { transform: translateY(0); }
}
.node-jump { animation: nodeJump 0.45s ease forwards; }

/* ================================================================
   BY THE NUMBERS
   ================================================================ */
.about-numbers {
  background: var(--navy);
  padding: 44px 0;
}

.about-numbers-eyebrow {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 28px;
}

.about-numbers-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.about-number-item {
  text-align: center;
  padding: 0 32px;
  flex: 0 0 auto;
}

.about-number-val {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}

.about-number-unit {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.about-number-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.about-number-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

/* ================================================================
   CARSON ADVANTAGE
   ================================================================ */
.about-advantage {
  background: var(--gray-bg);
  padding: 60px 0 64px;
  border-top: 1px solid var(--gray-light);
}

.about-adv-header {
  text-align: center;
  margin-bottom: 36px;
}

.about-adv-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}

.about-adv-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
}

.about-adv-sub {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

.about-adv-layout {
  display: grid;
  grid-template-columns: 1fr 268px;
  gap: 28px;
  align-items: stretch; /* right column stretches to match table height */
}

/* ── Comparison Table ── */
.about-table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--gray-light);
  background: #fff;
  box-shadow: 0 2px 12px rgba(11,28,54,0.06);
}

.about-comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11.5px;
}

.about-comp-table .th-facility { width: 18%; }
.about-comp-table .th-carson   { width: 22%; }
.about-comp-table .th-comp     { width: 20%; }

.about-comp-table thead tr { border-bottom: 2px solid var(--gray-light); }

.about-comp-table .th-facility {
  padding: 12px 11px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-text);
  text-align: left;
  background: #fff;
}

.about-comp-table .th-carson {
  background: var(--navy);
  vertical-align: bottom;
  padding: 0;
  border-left: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  border-top: 2px solid var(--teal);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.carson-header {
  padding: 10px 8px 10px;
  text-align: center;
}

.crown-icon {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 3px;
}

.carson-header-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}

.carson-header-sub {
  font-size: var(--text-xs);
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-top: 2px;
}

.about-comp-table .th-comp {
  background: #F5F7FA;
  padding: 10px 11px;
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-text);
}

.about-comp-table .row-label {
  padding: 12px 11px;
  font-size: var(--text-xs);
  color: var(--gray-text);
  font-weight: 400;
  vertical-align: middle;
  background: #fff;
}

.about-comp-table tbody tr {
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.15s;
}

.about-comp-table tbody tr.last-row { border-bottom: none; }

.about-comp-table tbody tr:hover .row-label,
.about-comp-table tbody tr:hover .comp-cell { background: #F9FAFB; }

.about-comp-table .carson-cell {
  background: #EBF5FB;
  border-left: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  padding: 12px 8px;
  text-align: center;
  vertical-align: middle;
}

.about-comp-table .carson-last  { border-bottom: 2px solid var(--teal); }
.about-comp-table .carson-value { font-size: 12px; font-weight: 700; color: var(--navy); }
.about-comp-table .carson-unit  { font-size: 10.5px; color: var(--gray-text); font-weight: 400; }
.about-comp-table .carson-highlight {
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--teal);
  background: rgba(76,201,240,0.1);
  border-radius: 4px;
  padding: 2px 6px;
}

.about-comp-table .comp-cell {
  padding: 12px 8px;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--navy);
  background: #fff;
  vertical-align: middle;
}

.about-comp-table .comp-cell.muted {
  color: #94A3B8;
  font-style: italic;
}

.about-comp-table .unit { font-size: 10.5px; color: var(--gray-text); }

/* ── Right column: chart only, full height ── */
.about-adv-right {
  display: flex;
  flex-direction: column;
}

.about-adv-chart-box {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 16px 18px 14px;
  box-shadow: 0 2px 12px rgba(11,28,54,0.07);
  flex: 1;           /* fill full height of grid row */
  display: flex;
  flex-direction: column;
}

.about-adv-chart-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.about-adv-chart-wrap {
  position: relative;
  width: 100%;
  flex: 1;           /* expand to fill all available space in the box */
  min-height: 160px;
}

.about-adv-chart-caption {
  font-size: var(--text-xs);
  color: var(--gray-text);
  font-style: italic;
  margin-top: 10px;
  line-height: 1.4;
}

/* ================================================================
   MAP LABEL, LEGEND & LEAFLET TOOLTIP
   ================================================================ */
.about-map-label {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.about-map-label i { color: var(--teal); }

#about-map {
  width: 100%;
  height: 420px;
}

.about-map-legend {
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-light);
  padding: 8px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-map-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--gray-text);
  font-weight: 500;
}

.about-map-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.about-map-dot--facility  { background: #4CC9F0; }
.about-map-dot--port      { background: #F59E0B; }
.about-map-dot--corridor  { background: #4CC9F0; border-radius: 2px; height: 4px; width: 16px; margin-top: 1px; }

.about-map-tooltip {
  background: rgba(11,28,54,0.88) !important;
  border: 1px solid rgba(76,201,240,0.4) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 3px 7px !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  white-space: nowrap;
}

.about-map-tooltip::before { display: none !important; }

/* Permanent port labels */
.about-map-tooltip--permanent {
  background: rgba(255,255,255,0.95) !important;
  border: 1px solid rgba(11,28,54,0.15) !important;
  color: #64748b !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  padding: 3px 8px !important;
  pointer-events: none !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1) !important;
}

/* Carson Cold facility label */
.about-map-tooltip--carson {
  background: rgba(76,201,240,0.95) !important;
  border: 1px solid rgba(11,28,54,0.2) !important;
  color: #0B1C36 !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  padding: 4px 10px !important;
  pointer-events: none !important;
  box-shadow: 0 2px 6px rgba(76,201,240,0.3) !important;
}

/* ================================================================
   SERVICES TEASER
   ================================================================ */
.about-services {
  background: var(--gray-bg);
  padding: 60px 0 68px;
  border-top: 1px solid var(--gray-light);
}

.about-services-header {
  text-align: center;
  margin-bottom: 36px;
}

.about-services-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}

.about-services-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 10px;
}

.about-services-sub {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-svc-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 28px 24px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.about-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.about-svc-card:hover {
  box-shadow: 0 8px 28px rgba(11,28,54,0.12);
  transform: translateY(-3px);
  border-color: rgba(76,201,240,0.35);
}

.about-svc-card:hover::before { transform: scaleX(1); }

.about-svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(76,201,240,0.10);
  border: 1.5px solid rgba(76,201,240,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 18px;
  margin-bottom: 12px;
  transition: background 0.2s;
}

.about-svc-card:hover .about-svc-icon {
  background: rgba(76,201,240,0.18);
}

.about-svc-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.about-svc-card h3 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.2;
}

.about-svc-card p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.70;
  margin: 0 0 14px;
}

.about-svc-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--gray-light);
  padding-top: 14px;
}

.about-svc-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--gray-text);
  font-weight: 500;
}

.about-svc-points li i {
  color: var(--teal);
  font-size: var(--text-xs);
  flex-shrink: 0;
}

.about-svc-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--teal);
  margin-top: auto;
  transition: gap 0.2s;
}

.about-svc-card:hover .about-svc-link { gap: 10px; }

/* ================================================================
   MAP INFOGRAPHIC — ground-up rewrite using CSS Grid
   Two explicit rows: [icon track] then [label row]
   Five columns: node | connector | node | connector | node
   Icons and connectors never share space with text labels.
   ================================================================ */

.map-infographic {
  background: #fff;
  border-top: 2px solid var(--teal);
  padding: 14px 16px 12px;
}

/* ── Row 1: icon circles + connector lines ── */
.map-ig-track {
  display: grid;
  grid-template-columns: 72px 1fr 40px 1fr 72px;
  align-items: center;  /* all cells — icons AND connectors — centred on the same axis */
  gap: 0;
  margin-bottom: 8px;
  /* Row height driven by the tallest element (left connector with 3 items).
     Icons and the short connector will centre within that height. */
}

.map-ig-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  background: var(--navy);
  flex-shrink: 0;
  justify-self: center; /* centred within its wider column */
}

.map-ig-icon--customs  { background: #1F6E91; }
.map-ig-icon--facility { background: var(--teal); color: var(--navy); }

/* Connector: badge on top, dashed line in middle, sub-label below */
.map-ig-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* vertically centre content so dash always hits icon mid-line */
  gap: 3px;
  width: 100%;
  padding: 0 6px;
  align-self: center; /* ensure cell itself is centred in the grid row */
}

.map-ig-badge {
  background: var(--navy);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.map-ig-dash {
  width: 100%;
  height: 2px;
  position: relative;
  overflow: visible;
}

.map-ig-dash::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    var(--navy) 0px, var(--navy) 5px,
    transparent 5px, transparent 10px
  );
}

.map-ig-sub {
  font-size: var(--text-xs);
  font-weight: 700;
  color: #1F6E91;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-align: center;
}

/* ── Row 2: labels pinned under each icon column ── */
.map-ig-labels {
  display: grid;
  grid-template-columns: 72px 1fr 40px 1fr 72px;
  gap: 0;
}

.map-ig-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
  /* labels wrap within their column — wider outer columns = 2 lines max */
  word-break: break-word;
  hyphens: auto;
}

.map-ig-spacer {
  /* empty cells under connector columns — no content */
  display: block;
}

/* ================================================================
   CTA STRIP
   ================================================================ */
.about-cta-strip {
  background: var(--color-navy);
  padding: 52px 0;
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.about-cta-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin: 0 0 10px;
}

.about-cta-heading {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
}

.about-cta-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
  max-width: 460px;
}

.about-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.about-cta-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.70);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--t-fast);
}

.about-cta-phone:hover { color: var(--color-teal); }
.about-cta-phone i { font-size: 12px; }

@media (max-width: 768px) {
  .about-cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .about-cta-sub { max-width: 100%; }
  .about-cta-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ── 3-col collapses to 2-col at 1100px ── */
@media (max-width: 1100px) {
  .about-who-cols {
    grid-template-columns: 180px 1fr 320px;
    gap: 28px;
  }
}

/* ── Tablet: facts col disappears, map goes full width below narrative ── */
@media (max-width: 900px) {
  /* Hero collapses to full-width stacked */
  .about-hero {
    height: auto;
    min-height: 300px;
  }
  .about-hero-bg {
    position: absolute;
    width: 100%;
    clip-path: none;
  }
  .about-hero-bg img {
    object-position: center 40%;
  }
  .about-hero-overlay {
    position: absolute;
    width: 100%;
    clip-path: none;
    background: linear-gradient(
      to bottom,
      rgba(11,28,54,0.15) 0%,
      rgba(11,28,54,0.45) 55%,
      rgba(11,28,54,0.72) 100%
    );
  }
  .about-hero-overlay::after { display: none; }
  .about-hero-content {
    justify-content: center;
    align-items: flex-end;
    padding: 32px 40px 44px;
  }
  .about-hero-text {
    width: 100%;
    max-width: 600px;
    text-align: center;
    align-items: center;
  }
  .about-hero-sub { display: block; }

  /* 3-col → 2-col: hide stats sidebar, narrative + map side by side */
  .about-who-cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .about-who-facts {
    display: none;  /* stats sidebar hidden on tablet */
  }
  .about-who-map-wrap #about-map { height: 300px; }

  .about-adv-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .about-adv-right    { flex-direction: column; }
  .about-adv-chart-wrap { min-height: 220px; }
  .about-services-grid  { grid-template-columns: 1fr 1fr; }
  .about-trust-items  { gap: 4px; }
  .about-trust-item   { padding: 6px 12px; font-size: 11px; }
}

/* ── Mobile: everything single column ── */
@media (max-width: 640px) {
  .about-hero       { min-height: 260px; }
  .about-hero-sub   { display: none; }
  .about-hero-title { letter-spacing: 0; }

  .about-who-cols {
    grid-template-columns: 1fr;
  }
  .about-who-map-wrap #about-map { height: 240px; }

  .about-numbers-grid { gap: 8px; }
  .about-number-item  { padding: 0 16px; }
  .about-adv-title    { font-size: 20px; }
  .about-services-grid { grid-template-columns: 1fr; }
  .about-trust-div    { display: none; }
  .about-trust-items  { justify-content: flex-start; gap: 2px 0; }
  .about-trust-item   { padding: 5px 14px; }
}
