/* ════════════════════════════════════════════
   ABOUT SECTIONS SHARED
════════════════════════════════════════════ */

.about-section {
  padding: var(--space-16) 0;
}

.about-section + .about-section {
  border-top: 1px solid var(--color-border);
}

.about-section--shaded {
  background: var(--color-off-white);
}

.about-section--dark {
  background: var(--color-navy-deeper);
}

.about-section .section-inner {
  max-width: 820px;
}

.about-section .section-label {
  display: block;
  margin-bottom: var(--space-3);
}

.about-section .section-heading {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}

.about-body {
  font-size: var(--text-base);
  color: var(--color-text-body);
  line-height: 1.85;
}

.about-body p { margin-bottom: var(--space-5); }
.about-body p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════
   PULL QUOTE
════════════════════════════════════════════ */

.pull-quote {
  border-left: 3px solid var(--color-gold);
  padding: var(--space-5) var(--space-8);
  margin: var(--space-8) 0;
  background: var(--color-light);
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 400;
  color: var(--color-navy-dark);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ════════════════════════════════════════════
   DELIVERABLES GRID
════════════════════════════════════════════ */

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.deliverable-item {
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--color-border);
  position: relative;
}

.deliverable-item::before {
  content: counter(deliverable, decimal-leading-zero);
  counter-increment: deliverable;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: rgba(196, 154, 56, 0.2);
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  line-height: 1;
}

.deliverables-grid { counter-reset: deliverable; }

.deliverable-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: var(--space-3);
}

.deliverable-body {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   SIC CALLOUT
════════════════════════════════════════════ */

.sic-block {
  margin-top: var(--space-8);
  padding: var(--space-6) var(--space-8);
  background: var(--color-navy-dark);
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.sic-codes {
  display: flex;
  gap: var(--space-8);
  flex-shrink: 0;
}

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

.sic-code-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.sic-code-label {
  display: block;
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.sic-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
  flex-shrink: 0;
}

.sic-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  flex: 1;
  min-width: 200px;
}

.sic-text p { margin-bottom: 0; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

@media (max-width: 768px) {
  .page-banner-inner { padding: 0 var(--space-6); }
  .deliverables-grid { grid-template-columns: 1fr; }
  .sic-block { flex-direction: column; gap: var(--space-6); }
  .sic-divider { display: none; }
  .about-section { padding: var(--space-12) 0; }
}
