/* ============================================================
   about.css â€” About SMPC page styles
   ============================================================ */


/* Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:      #D30100;
  --red-dark: #A50000;
  --dark:     #0E0E0E;
  --marine:   #0A2540;
  --bone:     #F4F1EC;
  --amber:    #FEBD59;
  --steel:    #6E7479;
  --g4:       #6E7479;
  --g1:       #F4F1EC;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: clip;
}


/* Hero
   ------------------------------------------------------------ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 55px 28px 64px;
  background-image:
    linear-gradient(135deg, rgba(211,1,0,0.88) 0%, rgba(165,0,0,0.82) 50%, rgba(10,37,64,0.75) 100%),
    url('../assets/brand_assets/SMPC_1.png');
  background-size: cover;
  background-position: center 40%;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--amber);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.hero-badge {
  display: inline-flex;
  background: rgba(254, 189, 89, .15);
  border: 1px solid rgba(254, 189, 89, .4);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
  font-family: 'Montserrat', sans-serif;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
}

h1 span {
  color: var(--amber);
}

.hero-subtitle {
  font-size: 17px;
  color: #fff;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}


/* Hero Buttons
   ------------------------------------------------------------ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: #fff;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  transition: opacity .2s;
}

.btn-primary:hover {
  opacity: .88;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  border: 1.5px solid rgba(255, 255, 255, .35);
  transition: border-color .2s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, .7);
}


/* Hero Stats
   ------------------------------------------------------------ */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 36px;
  width: fit-content;
}

.hero-stat {
  padding: 0 36px 0 0;
  border-right: 1px solid rgba(255, 255, 255, .12);
  margin-right: 36px;
}

.hero-stat:last-child {
  border-right: none;
  margin-right: 0;
}

.hero-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: #fff;
  margin-top: 5px;
  font-weight: 400;
}


/* Story Section
   ------------------------------------------------------------ */
.story {
  background: var(--bone);
  padding: 80px 24px;
}

/* SMPC Since 1986 Building Photo */
.story-building-wrap {
  max-width: 1280px;
  margin: 0 auto 56px;
}

.story-building {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.story-building img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 5;
  filter: grayscale(15%) brightness(0.65);
}

.story-building::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,.85) 0%, transparent 55%);
}

.story-building-cap {
  position: absolute;
  bottom: 24px;
  left: 28px;
  z-index: 1;
}

.sbc-year {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.sbc-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
}

.story-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--red);
}

.lead {
  font-size: 15.5px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.lead strong {
  color: var(--dark);
  font-weight: 600;
}

.story-quote {
  font-size: 13px;
  color: var(--g4);
  line-height: 1.7;
  font-style: italic;
  margin-top: 8px;
  border-left: 3px solid var(--red);
  padding-left: 14px;
}


/* Timeline
   ------------------------------------------------------------ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: flex;
  gap: 20px;
  position: relative;
}

.tl-item:not(:last-child) .tl-line {
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: 0;
  width: 1px;
  background: rgba(211, 1, 0, .2);
}

.tl-dot {
  width: 30px;
  height: 30px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  z-index: 1;
}

.tl-dot svg {
  width: 13px;
  height: 13px;
}

.tl-body {
  padding-bottom: 32px;
  flex: 1;
}

.tl-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.tl-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.tl-desc {
  font-size: 13.5px;
  color: var(--g4);
  line-height: 1.65;
}


/* Values Section
   ------------------------------------------------------------ */
.values {
  padding: 80px 24px;
  background: #fff;
}

.values-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.values-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.val-card {
  background: var(--bone);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.val-card:hover {
  box-shadow: 0 12px 40px rgba(211, 1, 0, .1);
  transform: translateY(-3px);
}

.val-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.val-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.val-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.val-card p {
  font-size: 14px;
  color: var(--g4);
  line-height: 1.7;
}


/* Services Preview Section
   ------------------------------------------------------------ */
.services-preview {
  background: var(--bone);
  padding: 72px 24px;
  border-top: 1px solid rgba(10, 37, 64, .07);
}

.services-preview-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.service-preview-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1.5px solid rgba(10, 37, 64, .08);
  transition: box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.service-preview-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.service-preview-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-preview-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.service-preview-card p {
  font-size: 13.5px;
  color: var(--g4);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-preview-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}


/* Brand Strip
   ------------------------------------------------------------ */
.brand-strip {
  background: var(--bone);
  padding: 56px 24px;
  border-top: 1px solid rgba(10, 37, 64, .07);
}

.brand-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.brand-strip-header {
  text-align: center;
  margin-bottom: 8px;
}

.brand-strip-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--dark);
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.brand-pill {
  background: #fff;
  border: 1.5px solid rgba(10, 37, 64, .08);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--marine);
  transition: border-color .2s, box-shadow .2s;
}

.brand-pill:hover {
  border-color: rgba(211, 1, 0, .3);
  box-shadow: 0 4px 16px rgba(211, 1, 0, .08);
}

.brand-strip-footer {
  text-align: center;
  margin-top: 24px;
}

.brand-strip-footer a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}


/* CTA Band
   ------------------------------------------------------------ */
.cta-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.cta-band {
  background: var(--red);
  border-radius: 16px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 100% 50%, rgba(255, 255, 255, .08) 0%, transparent 60%);
}

.cta-band::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--amber);
}

.cta-band h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  letter-spacing: -.01em;
}

.cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  position: relative;
  line-height: 1.6;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: #fff;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  position: relative;
  transition: opacity .2s, transform .15s;
}

.btn-action:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  transition: background .2s;
}

.btn-phone:hover {
  background: rgba(255, 255, 255, .2);
}


/* Accent Heading with Left Bar
   ------------------------------------------------------------ */
.h3-accent {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.01em;
  padding-left: 18px;
  position: relative;
  margin-bottom: 16px;
}

.h3-accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: var(--red);
  border-radius: 2px;
}


/* Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { grid-template-columns: repeat(2, auto); }
  .val-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .val-grid { grid-template-columns: 1fr; }
  /* Keep stats as a 2x2 grid on narrow screens (matches the Services page)
     instead of collapsing to a single column. */
  .hero-stats { grid-template-columns: repeat(2, auto); }
  .hero-stat { padding: 0 20px 0 0; margin-right: 20px; }
  .hero-stat:nth-child(2n) { border-right: none; margin-right: 0; padding-right: 0; }
  .cta-band { flex-direction: column; padding: 36px 24px; }
}
